/* ============================================================
   JUST LETS — Residential Lettings Specialists, Hove
   Editorial · tactile · quiet-luxury
   ============================================================ */

:root {
  --paper:      #f6f1e8;   /* warm ivory */
  --paper-2:    #efe8db;   /* deeper paper */
  --ink:        #211d1b;   /* near-black warm */
  --ink-soft:   #4b4441;
  --ink-faint:  #7d746e;
  --line:       #d9cfbe;   /* hairline on paper */
  --rose:       #a0345a;   /* refined signature (evolved from their magenta) */
  --rose-deep:  #7c2545;
  --rose-tint:  #f0dfe4;
  --sage:       #6f7a63;   /* coastal secondary */
  --cream-card: #fbf8f1;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--rose); color: var(--paper); }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--rose);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--rose); opacity: 0.6;
}
.eyebrow--light { color: var(--rose-tint); }
.eyebrow--light::before { background: var(--rose-tint); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 500; font-size: 0.95rem;
  padding: 0.95em 1.7em; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.4s var(--ease);
  letter-spacing: 0.01em; white-space: nowrap;
}
.btn--primary { background: var(--rose); color: var(--paper); }
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(124,37,69,0.6); }
.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(246,241,232,0.5); }
.btn--ghost:hover { background: rgba(246,241,232,0.12); border-color: var(--paper); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--sm { padding: 0.6em 1.2em; font-size: 0.85rem; }
.btn--full { width: 100%; }

.link-arrow {
  font-weight: 500; color: var(--rose); font-size: 0.98rem;
  display: inline-block; margin-top: 0.6rem;
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.link-arrow:hover { border-color: var(--rose); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s, backdrop-filter 0.5s;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(246,241,232,0.97);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(33,29,27,0.4);
}
.nav.scrolled .nav__inner { padding-top: 14px; padding-bottom: 14px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 9px; flex: 0 0 40px;
  background: var(--rose); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  letter-spacing: -0.02em;
}
.brand__word { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); letter-spacing: -0.01em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

/* hero is dark, so nav starts light-on-dark */
.nav:not(.scrolled) .brand__name,
.nav:not(.scrolled) .nav__links a,
.nav:not(.scrolled) .nav__phone { color: var(--paper); }
.nav:not(.scrolled) .brand__sub { color: rgba(246,241,232,0.7); }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; position: relative; padding: 4px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: currentColor; transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__phone { font-weight: 600; font-size: 0.92rem; }
.nav__cta .btn--sm { background: var(--rose); color: var(--paper); border-color: var(--rose); }
.nav__cta .btn--sm:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  color: var(--paper); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,15,14,0.82) 0%, rgba(20,15,14,0.28) 45%, rgba(20,15,14,0.15) 100%),
    linear-gradient(to right, rgba(20,15,14,0.55) 0%, rgba(20,15,14,0) 60%);
}
.hero__content { max-width: 760px; position: relative; }
.hero__title {
  font-size: clamp(2.9rem, 7.5vw, 6rem); line-height: 0.98; margin: 22px 0 0;
  letter-spacing: -0.02em; font-weight: 300;
}
.hero__title em { font-style: italic; font-weight: 400; color: #f4c9d5; }
.hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem); max-width: 560px; margin-top: 26px;
  color: rgba(246,241,232,0.9); line-height: 1.55;
}
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__meta {
  display: flex; align-items: center; gap: 14px; margin-top: 48px;
  font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(246,241,232,0.7);
}
.hero__meta .dot { opacity: 0.5; }

/* ============================================================
   STRIP marquee
   ============================================================ */
