/* ============================================================
   Sameer Shah · West Michigan Real Estate
   Aesthetic: Editorial Luxury — deep navy, crisp white, warm gold
   Type: Fraunces (display serif) + Hanken Grotesk (body)
   ============================================================ */

:root {
  /* Palette */
  --navy:        #0d1b2a;
  --navy-700:    #122638;
  --navy-600:    #18324a;
  --white:       #ffffff;
  --paper:       #f7f4ee;   /* warm off-white */
  --paper-2:     #efe9df;
  --ink:         #1b2733;
  --ink-soft:    #45566a;
  --slate:       #6b7b8c;
  --line:        #e2dccf;
  --gold:        #b9986a;
  --gold-deep:   #a17e4d;
  --gold-soft:   #d9c39c;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", -apple-system, system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

em { font-style: italic; }

/* ---------------- Shared building blocks ---------------- */

.section {
  padding: clamp(4.5rem, 10vw, 9rem) var(--gutter);
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--gold);
  position: relative;
  padding-right: 0.9rem;
}
.eyebrow__num::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 1.1em;
  transform: translateY(-50%);
  background: currentColor;
  opacity: 0.5;
}

.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section__title em { color: var(--gold-deep); }
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--gold-soft); }

.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 46ch;
}
.lead--light { color: rgba(255,255,255,0.78); }

/* ---------------- Buttons ---------------- */

.btn {
  --pad-y: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--pad-y) 1.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 30px -12px rgba(185,152,106,0.7);
}
.btn--gold:hover { background: var(--gold-soft); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(13,27,42,0.35);
}
.btn--ghost-dark:hover { border-color: var(--navy); background: rgba(13,27,42,0.04); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-600); }

.btn--block { width: 100%; }
.btn--sm { --pad-y: 0.8rem; padding: 0.8rem 1.4rem; font-size: 0.75rem; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(10px);
  padding: 0.95rem var(--gutter);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
}
.nav__sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.2rem;
}

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links > a:not(.nav__cta) {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.nav__links > a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links > a:not(.nav__cta):hover { color: var(--white); }
.nav__links > a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__cta:hover { background: var(--gold-soft); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem var(--gutter) 6rem;
  background: var(--navy);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(13,27,42,0.94) 0%, rgba(13,27,42,0.72) 42%, rgba(13,27,42,0.30) 100%),
    linear-gradient(0deg, rgba(13,27,42,0.65) 0%, rgba(13,27,42,0) 45%);
}

.hero__inner { position: relative; max-width: 760px; }

.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero__title em { color: var(--gold-soft); font-weight: 400; }

.hero__lede {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin-bottom: 2.4rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.2rem; left: var(--gutter);
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0%{transform:translateX(-100%)} 55%,100%{transform:translateX(100%)} }

/* ============================================================
   ABOUT
   ============================================================ */

.about { background: var(--paper); }
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about__media { position: relative; }
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 8%;
  border-radius: var(--radius);
}
.about__media::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 55%; height: 55%;
  border: 1px solid var(--gold);
  border-bottom: none; border-left: none;
  z-index: -1;
}
.about__badge {
  position: absolute;
  left: -1.5rem; bottom: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px -22px rgba(13,27,42,0.6);
  max-width: 230px;
}
.about__badge-num {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}
.about__badge-label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.about__points { list-style: none; margin-top: 2rem; display: grid; gap: 1.1rem; }
.about__points li { display: flex; gap: 0.9rem; align-items: flex-start; }
.about__point-mark { color: var(--gold); font-size: 1rem; line-height: 1.6; flex-shrink: 0; }
.about__points strong { color: var(--ink); font-weight: 600; }
.about__points span:last-child { color: var(--ink-soft); }

/* ============================================================
   SELLERS
   ============================================================ */

.sellers {
  background:
    radial-gradient(120% 120% at 100% 0%, var(--navy-600) 0%, var(--navy) 55%);
  position: relative;
}
.sellers::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 80% at 70% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.sellers__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.sellers__list { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.85rem; }
.sellers__list li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(255,255,255,0.85);
}
.sellers__list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   FORM CARD + FORMS
   ============================================================ */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.75rem);
  box-shadow: 0 40px 80px -40px rgba(13,27,42,0.55);
}
.form-card--bordered {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -45px rgba(13,27,42,0.4);
}
.form-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.form-card__note { font-size: 0.92rem; color: var(--slate); margin-bottom: 1.6rem; }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }

.field-group {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13,27,42,0.015);
  transition: border-color 0.3s var(--ease);
}
.field-group.is-invalid { border-color: rgba(192,57,43,0.5); }
.field-group__hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.field-group.is-invalid .field-group__hint { color: #a5392c; }
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field__opt { text-transform: none; letter-spacing: 0; color: var(--slate); font-weight: 400; }

.field input,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #a9b1ba; }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185,152,106,0.18);
}
.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.form button { margin-top: 0.4rem; }

.form__success {
  margin-top: 0.25rem;
  background: rgba(185,152,106,0.12);
  border: 1px solid var(--gold-soft);
  color: var(--gold-deep);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}

