/* ============================================================
   AZ ELEVATED BUILDERS — dark luxury design-build aesthetic
   Tokens
============================================================ */
:root {
  --bg: #030303;
  --fg: #f5efe6;
  --fg-dim: rgba(245, 239, 230, 0.55);
  --fg-faint: rgba(245, 239, 230, 0.28);
  --line: rgba(245, 239, 230, 0.14);
  --navy: rgba(24, 32, 58, 0.82);
  --navy-solid: #18203a;
  --pill-blur: saturate(140%) blur(14px);
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.5rem, 4vw, 3.5rem);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--fg); color: var(--bg); }

.label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 0.9rem;
}

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

[data-word-reveal] .w {
  opacity: 0.14;
  transition: opacity 0.5s ease;
}
[data-word-reveal] .w.on { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-word-reveal] .w { opacity: 1 !important; transform: none !important; transition: none !important; }
  .preloader { display: none !important; }
  .marquee__track { animation: none !important; }
}

/* ============================================================
   Preloader
============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { display: flex; align-items: center; gap: 1.4rem; }
.preloader__mark { width: 64px; height: 64px; color: var(--fg); }
.preloader__mark path, .preloader__mark line {
  stroke-dasharray: 120; stroke-dashoffset: 120;
  animation: draw 1.4s var(--ease) forwards;
}
.preloader__mark path:nth-child(2) { animation-delay: 0.2s; }
.preloader__mark line { animation-delay: 0.45s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader__word {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.01em;
}
.preloader__word span {
  opacity: 0; transform: translateY(0.6em);
  animation: rise 0.9s var(--ease) forwards;
}
.preloader__word span:nth-child(2) { animation-delay: 0.15s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   Nav
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 160;
  display: flex; justify-content: center;
  padding: 1.1rem var(--pad) 0;
  transition: transform 0.55s var(--ease);
}
.nav.is-hidden { transform: translateY(-120%); }
.nav__pill {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.75rem);
  background: var(--navy);
  -webkit-backdrop-filter: var(--pill-blur); backdrop-filter: var(--pill-blur);
  border: 1px solid rgba(245, 239, 230, 0.08);
  border-radius: 999px;
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  width: min(1120px, 100%);
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}
.nav__brand { display: flex; align-items: center; gap: 0.65rem; }
.nav__mark { width: 30px; height: 30px; }
.nav__brandname {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.25;
}
.nav__links { display: flex; gap: clamp(1rem, 2.6vw, 2.4rem); }
.nav__links a {
  font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg); opacity: 0.85; position: relative;
  transition: opacity 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--fg);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__menu-btn {
  display: grid; grid-template-columns: repeat(2, 5px); gap: 3.5px;
  padding: 0.85rem; border-radius: 50%;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.nav__menu-btn span { width: 5px; height: 5px; background: var(--fg); border-radius: 1px; transition: transform .4s var(--ease); }
.nav__menu-btn:hover { background: rgba(245, 239, 230, 0.1); transform: rotate(90deg); }

/* ============================================================
   Menu overlay
============================================================ */
.menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--navy-solid);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
  overflow-y: auto;
}
.menu.is-open { clip-path: inset(0 0 0% 0); }
.menu__inner {
  min-height: 100%;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem;
  align-items: end;
  padding: clamp(5rem, 12vh, 8rem) var(--pad) clamp(2rem, 6vh, 4rem);
}
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 0.12em 0;
  display: flex; align-items: baseline; gap: 1.2rem;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s;
  color: var(--fg);
}
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu__links a::before {
  content: attr(data-i);
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.2em; color: var(--fg-dim);
}
.menu__links a:hover { color: var(--fg-dim); }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: 0.15s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.21s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.27s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.33s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.39s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: 0.45s; }
.menu__meta { display: flex; flex-direction: column; gap: 2rem; padding-bottom: 0.6rem; }
.menu__meta-block a, .menu__meta-block p { display: block; font-size: 0.95rem; color: var(--fg); opacity: 0.85; line-height: 1.7; }
.menu__meta-block a:hover { opacity: 1; text-decoration: underline; }

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative; height: 100lvh; min-height: 620px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad) clamp(1.5rem, 4vh, 3rem);
}
.hero__bg, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg { z-index: -2; }
.hero__bg img { transform: scale(1.08); animation: heroZoom 2.8s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(3,3,3,0.55) 0%, rgba(3,3,3,0.05) 30%, rgba(3,3,3,0.1) 60%, rgba(3,3,3,0.82) 100%);
}
.hero__tagline {
  position: absolute; top: clamp(6rem, 14vh, 8.5rem); left: var(--pad);
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  line-height: 1.9; color: var(--fg);
  transition-delay: 0.4s;
}
.hero__reviews {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg); opacity: 0.9;
  margin-bottom: 1.2rem;
  transition-delay: 0.55s;
}
.hero__reviews .stars { letter-spacing: 0.25em; color: #f0d9a8; }
.hero__reviews .dot { opacity: 0.5; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 11.5vw, 10.5rem);
  line-height: 0.92; letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero__title sup { font-size: 0.18em; font-weight: 400; letter-spacing: 0; vertical-align: 2.2em; }
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line > span {
  display: block; transform: translateY(110%);
  animation: titleUp 1.1s var(--ease) forwards;
}
.hero__title-line:nth-child(2) > span { animation-delay: 0.12s; }
@keyframes titleUp { to { transform: none; } }
.hero__reel {
  position: absolute; right: var(--pad); bottom: clamp(1.5rem, 4vh, 3rem);
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 0.9rem 1.6rem 0.9rem 1rem;
  border: 1px solid rgba(245, 239, 230, 0.35);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  background: rgba(3, 3, 3, 0.25);
  transition: background 0.35s, border-color 0.35s;
}
.hero__reel:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.hero__reel-icon {
  display: grid; place-items: center;
  width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%;
}
.hero__reel-icon svg { width: 12px; height: 12px; }

/* ============================================================
   Marquee
============================================================ */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 1.1rem 0; background: var(--bg);
}
.marquee__track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fg-dim); white-space: nowrap;
}
.marquee__track i { font-style: normal; color: var(--fg-faint); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Manifesto
============================================================ */
.manifesto { padding: clamp(6rem, 16vh, 11rem) var(--pad); }
.manifesto__kicker {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 2.5rem;
}
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 4rem);
  line-height: 1.14; letter-spacing: -0.015em;
  text-transform: uppercase;
  max-width: 22ch;
  margin-bottom: clamp(3rem, 8vh, 5.5rem);
}
.manifesto__cols {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1100px; margin-left: auto;
}
.manifesto__cols p {
  font-size: 0.95rem; line-height: 1.9; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg);
}

