:root {
  --green: #0b6b42;
  --green-dark: #123f2b;
  --red: #c91524;
  --red-dark: #8d101b;
  --gold: #f2b84b;
  --ink: #151616;
  --muted: #66706a;
  --line: #dfe5df;
  --paper: #fbfaf7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 63, 43, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.icon-sprite {
  display: none;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  margin: 14px auto 0;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(21, 22, 22, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 63, 43, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: min(52vw, 430px);
  object-fit: contain;
  border: 2px solid var(--gold);
  border-radius: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  font-weight: 900;
  border: 2px solid rgba(242, 184, 75, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 70px;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0.78;
  animation: mediaDrift 18s ease-in-out infinite alternate;
}

.hero-media-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.14);
}

.hero-media-item--wide {
  grid-row: span 2;
}

.hero-pattern {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.hero-logo {
  width: min(560px, 100%);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.5;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg,
.text-link svg,
.alert-icon svg,
.contact-list svg,
.document-grid svg,
.sticky-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 34px rgba(201, 21, 36, 0.32);
}

.btn-secondary {
  color: #171208;
  background: linear-gradient(135deg, var(--gold), #ffd98b);
  box-shadow: 0 14px 34px rgba(242, 184, 75, 0.28);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line);
}

.btn-small {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 0.92rem;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-top: 28px;
}

.hero-strip span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section {
  padding: 84px 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.contact-copy h2,
.offer-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p,
.section-copy p,
.contact-copy p,
.offer-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.intro-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 107, 66, 0.08), transparent 42%),
    var(--white);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

.fact-panel,
.info-card,
.guide,
.contact-form,
.hours-card,
.offer-card,
.auction-alert {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.fact-panel {
  overflow: hidden;
}

.fact-panel div {
  padding: 20px;
}

.fact-panel div + div {
  border-top: 1px solid var(--line);
}

.fact-panel span,
.contact-list small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-panel strong {
  display: block;
  line-height: 1.45;
}

.auction-alert {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px;
  margin-bottom: 28px;
  border-left: 6px solid var(--red);
}

.alert-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--red);
  border-radius: var(--radius);
  background: rgba(201, 21, 36, 0.09);
}

.auction-alert h3,
.info-card h3,
.trust-card h3,
.hours-card h3,
.contact-form h3,
.category-card h3 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.auction-alert p {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 1.08rem;
  font-weight: 800;
}

.auction-alert ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(18, 63, 43, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(18, 63, 43, 0.17);
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card div {
  padding: 16px;
}

.category-card p,
.info-card p,
.guide,
.trust-card p,
.hours-card p {
  color: var(--muted);
  line-height: 1.65;
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 63, 43, 0.96), rgba(21, 22, 22, 0.98)),
    var(--green-dark);
}

.dark-section .eyebrow {
  color: var(--gold);
}

.dark-section .section-heading p,
.dark-section .trust-card p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.trust-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.legal-section {
  background:
    linear-gradient(180deg, rgba(11, 107, 66, 0.06), transparent 28%),
    var(--paper);
}

.guide-list {
  display: grid;
  gap: 12px;
}

.guide {
  padding: 0;
}

.guide summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 18px 22px;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

.guide summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.3rem;
}

.guide[open] summary::after {
  content: "-";
}

.guide > ul,
.guide > p,
.guide .terms-grid {
  margin: 0;
  padding: 0 22px 22px;
}

.guide ul {
  padding-left: 42px;
  line-height: 1.7;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.terms-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7faf7;
}

.terms-grid dt {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 900;
}

.terms-grid dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.document-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 63, 43, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.document-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 107, 66, 0.35);
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-item {
  grid-column: span 4;
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
}

.gallery-item:first-child {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease, opacity 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.86;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(201, 21, 36, 0.08), transparent 36%),
    var(--paper);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 63, 43, 0.06);
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.contact-list span {
  min-width: 0;
  word-break: break-word;
}

.hours-card {
  padding: 22px;
}

.hours-card p {
  margin: 8px 0;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.contact-form h3 {
  margin-bottom: 8px;
}

.contact-form label {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fdfdfc;
}

.contact-form textarea {
  resize: vertical;
}

.map-wrap {
  margin-top: 28px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(21, 22, 22, 0.97), rgba(18, 63, 43, 0.96)),
    var(--ink);
}

.offer-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.16);
}

.offer-card .eyebrow {
  color: var(--gold);
}

.offer-card p,
.offer-card li {
  color: rgba(255, 255, 255, 0.76);
}

.offer-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  padding: 34px 0 92px;
  color: rgba(255, 255, 255, 0.76);
  background: #101211;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-credit {
  margin-top: 22px;
  text-align: center;
}

.footer-credit a {
  display: inline;
  margin: 0;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sticky-actions {
  position: fixed;
  z-index: 80;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(18, 63, 43, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.sticky-actions a {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 56px;
  color: var(--white);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.sticky-actions a:first-child {
  background: var(--red);
}

.lightbox {
  width: min(900px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #050505;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.64);
  font-size: 1.2rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mediaDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, 10px, 0);
  }
}

@keyframes patternSlide {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 220px 0, 0 0;
  }
}

@keyframes scrollDot {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@media (max-width: 1080px) {
  .category-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100vw - 20px);
    margin-top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(18, 63, 43, 0.98);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 46px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
    padding-bottom: 94px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(9, 19, 15, 0.95), rgba(9, 19, 15, 0.75) 56%, rgba(9, 19, 15, 0.92)),
      linear-gradient(90deg, rgba(9, 19, 15, 0.4), rgba(9, 19, 15, 0.2));
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
    opacity: 0.62;
  }

  .two-column,
  .contact-grid,
  .split-cards {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-actions {
    display: grid;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 24px, 1120px);
  }

  .brand-logo {
    height: 46px;
    max-width: min(66vw, 300px);
  }

  .hero-logo {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .auction-alert {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .trust-grid,
  .document-grid,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:first-child {
    grid-column: span 12;
  }

  .guide summary {
    padding: 16px;
  }

  .guide > ul,
  .guide > p,
  .guide .terms-grid {
    padding-right: 16px;
    padding-left: 16px;
  }

  .guide ul {
    padding-left: 34px;
  }

  .contact-form,
  .info-card,
  .offer-card {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
