:root {
  --ink: #142a25;
  --ink-soft: #29423c;
  --paper: #f7f4ec;
  --paper-deep: #eee9dd;
  --white: #fffdf8;
  --copper: #bd5d38;
  --copper-dark: #944326;
  --sage: #b7c8b4;
  --line: rgba(20, 42, 37, .14);
  --muted: #65756f;
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(20, 42, 37, .12);
  --radius: 6px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--sage); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.section-rule { border-top: 1px solid var(--line); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 520;
  letter-spacing: -.035em;
  line-height: 1.05;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.5rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2.05rem); }
p { margin-bottom: 1.25rem; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.65; }
.muted { color: var(--muted); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: #e7a58a; }
.display-italic { font-style: italic; color: var(--copper); }
.text-link {
  color: var(--copper-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 236, .94);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); text-decoration: none; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--display); font-size: 1.12rem; font-weight: 600; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 34px); }
.main-nav > a:not(.button) { font-size: .84rem; font-weight: 700; text-decoration: none; }
.main-nav > a:not(.button):hover { color: var(--copper); }
.nav-toggle { display: none; padding: 8px; border: 0; background: transparent; color: var(--ink); }
.nav-toggle span { display: block; width: 27px; height: 2px; margin: 5px 0; background: currentColor; transition: .25s ease; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--copper);
  border-radius: var(--radius);
  background: var(--copper);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--copper-dark); border-color: var(--copper-dark); }
.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--sage); border-color: var(--sage); color: var(--ink); }
.button-arrow::after { content: "↗"; font-size: 1.1rem; line-height: 1; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero { position: relative; min-height: calc(100vh - 84px); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .32;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}
.hero-grid { display: grid; min-height: calc(100vh - 84px); grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); align-items: center; gap: clamp(36px, 7vw, 100px); padding-block: 64px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 890px; margin-bottom: 28px; }
.hero .lead { max-width: 680px; color: var(--ink-soft); }
.hero-note { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; color: var(--muted); font-size: .83rem; font-weight: 650; }
.hero-note span { display: flex; align-items: center; gap: 8px; }
.hero-note span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.portrait-wrap { position: relative; justify-self: end; width: min(100%, 470px); }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: .82; border-radius: 240px 240px 12px 12px; background: var(--paper-deep); box-shadow: var(--shadow); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.portrait-orbit { position: absolute; inset: -24px; z-index: -1; border: 1px solid var(--copper); border-radius: 260px 260px 18px 18px; transform: translate(22px, 18px); }
.portrait-badge {
  position: absolute;
  right: -26px;
  bottom: 32px;
  max-width: 180px;
  padding: 20px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}
