/* =========================================================
   NATURE FORMED LANDSCAPING — GLOBAL STYLES
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body { min-height: 100vh; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font: inherit; }

/* iOS Safari: remove grey tap flash on interactive elements */
a, button, [role="button"], input, label, select, summary, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* ---------- TOKENS ---------- */
:root {
  /* Primary */
  --forest: #0D2818;
  --forest-light: #163D2B;
  --sage: #6B8F5E;
  --sage-muted: #8BA67E;

  /* Warm Accents */
  --gold: #C4A35A;
  --gold-light: #D4B76A;

  /* Neutrals */
  --cream: #F5F0E8;
  --warm-white: #FAFAF5;
  --charcoal: #1A1A1A;
  --stone: #8C8577;
  --sand: #E8E0D4;

  /* Type scale */
  --text-hero: clamp(3.5rem, 8vw, 7rem);
  --text-h1: clamp(2.5rem, 5vw, 4rem);
  --text-h2: clamp(2rem, 4vw, 3rem);
  --text-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --text-body: clamp(1rem, 1.1vw, 1.125rem);
  --text-small: 0.875rem;
  --text-xs: 0.75rem;

  /* Layout */
  --section-padding-y: clamp(80px, 10vw, 140px);
  --section-padding-x: clamp(20px, 5vw, 80px);
  --container-max: 1400px;
  --container-narrow: 900px;
  --grid-gap: clamp(20px, 3vw, 40px);
  --border-radius: 4px;
  --border-radius-lg: 8px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- BASE TYPOGRAPHY ---------- */
body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

h1 { font-size: var(--text-h1); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: var(--text-h2); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: var(--text-h3); font-weight: 600; letter-spacing: -0.015em; }

p { color: var(--charcoal); line-height: 1.7; }

.label {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.8;
}
.section-header .label { justify-content: center; }
.section-header .label::before { display: none; }

.label--sage { color: var(--sage); }
.label--on-dark { color: var(--gold); }

/* ---------- CONTAINERS ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  width: 100%;
}

.container--narrow {
  max-width: var(--container-narrow);
}

section { padding: var(--section-padding-y) 0; }
section.section--dark { background: var(--forest); color: var(--warm-white); }
section.section--dark h1,
section.section--dark h2,
section.section--dark h3,
section.section--dark p { color: var(--warm-white); }
section.section--cream { background: var(--cream); }
section.section--warm { background: var(--warm-white); }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.25rem;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: color 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
  cursor: pointer;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn--primary::before { background: var(--gold-light); }
.btn--primary:hover::before { transform: translateX(0); }

.btn--outline {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn--outline::before { background: var(--warm-white); }
.btn--outline:hover { color: var(--charcoal); border-color: var(--warm-white); }
.btn--outline:hover::before { transform: translateX(0); }

.btn--dark {
  background: var(--forest);
  color: var(--warm-white);
}
.btn--dark::before { background: var(--forest-light); }
.btn--dark:hover::before { transform: translateX(0); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo);
}
.link-arrow:hover { gap: 0.9rem; color: var(--gold); }
.link-arrow--light { color: var(--gold); }
.link-arrow--light:hover { color: var(--gold-light); }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  padding: 0.85rem var(--section-padding-x);
  box-shadow: 0 1px 0 rgba(26,26,26,0.08);
  border-bottom: 1px solid rgba(232,224,212,0.6);
}
.nav.is-scrolled .nav__wordmark,
.nav.is-scrolled .nav__link { color: var(--charcoal); }
.nav.is-scrolled .nav__link.is-active { color: var(--forest); }
.nav.is-scrolled .nav__link:hover { color: var(--forest); }
.nav.is-scrolled .nav__toggle span { background: var(--charcoal); }
.nav.is-scrolled .nav__logo {
  background: var(--warm-white);
  border-color: var(--forest);
}
.nav.is-scrolled .nav__logo { color: var(--forest); }
/* Light-themed pages (non-hero backgrounds) */
.nav.is-light:not(.is-scrolled) {
  background: rgba(250, 250, 245, 0.95);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(232,224,212,0.5);
}
.nav.is-light:not(.is-scrolled) .nav__wordmark,
.nav.is-light:not(.is-scrolled) .nav__link { color: var(--charcoal); }
.nav.is-light:not(.is-scrolled) .nav__link.is-active { color: var(--forest); }
.nav.is-light:not(.is-scrolled) .nav__toggle span { background: var(--charcoal); }
.nav.is-light:not(.is-scrolled) .nav__logo {
  background: var(--warm-white);
  border-color: var(--forest);
  color: var(--forest);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest-light);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  overflow: hidden;
  position: relative;
}
/* When the real logo image loads it covers the NF text fallback */
.nav__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.nav.is-scrolled .nav__logo { border-color: var(--gold); }

