/* ============================================== */
/* EXOTIC PAVERS & LANDSCAPING — shared site CSS    */
/* Multi-page architecture. Loaded by every page.   */
/* ============================================== */

:root {
  --white: #FFFFFF;
  --bone: #F1EFEA;
  --bone-soft: #F7F5F0;
  --bone-warm: #ECE7D8;
  --charcoal: #1A1A1A;
  --slate: #5A5A5A;
  --pencil: #8A8985;
  --leaf: #2D5435;
  --leaf-soft: #4A7252;
  --leaf-deep: #1F2D24;
  --rule: rgba(26, 26, 26, 0.14);
  --rule-strong: rgba(26, 26, 26, 0.32);
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0; padding: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

.font-display { font-family: "Cormorant Garamond", Georgia, serif; }
.font-display-italic { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; }

.eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pencil);
}

/* ============================================== */
/* NAV — defaults to white-scrim (inner pages).    */
/* On home (body.has-cover-hero) the nav starts    */
/* dark-transparent over the cover photo and       */
/* swaps to white-scrim once .scrolled is set.     */
/* ============================================== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.3s ease;
}
.nav-brand:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
}
.nav-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.nav-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--charcoal);
  transition: color 0.3s ease;
}
.nav-wordmark span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 2px;
  transition: color 0.3s ease;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--leaf); }
.nav-links a:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
  color: var(--leaf);
}

/* PRIMARY nav link — Services. Always visible.    */
/* Distinguished by weight + a subtle leaf rule.   */
.nav-link-primary {
  position: relative;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}
.nav-link-primary::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--leaf);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-link-primary:hover::after,
.nav-link-primary.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ACTIVE state — current page. */
.nav-links a.active { color: var(--leaf); }
.nav-cta.active { background: var(--leaf-deep); border-color: var(--leaf-deep); }

.nav-cta {
  padding: 10px 20px;
  background: var(--leaf);
  color: var(--white) !important;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--leaf);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover {
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
  color: var(--white) !important;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--leaf-deep);
  outline-offset: 3px;
}

/* COVER-HERO override — only on home, only before scroll */
body.has-cover-hero nav.site-nav:not(.scrolled) {
  background: rgba(15, 22, 17, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-brand { color: var(--white); }
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-mark { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22); }
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-wordmark { color: var(--white); }
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-wordmark span { color: rgba(255, 255, 255, 0.66); }
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-links a { color: var(--white); }
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-links a:hover { color: var(--bone); }
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-links a:focus-visible {
  outline-color: var(--white);
  color: var(--white);
}
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-link-primary::after {
  background: var(--white);
}
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-brand:focus-visible {
  outline-color: var(--white);
}
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-cta:focus-visible {
  outline-color: var(--white);
}

/* ============================================== */
/* MOBILE HAMBURGER — left side, ≤720px only.      */
/* Triggers .mobile-drawer slide-in from left.     */
/* ============================================== */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-right: 4px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--charcoal);
  transition: color 0.3s ease;
}
.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-hamburger { color: var(--white); }
body.has-cover-hero nav.site-nav:not(.scrolled) .nav-hamburger:focus-visible {
  outline-color: var(--white);
}

/* ============================================== */
/* MOBILE DRAWER — full-height slide-in from left  */
/* ============================================== */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(340px, 86vw);
  background: var(--leaf-deep);
  color: var(--bone);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  padding: 88px 32px 36px;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 17, 0.62);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: transparent;
  border: 1px solid rgba(241, 239, 234, 0.32);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--bone);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.drawer-close:hover {
  background: rgba(241, 239, 234, 0.08);
  border-color: rgba(241, 239, 234, 0.56);
}
.drawer-close:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
}
.drawer-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(241, 239, 234, 0.55);
  margin-bottom: 24px;
  display: block;
}
.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.drawer-links li { margin: 0; }
.drawer-links a {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(241, 239, 234, 0.14);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.drawer-links a:hover { color: #FFFFFF; padding-left: 6px; }
.drawer-links a:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 4px;
  color: #FFFFFF;
}
.drawer-links a.active {
  color: #FFFFFF;
  font-style: italic;
}
.drawer-links a.active::before {
  content: "→ ";
  color: rgba(241, 239, 234, 0.6);
  font-style: normal;
}
.drawer-cta {
  display: block;
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--leaf-soft);
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--leaf-soft);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.drawer-cta:hover { background: var(--leaf); border-color: var(--leaf); }
.drawer-cta:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
}
.drawer-cta.active {
  background: var(--leaf);
  border-color: var(--leaf);
  box-shadow: inset 0 0 0 1px rgba(241, 239, 234, 0.32);
}
.drawer-footer {
  margin-top: auto;
  padding-top: 32px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(241, 239, 234, 0.55);
  line-height: 1.5;
}
.drawer-footer .line { display: block; margin-top: 4px; }

