:root {
  --paper: #f7f3ec;
  --paper-deep: #eee8df;
  --ink: #17201f;
  --muted: #5f6964;
  --rule: #c9c4b9;
  --accent: #e65e3f;
  --accent-dark: #c84c32;
  --green: #23443a;
  --card: #fffcf7;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--ink);
  color: var(--paper);
  padding: .65rem .85rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }
.shell { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }

.site-header { border-bottom: 1px solid var(--rule); }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; gap: 2rem; min-height: 86px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-size: .79rem; font-weight: 800; letter-spacing: .08em; line-height: 1.02; text-transform: uppercase; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: var(--ink); color: var(--paper); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.35rem); font-size: .9rem; }
.nav a { text-decoration: none; }
.nav > a:not(.nav-contact):hover { color: var(--accent-dark); }
.nav-contact { border-bottom: 1px solid var(--ink); padding-bottom: 2px; font-weight: 700; }

.hero { padding: clamp(5.5rem, 11vw, 10.25rem) 0 4rem; }
.hero-grid { display: block; }
.eyebrow, .card-index { margin: 0 0 1.3rem; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; line-height: .98; }
h1 { max-width: 850px; margin-bottom: 1.6rem; font-family: var(--serif); font-size: clamp(3.85rem, 8vw, 7.5rem); font-weight: 400; }
.hero-copy { max-width: 620px; margin-bottom: 2rem; color: #35403b; font-size: clamp(1.08rem, 1.6vw, 1.33rem); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1.15rem 1.75rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 48px; padding: .75rem 1rem; text-decoration: none; font-weight: 800; }
.button-primary { background: var(--accent); color: #1d1713; transition: background .18s ease, transform .18s ease; }
.button-primary:hover { background: #f17b5f; transform: translateY(-2px); }
.text-link { display: inline-flex; gap: .45rem; align-items: center; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.text-link:hover, .card-link:hover { color: var(--accent-dark); }
.hero-note { border-top: 1px solid var(--ink); padding-top: .85rem; }
.hero-note p { font-size: 1.05rem; line-height: 1.36; }
.hero-note .note-number { margin-bottom: 2.65rem; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }

.section-line { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.statement { padding: 1.5rem 0; }
.statement .shell { display: flex; justify-content: space-between; gap: 2rem; color: var(--green); font-family: var(--serif); font-size: clamp(1.45rem, 2.4vw, 2.2rem); letter-spacing: -.03em; }
.statement p { margin: 0; }
.section { padding: clamp(4.75rem, 8vw, 7.25rem) 0; }
.section-heading { display: grid; grid-template-columns: minmax(200px, .75fr) minmax(380px, 1.25fr); column-gap: 2rem; align-items: start; margin-bottom: 3.5rem; }
.section-heading .eyebrow { grid-column: 1; grid-row: 1 / span 2; }
h2 { margin-bottom: 1.25rem; font-family: var(--serif); font-size: clamp(2.75rem, 5.1vw, 5rem); font-weight: 400; }
.section-heading h2, .section-heading > p:last-child { grid-column: 2; }
.section-heading > p:last-child { max-width: 590px; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.service-card { min-height: 360px; padding: 1.25rem 1.6rem 1.5rem 0; border-right: 1px solid var(--ink); }
.service-card + .service-card { padding-left: 1.6rem; }
.service-card:last-child { border-right: 0; }
.service-card h3 { max-width: 270px; margin-bottom: 1.15rem; font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.75rem); font-weight: 400; }
.service-card > p:not(.card-index) { max-width: 305px; color: var(--muted); }
.service-card ul { margin: 1.85rem 0 0; padding: 0; list-style: none; color: var(--green); font-size: .93rem; font-weight: 720; }
.service-card li { border-top: 1px solid var(--rule); padding: .56rem 0; }

.focus-section { background: var(--green); color: #f8f4ed; }
.focus-section .eyebrow, .focus-section .section-heading > p:last-child { color: #c4d0c5; }
.focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.focus-card { min-height: 390px; display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.5rem); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.3); }
.focus-card.active-card { background: #f3ebe0; color: var(--ink); border-color: #f3ebe0; }
.focus-card-topline { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: auto; }
.focus-card .card-index { margin: 0; color: currentColor; opacity: .7; }
.status-dot, .status-muted { display: inline-flex; align-items: center; gap: .38rem; font-size: .75rem; font-weight: 750; }
.status-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #5e9e78; }
.status-muted { color: inherit; opacity: .7; }
.focus-card h3 { margin: 2.7rem 0 .65rem; font-family: var(--serif); font-size: clamp(2.4rem, 4.3vw, 4.2rem); font-weight: 400; }
.focus-card .product-subtitle { margin-bottom: 1rem; font-size: 1.1rem; font-weight: 740; line-height: 1.25; }
.focus-card > p:not(.card-index):not(.product-subtitle) { max-width: 540px; margin-bottom: 1.6rem; opacity: .82; }
.card-link { margin-top: auto; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.approach-section { border-bottom: 1px solid var(--rule); }
.approach-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 10vw, 10rem); }
.approach-layout h2 { max-width: 410px; }
.approach-intro { max-width: 340px; color: var(--muted); font-size: 1.07rem; }
.approach-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.approach-list li { display: grid; grid-template-columns: 76px 1fr; gap: 1rem; padding: 1.35rem 0 1.65rem; border-bottom: 1px solid var(--rule); }
.approach-list li > span { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.approach-list h3 { margin-bottom: .45rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.approach-list p { max-width: 520px; margin: 0; color: var(--muted); }

.contact-section { padding: clamp(4.75rem, 8vw, 7.25rem) 0; background: var(--paper-deep); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end; }
.contact-layout h2 { max-width: 560px; margin: 0; }
.contact-actions p { max-width: 450px; margin-bottom: 1.5rem; color: var(--muted); font-size: 1.07rem; }
.contact-actions .text-link { display: flex; width: fit-content; margin-top: 1.3rem; }

.site-footer { padding: 1.45rem 0; background: var(--ink); color: #d8ddd6; font-size: .8rem; }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; }
.site-footer p { margin: 0; }
.site-footer a { color: #fff; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .nav-wrap { min-height: 72px; }
  .nav { gap: 1rem; font-size: .82rem; }
  .hero-grid, .approach-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-note { max-width: 500px; }
  .section-heading { grid-template-columns: 1fr; row-gap: 1rem; }
  .section-heading .eyebrow, .section-heading h2, .section-heading > p:last-child { grid-column: 1; grid-row: auto; }
  .section-heading .eyebrow { margin-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card + .service-card { min-height: unset; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .service-card:last-child { border-bottom: 0; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 320px; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 2rem, 1180px); }
  .nav-wrap { align-items: flex-start; padding: 1rem 0; }
  .nav { flex-wrap: wrap; justify-content: flex-end; gap: .45rem .9rem; max-width: 235px; }
  .nav-contact { display: none; }
  .hero { padding-top: 4.35rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.3rem); }
  .statement .shell { display: block; }
  .statement p + p { margin-top: .35rem; }
  .focus-card h3 { margin-top: 2rem; }
  .footer-wrap { display: block; }
  .footer-wrap p + p { margin-top: .3rem; }
}

.review-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.form-row { display: grid; gap: .45rem; }
.form-row-wide { grid-column: 1 / -1; }
.review-form label {
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid #a9a49b;
  border-radius: 0;
  padding: .8rem .85rem;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
}
.review-form textarea { min-height: 132px; resize: vertical; }
.review-form input:focus,
.review-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-fields { display: contents; }
.review-form.is-complete .form-fields { display: none; }
.review-form:has(.form-note.is-success) .form-fields { display: none; }
.review-form .button { width: fit-content; margin-top: .25rem; border: 0; cursor: pointer; font: inherit; }
.review-form .button:disabled { cursor: wait; opacity: .62; transform: none; }
.button-secondary { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: var(--paper); }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .82rem; }
.form-note.is-pending { color: var(--muted); }
.form-note.is-success { color: var(--green); font-weight: 750; }
.form-note.is-error { color: var(--accent-dark); font-weight: 750; }
.form-success { grid-column: 1 / -1; padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--green); color: #f8f4ed; }
.review-form:has(.form-note.is-success) .form-success { display: block !important; }
.form-success-mark { display: grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: 1.5rem; border-radius: 50%; background: var(--accent); color: var(--ink); font-size: 1.7rem; font-weight: 800; }
.form-success .eyebrow { margin-bottom: .75rem; color: #c4d0c5; }
.form-success h3 { margin-bottom: .8rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
.form-success p:not(.eyebrow) { max-width: 34rem; color: #d8e0d7; font-size: 1.05rem; }
.form-success .button-secondary { margin-top: .6rem; border-color: #f8f4ed; color: #f8f4ed; }
.form-success .button-secondary:hover { background: #f8f4ed; color: var(--green); }

@media (max-width: 600px) {
  .review-form { grid-template-columns: 1fr; }
  .form-row-wide, .form-note { grid-column: auto; }
  .review-form .button { width: 100%; }
}
