/* ==========================================================================
   Respaced — respaced.co
   Single-page site. Plain CSS, no build step.
   Sections: tokens · base · buttons · header · hero · trust · spaces ·
             services · process · work · about · pricing · reviews · strip ·
             faq · quote · footer · lightbox · motion · responsive
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --green-900: #1d2721;
  --green-850: #202b24;
  --green-800: #26332c;
  --green-700: #33453b;

  --sage-400: #a9c3a2;
  --sage-300: #c6d8be;
  --sage-100: #e4ecdf;

  --cream: #f6f4ef;
  --cream-2: #f1eee6;
  --white: #ffffff;

  --ink: #232520;
  --ink-70: #5c5f57;
  --muted: #767970;
  --line: #e3dfd5;
  --line-dark: rgba(255, 255, 255, 0.16);

  --star: #b9cdb0;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 2px;

  --section-y: clamp(64px, 9vw, 128px);

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

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }

::selection { background: var(--sage-300); color: var(--green-900); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--sage-300); color: var(--green-900);
  padding: 10px 18px; font-size: 13px; font-weight: 500;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

/* keep anchored sections clear of the fixed header */
[id] { scroll-margin-top: 92px; }

/* ---------- type scale ---------- */
.h2 {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.lede {
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  color: var(--ink-70);
  max-width: 46ch;
}
.lede.center { margin-inline: auto; text-align: center; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.section-head { margin-bottom: clamp(40px, 5vw, 68px); }
.section-head .h2 { max-width: 22ch; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.stars { color: var(--star); letter-spacing: 0.12em; }

.arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.btn:hover .arrow, .link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  --btn-bd: currentColor;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { --btn-bg: var(--sage-300); --btn-fg: var(--green-900); --btn-bd: var(--sage-300); }
.btn-primary:hover { --btn-bg: var(--sage-100); --btn-bd: var(--sage-100); }

.btn-outline { --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.5); }
.btn-outline:hover { --btn-bg: rgba(255,255,255,0.1); --btn-bd: #fff; }

.btn-outline-dark { --btn-fg: var(--ink); --btn-bd: #cfcabd; }
.btn-outline-dark:hover { --btn-bg: var(--green-900); --btn-fg: #fff; --btn-bd: var(--green-900); }

.btn-ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.45); padding: 13px 22px; }
.btn-ghost:hover { --btn-bg: var(--sage-300); --btn-fg: var(--green-900); --btn-bd: var(--sage-300); }

.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.link-arrow:hover { border-color: var(--ink); }

/* ---------- wordmark ---------- */
.wordmark {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--green-900);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 10px 30px rgba(0,0,0,0.18); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }

.nav-list { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }
.nav-list a {
  position: relative;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding-block: 6px;
  transition: color 0.2s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--sage-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-list a:hover, .nav-list a.is-active { color: #fff; }
.nav-list a:hover::after, .nav-list a.is-active::after { transform: scaleX(1); }

.nav-toggle { display: none; width: 44px; height: 44px; margin-right: -10px; }
.nav-toggle-bars { display: block; position: relative; width: 22px; height: 12px; margin-inline: auto; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: #fff; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle-bars span:first-child { top: 0; }
.nav-toggle-bars span:last-child { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:first-child { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:last-child { transform: translateY(-5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  background: var(--green-900);
  color: #fff;
  padding-top: 76px;
}

.hero-panel {
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 116px) clamp(24px, 3vw, 48px) clamp(64px, 9vw, 124px)
           max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}
.hero-copy { max-width: 37rem; }

.hero-title {
  font-size: clamp(2.5rem, 4.55vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.hero-title em { font-style: normal; color: var(--sage-400); }

.hero-lede {
  margin-top: 26px;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  color: rgba(255,255,255,0.74);
  max-width: 34ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.rating .stars { font-size: 14px; }

.hero-media { position: relative; min-height: clamp(320px, 46vw, 640px); overflow: hidden; }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- trust bar ---------- */
.trust { background: var(--cream-2); padding-block: clamp(44px, 5vw, 68px); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  text-align: center;
  padding-inline: clamp(12px, 2vw, 30px);
  border-left: 1px solid rgba(0,0,0,0.08);
}
.trust-item:first-child { border-left: 0; }
.trust-item .icon { width: 30px; height: 30px; margin: 0 auto 18px; color: var(--green-800); }
.trust-item h3 {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.trust-item p { font-size: 13px; line-height: 1.6; color: var(--muted); max-width: 24ch; margin-inline: auto; }

/* ---------- spaces / transform ---------- */
.spaces { background: var(--cream); }
.spaces-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(36px, 4.5vw, 68px);
  align-items: center;
}
.spaces-copy .lede { margin-top: 22px; }
.spaces-copy .btn { margin-top: 34px; }

.spaces-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.space-card-media { overflow: hidden; background: var(--cream-2); }
.space-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.space-card:hover .space-card-media img { transform: scale(1.045); }
.space-card h3 { margin-top: 20px; font-size: 17px; font-weight: 500; }
.space-card p { margin-top: 6px; font-size: 14px; color: var(--muted); }
.space-card .link-arrow { margin-top: 16px; }

/* ---------- services ---------- */
.services { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.service-card {
  padding: clamp(28px, 3vw, 42px) clamp(22px, 2.6vw, 38px);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}
.service-grid .service-card:nth-child(3n) { border-right: 0; }
.service-card:hover { background: var(--cream); }
.service-index {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage-400);
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.service-card p { font-size: 14.5px; color: var(--ink-70); max-width: 34ch; }

/* ---------- process ---------- */
.process { background: var(--green-900); color: #fff; }
.process .eyebrow { color: var(--sage-400); }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.process-list li { border-top: 1px solid var(--line-dark); padding-top: 24px; }
.process-list .step {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage-400);
  margin-bottom: 16px;
}
.process-list h3 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 8px; }
.process-list p { font-size: 14px; color: rgba(255,255,255,0.66); }

/* ---------- work ---------- */
.work { background: var(--cream); }
.work-filters { display: flex; gap: 8px; }
.filter {
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.filter:hover { color: var(--ink); border-color: #cfcabd; }
.filter.is-active { background: var(--green-900); border-color: var(--green-900); color: #fff; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
.work-item { margin: 0; }
.work-item.is-hidden { display: none; }
.work-open {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--cream-2);
}
.work-open img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work-open::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,28,23,0.72) 0%, rgba(20,28,23,0.1) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-open:hover img { transform: scale(1.05); }
.work-open:hover::after, .work-open:focus-visible::after { opacity: 1; }
.work-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px;
  text-align: left;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.work-open:hover .work-meta, .work-open:focus-visible .work-meta { opacity: 1; transform: none; }
.work-meta strong { font-size: 15px; font-weight: 500; }
.work-meta span { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ---------- about ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}
.about-copy p + p { margin-top: 18px; }
.about-copy .lede { margin-top: 24px; }
.about-copy > p:not(.lede):not(.eyebrow) { font-size: 15px; color: var(--ink-70); max-width: 52ch; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stats dt { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.stats dd {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stats dd span { color: var(--sage-400); }

/* ---------- pricing ---------- */
.pricing { background: var(--cream); }
.pricing .section-head { text-align: center; }
.pricing .section-head .h2 { max-width: 24ch; margin-inline: auto; }
.pricing .eyebrow { margin-bottom: 16px; }
.pricing .lede { margin-top: 20px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(29,39,33,0.35); }
.price-card.is-featured { background: var(--green-900); border-color: var(--green-900); color: #fff; }
.price-card h3 { font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.price-card .price {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
.price-card .from {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-card.is-featured .from { color: var(--sage-400); }
.badge {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--sage-300);
  color: var(--green-900);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.ticks { display: grid; gap: 12px; font-size: 14.5px; color: var(--ink-70); }
.price-card.is-featured .ticks { color: rgba(255,255,255,0.78); }
.ticks li { position: relative; padding-left: 24px; }
.ticks li::before {
  content: "";
  position: absolute; left: 2px; top: 8px;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--sage-400);
  border-bottom: 1.5px solid var(--sage-400);
  transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-card.is-featured .btn-outline-dark { --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.45); }
.price-note {
  margin-top: 28px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- reviews ---------- */
.reviews { background: var(--white); }
.reviews .section-head { text-align: center; }
.reviews .section-head .h2 { margin-inline: auto; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}
.review-card {
  background: var(--cream);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-card .stars { color: #93ad8b; font-size: 14px; }
.review-card p { font-size: clamp(1rem, 1.2vw, 1.075rem); line-height: 1.6; letter-spacing: -0.01em; }
.review-card footer {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-card footer span { font-weight: 400; color: var(--muted); }
.review-card footer span::before { content: "· "; }

/* ---------- dark strip ---------- */
.strip { background: var(--green-900); color: #fff; padding-block: clamp(40px, 5vw, 60px); }
.strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.strip-quote { position: relative; max-width: 46ch; }
.strip-quote p { font-size: clamp(0.98rem, 1.25vw, 1.1rem); line-height: 1.6; color: rgba(255,255,255,0.9); }
.strip-quote footer { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }

.strip-logos {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 52px);
  flex-wrap: wrap;
}
.strip-logos li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.9);
  filter: grayscale(1);
}
.logo-sub { font-size: 10px; font-weight: 400; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }
.logo-google { font-weight: 400; letter-spacing: -0.03em; }
.logo-which span:first-child { font-weight: 600; }

/* ---------- faq ---------- */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 5vw, 80px);
}
.faq-grid .lede { margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 500;
  letter-spacing: -0.012em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after,
.faq-item summary::before {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--green-800);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
/* horizontal bar */
.faq-item summary::before {
  right: 6px;
  width: 15px; height: 1.5px;
  margin-top: -0.75px;
}
/* vertical bar — centred on the horizontal one, hidden when open */
.faq-item summary::after {
  right: 12.75px;
  width: 1.5px; height: 15px;
  margin-top: -7.5px;
}
.faq-item[open] summary::after { transform: rotate(90deg); opacity: 0; }
.faq-body { padding-bottom: 24px; }
.faq-body p { font-size: 15px; color: var(--ink-70); max-width: 58ch; }

/* ---------- quote ---------- */
.quote {
  background: var(--green-900);
  color: #fff;
  padding-block: var(--section-y);
}
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.quote-copy .lede { margin-top: 22px; color: rgba(255,255,255,0.72); }

.quote-contact { margin-top: 40px; display: grid; gap: 2px; }
.quote-contact li {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
}
.quote-contact li:last-child { border-bottom: 1px solid var(--line-dark); }
.quote-contact span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.quote-contact a { font-size: clamp(1rem, 1.3vw, 1.1rem); letter-spacing: -0.015em; }
.quote-contact a:hover { color: var(--sage-400); }
.quote-contact a[aria-disabled="true"] { pointer-events: none; }

.quote-form {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-dark);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.field .opt { text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.4); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23ffffff' stroke-opacity='.6' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field select option { color: #1d2721; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.34); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage-400);
  background: rgba(0,0,0,0.28);
}
.field input.has-error, .field textarea.has-error { border-color: #e2a08f; }
.error { font-size: 12px; color: #e8b2a3; min-height: 0; }
.error:empty { display: none; }

.quote-form .btn { margin-top: 6px; }
.form-status { font-size: 13.5px; color: var(--sage-400); }
.form-status:empty { display: none; }
.form-status.is-error { color: #e8b2a3; }
.form-small { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ---------- footer ---------- */
.site-footer { background: var(--green-850); color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 6vw, 90px);
  padding-block: clamp(48px, 6vw, 76px);
}
.footer-brand p { margin-top: 20px; font-size: 14px; max-width: 40ch; line-height: 1.7; }
.footer-nav { display: flex; gap: clamp(40px, 6vw, 90px); }
.footer-nav h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-nav ul { display: grid; gap: 10px; }
.footer-nav a { font-size: 14px; transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: var(--sage-400); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  color: rgba(255,255,255,0.42);
}

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(15,20,17,0.92); animation: fade 0.25s var(--ease); }
.lightbox-inner {
  position: relative;
  width: min(1100px, 92vw);
  animation: pop 0.3s var(--ease);
}
.lightbox-inner img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  margin-inline: auto;
}
.lightbox-caption { margin-top: 14px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.7); }
.lightbox-close {
  position: absolute; top: -46px; right: 0;
  width: 40px; height: 40px;
  font-size: 30px; line-height: 1;
  color: #fff;
}
.lightbox-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 34px; line-height: 1;
  color: #fff;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s var(--ease);
}
.lightbox-nav:hover { background: rgba(0,0,0,0.55); }
.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }
body.is-locked { overflow: hidden; }

@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(0.97); } }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--sage-300);
  color: var(--green-900);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
}

/* ---------- reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid .service-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-grid .service-card:nth-child(2n) { border-right: 0; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}

@media (max-width: 940px) {
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--green-900);
    border-top: 1px solid var(--line-dark);
    padding: 8px var(--gutter) 28px;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: 16px 0; font-size: 13px; border-bottom: 1px solid var(--line-dark); }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: 22px; justify-content: center; }
  .nav-toggle { display: block; }

  .hero { grid-template-columns: 1fr; }
  .hero-panel { padding: clamp(48px, 10vw, 76px) var(--gutter) clamp(52px, 10vw, 72px); }
  .hero-copy { max-width: none; }
  .hero-media { min-height: 0; }
  .hero-media img { position: static; aspect-ratio: 4 / 3; }

  .spaces-grid,
  .about-grid,
  .faq-grid,
  .quote-grid,
  .footer-inner { grid-template-columns: 1fr; }

  .about-media { order: 2; }
  .about-media img { aspect-ratio: 4 / 3; }
  .strip-inner { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.is-featured { order: -1; }
  .review-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .footer-nav { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid .service-card { border-right: 0 !important; }
  .work-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .spaces-cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section-head-row { align-items: flex-start; }
  .work-filters { width: 100%; }
  .filter { flex: 1; padding-inline: 10px; }
  .stats { grid-template-columns: 1fr; gap: 22px; }
  .stats dd { font-size: 1.6rem; }
  .work-meta { opacity: 1; transform: none; }
  .work-open::after { opacity: 1; }
  .mobile-cta { display: flex; }
  .quote { padding-bottom: calc(var(--section-y) + 40px); }
  .site-footer { padding-bottom: 60px; }
}