.nav__wordmark {
  color: var(--warm-white);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  position: relative;
  color: var(--warm-white);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--gold); }

.nav__cta {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 6px;
  position: relative;
  z-index: 110;
}
.nav__toggle span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--warm-white);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--warm-white);
}
.hero--short { min-height: 60vh; }
.hero--medium { min-height: 50vh; padding-top: 120px; padding-bottom: 80px;}
.hero--tall { min-height: 70vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0D2818 0%, #163D2B 50%, #1a4a30 100%);
  transform: scale(1.05);
  will-change: transform;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,40,24,0.35) 0%, rgba(13,40,24,0.55) 55%, rgba(13,40,24,0.85) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 0%, rgba(13,40,24,0.35) 100%);
}
.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--section-padding-x);
  text-align: center;
}

.hero__headline {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin: 1.5rem 0 1.75rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hero__headline::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto 0;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Hero word-by-word animation */
.hero__headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: word-reveal 0.9s var(--ease-out-expo) forwards;
}
@keyframes word-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- IMAGE PLACEHOLDERS ---------- */
.image-placeholder {
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.image-placeholder::before {
  content: attr(data-label);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  max-width: 80%;
}
.image-placeholder--dark {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
}
.image-placeholder--dark::before { color: var(--sage-muted); }

/* When a real <img> or <video> loads inside a placeholder, it fills the container
   and automatically covers the data-label text. Lets you just drop files in. */
.image-placeholder > img,
.image-placeholder > video,
.image-placeholder > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: inherit;
}
/* Portfolio cards: subtle always-on motion for video poster shots */
.portfolio-card video,
.project-card video {
  transition: transform 0.6s var(--ease-out-expo);
}
.portfolio-card:hover video,
.project-card:hover video {
  transform: scale(1.03);
}