/* ============================================================
   Statement
============================================================ */
.statement {
  min-height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3rem; text-align: center;
  padding: 4rem var(--pad);
  border-block: 1px solid var(--line);
}
.statement__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 9vw, 8rem);
  line-height: 0.98; letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 1.1rem 2.2rem; border-radius: 999px;
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.btn--outline { border: 1px solid rgba(245, 239, 230, 0.4); color: var(--fg); }
.btn--outline:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--solid { background: var(--fg); color: var(--bg); border: 1px solid var(--fg); justify-content: center; }
.btn--solid:hover { background: transparent; color: var(--fg); }

/* ============================================================
   Section head
============================================================ */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  padding: 0 var(--pad); margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.95; letter-spacing: -0.025em;
  text-transform: uppercase;
}
.section-head__title em { font-style: normal; color: var(--fg-dim); }
.section-head__note { max-width: 34ch; font-size: 0.85rem; color: var(--fg-dim); letter-spacing: 0.04em; }

/* ============================================================
   Work
============================================================ */
.work { padding: clamp(5rem, 14vh, 9rem) 0; }
.work__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  padding: 0 var(--pad);
}
.work-card { grid-column: span 3; }
.work-card--lg { grid-column: span 6; }
.work-card__img {
  overflow: hidden; border-radius: 14px;
  aspect-ratio: 4 / 3;
}
.work-card--lg .work-card__img { aspect-ratio: 21 / 10; }
.work-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.01);
  transition: transform 1.1s var(--ease), filter 0.6s;
}
.work-card:hover .work-card__img img { transform: scale(1.06); filter: brightness(1.06); }
.work-card__meta {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.1rem 0.3rem 0;
}
.work-card__num { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--fg-dim); }
.work-card__meta h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.work-card__tag { margin-left: auto; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); text-align: right; }

