/* ============================================================
   Westmere Home Services — Summit Frameworks portfolio concept
   Palette: warm ivory / soft stone / charcoal / deep green / brass
   Type: Cormorant 600 (display) + Manrope 400/600 (body & UI)
   ============================================================ */

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/corm600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/cormital600.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory: #F6F2E9;
  --stone: #EAE3D3;
  --stone-deep: #DDD3BE;
  --ink: #26241E;
  --ink-soft: #52504A;
  --green: #33402F;
  --green-deep: #2A3527;
  --green-ink: #1F281D;
  --brass: #96793F;            /* large display accents on light bg */
  --brass-text: #7D6434;       /* small brass text on light bg (AA) */
  --brass-bright: #B29455;     /* large display accents on dark bg */
  --brass-bright-text: #C9AE6F;/* small brass text on dark bg (AA) */
  --line: rgba(38, 36, 30, 0.16);
  --line-light: rgba(246, 242, 233, 0.22);
  --serif: 'Cormorant', 'Times New Roman', serif;
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul, ol { list-style: none; }

a { color: inherit; }

/* ---------- Type system ---------- */

.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  color: var(--brass);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: var(--brass-bright-text); }

.section-head {
  padding: 0 var(--pad-x);
  max-width: 60rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn:active { transform: translateY(1px); }

.btn-solid {
  background: var(--green);
  color: var(--ivory);
  border-color: var(--green);
}
.btn-solid:hover, .btn-solid:focus-visible {
  background: var(--green-ink);
  border-color: var(--green-ink);
}

.btn-ghost {
  background: rgba(31, 30, 25, 0.3);
  color: var(--ivory);
  border-color: rgba(246, 242, 233, 0.55);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(246, 242, 233, 0.14);
  border-color: var(--ivory);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(38, 36, 30, 0.4);
}
.btn-ghost-dark:hover, .btn-ghost-dark:focus-visible {
  border-color: var(--ink);
  background: rgba(38, 36, 30, 0.06);
}

.btn-small { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

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

/* ---------- Concept notice ---------- */

.concept-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--ink);
  color: rgba(246, 242, 233, 0.85);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 0.55rem var(--pad-x);
  text-align: center;
}
.concept-notice strong { color: var(--ivory); font-weight: 600; }
.concept-notice-dismiss {
  background: none;
  border: 1px solid rgba(246, 242, 233, 0.35);
  border-radius: 2px;
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1;
  width: 1.55rem;
  height: 1.55rem;
  cursor: pointer;
  flex: none;
}
.concept-notice-dismiss:hover { border-color: var(--ivory); }
.concept-notice.is-dismissed { display: none; }

/* ---------- Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 242, 233, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--pad-x);
}

.wordmark {
  text-decoration: none;
  line-height: 1.1;
}
.wordmark-name {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
}
.wordmark-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.nav-links a:not(.btn) {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.6rem;
  height: 2.6rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: clamp(34rem, 92vh, 52rem);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; object-position: center 62%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(31, 30, 25, 0.78) 0%, rgba(31, 30, 25, 0.45) 46%, rgba(31, 30, 25, 0.12) 75%),
    linear-gradient(to top, rgba(31, 30, 25, 0.55) 0%, rgba(31, 30, 25, 0) 34%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 12vw, 8rem) var(--pad-x) clamp(9rem, 18vw, 13rem);
  max-width: 46rem;
}
.hero-eyebrow { color: var(--brass-bright-text); }
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  line-height: 1.02;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--brass-bright); }
.hero-lede {
  color: rgba(246, 242, 233, 0.88);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-wordmark {
  position: absolute;
  z-index: 1;
  bottom: -0.14em;
  left: 0;
  width: 100%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(4.6rem, 15.5vw, 15rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-align: center;
  color: rgba(246, 242, 233, 0.9);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ---------- Trust strip ---------- */

.trust {
  padding: var(--section-y) 0 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 var(--pad-x);
}
.trust-item {
  padding: 2.2rem 1.6rem 2.4rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.6rem;
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brass-text);
  margin-bottom: 1.4rem;
}
.trust-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.trust-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Positioning ---------- */

.positioning {
  padding: var(--section-y) var(--pad-x);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.positioning-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 34rem;
  margin-top: 1.4rem;
}
.positioning-copy .display { margin-bottom: 0.4rem; }

.positioning-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.ledger-col { padding: 2rem 1.7rem 2.3rem; }
.ledger-col h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.ledger-col li {
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}
.ledger-before {
  background: var(--stone);
  color: var(--ink-soft);
}
.ledger-before h3 { color: var(--ink-soft); }
.ledger-after {
  background: var(--green);
  color: rgba(246, 242, 233, 0.92);
}
.ledger-after h3 { color: var(--brass-bright-text); }
.ledger-after li { border-top-color: var(--line-light); }