/* Decorative dot pattern behind placeholders for atmosphere */
.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(140,133,119,0.18) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.image-placeholder--dark::after {
  background-image: radial-gradient(circle at 1px 1px, rgba(196,163,90,0.14) 1px, transparent 0);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto calc(var(--grid-gap) * 1.75);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  color: var(--stone);
  font-size: 1.0625rem;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 2.5rem var(--section-padding-x);
  border-bottom: 1px solid var(--sand);
}
.trust-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.trust-stat {
  text-align: center;
  position: relative;
}
.trust-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.trust-stat__num {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.trust-stat__label {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-stat:not(:last-child)::after {
  background: var(--sand);
  opacity: 1;
}

/* ---------- TWO-COL SPLIT ---------- */
.split {
  display: grid;
  gap: calc(var(--grid-gap) * 1.5);
  align-items: center;
}
.split--55-45 { grid-template-columns: 55fr 45fr; }
.split--45-55 { grid-template-columns: 45fr 55fr; }
.split--60-40 { grid-template-columns: 60fr 40fr; }

.split__text h2 { margin-bottom: 1.5rem; }
.split__text p + p { margin-top: 1.25rem; }
.split__text p {
  color: var(--charcoal);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.split__text .link-arrow { margin-top: 2rem; }

.split__image {
  position: relative;
}
.split__image .image-placeholder {
  aspect-ratio: 3 / 4;
  border-left: 2px solid var(--sage);
}

/* ---------- SERVICE GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 2.25rem 1.75rem 1.75rem;
  border-radius: var(--border-radius);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.5s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--feature {
  background: var(--forest);
  color: var(--warm-white);
  border-color: var(--forest-light);
}
.service-card--feature::before { background: var(--gold); transform: scaleX(1); height: 4px; }
.service-card--feature .service-card__title { color: var(--warm-white); }
.service-card--feature .service-card__desc { color: rgba(255,255,255,0.78); }
.service-card--feature .service-card__link { color: var(--gold); }
.service-card--feature:hover .service-card__link { color: var(--gold-light); }
.service-card--feature:hover { border-color: var(--gold); }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--sage);
  box-shadow: 0 20px 40px -18px rgba(13,40,24,0.18);
}
.service-card__tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card__icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
  transition: transform 0.4s var(--ease-out-expo);
}
.service-card:hover .service-card__icon { transform: scale(1.15) rotate(-8deg); }
.service-card__title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-card__desc {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-card__link:hover { gap: 0.75rem; color: var(--gold); }

/* ---------- FEATURED PROJECTS (horizontal scroll) ---------- */
.projects-rail {
  display: flex;
  gap: var(--grid-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--section-padding-x) 1rem;
  margin: 0 calc(-1 * var(--section-padding-x));
  scrollbar-width: none;
}
.projects-rail::-webkit-scrollbar { display: none; }

.project-card {
  flex: 0 0 clamp(280px, 30vw, 420px);
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.project-card .image-placeholder {
  aspect-ratio: 4 / 3;
  transition: transform 0.6s var(--ease-out-expo);
}
.project-card:hover .image-placeholder { transform: scale(1.03); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,40,24,0.85) 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--warm-white);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--border-radius);
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__title {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--warm-white);
  margin-bottom: 0.25rem;
}
.project-card__meta {
  color: var(--gold);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Static label visible on all project cards */
.project-card__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(13,40,24,0.82);
  color: var(--gold);
  padding: 0.4rem 0.85rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
}

/* ---------- EDITORIAL HERO ---------- */
.hero--editorial {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 96px clamp(24px, 5vw, 64px) clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.hero--editorial .hero__content { display: none; }

.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 0.5rem;
  z-index: 2;
  position: relative;
}
.hero__meta-left, .hero__meta-right {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .hero__meta { font-size: 0.65rem; letter-spacing: 0.15em; }
  .hero__meta-right { display: none; }
}

.hero__mast {
  align-self: end;
  max-width: 960px;
  z-index: 2;
  position: relative;
  padding-top: 5rem;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero__kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}
.hero__mega {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 11vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--warm-white);
  margin: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
}
.hero__mega em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero__panel {
  align-self: end;
  justify-self: end;
  max-width: 340px;
  z-index: 2;
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 3rem;
}
.hero__panel-text {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.hero--editorial .hero__ctas {
  flex-direction: column;
  gap: 0.75rem;
  justify-content: flex-start;
}
.hero--editorial .btn { width: 100%; text-align: center; justify-content: center; }

/* On desktop position the panel to the right */
@media (min-width: 900px) {
  .hero--editorial {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 340px;
    column-gap: clamp(32px, 5vw, 80px);
  }
  .hero__meta { grid-column: 1 / -1; }
  .hero__mast { grid-column: 1; grid-row: 2; }
  .hero__panel { grid-column: 2; grid-row: 2; align-self: end; border-top: none; margin-top: 0; padding-top: 0; }
  .hero__panel::before {
    content: "Nº 01";
    display: block;
    font-family: "Lora", Georgia, serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
  }
}

/* ---------- EDITORIAL STATEMENT ---------- */
.statement {
  background: var(--cream);
  padding: clamp(100px, 18vw, 220px) clamp(24px, 8vw, 160px);
  position: relative;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(140,133,119,0.1) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.4;
}
.statement__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.statement__label {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.statement__quote {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 4.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  font-weight: 400;
  margin: 0 0 3rem;
}
.statement__quote em {
  font-style: italic;
  color: var(--forest);
}
.statement__sig {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.statement__dash {
  flex: 0 0 80px;
  height: 1px;
  background: var(--gold);
}
.statement__sig-text {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  color: var(--stone);
  font-size: 1.125rem;
}

/* ---------- WORK IN MOTION (video grid) ---------- */
.motion {
  background: var(--warm-white);
  padding: var(--section-padding-y) 0;
}
.motion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 100%;
  padding: 0 2px;
}
.motion-tile {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--forest);
  cursor: pointer;
}
.motion-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.motion-tile:hover video { transform: scale(1.05); }
.motion-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,40,24,0.9) 100%);
  pointer-events: none;
}
.motion-tile__label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  color: var(--warm-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .motion-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PILLARS (3-col value props) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--grid-gap) * 0.75);
}
.pillar {
  padding: 2.5rem 2rem 2rem;
  text-align: left;
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--border-radius);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.4s ease;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -35px rgba(13,40,24,0.3);
  border-color: var(--sage);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar__num {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-block;
  position: relative;
}
.pillar__num::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  right: -12px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.pillar h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pillar p {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.testimonial {
  background: var(--cream);
  padding: 3rem 2.25rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px -30px rgba(13,40,24,0.25);
  border: 1px solid rgba(232,224,212,0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(13,40,24,0.35);
}
.testimonial__quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.testimonial__text {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  flex-grow: 1;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.testimonial__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.75rem 0 1.25rem;
}
.testimonial__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.testimonial__meta {
  font-size: 0.8125rem;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- REVIEWS CTA (leave a google review) ---------- */
.reviews-cta {
  margin-top: 4rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-left: 4px solid var(--gold);
  border-radius: var(--border-radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.reviews-cta__stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.reviews-cta__text strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.reviews-cta__text span {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.55;
}
.reviews-cta .btn { white-space: nowrap; }
@media (max-width: 768px) {
  .reviews-cta { grid-template-columns: 1fr; text-align: center; }
  .reviews-cta .btn { width: 100%; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--forest);
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid rgba(196,163,90,0.15);
  border-bottom: 1px solid rgba(196,163,90,0.15);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-style: italic;
}
.marquee__dot {
  color: var(--gold);
  opacity: 0.6;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  background: var(--forest);
  padding: var(--section-padding-y) var(--section-padding-x);
  text-align: center;
  overflow: hidden;
}
.cta-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,40,24,0.7), rgba(13,40,24,0.85)),
    radial-gradient(circle at 1px 1px, rgba(196,163,90,0.08) 1px, transparent 0);
  background-size: auto, 32px 32px;
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-banner h2 {
  color: var(--warm-white);
  margin-bottom: 1.25rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}
.cta-banner__phone {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}
.cta-banner__phone a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.cta-banner__phone a:hover { border-bottom-color: var(--gold); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding: 5rem var(--section-padding-x) 2rem;
}
.footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: calc(var(--grid-gap) * 1.25);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(196,163,90,0.25);
}
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__brand-row { display: flex; align-items: center; gap: 0.9rem; }
.footer__brand .nav__logo { width: 44px; height: 44px; }
.footer__wordmark {
  color: var(--warm-white);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer__tagline {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  margin-top: 0.5rem;
}
.footer__mission {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 320px;
}

.footer__title {
  color: var(--warm-white);
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__list li { margin-bottom: 0.75rem; }
.footer__list a,
.footer__contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  display: inline-block;
}
.footer__list a:hover,
.footer__contact a:hover { color: var(--gold); }

.footer__contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer__contact-item {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer__contact-item strong {
  display: block;
  color: var(--warm-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- SERVICES PAGE — DETAIL BLOCKS ---------- */
.service-block {
  padding: calc(var(--section-padding-y) * 0.65) 0;
  border-bottom: 1px solid var(--sand);
}
.service-block:last-child { border-bottom: none; }
.service-block__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: calc(var(--grid-gap) * 1.5);
  align-items: center;
}
.service-block--reverse .service-block__inner {
  grid-template-columns: 55fr 45fr;
}
.service-block--reverse .service-block__text { order: -1; }

.service-block__image .image-placeholder {
  aspect-ratio: 4 / 3;
  border-left: 2px solid var(--sage);
}
.service-block__text h2 {
  margin: 0.75rem 0 1.25rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.service-block__desc {
  color: var(--charcoal);
  font-size: 1.0625rem;
  margin-bottom: 1.75rem;
  line-height: 1.8;
}
.service-block__list {
  margin-bottom: 2rem;
}
.service-block__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  font-size: 0.9375rem;
}
.service-block__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ---------- NEIGHBORHOODS WE SERVE ---------- */
.neighborhoods {
  background: var(--cream);
  padding: var(--section-padding-y) var(--section-padding-x);
}
.neighborhoods .container { max-width: 1200px; }
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 2rem;
}
.neighborhoods-col h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand);
}
.neighborhoods-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.neighborhoods-col li {
  padding: 0.55rem 0;
  color: var(--charcoal);
  font-size: 1rem;
  border-bottom: 1px dotted var(--sand);
  position: relative;
  padding-left: 1rem;
}
.neighborhoods-col li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.85rem;
}
.neighborhoods-col li:last-child { border-bottom: none; }
.neighborhoods__note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: var(--stone);
}
.neighborhoods__note a { color: var(--forest); border-bottom: 1px solid var(--gold); }
@media (max-width: 768px) {
  .neighborhoods-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- DISCREET MODE — FEATURED HOMEPAGE SECTION ---------- */
.discreet-feature {
  position: relative;
  padding: clamp(100px, 14vw, 180px) var(--section-padding-x);
  color: var(--warm-white);
  overflow: hidden;
  background: var(--forest);
}
.discreet-feature__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.discreet-feature__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.discreet-feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,40,24,0.75) 0%, rgba(13,40,24,0.9) 100%),
    radial-gradient(circle at 1px 1px, rgba(196,163,90,0.06) 1px, transparent 0);
  background-size: auto, 40px 40px;
}
.discreet-feature__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.discreet-feature__tag {
  display: inline-block;
  background: rgba(196,163,90,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.discreet-feature__kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}
.discreet-feature__headline {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  font-weight: 500;
  margin-bottom: 2rem;
}
.discreet-feature__headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.discreet-feature__lede {
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.82);
}
.discreet-feature__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(196,163,90,0.25);
  border-bottom: 1px solid rgba(196,163,90,0.25);
}
.discreet-feature__stats > div {
  text-align: center;
}
.discreet-feature__stats strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.discreet-feature__stats span {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.discreet-feature__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .discreet-feature__stats { grid-template-columns: 1fr; gap: 1rem; }
  .discreet-feature__ctas { flex-direction: column; }
  .discreet-feature__ctas .btn { width: 100%; }
}

