/* ==========================================================================
   cleaned it. — luxury cleaning landing page
   Static CSS. Light + dark themes via [data-theme] on <html>.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 800px;
  --pad-x: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 10vw, 130px);
  --section-y-sm: clamp(64px, 8vw, 120px);

  --transition: 180ms ease;
}

/* ---- Light theme (default) ---- */
[data-theme='light'] {
  --bg: #fbfaf8;
  --bg-alt: #f3f0ea;
  --bg-invert: #16150f;
  --surface: #fbfaf8;
  --surface-invert: #16150f;

  --text: #16150f;
  --text-body: #3d3a32;
  --text-soft: #57534a;
  --text-muted: #7a7466;
  --text-on-invert: #fbfaf8;
  --text-on-invert-soft: #cfcabf;

  --accent: #9c7c3c;
  --accent-invert: #b99a5c;

  --line: #e8e4dc;
  --line-invert: #3a362c;
  --line-field: #4a463c;
  --line-footer: #2c2920;

  --selection: #e9dfc9;
  --header-bg: rgba(251, 250, 248, 0.92);
  --shadow-bar: 0 -8px 30px rgba(22, 21, 15, 0.25);
}

/* ---- Dark theme ---- */
[data-theme='dark'] {
  --bg: #12110d;
  --bg-alt: #17160f;
  --bg-invert: #0b0a07;
  --surface: #22201a;
  --surface-invert: #0b0a07;

  --text: #f4f2ec;
  --text-body: #d6d2c6;
  --text-soft: #b8b3a5;
  --text-muted: #918b7c;
  --text-on-invert: #f4f2ec;
  --text-on-invert-soft: #c2bdb0;

  --accent: #cba765;
  --accent-invert: #cba765;

  --line: #2e2c24;
  --line-invert: #35322a;
  --line-field: #4a463c;
  --line-footer: #2c2920;

  --selection: #3d3524;
  --header-bg: rgba(18, 17, 13, 0.92);
  --shadow-bar: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  /* Chrome's scroll anchoring nudges the scroll position when content
     above the viewport changes size. That fights the inertia loop. */
  overflow-anchor: none;
}

/* `.force-motion` is the ?motion=on preview override. Without it, an OS
   reduced-motion setting strips every animation on the page. */
@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) { scroll-behavior: auto; }
  html:not(.force-motion) *,
  html:not(.force-motion) *::before,
  html:not(.force-motion) *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   1b. Scroll reveals
   The `reveal-ready` class is added by script.js, so if JavaScript never
   runs the content simply shows as normal rather than staying invisible.
   -------------------------------------------------------------------------- */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 1000ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-ready [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* Imagery wipes open from the top rather than fading — slower, and it
   reads as a deliberate reveal rather than a page still loading. */
.reveal-ready [data-reveal-wipe] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal-ready [data-reveal-wipe].in-view {
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready:not(.force-motion) [data-reveal],
  html.reveal-ready:not(.force-motion) [data-reveal-wipe] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

html.nav-open, body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--text); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; }

::selection { background: var(--selection); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--bg);
  color: var(--text);
  padding: 12px 20px;
  border: 1px solid var(--accent);
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}
.container-narrow { max-width: calc(var(--container-narrow) + var(--pad-x) * 2); }

.section { padding-block: var(--section-y); }
.section-tight { padding-block: 0 var(--section-y); }

.rule-top {
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 8vw, 100px);
}

.section-dark {
  background: var(--bg-invert);
  color: var(--text-on-invert);
}
.section-dark .eyebrow { color: var(--text-on-invert-soft); }
.section-dark .lead { color: var(--text-on-invert-soft); }

.section-alt { background: var(--bg-alt); }

.center { text-align: center; }

/* Gold is reserved for four moments only — the logo mark, the hero
   eyebrow, the process step numbers, and the FAQ indicators. Everything
   else is neutral; restraint is what reads as expensive. */
.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}
.eyebrow-gold { color: var(--accent-invert); }

.section-title {
  margin: 0 0 clamp(40px, 6vw, 72px);
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.15;
  text-wrap: pretty;
}