/* ---------- Services ---------- */

.services {
  padding: var(--section-y) 0;
  background: var(--stone);
}
.services .section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

.services-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: 0 var(--pad-x);
  align-items: start;
}

.services-index { border-top: 1px solid var(--line); }
.service-row {
  display: flex;
  gap: 1.6rem;
  padding: 1.7rem 0.4rem 1.8rem;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: background-color 0.25s ease, padding-left 0.3s ease;
}
.service-row.is-active {
  background: rgba(246, 242, 233, 0.6);
  padding-left: 1rem;
}
.service-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--brass-text);
  padding-top: 0.55rem;
  flex: none;
}
.service-thumb {
  display: none;
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 2px;
  flex: none;
  margin-left: auto;
  align-self: center;
}
.service-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin-bottom: 0.45rem;
}
.service-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 32rem;
}

.services-visual {
  position: sticky;
  top: 6.5rem;
}
.services-visual-frame {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  border-radius: 2px;
}
.services-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.services-visual-frame img.is-fading { opacity: 0; }
.services-visual-caption {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Process ---------- */

.process {
  background: var(--green);
  color: var(--ivory);
  padding: var(--section-y) 0;
}
.process .display { color: var(--ivory); }
.process .display em { color: var(--brass-bright); }
.process .section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 var(--pad-x);
}
.process-step {
  border-top: 1px solid var(--line-light);
  padding-top: 1.8rem;
  position: relative;
}
.process-num {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--brass-bright);
  display: block;
  margin-bottom: 1.1rem;
}
.process-step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.12;
  margin-bottom: 0.7rem;
}
.process-step p {
  font-size: 0.95rem;
  color: rgba(246, 242, 233, 0.78);
}

/* ---------- Stewardship ---------- */

.stewardship {
  padding: var(--section-y) var(--pad-x);
}
.stewardship-frame {
  border: 1px solid var(--brass);
  border-radius: 2px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  position: relative;
  background:
    linear-gradient(0deg, rgba(150, 121, 63, 0.05), rgba(150, 121, 63, 0.05)),
    var(--ivory);
}
.stewardship-intro .display { margin-bottom: 1.4rem; }
.stewardship-intro p:not(.eyebrow) {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 30rem;
}

.stewardship-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stewardship-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
}
.stewardship-photo img { width: 100%; height: 100%; object-fit: cover; }

.stewardship-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stewardship-benefits li {
  padding: 1.1rem 1.2rem 1.1rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stewardship-benefits strong {
  font-weight: 600;
  font-size: 0.95rem;
}
.stewardship-benefits span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Scenario ---------- */

.scenario {
  background: var(--stone);
  padding: var(--section-y) var(--pad-x);
}
.scenario-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.scenario-photo {
  position: sticky;
  top: 6.5rem;
  overflow: hidden;
  border-radius: 2px;
}
.scenario-photo img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.scenario-photo figcaption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-top: 0.8rem;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.scenario-copy .display { margin-bottom: 1.4rem; }
.scenario-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 36rem;
}

.scenario-journey {
  margin: 2.4rem 0;
  border-left: 1px solid var(--brass);
}
.journey-stage {
  padding: 0 0 1.8rem 1.8rem;
  position: relative;
}
.journey-stage:last-child { padding-bottom: 0; }
.journey-stage::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.journey-stage h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}
.journey-stage p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  max-width: 30rem;
}
.scenario-close {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
}

/* ---------- Values ---------- */

.values { padding: var(--section-y) var(--pad-x); }
.values-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.values-copy .display { margin-bottom: 2.2rem; }
.values-list li {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.values-list li:last-child { border-bottom: 1px solid var(--line); }
.values-marker { color: var(--brass); flex: none; }
.values-note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.values-photo {
  overflow: hidden;
  border-radius: 2px;
}
.values-photo img { width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; }

/* ---------- Service areas ---------- */

.areas {
  background: var(--green-deep);
  color: var(--ivory);
  padding: var(--section-y) var(--pad-x);
  text-align: center;
}
.areas .display { color: var(--ivory); max-width: 44rem; margin: 0 auto; }
.areas .display em { color: var(--brass-bright); }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.4rem 0;
  margin: clamp(2.2rem, 5vw, 3.8rem) auto;
  max-width: 62rem;
}
.areas-list li {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.3;
  white-space: nowrap;
}
.areas-list li:not(:last-child)::after {
  content: '·';
  color: var(--brass-bright);
  margin: 0 clamp(0.8rem, 2vw, 1.6rem);
}
.areas-note {
  color: rgba(246, 242, 233, 0.72);
  font-size: 0.95rem;
  max-width: 34rem;
  margin: 0 auto;
}

/* ---------- Consultation ---------- */