/* Lock body scroll when drawer is open. position:fixed + saved scrollY in JS
   handles iOS Safari, where overflow:hidden alone is not enough. */
body.drawer-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ============================================== */
/* COVER — La Portada (full-bleed hero, home only) */
/* ============================================== */
.cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.cover-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.cover-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 22, 17, 0.78) 0%, rgba(15, 22, 17, 0.62) 32%, rgba(15, 22, 17, 0.28) 60%, rgba(15, 22, 17, 0.0) 92%),
    linear-gradient(180deg, rgba(15, 22, 17, 0.46) 0%, rgba(15, 22, 17, 0.0) 32%, rgba(15, 22, 17, 0.0) 68%, rgba(15, 22, 17, 0.52) 100%);
  pointer-events: none;
}

.cover-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 48px 90px;
  width: 100%;
}

.cover-stamp {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cover-stamp::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  flex-shrink: 0;
}

.cover-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.cover-headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(54px, 7.6vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  color: var(--white);
  margin: 0 0 22px;
  max-width: 900px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.cover-headline em {
  font-style: italic;
  color: var(--white);
  position: relative;
}
.cover-headline em::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 6px;
  background: var(--leaf);
  opacity: 0.78;
  z-index: -1;
}

.cover-anchor {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--white);
  max-width: 560px;
  margin: 0 0 36px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
}

.cover-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cover-cta {
  padding: 16px 28px;
  background: var(--leaf);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--leaf);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cover-cta:hover { background: var(--leaf-deep); border-color: var(--leaf-deep); }
.cover-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.cover-link {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cover-link:hover { color: var(--bone); border-color: var(--bone); }
.cover-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}
.cover-link::after {
  content: " →";
  color: var(--white);
}

.cover-credit {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.cover-credit .meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cover-credit .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

/* ============================================== */
/* PAGE HEADER — inner-page top treatment.         */
/* Replaces the cover hero on non-home pages.      */
/* Sits below the fixed nav (~68px) with deep top  */
/* padding to give the page a real opening shot.   */
/* ============================================== */
.page-header {
  padding: 168px 24px 72px;
  background: var(--bone-soft);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.page-header-inner {
  max-width: 880px;
  margin: 0 auto;
}
.page-header .stamp {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.page-header .stamp::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--leaf);
  display: inline-block;
}
.page-header .stamp::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--leaf);
  display: inline-block;
}
.page-header h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
  color: var(--charcoal);
}
.page-header h1 em { font-style: italic; color: var(--leaf); }
.page-header .lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================== */
/* SHARED SECTION SHELL                            */
/* ============================================== */
section.course {
  padding: 140px 24px;
  position: relative;
}
section.course.alt { background: var(--bone); }
section.course.tight { padding: 96px 24px; }

.course-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.course-header {
  text-align: center;
  margin-bottom: 72px;
}
.course-header .eyebrow { display: block; margin-bottom: 16px; }
.course-header h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--charcoal);
}
.course-header h2 em {
  font-style: italic;
  color: var(--leaf);
}
.course-header .lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================== */
/* I — THE FOUNDATION (manifesto)                  */
/* ============================================== */
.manifesto {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.manifesto p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0 0 24px;
}
.manifesto p:last-child { margin-bottom: 0; }
.manifesto .accent {
  font-style: italic;
  color: var(--leaf);
}
.manifesto-note {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--slate);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.manifesto-note .anchor-translation {
  color: var(--leaf);
  font-weight: 600;
}