h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.15;
  text-wrap: pretty;
}

.lead {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}

.accent { color: var(--accent); }
.section-dark .accent, .site-footer .accent { color: var(--accent-invert); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn-solid { background: var(--text); color: var(--bg); }
.btn-solid:hover { background: var(--accent); color: var(--bg); }

.btn-outline { border-color: var(--text); color: var(--text); background: none; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-light { background: var(--text-on-invert); color: var(--bg-invert); border: none; }
.btn-light:hover { background: var(--accent-invert); color: var(--bg-invert); }

.btn-outline-light {
  border-color: rgba(251, 250, 248, 0.55);
  color: #fbfaf8;
  background: none;
}
.btn-outline-light:hover { border-color: #fbfaf8; background: rgba(251, 250, 248, 0.08); color: #fbfaf8; }

.btn-ghost {
  background: none;
  border: 1px solid var(--line-field);
  color: var(--text-on-invert-soft);
  padding: 12px 28px;
  font-size: 12px;
}
.btn-ghost:hover { border-color: var(--accent-invert); color: var(--accent-invert); }

.btn-sm { padding: 11px 26px; font-size: 12px; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color var(--transition), border-color var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  flex: none;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { display: block; }

[data-theme='light'] .icon-moon { display: none; }
[data-theme='dark'] .icon-sun { display: none; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  flex: none;
}
.menu-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero — full-bleed editorial
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 84vh;
  min-height: 84svh;
  padding-block: clamp(80px, 11vw, 130px) clamp(56px, 9vw, 110px);
  overflow: hidden;
  isolation: isolate;
  color: #fbfaf8;
}

/* Placeholder stand-in. Replace with a real photo:
   .hero-media { background-image: url('images/hero.jpg'); } */
.hero-media {
  position: absolute;
  /* Extra height above the fold so the parallax drift never exposes
     a gap at the top of the hero. */
  top: -32%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(120% 90% at 70% 20%, #3a352a 0%, #201e17 45%, #14130e 100%);
  background-size: cover;
  background-position: center;
}
.hero-media .media-label { color: rgba(251, 250, 248, 0.35); }

.hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keeps type legible over any photograph. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(11, 10, 7, 0.88) 0%,
    rgba(11, 10, 7, 0.55) 42%,
    rgba(11, 10, 7, 0.22) 72%,
    rgba(11, 10, 7, 0.38) 100%
  );
}

.hero-content { position: relative; }

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

.hero-title {
  margin: 0;
  font-size: clamp(42px, 7.4vw, 96px);
  line-height: 1.02;
  max-width: 15ch;
  text-wrap: pretty;
  color: #fbfaf8;
}

.hero-sub {
  margin: clamp(24px, 4vw, 34px) 0 0;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
  max-width: 50ch;
  color: rgba(251, 250, 248, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(32px, 5vw, 46px);
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(56px, 9vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 250, 248, 0.6);
}
.hero-scroll:hover { color: #fbfaf8; }
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(251, 250, 248, 0.6), rgba(251, 250, 248, 0));
}

/* --------------------------------------------------------------------------
   7. Media placeholders (swap for real <img>)
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 20px;
  text-align: center;
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  overflow: hidden;
}
[data-theme='dark'] .media { background: var(--surface); }

.media-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.media-hero { height: clamp(240px, 45vw, 520px); }
.media-round { border-radius: 50%; aspect-ratio: 1; min-height: 0; }

/* --------------------------------------------------------------------------
   8. Split sections (About / Areas / Contact)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.split-about { grid-template-columns: 1fr 1.4fr; }
.split-areas { grid-template-columns: 1fr 1.4fr; }
.split-contact { grid-template-columns: 1fr 1.2fr; }

.split-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
}
.split-body p { margin: 0 0 20px; }
.split-body p:last-of-type { margin-bottom: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
}
.stat-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  color: var(--text);
}
.stat-label {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-invert);
  border: 1px solid var(--line-invert);
}

.service-card {
  background: var(--bg-invert);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
}
.card-num {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.service-card h3 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3.5vw, 32px);
}
.card-copy {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-on-invert-soft);
}
.tick-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: var(--text-on-invert-soft);
}
.tick-list li {
  padding-left: 20px;
  border-left: 1px solid var(--line-field);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9b. Method / process
   -------------------------------------------------------------------------- */
.method-head { max-width: 62ch; margin-bottom: clamp(48px, 7vw, 84px); }
.method-head .section-title { margin-bottom: 0; }
.method-head .lead { margin-top: 24px; }

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(32px, 4.5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
}

.step-body h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 30px);
}
.step-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   9c. Discretion / trust
   -------------------------------------------------------------------------- */