/* ============================================================
   Services
============================================================ */
.services { padding: clamp(5rem, 14vh, 9rem) 0; border-top: 1px solid var(--line); }
.services__intro {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 var(--pad);
  margin-bottom: clamp(3rem, 8vh, 5rem);
}
.services__intro-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.services__intro-col p { color: var(--fg-dim); font-size: 0.95rem; line-height: 1.85; }

.services__list { list-style: none; border-top: 1px solid var(--line); }
.service { border-bottom: 1px solid var(--line); }
.service__row {
  width: 100%;
  display: grid; grid-template-columns: 140px 1fr auto; align-items: center; gap: 2rem;
  padding: clamp(1.4rem, 3.4vh, 2.2rem) var(--pad);
  text-align: left;
  transition: background 0.4s, padding-left 0.5s var(--ease);
}
.service__row:hover { background: rgba(245, 239, 230, 0.045); padding-left: calc(var(--pad) + 12px); }
.service__num { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-dim); }
.service__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.8rem);
  font-weight: 500; letter-spacing: -0.01em; text-transform: uppercase;
  line-height: 1.05;
}
.service__arrow {
  font-size: 1.5rem; color: var(--fg-dim);
  transition: transform 0.45s var(--ease), color 0.3s;
}
.service__row:hover .service__arrow { transform: translate(4px, -4px); color: var(--fg); }
.service__row[aria-expanded="true"] .service__arrow { transform: rotate(45deg); }
.service__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.service__body p {
  padding: 0 var(--pad) 2.2rem;
  max-width: 62ch;
  margin-left: calc(140px + 2rem);
  color: var(--fg-dim); font-size: 0.95rem; line-height: 1.85;
}

/* ============================================================
   Process
============================================================ */
.process { padding: clamp(5rem, 14vh, 9rem) 0; border-top: 1px solid var(--line); }
.process__steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 var(--pad);
}
.process__steps li { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.process__steps span { font-size: 0.7rem; letter-spacing: 0.22em; color: var(--fg-dim); }
.process__steps h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500; text-transform: uppercase;
  margin: 0.8rem 0 0.6rem;
}
.process__steps p { font-size: 0.88rem; color: var(--fg-dim); line-height: 1.75; }

/* ============================================================
   Quote
============================================================ */
.quote {
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 2rem; text-align: center;
  padding: 5rem var(--pad);
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-weight: 500; line-height: 1.2; letter-spacing: -0.01em;
  max-width: 24ch;
}
.quote__sub { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-dim); }