.portrait-badge strong { display: block; font-family: var(--display); font-size: 1.6rem; font-weight: 520; }
.portrait-badge span { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 128px; padding: 26px 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { font-family: var(--display); font-size: 1.25rem; font-weight: 560; }
.trust-item span { color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .04em; }

.split { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.sticky-intro { position: sticky; top: 130px; }
.prose p { font-size: 1.06rem; }
.signature { margin-top: 32px; font-family: var(--display); font-size: 1.65rem; font-style: italic; color: var(--copper); }
.micro-list { display: grid; gap: 0; margin-top: 42px; border-top: 1px solid var(--line); }
.micro-list div { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.micro-list b { color: var(--copper); font-family: var(--display); font-weight: 500; }

.section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 40px; align-items: end; margin-bottom: 60px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading p { margin-bottom: 4px; color: var(--muted); }
.section-dark .section-heading p { color: #b9c5c0; }
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.expertise-card { position: relative; min-height: 340px; padding: 42px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); overflow: hidden; }
.expertise-card::after { content: attr(data-index); position: absolute; right: 24px; top: 12px; color: rgba(255,255,255,.08); font-family: var(--display); font-size: 7rem; line-height: 1; }
.expertise-card h3 { position: relative; z-index: 1; max-width: 420px; margin: 56px 0 18px; color: var(--white); }
.expertise-card p { position: relative; z-index: 1; max-width: 500px; color: #c4cfcb; }
.expertise-card a { position: absolute; z-index: 2; left: 42px; bottom: 36px; color: #eda689; font-size: .78rem; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.expertise-card a:hover { color: #fff; }

.condition-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.condition-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.condition-cloud span { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.35); font-size: .84rem; }
.condition-note { margin-top: 30px; padding: 24px; border-left: 3px solid var(--copper); background: var(--white); color: var(--muted); font-size: .86rem; }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-step { counter-increment: process; padding: 34px 34px 10px 0; }
.process-step + .process-step { padding-left: 34px; border-left: 1px solid var(--line); }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 28px; color: var(--copper); font-family: var(--display); font-size: 1.35rem; }
.process-step h3 { font-size: 1.55rem; }
.process-step p { color: var(--muted); }

.timeline { max-width: 900px; margin: 30px auto 0; }
.timeline-item { display: grid; grid-template-columns: 150px 1fr; gap: 36px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.timeline-item:first-child { border-top: 1px solid rgba(255,255,255,.18); }
.timeline-item time { color: #e7a58a; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.timeline-item h3 { margin: 0 0 8px; color: var(--white); font-family: var(--body); font-size: 1.06rem; font-weight: 750; letter-spacing: 0; line-height: 1.45; }
.timeline-item p { margin: 0; color: #b9c5c0; font-size: .9rem; }

.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.location-card { position: relative; min-height: 280px; padding: 34px; border: 1px solid var(--line); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.location-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(20,42,37,.08); }
.location-card .location-city { color: var(--copper); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.location-card h3 { margin: 42px 0 12px; }
.location-card address { color: var(--muted); font-size: .9rem; font-style: normal; }
.location-card .location-link { position: absolute; left: 34px; bottom: 30px; font-size: .76rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; text-transform: uppercase; }
.location-card .location-link:hover { color: var(--copper); }

.proof-panel { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; padding: 54px; border: 1px solid var(--line); background: var(--paper-deep); }
.proof-score strong { display: block; font-family: var(--display); font-size: clamp(3.7rem, 7vw, 6.7rem); font-weight: 520; line-height: .9; }
.proof-score span { color: var(--copper); letter-spacing: .12em; }
.proof-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-points div { padding-left: 18px; border-left: 2px solid var(--copper); }
.proof-points strong { display: block; margin-bottom: 8px; }
.proof-points span { color: var(--muted); font-size: .82rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 25px 54px 25px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 1.35rem; line-height: 1.3; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 8px; top: 22px; color: var(--copper); font-family: var(--body); font-size: 1.5rem; font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { max-width: 760px; padding-bottom: 28px; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; background: var(--copper); color: #fff; }
.cta-band::after { content: "AA"; position: absolute; right: -2vw; bottom: -12vw; color: rgba(255,255,255,.08); font-family: var(--display); font-size: min(36vw, 470px); line-height: 1; }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.cta-inner h2 { max-width: 780px; margin-bottom: 0; color: #fff; }
.cta-actions { justify-self: end; }

.site-footer { padding: 70px 0 26px; background: #0c1d19; color: #dce4e0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .65fr .65fr 1fr; gap: 50px; }
.footer-brand p { max-width: 310px; margin-top: 20px; color: #97aaa3; font-size: .83rem; }
.footer-col h3 { margin-bottom: 18px; color: #fff; font-family: var(--body); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 8px 0; color: #b8c6c1; font-size: .84rem; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #82958e; font-size: .72rem; }

.page-hero { padding: 100px 0 76px; border-bottom: 1px solid var(--line); background: var(--white); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; }
.page-hero h1 { max-width: 870px; margin-bottom: 0; font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero p { color: var(--muted); }
.breadcrumbs { margin-bottom: 32px; color: var(--muted); font-size: .76rem; }
.breadcrumbs a { text-underline-offset: 3px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 80px; align-items: start; }
.content-copy h2 { margin: 2.2rem 0 1.1rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.content-copy h3 { margin: 2rem 0 .8rem; font-family: var(--body); font-size: 1.13rem; font-weight: 800; letter-spacing: 0; line-height: 1.4; }
.content-copy p, .content-copy li { color: var(--ink-soft); }
.content-copy li { margin-bottom: .55rem; }
.aside-card { position: sticky; top: 120px; padding: 30px; background: var(--ink); color: #fff; }
.aside-card h2 { margin-bottom: 16px; color: #fff; font-size: 2rem; }
.aside-card p { color: #bdcbc6; font-size: .88rem; }
.aside-card .button { width: 100%; margin-top: 12px; }
.aside-meta { margin: 24px 0; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.aside-meta div + div { margin-top: 14px; }
.aside-meta strong { display: block; color: #e7a58a; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.aside-meta span { font-size: .84rem; }

.booking-shell { min-height: 730px; padding: 28px; border: 1px solid var(--line); background: var(--white); }
.booking-shell .zl-url { display: block; padding: 18px; text-align: center; }
.contact-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.contact-notice { padding: 24px; border: 1px solid var(--line); background: var(--paper-deep); font-size: .87rem; }
.map-link { display: inline-block; margin-top: 12px; color: var(--copper-dark); font-size: .78rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; text-transform: uppercase; }
.privacy-copy h2 { margin-top: 2.5rem; font-size: 2rem; }
.privacy-copy h3 { font-family: var(--body); font-size: 1rem; font-weight: 800; letter-spacing: 0; }

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

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    padding: 30px 20px 36px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.button) { padding: 10px 0; font-size: 1rem; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr .68fr; gap: 50px; }
  .hero h1 { font-size: clamp(3rem, 8vw, 5.4rem); }
  .portrait-badge { right: -10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .condition-layout { grid-template-columns: 1fr; gap: 50px; }
  .sticky-intro { position: static; }
  .section-heading { grid-template-columns: 1fr; }
  .proof-panel { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: minmax(0,1fr) 290px; gap: 40px; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 54px 0; }
  .brand-copy small { display: none; }
  .header-inner { min-height: 72px; }
  .main-nav { top: 72px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 54px 0 80px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .portrait-wrap { width: min(88%, 430px); margin: 30px auto 0; justify-self: center; }
  .portrait-frame { aspect-ratio: .88; }
  .portrait-badge { right: -7%; bottom: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3), .trust-item:first-child { min-height: 105px; border: 0; border-bottom: 1px solid var(--line); }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 330px; padding: 30px; }
  .expertise-card a { left: 30px; }
  .process { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 260px; }
  .proof-panel { padding: 30px; }
  .proof-points { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 70px 0 54px; }
  .page-hero-grid, .content-grid, .contact-intro { grid-template-columns: 1fr; gap: 38px; }
  .aside-card { position: static; }
  .booking-shell { min-height: 670px; padding: 8px; }
}