.split-discretion { grid-template-columns: 1fr 1.3fr; }

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.trust-item {
  padding: clamp(26px, 3.5vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}
.trust-item:first-child { padding-top: 0; }
.trust-item:last-child { border-bottom: none; padding-bottom: 0; }

.trust-item h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2.6vw, 25px);
}
.trust-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 58ch;
}

.section-dark .trust-item { border-bottom-color: var(--line-invert); }
.section-dark .trust-item p { color: var(--text-on-invert-soft); }

/* --------------------------------------------------------------------------
   10. Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(200px, 24vw, 300px);
  gap: 20px;
}
.gallery-wide { grid-column: span 2; }

/* --------------------------------------------------------------------------
   11. Areas
   -------------------------------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.area-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px);
}
.area-card h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
}
.area-region {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Reviews
   -------------------------------------------------------------------------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* No star ratings — that's an e-commerce signal. The quote stands alone. */
.review {
  margin: 0;
  background: var(--surface);
  padding: clamp(36px, 4.5vw, 48px) clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: 1px solid var(--line);
}
.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.5;
  font-style: italic;
  color: var(--text);
}
.review figcaption {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Team
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
/* One member: centre a single, larger portrait rather than stranding
   it in the left cell of a four-column grid. */
.team-grid.team-solo {
  grid-template-columns: minmax(0, 300px);
  justify-content: center;
}
.team-grid.team-solo .member { gap: 26px; }
.team-grid.team-solo .member h3 { font-size: clamp(24px, 3vw, 30px); }

.member { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.member h3 { margin: 0; font-size: clamp(20px, 2.5vw, 24px); text-align: center; }
.member-role {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   14. FAQ accordion
   -------------------------------------------------------------------------- */
.accordion { display: grid; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-heading { margin: 0; font-family: inherit; font-weight: inherit; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  text-align: left;
  color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
  line-height: 1;
  flex: none;
}

.faq-a p {
  margin: 0;
  padding: 0 4px 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   15. Contact / form
   -------------------------------------------------------------------------- */
.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-on-invert-soft);
}
.contact-details p { margin: 0; }
.contact-details a { color: var(--text-on-invert-soft); }
.contact-details a:hover { color: var(--accent-invert); }
.detail-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 0;
}
.field-full { grid-column: 1 / -1; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-field);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 16px; /* 16px prevents iOS zoom-on-focus */
  font-weight: 300;
  color: var(--text-on-invert);
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition);
}
.field textarea { resize: vertical; }
.field select { background: var(--bg-invert); color: var(--text-on-invert); }
.field select option { background: var(--bg-invert); color: var(--text-on-invert); }

.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--accent-invert); }