.strip {
  background: var(--ink); color: var(--paper); overflow: hidden;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.strip__track {
  display: inline-flex; align-items: center; gap: 28px; white-space: nowrap;
  animation: marquee 34s linear infinite;
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: rgba(246,241,232,0.9);
}
.strip__dot { color: var(--rose); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ETHOS
   ============================================================ */
.ethos { padding: clamp(80px, 12vh, 150px) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.ethos__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 100px); }
.ethos__head {
  font-size: clamp(2rem, 3.6vw, 3.3rem); margin-top: 26px; line-height: 1.02;
  font-weight: 300; letter-spacing: -0.02em;
}
.lead-para { font-size: 1.25rem; line-height: 1.5; color: var(--ink); margin-bottom: 22px; font-family: var(--serif); font-weight: 300; }
.ethos__right p { color: var(--ink-soft); font-size: 1.02rem; }
.pledge { margin-top: 40px; display: grid; gap: 4px; }
.pledge__item {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.pledge__item:last-child { border-bottom: 1px solid var(--line); }
.pledge__no { font-family: var(--serif); color: var(--rose); font-size: 1rem; padding-top: 2px; }
.pledge__item p { margin: 0; color: var(--ink); font-size: 0.98rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); color: var(--paper); padding: clamp(56px, 8vh, 90px) var(--gutter); }
.stats__row {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stat { text-align: left; position: relative; padding-left: 22px; }
.stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: var(--rose); }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 300; display: block; line-height: 1; letter-spacing: -0.02em; }
.stat__label { display: block; margin-top: 14px; font-size: 0.85rem; color: rgba(246,241,232,0.65); max-width: 200px; line-height: 1.4; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head { max-width: 820px; margin: 0 auto clamp(44px, 6vh, 72px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-top: 20px; font-weight: 300; letter-spacing: -0.02em; line-height: 1.05; }
.section-head .eyebrow { justify-content: center; }
.section-head--split {
  max-width: var(--maxw); display: flex; justify-content: space-between; align-items: flex-end;
  text-align: left; gap: 40px;
}
.section-head--split .eyebrow { justify-content: flex-start; }
.section-head--split h2 { margin-top: 16px; }
.section-head__note { max-width: 340px; color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(80px, 12vh, 150px) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: 16px; padding: 34px 28px 30px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(33,29,27,0.4); border-color: var(--rose); }
.svc__no { font-family: var(--serif); font-size: 0.9rem; color: var(--rose); letter-spacing: 0.1em; }
.svc h3 { font-size: 1.4rem; margin: 16px 0 12px; font-weight: 400; }
.svc p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; flex-grow: 1; }
.svc ul { list-style: none; margin-top: 20px; display: grid; gap: 8px; }
.svc li { font-size: 0.85rem; color: var(--ink); padding-left: 18px; position: relative; }
.svc li::before { content: "✦"; position: absolute; left: 0; color: var(--rose); font-size: 0.7rem; top: 2px; }

/* ============================================================
   FEATURE SPLIT
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.feature__media { overflow: hidden; min-height: 420px; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__body {
  padding: clamp(48px, 8vw, 100px) clamp(32px, 6vw, 90px);
  display: flex; flex-direction: column; justify-content: center;
}
.feature__body h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin: 20px 0 22px; font-weight: 300; letter-spacing: -0.02em; }
.feature__body p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }

/* ============================================================
   PROPERTIES
   ============================================================ */
.properties { padding: clamp(80px, 12vh, 150px) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.prop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop {
  background: var(--cream-card); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.prop:hover { transform: translateY(-6px); box-shadow: 0 30px 55px -32px rgba(33,29,27,0.45); }
.prop__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prop__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.prop:hover .prop__img img { transform: scale(1.06); }
.prop__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(33,29,27,0.85); color: var(--paper); backdrop-filter: blur(6px);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 6px 12px; border-radius: 100px;
}
.prop__tag--live { background: var(--rose); }
.prop__info { padding: 22px 24px 26px; }
.prop__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.prop__top h3 { font-size: 1.35rem; font-weight: 400; }
.prop__price { font-family: var(--serif); font-size: 1.3rem; color: var(--rose); white-space: nowrap; }
.prop__price small { font-size: 0.7rem; color: var(--ink-faint); font-family: var(--sans); }
.prop__meta { color: var(--ink-soft); font-size: 0.9rem; margin-top: 6px; }
.prop__spec { font-size: 0.82rem; color: var(--ink-faint); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); letter-spacing: 0.02em; }
.prop__cta { display: flex; align-items: center; gap: 22px; margin-top: 44px; flex-wrap: wrap; }
.prop__cta span { color: var(--ink-soft); font-size: 0.95rem; }
.prop__cta a[href^="tel"] { color: var(--rose); font-weight: 600; }

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--ink); color: var(--paper); padding: clamp(80px, 12vh, 140px) var(--gutter); }
.trust__inner { max-width: var(--maxw); margin: 0 auto; }
.trust .section-head h2 { color: var(--paper); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 20px; }
.badge {
  border: 1px solid rgba(246,241,232,0.16); border-radius: 14px; padding: 30px 26px;
  transition: border-color 0.4s, background 0.4s;
}
.badge:hover { border-color: var(--rose); background: rgba(160,52,90,0.08); }
.badge__name { font-family: var(--serif); font-size: 1.5rem; display: block; margin-bottom: 12px; color: #f4c9d5; }
.badge p { font-size: 0.88rem; color: rgba(246,241,232,0.66); line-height: 1.5; }
.trust__foot { margin-top: 40px; font-size: 0.8rem; color: rgba(246,241,232,0.45); text-align: center; }

/* ============================================================
   FILM
   ============================================================ */
.film { position: relative; }
.film__media { position: relative; height: clamp(440px, 70vh, 720px); overflow: hidden; }
.film__media img { width: 100%; height: 100%; object-fit: cover; }
.film__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,14,0.7), rgba(20,15,14,0.15) 50%, rgba(20,15,14,0.35));
}
.film__play {
  position: absolute; top: 27%; left: 50%; transform: translate(-50%, -50%);
  width: 90px; height: 90px; border-radius: 50%; cursor: pointer;
  background: rgba(246,241,232,0.14); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(246,241,232,0.7);
  display: grid; place-items: center; transition: all 0.4s var(--ease);
}
.film__play svg { width: 30px; height: 30px; fill: var(--paper); margin-left: 4px; }
.film__play::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1.5px solid rgba(246,241,232,0.5); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
.film__play:hover { background: var(--rose); border-color: var(--rose); transform: translate(-50%, -50%) scale(1.06); }
.film__caption {
  position: absolute; left: 0; right: 0; bottom: 0; color: var(--paper);
  padding: clamp(36px, 6vw, 72px) var(--gutter);
  max-width: 720px; margin: 0 auto;
}
.film__caption { left: 50%; transform: translateX(-50%); text-align: center; }
.film__caption .eyebrow { justify-content: center; }
.film__caption h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 18px 0 18px; font-weight: 300; }
.film__caption p { color: rgba(246,241,232,0.85); font-size: 1.02rem; }
.film__note { margin-top: 16px; font-size: 0.82rem !important; color: rgba(246,241,232,0.55) !important; font-style: italic; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote { padding: clamp(90px, 14vh, 160px) var(--gutter); max-width: 960px; margin: 0 auto; text-align: center; }
.quote blockquote { position: relative; }
.quote p {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem); line-height: 1.28; letter-spacing: -0.01em;
}
.quote footer { margin-top: 30px; font-size: 0.9rem; letter-spacing: 0.06em; color: var(--ink-faint); text-transform: uppercase; }