/* ---------- DISCREET MODE (signature service section) ---------- */
.discreet {
  background: var(--forest);
  color: var(--warm-white);
  padding: clamp(100px, 14vw, 180px) var(--section-padding-x);
  position: relative;
  overflow: hidden;
}
.discreet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(196,163,90,0.08), transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(196,163,90,0.05) 1px, transparent 0);
  background-size: auto, 40px 40px;
  pointer-events: none;
}
.discreet__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.discreet__badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.discreet__kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.discreet__headline {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.discreet__headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.discreet__lede {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 4rem;
  color: rgba(255,255,255,0.82);
}
.discreet__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: left;
}
.discreet__feature {
  padding: 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,163,90,0.2);
  border-radius: var(--border-radius);
}
.discreet__feature-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.discreet__feature h3 {
  color: var(--warm-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.discreet__feature p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}
.discreet__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.discreet__note {
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .discreet__features { grid-template-columns: 1fr; }
}

/* ---------- PROCESS TIMELINE ---------- */
.process {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--forest);
  color: var(--warm-white);
}
.process__inner { max-width: var(--container-max); margin: 0 auto; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  position: relative;
  margin-top: 4rem;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(196,163,90,0.35);
  z-index: 0;
}
.process-step {
  text-align: left;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  transition: transform 0.4s var(--ease-out-expo), background 0.4s ease, color 0.4s ease;
  box-shadow: 0 0 0 6px var(--forest), 0 0 20px rgba(196,163,90,0.25);
}
.process-step:hover .process-step__num {
  transform: scale(1.08);
  background: var(--gold);
  color: var(--forest);
}
.process-step h3 {
  color: var(--warm-white);
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}
.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ---------- PORTFOLIO PAGE ---------- */
.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: var(--warm-white);
  border-bottom: 1px solid var(--sand);
  padding: 1rem var(--section-padding-x);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  overflow-x: auto;
}
.filter-btn {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--sand);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--forest);
  color: var(--warm-white);
  border-color: var(--forest);
}