.field input:user-invalid { border-bottom-color: #c96a4f; }

.form-submit { grid-column: 1 / -1; justify-self: start; padding: 16px 44px; }

/* Honeypot — off-screen rather than display:none, since some bots skip
   fields that are explicitly hidden. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-on-invert-soft);
  min-height: 1em;
}
.form-note.is-error { color: #e0906f; }

.form-submit[disabled] { opacity: 0.55; cursor: default; }
.form-submit[disabled]:hover { background: var(--text-on-invert); }

.form-success {
  border: 1px solid var(--line-field);
  padding: clamp(40px, 6vw, 64px) clamp(28px, 4vw, 48px);
  text-align: center;
}
.success-copy {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 30px);
  line-height: 1.4;
  color: var(--text-on-invert);
}
.form-success .btn { margin-top: 32px; }

/* --------------------------------------------------------------------------
   16. Discreet enquire mark
   A full-width sticky bar is a conversion tactic and reads as pressure.
   This is a small, quiet mark in the corner instead.
   -------------------------------------------------------------------------- */
.enquire-mark {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: calc(clamp(16px, 3vw, 32px) + env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  background: var(--bg-invert);
  color: var(--text-on-invert);
  border: 1px solid var(--accent-invert);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 10px 34px rgba(11, 10, 7, 0.28);
  transition:
    background-color var(--transition),
    color var(--transition),
    opacity 500ms ease,
    transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.enquire-mark:hover {
  background: var(--accent-invert);
  color: var(--bg-invert);
}
.enquire-mark[hidden] { display: none; }

/* Fades up rather than snapping in. */
.enquire-mark.is-entering { opacity: 0; transform: translateY(12px); }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-invert);
  color: var(--text-muted);
  border-top: 1px solid var(--line-footer);
  padding-block: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
}
.footer-inner p { margin: 0; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-on-invert);
}

/* --------------------------------------------------------------------------
   18. Responsive breakpoints
   -------------------------------------------------------------------------- */

/* --- Laptop / small desktop --- */
@media (max-width: 1024px) {
  .split-about,
  .split-areas,
  .split-contact,
  .split-discretion { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }
  .lead { max-width: 60ch; }
}

/* --- Tablet: switch to mobile nav --- */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  /* backdrop-filter would make the header a containing block for the
     fixed-position menu panel, trapping it inside the header box. */
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--bg);
  }

  /* Keep the header bar (logo, theme toggle, close button) above the scrim.
     The panel lives inside this element, so it stays clickable too. */
  .nav-inner {
    position: relative;
    z-index: 56;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 88px 28px calc(32px + env(safe-area-inset-bottom));
    background: var(--bg);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 260ms ease, visibility 260ms ease;
    z-index: 55;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a {
    display: block;
    padding: 18px 2px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 54;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
}

/* Above the mobile breakpoint the panel is a plain inline nav again. */
@media (min-width: 901px) {
  .nav-links { visibility: visible; }
  .nav-scrim { display: none; }
}

/* --- Tablet portrait --- */
@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }

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

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 34vw, 240px);
    gap: 14px;
  }
  .gallery-wide { grid-column: span 2; }

  .quote-form { grid-template-columns: 1fr; gap: 20px; }
  .form-submit { justify-self: stretch; }

  .footer-inner { flex-direction: column; gap: 16px; }

  .process-step { grid-template-columns: 1fr; gap: 14px; }
  .step-num { font-size: 30px; }

  .enquire-mark { padding: 13px 22px; font-size: 11px; }
}

/* --- Mobile --- */
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .area-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .member .media-round { max-width: 220px; margin: 0 auto; }

  .gallery { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .review blockquote { font-size: 19px; }
  .faq-q { gap: 16px; }

  .hero { min-height: 92vh; min-height: 92svh; padding-top: 120px; }
  .hero-scroll { display: none; }
}

/* --- Very small phones --- */
@media (max-width: 380px) {
  .nav-actions { gap: 8px; }
  .logo { font-size: 20px; }
}

/* --- Landscape phones: trim vertical rhythm --- */
@media (max-height: 480px) and (orientation: landscape) {
  :root { --section-y: 56px; --section-y-sm: 48px; }
}
@media (max-height: 480px) and (orientation: landscape) and (max-width: 900px) {
  .nav-links { padding-top: 64px; }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .enquire-mark, .theme-toggle, .menu-toggle, .skip-link,
  .hero-scroll { display: none !important; }
  .hero { min-height: 0; color: #000; }
  .hero-media, .hero-scrim { display: none; }
  .hero-title, .hero-sub { color: #000; }
  body { background: #fff; color: #000; }
  .section, .section-tight { padding-block: 24px; }
  .media { display: none; }
}