/* ============================================== */
/* II — SERVICES (tile grid + deep detail blocks)  */
/* ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}
.service-tile {
  padding: 40px 36px;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
}
.service-tile:hover { background: var(--bone-soft); }
.service-tile .tile-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--leaf);
  letter-spacing: 0.04em;
}
.service-tile h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
  color: var(--charcoal);
}
.service-tile h3 em { font-style: italic; color: var(--leaf); }
.service-tile .tile-spec {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
  margin: 4px 0 0;
}
.service-tile .tile-link {
  align-self: flex-start;
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.service-tile .tile-link:hover { color: var(--leaf); border-color: var(--leaf); }
.service-tile .tile-link:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
  color: var(--leaf);
  border-color: var(--leaf);
}
.service-tile .tile-link::after {
  content: " →";
  color: var(--leaf);
}

/* DEEP service detail blocks (services.html only) */
.service-detail {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}
.service-detail:first-of-type { border-top: 0; padding-top: 24px; }

/* Optional photo block above the detail-grid. Used when shoot assets exist
   for the service. Two variants: .solo (one image) and .split (two images,
   wide hero left + tall accent right). */
.service-detail .detail-hero {
  display: grid;
  gap: 16px;
  margin-bottom: 56px;
}
.service-detail .detail-hero.solo { grid-template-columns: 1fr; }
.service-detail .detail-hero.split { grid-template-columns: 7fr 5fr; }
.service-detail .detail-hero.triple { grid-template-columns: 6fr 3fr 3fr; }
.service-detail .detail-hero figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.service-detail .detail-hero .frame {
  background: var(--bone-warm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.service-detail .detail-hero.split .frame { aspect-ratio: 16 / 10; }
.service-detail .detail-hero.split figure:last-child .frame { aspect-ratio: 4 / 5; }
.service-detail .detail-hero.triple figure:not(:first-child) .frame { aspect-ratio: 4 / 5; }
.service-detail .detail-hero .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail .detail-hero figcaption {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--slate);
  margin-top: 10px;
  letter-spacing: 0.01em;
  line-height: 1.45;
}
.service-detail .detail-hero figcaption .season {
  color: var(--leaf);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 10px;
}
.service-detail .detail-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}
.service-detail .detail-meta .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--leaf);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.service-detail .detail-meta h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.02;
  margin: 0 0 18px;
  color: var(--charcoal);
}
.service-detail .detail-meta h3 em { font-style: italic; color: var(--leaf); }
.service-detail .detail-meta .anchor-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}
.service-detail .detail-body p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  margin: 0 0 18px;
}
.service-detail .detail-body p em { color: var(--leaf); font-style: normal; font-weight: 600; }
.service-detail .spec-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--rule);
}
.service-detail .spec-list li {
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule-strong);
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--charcoal);
}
.service-detail .spec-list .spec-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--leaf);
  flex: 0 0 140px;
}
.service-detail .spec-list .spec-value {
  flex: 1;
  color: var(--slate);
  line-height: 1.55;
}

/* ============================================== */
/* III — THE HANDS (Edgar + crew, image-led)       */
/* ============================================== */
.hands {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.hands-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone-warm);
}
.hands-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hands-photo .photo-cap {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(31, 45, 36, 0.72);
  padding: 8px 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hands-body p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
  margin: 0 0 22px;
  color: var(--charcoal);
}
.hands-body p em { font-style: italic; color: var(--leaf); }
.hands-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-strong);
}
.hands-stat .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--leaf);
  margin-bottom: 6px;
}
.hands-stat .label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ============================================== */
/* IV — WHEN TO CHOOSE US (scenarios)              */
/* ============================================== */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  max-width: 920px;
  margin: 0 auto;
}
.scenario {
  padding-top: 28px;
  border-top: 2px solid var(--charcoal);
}
.scenario h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--charcoal);
}
.scenario h3 em { font-style: italic; color: var(--leaf); }
.scenario p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0;
}
.scenario p em { color: var(--leaf); font-style: normal; font-weight: 600; }