/* ============================================================
   Footer
============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(4rem, 10vh, 7rem) var(--pad) 2rem;
}
.footer__mega {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 12vw, 11rem);
  line-height: 0.92; letter-spacing: -0.035em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  margin-bottom: clamp(3.5rem, 9vh, 6rem);
}
.footer__mega span:nth-child(2) { align-self: center; }
.footer__mega span:nth-child(3) { align-self: flex-end; }
.footer__mega span:nth-child(4) { align-self: center; color: var(--fg-dim); }
.footer__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--line);
  margin-bottom: 4rem;
}
.footer__col a, .footer__col p { display: block; font-size: 0.92rem; line-height: 1.9; opacity: 0.9; }
.footer__col a:hover { text-decoration: underline; opacity: 1; }
.footer__news { display: flex; border-bottom: 1px solid var(--line); }
.footer__news input {
  flex: 1; min-width: 0; background: none; border: 0; color: var(--fg);
  font: inherit; font-size: 0.9rem; padding: 0.6rem 0; outline: none;
}
.footer__news input::placeholder { color: var(--fg-faint); }
.footer__news button {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-dim); transition: color 0.3s;
}
.footer__news button:hover { color: var(--fg); }
.footer__areas {
  padding-top: 2rem; border-top: 1px solid var(--line);
  margin-bottom: 3rem;
}
.footer__areas-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.footer__areas-links a {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-dim); transition: color 0.3s;
}
.footer__areas-links a:hover { color: var(--fg); }
.footer__areas-all { color: var(--fg) !important; text-decoration: underline; }

.footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-dim);
}
.footer__legal-links { display: flex; gap: 1.8rem; }
.footer__legal-links a:hover { color: var(--fg); }

/* ============================================================
   Floating CTA
============================================================ */
.fab {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vh, 2rem); z-index: 90;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  background: var(--fg); color: var(--bg);
  padding: 1.05rem 1.7rem; border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(160%);
  transition: transform 0.6s var(--ease), background 0.3s;
}
.fab.is-in { transform: none; }
.fab:hover { background: #fff; }
.fab__arrow { font-size: 1rem; }

/* ============================================================
   Modals
============================================================ */
.modal { position: fixed; inset: 0; z-index: 180; display: grid; place-items: center; padding: 1.5rem; visibility: hidden; }
.modal.is-open { visibility: visible; }
.modal__backdrop {
  position: absolute; inset: 0; background: rgba(3, 3, 3, 0.75);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.45s;
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; width: min(560px, 100%);
  background: var(--navy-solid);
  border: 1px solid rgba(245, 239, 230, 0.1);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3rem);
  transform: translateY(40px); opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s;
}
.modal.is-open .modal__panel { transform: none; opacity: 1; }
.modal__panel--video { width: min(880px, 100%); padding: 1rem; }
.modal__panel--video video { width: 100%; border-radius: 14px; aspect-ratio: 16/9; object-fit: cover; background: #000; }
.modal__note { font-size: 0.75rem; color: var(--fg-dim); padding: 0.8rem 0.4rem 0.2rem; }
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.2);
  display: grid; place-items: center; font-size: 0.8rem;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
}
.modal__close:hover { background: var(--fg); color: var(--bg); }
.modal__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 500;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.modal__sub { font-size: 0.9rem; color: var(--fg-dim); margin-bottom: 1.8rem; }
.modal__form { display: flex; flex-direction: column; gap: 1rem; }
.modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal__form input, .modal__form textarea {
  width: 100%; background: rgba(245, 239, 230, 0.05);
  border: 1px solid rgba(245, 239, 230, 0.12);
  border-radius: 10px; color: var(--fg);
  font: inherit; font-size: 0.92rem;
  padding: 0.85rem 1rem; outline: none; resize: vertical;
  transition: border-color 0.3s;
}
.modal__form input:focus, .modal__form textarea:focus { border-color: rgba(245, 239, 230, 0.45); }
.modal__form input::placeholder, .modal__form textarea::placeholder { color: var(--fg-faint); }
.modal__form .btn { margin-top: 0.4rem; }
.modal__thanks { font-size: 1rem; padding: 2rem 0; text-align: center; }