.consultation {
  padding: var(--section-y) var(--pad-x);
  background: var(--ivory);
}
.consultation-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.consultation-copy .display { margin-bottom: 1.4rem; }
.consultation-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 30rem;
}
.consultation-contact {
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.consultation-contact div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.consultation-contact dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-text);
  padding-top: 0.15rem;
}
.consultation-contact dd { font-size: 0.95rem; color: var(--ink-soft); }
.consultation-contact dd a {
  color: var(--ink);
  text-decoration-color: var(--brass);
  text-underline-offset: 3px;
}

.consultation-form {
  background: #FDFBF6;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label, .form-choices legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
}
.req { color: var(--brass); }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s ease;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2326241E' fill='none' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; }
.form-field textarea { resize: vertical; min-height: 6rem; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #A23E2A;
}
.field-error {
  font-size: 0.8rem;
  color: #A23E2A;
  margin-top: 0.4rem;
}

.form-choices { border: none; }
.choice-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.choice:has(input:checked) {
  border-color: var(--green);
  background: rgba(51, 64, 47, 0.07);
}
.choice input { accent-color: var(--green); }
.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
}

.consultation-success {
  background: var(--green);
  color: var(--ivory);
  border-radius: 2px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.success-mark {
  font-size: 2rem;
  width: 3.4rem;
  height: 3.4rem;
  line-height: 3.3rem;
  border: 1px solid var(--brass-bright);
  border-radius: 50%;
  color: var(--brass-bright);
  margin: 0 auto 1.4rem;
}
.consultation-success h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.consultation-success p {
  color: rgba(246, 242, 233, 0.85);
  max-width: 28rem;
  margin: 0 auto 1rem;
  font-size: 0.95rem;
}
.consultation-success .success-note {
  font-size: 0.82rem;
  color: rgba(246, 242, 233, 0.6);
  margin-bottom: 1.6rem;
}
.consultation-success .btn-ghost-dark {
  color: var(--ivory);
  border-color: rgba(246, 242, 233, 0.45);
}
.consultation-success .btn-ghost-dark:hover { border-color: var(--ivory); background: rgba(246, 242, 233, 0.1); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-ink);
  color: rgba(246, 242, 233, 0.78);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad-x) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ivory);
  line-height: 1.1;
}
.footer-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--brass-bright);
}
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-bright-text);
  margin-bottom: 1.1rem;
}
.footer-col li {
  font-size: 0.9rem;
  padding: 0.28rem 0;
}
.footer-col a {
  text-decoration: none;
}
.footer-col a:hover, .footer-col a:focus-visible { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal {
  padding-top: 1.8rem;
  font-size: 0.8rem;
  color: rgba(246, 242, 233, 0.55);
  max-width: 46rem;
}
.footer-legal a { color: rgba(246, 242, 233, 0.8); text-underline-offset: 3px; }

/* ---------- Boundary modal ---------- */

.boundary {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.boundary[hidden] { display: none; }
.boundary-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 30, 25, 0.6);
  backdrop-filter: blur(4px);
}
.boundary-panel {
  position: relative;
  background: var(--ivory);
  border-radius: 2px;
  border-top: 3px solid var(--brass);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 34rem;
  box-shadow: 0 30px 80px rgba(31, 30, 25, 0.35);
}
.boundary-panel h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.boundary-panel > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}
.boundary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item { border-left: none; padding-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-top: none; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); padding-left: 1.6rem; }

  .positioning-grid,
  .stewardship-frame,
  .scenario-grid,
  .values-grid,
  .consultation-grid { grid-template-columns: 1fr; }

  .services-layout { grid-template-columns: 1fr; }
  .services-visual { display: none; }
  .service-row { flex-direction: row; }
  .service-thumb { display: block; }

  .scenario-photo { position: static; }
  .values-photo { order: -1; }
  .values-photo img { aspect-ratio: 16 / 10; }

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

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad-x) 1.4rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links li:first-child { border-top: none; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-cta-item { padding-top: 1.1rem; border-top: none !important; }
  .nav-cta-item .btn { display: block; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-inner { padding-bottom: clamp(8rem, 30vw, 11rem); }
  .hero-actions .btn { width: 100%; text-align: center; }

  .trust-row { grid-template-columns: 1fr; }
  .trust-item,
  .trust-item:nth-child(even) { border-left: none; padding-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: none; }

  .positioning-ledger { grid-template-columns: 1fr; }

  .service-row { gap: 1rem; padding: 1.4rem 0.2rem 1.5rem; }

  .process-steps { grid-template-columns: 1fr; }

  .stewardship-benefits { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .consultation-contact div { grid-template-columns: 1fr; gap: 0.2rem; }

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

  .concept-notice { font-size: 0.72rem; padding: 0.5rem 1rem; text-align: left; }
  .notice-extra { display: none; }

  .service-thumb { width: 3.6rem; height: 3.6rem; }
}