.scenarios-footer {
  margin-top: 56px;
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal);
}
.scenarios-footer em { color: var(--leaf); }

/* ============================================== */
/* V — THE WORK (anchor essay + portfolio grid)    */
/* ============================================== */
.essay {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "hero hero"
    "detail-a detail-b"
    "wide wide";
}
.essay > .frame { background: var(--bone-warm); overflow: hidden; }
.essay > .frame img { width: 100%; height: 100%; object-fit: cover; }
.essay .hero { grid-area: hero; aspect-ratio: 16 / 9; }
.essay .detail-a { grid-area: detail-a; aspect-ratio: 4 / 5; }
.essay .detail-b { grid-area: detail-b; aspect-ratio: 4 / 5; }
.essay .wide { grid-area: wide; aspect-ratio: 16 / 7; }

.essay-meta {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
}
.essay-meta .project-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--charcoal);
  margin: 0 0 14px;
}
.essay-meta .project-name em { color: var(--leaf); }
.essay-meta .specs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
}
.essay-meta .specs .sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
}
.essay-meta .essay-note {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

.work-portfolio {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--rule);
}
.work-portfolio .index-eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 8px;
}
.work-portfolio .index-title {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 32px;
  color: var(--charcoal);
  margin: 0 0 48px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.portfolio-tile .tile-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone-warm);
  border: 1px solid var(--rule);
}
.portfolio-tile .tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.portfolio-tile .tile-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--leaf);
  letter-spacing: 0.05em;
}
.portfolio-tile h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  margin: 0;
  color: var(--charcoal);
}
.portfolio-tile .tile-scope {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.work-footer {
  margin-top: 48px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--leaf);
}

/* ============================================== */
/* VI — THE METHOD (numbered process spec)         */
/* ============================================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.method-step {
  padding-top: 28px;
  border-top: 2px solid var(--charcoal);
}
.method-step .step-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--leaf);
  margin-bottom: 12px;
}
.method-step h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--charcoal);
}
.method-step .step-spec {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0;
}
.method-step .step-spec em {
  color: var(--leaf);
  font-style: normal;
  font-weight: 600;
}

.method-footer {
  margin-top: 64px;
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--charcoal);
}
.method-footer em { color: var(--leaf); }

/* ============================================== */
/* VII — VOICES (Google reviews placeholder)       */
/* ============================================== */
.voices {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--leaf);
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.stars-meta {
  display: block;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}
.voice-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--charcoal);
  margin: 24px 0 24px;
}
.voice-quote .placeholder {
  color: var(--pencil);
  font-style: italic;
  font-size: 0.85em;
  letter-spacing: 0.02em;
}
.voice-attribution {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 28px;
}
.voices-link {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.voices-link:hover { color: var(--leaf); border-color: var(--leaf); }
.voices-link:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
  color: var(--leaf);
  border-color: var(--leaf);
}
.voices-link::after {
  content: " →";
  color: var(--leaf);
}

/* ============================================== */
/* VIII — THE QUOTE (itemized contact)             */
/* ============================================== */
.quote-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--rule-strong);
  padding: 44px 44px 32px;
  box-shadow: 0 14px 32px rgba(26, 26, 26, 0.06);
  position: relative;
}
.quote-card::after {
  content: "";
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  height: 10px;
  background:
    repeating-linear-gradient(
      135deg,
      var(--white) 0,
      var(--white) 8px,
      transparent 8px,
      transparent 12px
    );
  mask: linear-gradient(to bottom, black, transparent);
  -webkit-mask: linear-gradient(to bottom, black, transparent);
}
.quote-header {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.quote-header .eyebrow { display: block; margin-bottom: 6px; }
.quote-header .quote-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-size: 28px;
  margin: 0;
  color: var(--charcoal);
}
.quote-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule);
}
.quote-row:last-of-type { border-bottom: 0; }
.quote-row .label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  color: var(--charcoal);
  flex-shrink: 0;
}
.quote-row .leader {
  flex: 1;
  border-bottom: 1px dotted var(--rule-strong);
  transform: translateY(-4px);
}
.quote-row .value {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.quote-row .value:hover { color: var(--leaf); }
.quote-row .value:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  color: var(--leaf);
}
.quote-row a.value::after {
  content: " →";
  color: var(--leaf);
}
.quote-total {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 2px solid var(--charcoal);
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--charcoal);
}
.quote-total .signoff {
  color: var(--leaf);
  font-weight: 600;
}