/* ============================================================
   Cookies
============================================================ */
.cookies {
  position: fixed; left: 50%; bottom: 1.2rem; z-index: 95;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 1.5rem;
  width: min(760px, calc(100% - 2rem));
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 239, 230, 0.1);
  border-radius: 999px;
  padding: 0.9rem 1rem 0.9rem 1.6rem;
  transition: transform 0.6s var(--ease), opacity 0.5s;
}
.cookies.is-hidden { transform: translate(-50%, 180%); opacity: 0; pointer-events: none; }
.cookies p { font-size: 0.82rem; color: var(--fg); flex: 1; }
.cookies a { text-decoration: underline; }
.cookies__actions { display: flex; gap: 0.6rem; }
.cookies__btn {
  font-size: 0.8rem; padding: 0.65rem 1.4rem; border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.3);
  transition: background 0.3s, color 0.3s;
}
.cookies__btn:hover { border-color: var(--fg); }
.cookies__btn--solid { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookies__btn--solid:hover { background: #fff; }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .menu__inner { grid-template-columns: 1fr; align-items: start; }
  .manifesto__cols, .services__intro, .modal__row { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .work-card { grid-column: span 6; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service__row { grid-template-columns: 70px 1fr auto; gap: 1rem; }
  .service__body p { margin-left: 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cookies { flex-direction: column; gap: 0.8rem; border-radius: 22px; text-align: center; }
  .hero__tagline { top: 6.5rem; }
  .hero__reel { position: static; margin-top: 1.6rem; align-self: flex-start; }
}
@media (max-width: 520px) {
  .process__steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .work-card__meta { flex-wrap: wrap; }
  .work-card__tag { margin-left: 0; text-align: left; width: 100%; }
}

/* ============================================================
   SEO pages (service areas / service hubs)
============================================================ */
.page { padding: 9rem var(--pad) 0; max-width: 1200px; margin: 0 auto; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 2.2rem;
}
.crumbs a { color: var(--fg-dim); transition: color 0.3s; }
.crumbs a:hover { color: var(--fg); }
.crumbs .sep { opacity: 0.4; }
.page-hero { margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 1.0; letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 20ch;
  margin-bottom: 1.4rem;
}
.page-hero h1 em { font-style: normal; color: var(--fg-dim); }
.page-hero .lede { max-width: 62ch; color: var(--fg-dim); font-size: 1.02rem; line-height: 1.85; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.6rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg); opacity: 0.9;
  padding: 1.1rem 0; border-block: 1px solid var(--line);
  margin: 2rem 0 2.6rem;
}
.trust-strip .dot { opacity: 0.45; }
.trust-strip .stars { color: #f0d9a8; }
.page-img { border-radius: 14px; overflow: hidden; aspect-ratio: 21/9; margin-bottom: 2.6rem; }
.page-img img { width: 100%; height: 100%; object-fit: cover; }
.prose { max-width: 68ch; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0;
  margin: 2.6rem 0 1rem;
}
.prose p { color: var(--fg-dim); font-size: 0.98rem; line-height: 1.9; margin-bottom: 1.1rem; }
.prose ul { list-style: none; margin: 1.2rem 0 1.6rem; }
.prose li {
  padding: 0.75rem 0 0.75rem 1.6rem; position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--fg); font-size: 0.95rem;
}
.prose li::before { content: "✦"; position: absolute; left: 0; color: var(--fg-faint); font-size: 0.7rem; top: 1.05rem; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.4rem 0 0; }
.chip {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.25); color: var(--fg);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.chip:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.faq { max-width: 68ch; margin-top: 1rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--fg-dim); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--fg-dim); font-size: 0.95rem; line-height: 1.85; padding: 0 0 1.4rem; max-width: 60ch; }
.cta-band {
  margin: clamp(3rem, 8vh, 5rem) 0 0;
  padding: clamp(2.5rem, 6vh, 4rem) var(--pad);
  border-radius: 22px;
  background: var(--navy-solid);
  border: 1px solid rgba(245, 239, 230, 0.1);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 600;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.cta-band p { color: var(--fg-dim); margin-bottom: 1.8rem; font-size: 0.95rem; }
.cta-band .btn { margin: 0 0.4rem 0.6rem; }
.city-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.8rem; margin-top: 2rem;
}
.city-grid a {
  padding: 1.1rem 1.2rem; border: 1px solid var(--line); border-radius: 12px;
  display: flex; justify-content: space-between; align-items: baseline;
  transition: background 0.3s, border-color 0.3s;
}
.city-grid a:hover { background: rgba(245, 239, 230, 0.05); border-color: rgba(245, 239, 230, 0.3); }
.city-grid .name {
  font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; font-size: 0.95rem;
}
.city-grid .arrow { color: var(--fg-dim); }
.city-grid .county { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); display: block; margin-top: 0.2rem; }
.page-footer-pad { height: clamp(4rem, 10vh, 7rem); }
.simple-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem var(--pad);
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem;
  justify-content: space-between; align-items: center;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim);
}
.simple-footer a { color: var(--fg); }
.simple-footer a:hover { text-decoration: underline; }