.portfolio-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--grid-gap);
  padding: var(--section-padding-y) var(--section-padding-x);
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.5s var(--ease-out-expo);
}
.portfolio-card:hover { transform: scale(1.02); }
.portfolio-card .image-placeholder {
  width: 100%;
  height: 100%;
}
.portfolio-card--tall { grid-row: span 2; }

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,40,24,0.92) 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--warm-white);
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translateY(10px);
}
.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-card__cat {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.portfolio-card__title {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.625rem;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.portfolio-card__location {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.portfolio-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- BEFORE / AFTER — INTERACTIVE SLIDER ---------- */
.before-after {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--warm-white);
}
.before-after__inner { max-width: var(--container-max); margin: 0 auto; }

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--border-radius);
  user-select: none;
  background: var(--forest);
  margin-bottom: 1.5rem;
  cursor: ew-resize;
  box-shadow: 0 30px 60px -40px rgba(13,40,24,0.5);
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__after {
  z-index: 1;
}
.ba-slider__before {
  z-index: 2;
  clip-path: inset(0 var(--ba-inset, 50%) 0 0);
}
.ba-slider__tag {
  position: absolute;
  top: 1.25rem;
  z-index: 3;
  background: rgba(13,40,24,0.85);
  color: var(--gold);
  padding: 0.5rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--border-radius);
  backdrop-filter: blur(8px);
}
.ba-slider__tag--before { left: 1.25rem; }
.ba-slider__tag--after  {
  right: 1.25rem;
  background: var(--gold);
  color: var(--forest);
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% - var(--ba-inset, 50%));
  width: 2px;
  background: var(--gold);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15), 0 0 30px rgba(196,163,90,0.3);
}
.ba-slider__handle::after {
  content: "⇔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(13,40,24,0.4);
}
.ba-slider + .before-after__caption { margin-bottom: 3rem; }