/* ============================================== */
/* INQUIRY FORM (inquire.html)                     */
/* Conversational intake — minimal borders, big    */
/* breathing room, brand-warm prompts.             */
/* ============================================== */
.inquiry-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.inquiry-form .field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inquiry-form .label-prompt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--charcoal);
}
.inquiry-form .label-prompt .accent { color: var(--leaf); font-style: normal; font-weight: 600; }
.inquiry-form .label-help {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--pencil);
  line-height: 1.5;
  margin-top: -2px;
}
.inquiry-form .input,
.inquiry-form .textarea,
.inquiry-form .select {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--rule-strong);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.inquiry-form .textarea {
  min-height: 140px;
  font-family: "Inter", sans-serif;
  resize: vertical;
}
.inquiry-form .select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5435' stroke-width='1.5'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}
.inquiry-form .input:focus,
.inquiry-form .textarea:focus,
.inquiry-form .select:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(45, 84, 53, 0.12);
}
.inquiry-form .submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.inquiry-form .submit {
  padding: 16px 32px;
  background: var(--leaf);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--leaf);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.inquiry-form .submit:hover {
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
}
.inquiry-form .submit:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
}
.inquiry-form .submit-aside {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.5;
}
.inquiry-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================== */
/* "WHAT HAPPENS NEXT" — 3-step trust row          */
/* ============================================== */
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.next-step {
  padding-top: 28px;
  border-top: 2px solid var(--leaf);
}
.next-step .step-marker {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--leaf);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: block;
}
.next-step h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.next-step h3 em { font-style: italic; color: var(--leaf); }
.next-step p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0;
}

/* ============================================== */
/* HOME FUNNEL — short teaser blocks on index      */
/* Each one points to a deeper page.               */
/* ============================================== */
.funnel-strip {
  padding: 96px 24px;
  border-bottom: 1px solid var(--rule);
}
.funnel-strip.alt { background: var(--bone); }
.funnel-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}
.funnel-strip .strip-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 12px;
  display: block;
}
.funnel-strip h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 0 0 14px;
  color: var(--charcoal);
}
.funnel-strip h2 em { font-style: italic; color: var(--leaf); }
.funnel-strip .strip-lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--slate);
  margin: 0 0 22px;
  line-height: 1.5;
}
.funnel-strip .strip-cta {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.funnel-strip .strip-cta:hover { color: var(--leaf); border-color: var(--leaf); }
.funnel-strip .strip-cta:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
  color: var(--leaf);
  border-color: var(--leaf);
}
.funnel-strip .strip-cta::after {
  content: " →";
  color: var(--leaf);
}
.funnel-strip .strip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}
.funnel-strip .strip-list li {
  padding: 22px 24px;
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.funnel-strip .strip-list .list-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--leaf);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  display: block;
}
.funnel-strip .strip-list .list-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.funnel-strip .strip-list .list-name em { font-style: italic; color: var(--leaf); }
.funnel-strip .strip-list .list-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}
.funnel-strip .strip-image {
  aspect-ratio: 4 / 5;
  background: var(--bone-warm);
  overflow: hidden;
}
.funnel-strip .strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.funnel-strip.image-right .funnel-strip-inner { grid-template-columns: 7fr 5fr; }

/* CENTERED CTA strip variant — single column, narrow, centered text. */
.funnel-strip-inner.centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
}