/* ============================================================
   VALUATION
   ============================================================ */
.valuation { padding: clamp(70px, 10vh, 130px) var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.valuation__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  background: var(--cream-card); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(36px, 5vw, 66px);
}
.valuation__intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); margin: 20px 0 20px; font-weight: 300; letter-spacing: -0.02em; }
.valuation__intro p { color: var(--ink-soft); }
.valuation__list { list-style: none; margin: 26px 0; display: grid; gap: 12px; }
.valuation__list li { padding-left: 26px; position: relative; font-size: 0.96rem; }
.valuation__list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--paper); background: var(--rose);
  width: 18px; height: 18px; border-radius: 50%; font-size: 0.65rem; display: grid; place-items: center; top: 3px;
}
.valuation__contact { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); display: grid; gap: 6px; }
.valuation__contact a { font-family: var(--serif); font-size: 1.2rem; color: var(--rose); }
.valuation__contact span { color: var(--ink-faint); font-size: 0.9rem; }

.valuation__form { display: grid; gap: 18px; align-content: start; }
.field { display: grid; gap: 7px; }
.field--split { grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.field input, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; transition: border-color 0.3s, box-shadow 0.3s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #b3a99c; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-tint); }
.form__success { color: var(--sage); font-weight: 500; text-align: center; font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding: clamp(60px, 9vh, 100px) var(--gutter) 30px; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(246,241,232,0.12);
}
.footer__brand .brand__name { font-size: 1.8rem; color: var(--paper); }
.footer__brand p { color: rgba(246,241,232,0.6); font-size: 0.92rem; margin-top: 12px; }
.footer__col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-tint); font-weight: 600; margin-bottom: 14px; }
.footer__col p { color: rgba(246,241,232,0.7); font-size: 0.94rem; line-height: 1.9; }
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: #f4c9d5; }
.footer__bar {
  max-width: var(--maxw); margin: 26px auto 0; display: flex; justify-content: space-between;
  gap: 16px; font-size: 0.78rem; color: rgba(246,241,232,0.45); flex-wrap: wrap;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .ethos__grid { grid-template-columns: 1fr; gap: 30px; }
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 340px; }
  .prop__grid { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .valuation__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .nav__cta .nav__phone { display: none; }
  .hero { padding-bottom: 40px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero__meta .dot { display: none; }
  .brand__sub { display: none; }
  .stats__row { grid-template-columns: 1fr; gap: 30px; }
  .services__grid { grid-template-columns: 1fr; }
  .prop__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .field--split { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .prop__cta { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