.before-after__caption {
  text-align: center;
  margin-top: 0.5rem;
}
.before-after__caption strong {
  display: block;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  color: var(--charcoal);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.before-after__caption span {
  color: var(--stone);
  font-size: 0.9375rem;
}

/* ---------- INSTAGRAM CTA ---------- */
.ig-cta {
  background: var(--forest);
  padding: var(--section-padding-y) var(--section-padding-x);
  text-align: center;
  color: var(--warm-white);
}
.ig-cta__inner { max-width: var(--container-max); margin: 0 auto; }
.ig-cta__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}
.ig-cta__square {
  aspect-ratio: 1 / 1;
  transition: transform 0.4s ease;
}
.ig-cta__square:hover { transform: scale(1.03); }
.ig-cta__note {
  color: rgba(255,255,255,0.55);
  font-size: 0.8125rem;
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
}

/* ---------- ABOUT — STATS ---------- */
.stats-bar {
  background: var(--forest);
  padding: 4rem var(--section-padding-x);
}
.stats-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  text-align: center;
}
.stat-item__num {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-item__label {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Values (editorial) */
.values {
  display: grid;
  gap: calc(var(--grid-gap) * 1.25);
}
.value-row {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: var(--grid-gap);
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--sand);
}
.value-row:first-child { border-top: 1px solid var(--sand); }
.value-row__num {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.value-row__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
  margin: 0;
}
.value-row__desc {
  color: var(--stone);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ---------- SERVICE AREAS GRID ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 3rem auto 1.5rem;
}
.area-cell {
  padding: 2rem 1rem;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--charcoal);
  text-align: center;
  border-bottom: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  font-weight: 500;
  transition: color 0.3s ease, background 0.3s ease;
}
.area-cell:hover { color: var(--gold); background: var(--warm-white); }
.area-cell:nth-child(4n) { border-right: none; }
.area-cell:nth-last-child(-n+4) { border-bottom: none; }
.areas-note {
  text-align: center;
  color: var(--stone);
  font-style: italic;
  margin-top: 1rem;
}