/* Inline spec-list link treatment (services.html spec rows). */
.spec-link {
  color: var(--leaf);
  text-decoration: none;
  border-bottom: 1px solid var(--leaf);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.spec-link:hover { color: var(--leaf-deep); border-color: var(--leaf-deep); }
.spec-link:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

/* ============================================== */
/* COLOPHON                                        */
/* ============================================== */
.colophon {
  background: var(--leaf-deep);
  color: var(--bone);
  padding: 72px 24px 36px;
}
.colophon-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.colophon-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(241, 239, 234, 0.16);
}
.colophon-block .label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 239, 234, 0.55);
  margin-bottom: 12px;
}
.colophon-block .value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--bone);
  margin: 0;
}
.colophon-block .value a {
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid rgba(241, 239, 234, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.colophon-block .value a:hover {
  border-color: rgba(241, 239, 234, 0.85);
  color: #FFFFFF;
}
.colophon-block .value a:focus-visible {
  outline: 2px solid rgba(241, 239, 234, 0.7);
  outline-offset: 3px;
  color: #FFFFFF;
}
.colophon-anchor {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  margin-top: 12px;
  display: inline-block;
}
.colophon-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 239, 234, 0.55);
}

/* ============================================== */
/* RESPONSIVE                                      */
/* ============================================== */
@media (max-width: 1080px) {
  section.course { padding: 110px 22px; }
  .course-header { margin-bottom: 56px; }
  .hands { grid-template-columns: 1fr; gap: 36px; }
  .hands-photo { aspect-ratio: 16 / 11; max-height: 480px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .scenarios-grid { gap: 36px 40px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .colophon-grid { grid-template-columns: 1fr 1fr; }
  .funnel-strip-inner,
  .funnel-strip.image-right .funnel-strip-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail .detail-hero.split,
  .service-detail .detail-hero.triple { grid-template-columns: 1fr; }
  .service-detail .detail-hero.split figure:last-child .frame,
  .service-detail .detail-hero.triple figure:not(:first-child) .frame { aspect-ratio: 16 / 10; }
  .next-steps { grid-template-columns: 1fr; gap: 28px; }
  .page-header { padding: 152px 22px 64px; }
}
@media (max-width: 720px) {
  nav.site-nav { padding: 14px 18px; }
  .nav-links { gap: 14px; }
  .nav-links .nav-link-primary,
  .nav-links .nav-link-secondary { display: none; }
  .nav-hamburger { display: flex; }
  .nav-wordmark span { display: none; }
  .cover-inner { padding: 120px 22px 80px; }
  .cover-stamp::before { width: 22px; }
  .cover-credit { padding: 0 22px; flex-direction: column; gap: 8px; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .service-tile { padding: 28px 22px; }
  .scenarios-grid { grid-template-columns: 1fr; gap: 32px; }
  .essay {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "detail-a"
      "detail-b"
      "wide";
  }
  .essay .hero { aspect-ratio: 4 / 3; }
  .essay .wide { aspect-ratio: 16 / 9; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 28px; }
  .method-grid { grid-template-columns: 1fr; gap: 32px; }
  .colophon-grid { grid-template-columns: 1fr; gap: 28px; }
  .colophon-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .quote-card { padding: 28px 22px 22px; }
  .quote-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0;
  }
  .quote-row .leader { display: none; }
  .quote-row .label { font-size: 16px; }
  .quote-row .value { align-self: flex-end; font-size: 11px; letter-spacing: 0.14em; }
  .hands-stats { grid-template-columns: 1fr; gap: 18px; }
  .hands-stat { display: flex; align-items: baseline; gap: 16px; }
  .hands-stat .num { font-size: 36px; }
  .funnel-strip { padding: 72px 22px; }
  .funnel-strip .strip-list { grid-template-columns: 1fr; }
  .inquiry-form .field-group { grid-template-columns: 1fr; gap: 24px; }
  .inquiry-form .submit-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .page-header { padding: 132px 22px 56px; }
}