.form__error {
  margin-top: 0.25rem;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.35);
  color: #a5392c;
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}
.form__error a { color: inherit; text-decoration: underline; }

/* ============================================================
   BUYERS
   ============================================================ */

.buyers { background: var(--paper); }
.buyers__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.buyers__steps { display: grid; gap: 1.5rem; margin-top: 2rem; }
.buyers__step { display: flex; gap: 1.2rem; align-items: flex-start; }
.buyers__step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.15rem;
  min-width: 2rem;
}
.buyers__step h4 {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.buyers__step p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   SUCCESSES / GALLERY
   ============================================================ */

.successes { background: var(--white); }
.successes__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.successes__head .eyebrow { justify-content: center; }
.successes__head .lead { margin: 0 auto; }

.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* any trailing/orphan row centers automatically */
  gap: 1.25rem;
}
.gallery__item {
  flex: 0 1 calc((100% - 2.5rem) / 3);   /* 3 per row, accounting for two 1.25rem gaps */
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
/* A lone photo displays as a wider centered feature */
.gallery__item:only-child {
  flex-basis: min(100%, 760px);
  aspect-ratio: 3 / 2;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,27,42,0.78) 0%, rgba(13,27,42,0) 55%);
  opacity: 0.9;
}
.gallery__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}
.gallery__item figcaption {
  position: absolute;
  bottom: 1rem; left: 1.1rem;
  z-index: 2;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--white);
}

/* "Yours next?" invitation tile — fills the sixth square as a soft CTA */
.gallery__invite {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.4rem 1.3rem;
  text-decoration: none;
  background: radial-gradient(130% 130% at 100% 0%, var(--navy-600) 0%, var(--navy) 60%);
  border: 1px solid rgba(185,152,106,0.4);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery__invite::after { display: none; }   /* no photo overlay */
.gallery__invite:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -28px rgba(13,27,42,0.7);
}
.gallery__tag--next { background: transparent; color: var(--gold-soft); border: 1px solid rgba(185,152,106,0.5); }

.gallery__invite-text { margin-top: auto; }
.gallery__invite-title {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.05;
  color: var(--white);
}
.gallery__invite-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
}
.gallery__invite-link {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.gallery__invite-link span {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.gallery__invite:hover .gallery__invite-link span { transform: translateX(5px); }

/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip {
  background: var(--navy);
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  text-align: center;
  position: relative;
}
.cta-strip__inner { max-width: 640px; margin: 0 auto; }
.cta-strip h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.cta-strip p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; }
.cta-strip__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: var(--navy-700); color: rgba(255,255,255,0.78); padding: clamp(3.5rem, 7vw, 5rem) var(--gutter) 2rem; }
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Paired name lockup: agent + brokerage, equal size (legal requirement) */
.footer__lockup { display: flex; flex-direction: column; gap: 0.1rem; }
.footer__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.18;
  color: var(--white);
  display: block;
}
.footer__name--firm { color: rgba(255,255,255,0.72); }

.footer__rule {
  display: block;
  width: 44px; height: 2px;
  background: var(--gold);
  margin: 1.1rem 0 0.9rem;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer__meta a { color: rgba(255,255,255,0.78); transition: color 0.3s var(--ease); }
.footer__meta a:hover { color: var(--white); }
.footer__dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.6; }

.footer__mission { margin-top: 1rem; font-size: 0.95rem; max-width: 30ch; color: rgba(255,255,255,0.6); }

.footer__col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.footer__col a { display: block; color: rgba(255,255,255,0.8); margin-bottom: 0.55rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold-soft); }
.footer__area { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 0.8rem; line-height: 1.5; }

.footer__social a { position: relative; width: max-content; }
.footer__social a::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px; background: var(--gold-soft);
  transition: width 0.3s var(--ease);
}
.footer__social a:hover::after { width: 100%; }

.footer__col--cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.footer__link { font-size: 0.92rem; color: var(--gold-soft); }
.footer__link:hover { color: var(--white); }

.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.6rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer__legal { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem; }
.footer__eho { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.eho-logo {
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.6);
}
.footer__fine { margin: 0; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* stagger children within a block */
.is-in + .reveal { transition-delay: 0.05s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .about__grid,
  .sellers__grid,
  .buyers__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .about__badge { left: 0; }
  .gallery__item { flex-basis: calc((100% - 1.25rem) / 2); }   /* 2 per row */
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  /* backdrop-filter makes .nav the containing block for the fixed menu panel,
     which collapses it to the navbar's height — drop the blur on mobile so the
     panel stays anchored to the full viewport. */
  .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: var(--gutter);
    background: var(--navy);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,0.6);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__toggle { display: flex; z-index: 60; }
  .nav__links > a:not(.nav__cta) { font-size: 1rem; color: var(--white); }
  .hero__scroll { display: none; }
}

@media (max-width: 540px) {
  .gallery__item { flex-basis: 100%; }   /* 1 per row */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions .btn,
  .cta-strip__actions .btn { flex: 1 1 100%; }
}