/* ---------- CONTACT PAGE ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: calc(var(--grid-gap) * 1.5);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--border-radius);
  color: var(--charcoal);
  font-size: 0.9375rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { cursor: pointer; }
.contact-form__note {
  color: var(--stone);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.contact-card__label {
  font-size: 0.6875rem;
  color: var(--sage);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-card__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  color: var(--sage);
}
.contact-card__value {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.contact-card__value a { color: inherit; border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.contact-card__value a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact-card__sub {
  font-size: 0.875rem;
  color: var(--stone);
}

/* ---------- CONTACT PAGE — new simplified layout ---------- */
.reach-row {
  background: var(--warm-white);
  padding: clamp(40px, 5vw, 60px) var(--section-padding-x);
  border-bottom: 1px solid var(--sand);
}
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.reach-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, border-color 0.3s ease;
}
.reach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -30px rgba(13,40,24,0.3);
  border-left-color: var(--forest);
}
.reach-card__label {
  font-size: 0.6875rem;
  color: var(--sage);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.reach-card__value {
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  word-break: break-word;
}
.reach-card__sub {
  color: var(--stone);
  font-size: 0.85rem;
}

.booking-main {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) var(--section-padding-x);
}
.booking-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.booking-header h2 {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.booking-header p {
  color: var(--stone);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.booking-frame {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(13,40,24,0.25);
  min-height: 820px;
}
.booking-fallback {
  text-align: center;
  margin-top: 1.5rem;
}
.booking-fallback p {
  color: var(--stone);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-style: italic;
}

.detail-row {
  background: var(--warm-white);
  padding: clamp(60px, 8vw, 100px) var(--section-padding-x);
  border-top: 1px solid var(--sand);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
}
.detail-card {
  padding: 1.75rem 0;
  border-top: 1px solid var(--gold);
}
.detail-card__label {
  font-size: 0.6875rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.detail-card__value {
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.detail-card__sub {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .reach-grid, .detail-grid { grid-template-columns: 1fr; }
}

/* Map placeholder */
.map-section {
  position: relative;
  height: clamp(300px, 40vh, 450px);
  overflow: hidden;
  background: var(--forest);
}
.map-section .image-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.map-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,40,24,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.map-section__overlay h3 {
  color: var(--warm-white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-item__button {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}
.faq-item__button:hover { color: var(--gold); }
.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform 0.4s ease;
}
.faq-item__icon::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}
.faq-item__content {
  padding: 0 0 1.5rem 0;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 720px;
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.view-all-wrap { text-align: center; margin-top: 2.5rem; }
.view-all-wrap .link-arrow { color: var(--gold); border-color: var(--gold); }
.view-all-wrap .link-arrow:hover { color: var(--gold-light); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 560px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 0; }
  .pillar:not(:last-child)::after {
    right: auto; left: 10%; top: auto; bottom: 0;
    width: 80%; height: 1px;
  }
  .pillar { padding: 2rem 0; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid .area-cell:nth-child(4n) { border-right: 1px solid var(--sand); }
  .areas-grid .area-cell:nth-child(2n) { border-right: none; }
  .areas-grid .area-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--sand); }
  .areas-grid .area-cell:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--forest); flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; padding: 2rem; z-index: 9999; }
  .nav__menu.is-open { display: flex; }
  .nav__menu .nav__link { font-size: 1.25rem; letter-spacing: 0.2em; }
  .nav__menu .nav__cta { padding: 1rem 2rem; font-size: 0.9375rem; }
  .nav__toggle { display: block; z-index: 10000; }

  /* iOS Safari: iframes create their own compositing layer that can
     paint on top of the nav overlay regardless of z-index. Hide them
     when the menu is open so nothing bleeds through. */
  body.menu-open iframe,
  body.menu-open video,
  body.menu-open .hero__bg,
  body.menu-open .booking__frame-wrap { visibility: hidden; }

  .trust-strip__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .trust-stat:nth-child(2n)::after { display: none; }

  .split, .split--55-45, .split--45-55, .split--60-40 {
    grid-template-columns: 1fr;
  }
  .split__text { order: 2; }
  .split__image { order: 1; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .portfolio-card { aspect-ratio: 4 / 3; }
  .portfolio-card--tall { grid-row: span 1; aspect-ratio: 4/3; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block__inner, .service-block--reverse .service-block__inner { grid-template-columns: 1fr; }
  .service-block--reverse .service-block__text { order: 0; }
  .service-block__image { order: -1; }

  .process__steps { grid-template-columns: 1fr; gap: 2rem; }

  .before-after__pair { grid-template-columns: 1fr; }

  .ig-cta__row { grid-template-columns: 1fr 1fr; }

  .stats-bar__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; gap: 1.25rem; }

  .value-row { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.5rem 0; }

  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .filter-bar { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .btn { padding: 1rem 1.75rem; font-size: 0.9375rem; width: 100%; min-height: 48px; }
  .hero__subtitle { font-size: 1rem; }
  .nav__wordmark { font-size: 0.8125rem; letter-spacing: 0.15em; }

  /* iPhone readability bumps for small uppercase text */
  .label { font-size: 0.8125rem; }
  .footer__title { font-size: 0.875rem; }
  .footer__mission { font-size: 0.9375rem; }
  .footer__bottom { font-size: 0.875rem; }
  .testimonial__meta { font-size: 0.875rem; }
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  pointer-events: none;
}

/* ---------- SECTION ORNAMENT DIVIDER ---------- */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  max-width: 240px;
  margin: 0 auto;
}
.section-ornament::before,
.section-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sand);
}
.section-ornament__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(196,163,90,0.15);
}

/* ---------- REDUCE MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
