:root {
  --ink: #262b27;
  --forest: #34453b;
  --forest-deep: #233129;
  --sage: #8c9b8d;
  --clay: #b98769;
  --brass: #b79a68;
  --cream: #f4f0e8;
  --paper: #fbf9f5;
  --white: #fff;
  --line: rgba(38, 43, 39, .14);
  --muted: #6e746f;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 24px 70px rgba(35, 49, 41, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, .button { cursor: pointer; }

.announcement {
  padding: 9px 20px;
  background: var(--forest-deep);
  color: #e9eee9;
  font-size: 12px;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  height: 82px;
  margin: 0 auto;
  padding: 0 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}
.brand-name { font-family: var(--serif); font-size: 19px; line-height: 1; }
.brand-name small { display: block; margin-top: 5px; font-family: var(--sans); font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.header-note { color: var(--muted); font-size: 13px; }
.header-note strong { color: var(--ink); font-weight: 600; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; line-height: 1.08; }
h1 { font-size: clamp(46px, 6vw, 82px); }
h2 { font-size: clamp(35px, 4vw, 56px); }
h3 { font-size: 25px; }
p { margin: 0; }
.lede { color: #555d57; font-size: 18px; line-height: 1.7; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--forest-deep); box-shadow: 0 12px 28px rgba(35, 49, 41, .17); }
.button.secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--cream); box-shadow: none; }
.button.full { width: 100%; }
.button[disabled] { cursor: not-allowed; opacity: .45; transform: none; box-shadow: none; }
.arrow { font-size: 19px; font-weight: 400; }
.fine-print { color: var(--muted); font-size: 12px; }

/* Landing */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #d8d5cd;
  color: var(--white);
}
.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 30, 26, .78) 0%, rgba(24, 30, 26, .52) 42%, rgba(24, 30, 26, .07) 76%), linear-gradient(0deg, rgba(24,30,26,.38), transparent 43%);
  content: '';
}
.hero-bg { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero .site-header { color: var(--white); }
.hero .header-note { color: rgba(255,255,255,.78); }
.hero .header-note strong { color: #fff; }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 590px; align-items: center; }
.hero-copy { width: min(660px, 90%); padding: 65px 0 96px; }
.hero-copy .eyebrow { color: #dfc39a; }
.hero-copy h1 { max-width: 650px; margin: 19px 0 25px; }
.hero-copy h1 em { color: #e8d6bb; font-weight: inherit; }
.hero-copy p { max-width: 570px; color: rgba(255,255,255,.86); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 35px; }
.hero .button { border-color: #eee7db; background: #eee7db; color: var(--forest-deep); }
.micro-proof { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 13px; }
.micro-proof .dot { width: 7px; height: 7px; border-radius: 50%; background: #d3c399; box-shadow: 0 0 0 5px rgba(211,195,153,.16); }
.project-label {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 3;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(28,35,30,.44);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.credibility-strip { border-bottom: 1px solid var(--line); background: var(--cream); }
.credibility-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.credibility-item { padding: 24px; border-right: 1px solid var(--line); text-align: center; }
.credibility-item:last-child { border-right: 0; }
.credibility-item strong { display: block; color: var(--forest); font-family: var(--serif); font-size: 20px; font-weight: 400; }
.credibility-item span { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 88px; padding: 118px 0; align-items: center; }
.image-stack { position: relative; padding: 0 52px 52px 0; }
.image-stack > img { aspect-ratio: 4/3; border-radius: 4px 70px 4px 4px; object-fit: cover; box-shadow: var(--shadow); }
.image-stack::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 2px 38px 2px 2px;
  background: url('assets/material-detail.webp') center / cover;
  box-shadow: 0 18px 45px rgba(35,49,41,.18);
  content: '';
}
.intro-copy h2 { margin: 17px 0 24px; }
.intro-copy .lede { margin-bottom: 31px; }
.principles { display: grid; gap: 18px; }
.principle { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.principle-icon { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--clay); }
.principle strong { display: block; margin-bottom: 3px; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.principle span { color: var(--muted); font-size: 14px; }

.process-section { padding: 105px 0; background: var(--forest-deep); color: var(--white); }
.section-heading { max-width: 670px; }
.section-heading h2 { margin: 16px 0 18px; }
.section-heading p { color: rgba(255,255,255,.68); font-size: 17px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 60px; border-top: 1px solid rgba(255,255,255,.16); }
.process-card { position: relative; padding: 38px 42px 20px 0; }
.process-number { color: #ceb98f; font-family: var(--serif); font-size: 15px; }
.process-card h3 { margin: 42px 0 13px; color: #fff; }
.process-card p { max-width: 315px; color: rgba(255,255,255,.64); font-size: 14px; }

.assessment-section { padding: 116px 0 128px; background: #eee8de; }
.assessment-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.assessment-intro { position: sticky; top: 30px; }
.assessment-intro h2 { margin: 16px 0 23px; }
.assessment-intro .quote { margin-top: 38px; padding: 23px 0 0 25px; border-left: 1px solid var(--brass); color: #59615b; font-family: var(--serif); font-size: 19px; font-style: italic; line-height: 1.55; }
.assessment-card { overflow: hidden; border: 1px solid rgba(38,43,39,.12); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.assessment-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.assessment-head strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.progress-pill { color: var(--muted); font-size: 12px; }
.progress-bar { height: 3px; background: #ddd8cf; }
.progress-fill { width: 0; height: 100%; background: var(--clay); transition: width .3s ease; }
.assessment-body { padding: 30px 30px 32px; }
.question { margin: 0 0 30px; padding: 0; border: 0; }
.question legend { margin-bottom: 13px; font-family: var(--serif); font-size: 19px; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option span { display: block; padding: 14px 15px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: #555d57; font-size: 13px; transition: all .18s ease; }
.option input:checked + span { border-color: var(--forest); background: #eff1ed; color: var(--forest-deep); box-shadow: inset 0 0 0 1px var(--forest); }
.option span:hover { border-color: var(--sage); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink); outline: none; }
.field input:focus, .field select:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(52,69,59,.08); }
.assessment-card .fine-print { margin-top: 12px; text-align: center; }

.site-footer { padding: 44px 0; border-top: 1px solid var(--line); background: var(--paper); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-row p { color: var(--muted); font-size: 12px; }

/* Booking */
.light-page { min-height: 100vh; background: #f4f0e8; }
.progress-nav { padding: 16px 0 28px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 640px; margin: 0 auto; }
.step { position: relative; display: grid; gap: 7px; justify-items: center; color: #9a9e9a; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.step::before { position: absolute; top: 11px; left: -50%; width: 100%; height: 1px; background: #ccc8c0; content: ''; }
.step:first-child::before { display: none; }
.step-dot { position: relative; z-index: 1; display: grid; width: 23px; height: 23px; place-items: center; border: 1px solid #bbbdb8; border-radius: 50%; background: var(--cream); font-size: 10px; }
.step.done, .step.active { color: var(--forest); }
.step.done .step-dot { border-color: var(--forest); background: var(--forest); color: #fff; }
.step.active .step-dot { border: 2px solid var(--forest); background: var(--paper); }
.step.done + .step::before, .step.active::before { background: var(--forest); }
.booking-title { max-width: 780px; margin: 24px auto 45px; text-align: center; }
.booking-title h1 { margin: 11px 0 17px; font-size: clamp(42px, 5vw, 64px); }
.booking-title p { color: var(--muted); font-size: 17px; }
.booking-shell { display: grid; grid-template-columns: 330px 1fr; overflow: hidden; margin-bottom: 105px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.booking-aside { padding: 35px 31px; background: var(--forest); color: #fff; }
.duration { display: inline-flex; gap: 7px; align-items: center; margin: 12px 0 28px; color: rgba(255,255,255,.68); font-size: 13px; }
.booking-aside h2 { margin-top: 12px; font-size: 34px; }
.call-points { display: grid; gap: 15px; margin: 28px 0 35px; padding: 0; list-style: none; }
.call-points li { display: grid; grid-template-columns: 25px 1fr; gap: 10px; color: rgba(255,255,255,.78); font-size: 13px; }
.check { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #ddc89c; font-size: 11px; }
.designer-note { padding-top: 27px; border-top: 1px solid rgba(255,255,255,.16); }
.designer { display: flex; align-items: center; gap: 13px; }
.designer-avatar { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.08); font-family: var(--serif); font-size: 20px; }
.designer strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 400; }
.designer span { color: rgba(255,255,255,.58); font-size: 11px; }
.booking-main { padding: 36px; }
.booking-main-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.booking-main-head h3 { font-size: 22px; }
.tz { border: 0; background: transparent; color: var(--muted); font-size: 12px; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.calendar-head strong { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.calendar-arrow { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.weekday { padding: 7px 0; color: #929690; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.date-button { min-height: 43px; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font-size: 13px; }
.date-button.muted { color: #b9bbb8; }
.date-button.available:hover { background: #e5e9e4; }
.date-button.selected { background: var(--forest); color: #fff; }
.time-panel { margin-top: 29px; padding-top: 25px; border-top: 1px solid var(--line); }
.time-panel h4 { margin: 0 0 12px; font-family: var(--serif); font-size: 16px; font-weight: 400; }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-button { min-height: 42px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--forest); font-size: 12px; }
.time-button:hover, .time-button.selected { border-color: var(--forest); background: var(--forest); color: #fff; }
.details-form { display: none; margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--line); }
.details-form.visible { display: block; animation: fadeIn .25s ease; }
.details-form h4 { margin: 0 0 15px; font-family: var(--serif); font-size: 19px; font-weight: 400; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 13px 0 18px; color: var(--muted); font-size: 11px; }
.consent input { margin-top: 3px; }
.selected-slot { display: none; align-items: center; justify-content: space-between; gap: 10px; margin: 16px 0; padding: 13px 15px; border-radius: 9px; background: #ebe9e2; color: var(--forest); font-size: 13px; }
.selected-slot.visible { display: flex; }
.selected-slot button { border: 0; background: transparent; color: var(--muted); font-size: 11px; text-decoration: underline; }

/* Confirmation */
.confirmation-hero { display: grid; grid-template-columns: 1.04fr .96fr; min-height: 650px; background: var(--forest-deep); color: #fff; }
.confirmation-copy { display: flex; align-items: center; padding: 70px max(40px, calc((100vw - 1160px)/2)); padding-right: 70px; }
.confirmation-copy-inner { max-width: 590px; }
.success-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.08); color: #e5d0a4; font-size: 22px; }
.confirmation-copy h1 { margin-bottom: 21px; font-size: clamp(46px, 5.6vw, 72px); }
.confirmation-copy .lede { color: rgba(255,255,255,.72); }
.appointment-card { margin-top: 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.appointment-row { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.13); }
.appointment-row:last-child { border-bottom: 0; }
.appointment-row-icon { color: #d4bd8e; font-family: var(--serif); font-size: 18px; }
.appointment-row span { display: block; color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.appointment-row strong { display: block; margin-top: 2px; font-size: 14px; font-weight: 500; }
.confirmation-art { position: relative; min-height: 650px; overflow: hidden; }
.confirmation-art img { height: 100%; object-fit: cover; }
.confirmation-art::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,49,41,.45), transparent 35%); content: ''; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 21px; }
.confirmation-copy .button { min-height: 48px; border-color: #eee7db; background: #eee7db; color: var(--forest-deep); font-size: 12px; }
.confirmation-copy .button.secondary { border-color: rgba(255,255,255,.28); background: transparent; color: #fff; }
.next-section { padding: 110px 0; }
.next-heading { max-width: 700px; margin: 0 auto 55px; text-align: center; }
.next-heading h2 { margin: 14px 0 18px; }
.next-heading p { color: var(--muted); }
.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.next-card { padding: 31px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.next-card .number { color: var(--clay); font-family: var(--serif); font-size: 13px; }
.next-card h3 { margin: 32px 0 11px; font-size: 23px; }
.next-card p { color: var(--muted); font-size: 13px; }
.prep-section { padding: 92px 0; background: #e9e2d7; }
.prep-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.prep-image { overflow: hidden; border-radius: 4px 70px 4px 4px; box-shadow: var(--shadow); }
.prep-image img { aspect-ratio: 3/2; object-fit: cover; }
.prep-copy h2 { margin: 15px 0 20px; }
.prep-list { display: grid; gap: 12px; margin: 28px 0 31px; }
.prep-item { display: flex; gap: 12px; align-items: center; color: #59615b; font-size: 14px; }
.prep-item .check { border-color: rgba(52,69,59,.24); color: var(--forest); }
.text-link { color: var(--forest); font-size: 13px; font-weight: 700; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 50; padding: 12px 16px; border-radius: 8px; background: var(--forest-deep); color: #fff; font-size: 12px; opacity: 0; transform: translateY(15px); pointer-events: none; transition: all .25s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .intro, .assessment-layout, .prep-layout { grid-template-columns: 1fr; gap: 55px; }
  .assessment-intro { position: static; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-aside { display: grid; grid-template-columns: 1.2fr 1fr; gap: 25px; }
  .designer-note { padding-top: 0; padding-left: 25px; border-top: 0; border-left: 1px solid rgba(255,255,255,.16); }
  .confirmation-hero { grid-template-columns: 1fr; }
  .confirmation-copy { padding: 75px 40px; }
  .confirmation-art { min-height: 420px; }
  .next-grid { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  .site-header { height: 70px; padding: 0 20px; }
  .header-note { display: none; }
  .hero { min-height: 750px; }
  .hero-content { min-height: 620px; }
  .hero::after { background: linear-gradient(90deg, rgba(24,30,26,.82), rgba(24,30,26,.5)), linear-gradient(0deg, rgba(24,30,26,.45), transparent); }
  .hero-copy { width: 100%; padding: 45px 0 100px; }
  .hero-copy p { font-size: 17px; }
  .project-label { right: 16px; bottom: 15px; }
  .credibility-row { grid-template-columns: 1fr 1fr; }
  .credibility-item:nth-child(2) { border-right: 0; }
  .credibility-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro, .process-section, .assessment-section, .next-section, .prep-section { padding-top: 80px; padding-bottom: 80px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { border-bottom: 1px solid rgba(255,255,255,.12); }
  .process-card h3 { margin-top: 20px; }
  .option-grid, .field-row { grid-template-columns: 1fr; }
  .assessment-body { padding: 25px 20px; }
  .footer-row { flex-direction: column; text-align: center; }
  .booking-aside { display: block; }
  .designer-note { padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .booking-main { padding: 25px 18px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-title { margin-top: 5px; }
  .confirmation-copy { padding: 60px 24px; }
  .confirmation-art { min-height: 320px; }
  .confirm-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
