:root {
  --linen: #f3eee5;
  --charcoal: #302c27;
  --copper: #b47a55;
  --charcoal-08: rgba(48, 44, 39, 0.08);
  --charcoal-12: rgba(48, 44, 39, 0.12);
  --charcoal-68: rgba(48, 44, 39, 0.68);
  --linen-92: rgba(243, 238, 229, 0.92);
  --copper-10: rgba(180, 122, 85, 0.1);
  --copper-18: rgba(180, 122, 85, 0.18);
  --max: 1180px;
  --text: 720px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--linen);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--charcoal);
  color: var(--linen);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--charcoal-12);
  background: var(--linen-92);
}
.nav-wrap {
  min-height: 82px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: grid; min-height: 44px; align-content: center; gap: 1px; line-height: 1.15; }
.brand strong { font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; }
.brand span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a,
.desktop-nav .nav-mega-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"],
.desktop-nav .nav-mega-toggle:hover,
.desktop-nav .nav-mega-toggle:focus-visible,
.desktop-nav .nav-mega-toggle[aria-expanded="true"],
.desktop-nav .nav-mega-toggle[aria-current="page"] { border-color: var(--copper); }
.desktop-nav .nav-mega-toggle {
  gap: 7px;
  padding: 0;
  border-width: 0 0 1px;
  background: transparent;
  cursor: pointer;
}
.desktop-nav .nav-mega-toggle span {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s var(--ease), margin .22s var(--ease);
}
.desktop-nav .nav-mega-toggle[aria-expanded="true"] span {
  margin-top: 3px;
  transform: rotate(225deg);
}
.desktop-nav .nav-cta {
  border: 1px solid var(--charcoal);
  padding: 10px 15px;
}
.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta:focus-visible { background: var(--charcoal); color: var(--linen); }
.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 12px 24px 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 36px 44px 42px;
  border: 1px solid var(--charcoal-12);
  border-radius: 18px;
  background: var(--linen);
  box-shadow: 0 28px 64px rgba(48, 44, 39, .16);
}
.mega-menu-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mega-menu-heading::before { width: 22px; height: 1px; background: var(--copper); content: ""; }
.mega-menu-column > a {
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 1px;
  padding: 12px 0;
  border-bottom: 1px solid var(--charcoal-12);
  transition: color .2s var(--ease), padding .2s var(--ease);
}
.mega-menu-column > a:hover,
.mega-menu-column > a:focus-visible {
  padding-left: 8px;
  box-shadow: inset 2px 0 0 var(--copper);
}
.mega-menu-column > a strong { font-size: 1rem; font-weight: 500; line-height: 1.35; }
.mega-menu-column > a span { color: var(--charcoal-68); font-size: .76rem; line-height: 1.45; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--charcoal-12);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--charcoal);
  content: "";
  transition: .25s var(--ease);
}
.menu-button span { position: relative; }
.menu-button span::before { position: absolute; top: -7px; }
.menu-button span::after { position: absolute; top: 7px; }
.menu-button[aria-expanded="true"] span { background: transparent; }
.menu-button[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 82px 0 0;
  z-index: 999;
  padding: 36px 24px;
  background: var(--linen);
  align-content: start;
  gap: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.is-open { display: grid; }
.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--charcoal-12);
  font-size: 1.15rem;
  font-weight: 600;
}
.mobile-nav-group > button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--charcoal-12);
  background: transparent;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.mobile-nav-group > button span {
  width: 9px;
  height: 9px;
  margin-right: 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}
.mobile-nav-group > button[aria-expanded="true"] span { transform: rotate(225deg); }
.mobile-submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height .32s var(--ease), visibility .32s;
}
.mobile-submenu.is-open {
  max-height: 320px;
  visibility: visible;
}
.mobile-submenu a {
  min-height: 50px;
  padding: 13px 18px;
  color: var(--charcoal-68);
  font-size: .9rem;
  font-weight: 500;
}
.mobile-submenu a:first-child { border-left: 2px solid var(--copper); }

.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 48px), var(--text)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-line { border-top: 1px solid var(--charcoal-12); }
.section-dark { background: var(--charcoal); color: var(--linen); }
.section-accent { background: var(--linen); border-top: 1px solid var(--copper-18); border-bottom: 1px solid var(--copper-18); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--charcoal);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 1px; background: var(--copper); content: ""; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; letter-spacing: -.035em; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { font-size: clamp(2.5rem, 4vw, 3rem); max-width: 900px; }
h2 { font-size: clamp(1.625rem, 3vw, 2rem); max-width: 820px; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -.02em; }
h4 { font-size: 1rem; letter-spacing: -.01em; }
.accent { color: var(--copper); }
.lead { max-width: 760px; margin: 24px 0 0; font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.65; }
.muted { color: var(--charcoal-68); }
.section-head { display: grid; gap: 18px; margin-bottom: 48px; }
.section-head p { max-width: 720px; margin: 0; color: var(--charcoal-68); }
.section-dark .section-head p { color: var(--linen); opacity: .76; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--charcoal);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s var(--ease);
}
.btn-primary { background: var(--charcoal); color: var(--linen); }
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--copper); border-color: var(--copper); color: var(--linen); }
.btn-secondary:hover,
.btn-secondary:focus-visible { background: var(--charcoal); color: var(--linen); }
.section-dark .btn-primary { background: var(--linen); border-color: var(--linen); color: var(--charcoal); }
.section-dark .btn-primary:hover { background: var(--copper); border-color: var(--copper); color: var(--linen); }
.cta-band .btn-primary { background: var(--linen); border-color: var(--linen); color: var(--charcoal); }
.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus-visible { background: var(--copper); border-color: var(--copper); color: var(--linen); }

.hero { padding: 76px 0 86px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); gap: 6vw; align-items: center; }
.hero-grid > *,
.page-hero-grid > *,
.split > *,
.content-layout > *,
.booking-layout > * { min-width: 0; }
.hero-copy p { max-width: 650px; }
.hero h1 .accent { white-space: nowrap; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; align-items: flex-start; }
.hero-cta-primary { display: grid; gap: 8px; }
.cta-reassurance { color: var(--charcoal-68); font-size: .8125rem; line-height: 1.4; text-align: center; }
.hero-media { position: relative; min-height: 620px; }
.hero-media img { width: 100%; height: 620px; object-fit: cover; }
.image-note {
  position: absolute;
  left: -42px;
  bottom: 36px;
  max-width: 260px;
  padding: 20px 22px;
  border-left: 3px solid var(--copper);
  background: var(--linen);
  font-size: .82rem;
}
.image-note strong { display: block; margin-bottom: 5px; }
.proof-strip { border-top: 1px solid var(--charcoal-12); border-bottom: 1px solid var(--charcoal-12); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { padding: 24px; text-align: center; border-right: 1px solid var(--charcoal-12); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: .83rem; text-transform: uppercase; letter-spacing: .08em; }
.proof-item span { color: var(--charcoal-68); font-size: .85rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.card {
  padding: 30px;
  border: 1px solid var(--charcoal-12);
  background: var(--linen);
}
.card-number { color: var(--charcoal); font-size: .76rem; font-weight: 600; letter-spacing: .12em; }
.card h3 { margin: 18px 0 12px; }
.card p { margin: 0; color: var(--charcoal-68); }
.card-link { display: grid; min-height: 100%; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.card-link:hover,
.card-link:focus-visible { transform: translateY(-4px); border-color: var(--copper); }
.card-link .arrow { margin-top: 28px; color: var(--charcoal); font-size: .8125rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.service-card { min-height: 470px; align-content: space-between; overflow: hidden; }
.service-card-image { width: calc(100% + 60px); max-width: none; height: 190px; margin: -30px -30px 26px; object-fit: cover; }
.service-card .tag { color: var(--charcoal); font-size: .8rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 7vw; align-items: start; }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-preview .split-media { max-height: 720px; aspect-ratio: 4/5; overflow: hidden; }
.about-preview .split-media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.brand-photo { filter: saturate(.82) contrast(.96) sepia(.04); }
.copy > *:first-child { margin-top: 0; }
.copy p { margin: 0 0 20px; }
.copy ul { margin: 0 0 24px; padding: 0; list-style: none; }
.copy li { position: relative; padding: 8px 0 8px 24px; }
.copy li::before { position: absolute; left: 0; color: var(--copper); content: "—"; }
.quote { margin: 34px 0; padding: 28px 0 28px 28px; border-left: 2px solid var(--copper); font-size: 1.25rem; line-height: 1.55; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--charcoal-12); }
.step { padding: 30px 24px 12px 0; border-right: 1px solid var(--charcoal-12); }
.step:last-child { border-right: 0; padding-left: 24px; }
.step:not(:first-child) { padding-left: 24px; }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--copper); font-size: .76rem; font-weight: 600; }
.step p { margin: 10px 0 0; color: var(--charcoal-68); font-size: .92rem; }

.gallery { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 280px; gap: 12px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; }
.gallery figure:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { position: absolute; left: 12px; bottom: 12px; padding: 6px 9px; background: var(--linen); font-size: .75rem; font-weight: 600; }

.page-hero { padding: 74px 0 82px; border-bottom: 1px solid var(--charcoal-12); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr); gap: 6vw; align-items: end; }
.page-hero h1 { font-size: clamp(2.5rem, 4vw, 3rem); }
.page-hero aside { padding: 28px; border-left: 2px solid var(--copper); background: var(--copper-10); }
.page-hero aside p { margin: 0 0 8px; }
.page-hero aside p:last-child { margin-bottom: 0; }
.page-hero-side { display: grid; gap: 16px; }
.page-hero-photo { margin: 0; }
.page-hero-photo img { width: 100%; height: 310px; object-fit: cover; }
.page-hero-photo figcaption,
.article-cover figcaption,
.credit-photo figcaption { margin-top: 9px; color: var(--charcoal); font-size: .75rem; line-height: 1.45; }
.page-hero-photo figcaption a,
.article-cover figcaption a,
.credit-photo figcaption a { border-bottom: 1px solid var(--charcoal-12); }
.breadcrumb { margin-bottom: 24px; color: var(--charcoal-68); font-size: .75rem; }
.breadcrumb a { border-bottom: 1px solid var(--charcoal-12); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 36px; background: var(--charcoal-12); }
.fact { padding: 18px; background: var(--linen); }
.fact strong { display: block; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.fact span { font-size: .88rem; color: var(--charcoal-68); }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 7vw; align-items: start; }
.content-sidebar { position: sticky; top: 112px; padding: 24px; border: 1px solid var(--charcoal-12); }
.content-sidebar p { margin: 8px 0 20px; color: var(--charcoal-68); font-size: .88rem; }
.prose h2 { margin: 58px 0 22px; font-size: clamp(1.625rem, 3vw, 2rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 12px; }
.prose p { margin: 0 0 18px; }
.prose ul { padding-left: 0; list-style: none; }
.prose li { position: relative; margin: 10px 0; padding-left: 24px; }
.prose li::before { position: absolute; left: 0; color: var(--copper); content: "—"; }
.callout { margin: 34px 0; padding: 28px; border-left: 3px solid var(--copper); background: var(--copper-10); }
.callout p:last-child { margin-bottom: 0; }

.faq-list { border-top: 1px solid var(--charcoal-12); }
details { border-bottom: 1px solid var(--charcoal-12); }
summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; font-weight: 600; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; right: 4px; top: 22px; color: var(--copper); content: "+"; font-size: 1.3rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; margin: 0; padding: 0 48px 24px 0; color: var(--charcoal-68); }

.booking-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 30px; align-items: start; }
.booking-copy { padding: 30px; border: 1px solid var(--charcoal-12); }
.booking-copy ul { padding: 0; list-style: none; }
.booking-copy li { margin: 13px 0; padding-left: 22px; position: relative; }
.booking-copy li::before { position: absolute; left: 0; color: var(--copper); content: "—"; }
.booking-frame { min-height: 900px; border: 1px solid var(--charcoal-12); background: var(--linen); }
.booking-frame iframe { width: 100%; height: 900px; border: 0; }

.legal-notice { padding: 22px; border-left: 3px solid var(--copper); background: var(--copper-10); }
.legal-notice strong { display: block; margin-bottom: 5px; }

.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.article-card { display: block; min-height: 100%; overflow: hidden; border: 1px solid var(--charcoal-12); transition: .25s var(--ease); }
.article-card:hover,
.article-card:focus-visible { transform: translateY(-4px); border-color: var(--copper); }
.article-card > img { width: 100%; height: 250px; object-fit: cover; }
.article-card-body { display: grid; min-height: 330px; padding: 30px; align-content: space-between; }
.article-meta { color: var(--charcoal); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2 { margin: 20px 0 14px; font-size: clamp(1.5rem, 2.8vw, 2rem); }
.article-card p { margin: 0; color: var(--charcoal-68); }
.article-card .arrow { margin-top: 30px; color: var(--charcoal); font-size: .8125rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.article-hero { padding: 70px 0 76px; border-bottom: 1px solid var(--charcoal-12); }
.article-hero h1 { max-width: 980px; font-size: clamp(2.5rem, 4vw, 3rem); }
.article-hero .lead { max-width: 800px; }
.article-cover { margin: 48px 0 0; }
.article-cover img { width: 100%; height: min(58vw, 560px); object-fit: cover; }
.article-body { width: min(calc(100% - 48px), 780px); margin: 0 auto; padding: 86px 0; }
.article-body h2 { margin: 62px 0 20px; font-size: clamp(1.625rem, 3vw, 2rem); }
.article-body h3 { margin: 34px 0 12px; }
.article-body p { margin: 0 0 20px; }
.article-body ul { padding: 0; list-style: none; }
.article-body li { position: relative; margin: 12px 0; padding-left: 24px; }
.article-body li::before { position: absolute; left: 0; color: var(--copper); content: "—"; }
.article-body .article-note { margin: 38px 0; padding: 26px; border-left: 3px solid var(--copper); background: var(--copper-10); }
.article-body .article-note p:last-child { margin-bottom: 0; }
.article-footer { margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--charcoal-12); }

.credits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 20px; }
.article-grid > :last-child:nth-child(odd),
.credits-grid > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - 20px) / 2);
  justify-self: center;
}
.credit-photo { margin: 0; }
.credit-photo img { width: 100%; height: 420px; object-fit: cover; }
.credits-note { margin-top: 76px; }

.cta-band { padding: 74px 0; background: var(--charcoal); color: var(--linen); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-grid h2 { font-size: clamp(1.625rem, 3vw, 2rem); }
.cta-grid p { max-width: 650px; margin: 14px 0 0; opacity: .76; }

.site-footer { padding: 54px 0 28px; border-top: 1px solid var(--charcoal-12); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
.footer-brand p { max-width: 420px; margin: 12px 0 0; color: var(--charcoal-68); font-size: .85rem; }
.footer-col strong { display: block; margin-bottom: 12px; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: flex; min-height: 44px; align-items: center; width: fit-content; margin: 0; padding: 10px 0; color: var(--charcoal-68); font-size: .84rem; }
.footer-col a:hover { color: var(--copper); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--charcoal-12); color: var(--charcoal-68); font-size: .75rem; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .mega-menu { display: none; }
  .menu-button { display: flex; }
  .hero-grid,
  .page-hero-grid,
  .split,
  .content-layout,
  .booking-layout { grid-template-columns: 1fr; }
  .hero-media { min-height: auto; }
  .hero-media img { height: min(70vh, 620px); }
  .image-note { left: 18px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar { position: static; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure:first-child { grid-row: auto; grid-column: span 2; }
  .booking-frame, .booking-frame iframe { min-height: 820px; height: 820px; }
  .about-preview .copy { order: -1; }
  .about-preview .split-media { width: min(100%, 576px); justify-self: center; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .nav-wrap { min-height: 74px; padding: 0 18px; }
  .mobile-nav { inset: 74px 0 0; }
  .container, .narrow { width: min(calc(100% - 36px), var(--max)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 54px 0; }
  .hero { padding: 52px 0 66px; }
  .hero-grid { gap: 44px; }
  .hero-media img { height: 480px; }
  .image-note { position: static; max-width: none; margin-top: 0; }
  .proof-grid,
  .facts,
  .grid-2,
  .grid-3,
  .grid-4,
  .article-grid,
  .credits-grid,
  .steps,
  .footer-grid,
  .cta-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--charcoal-12); }
  .proof-item:last-child { border-bottom: 0; }
  .step,
  .step:not(:first-child),
  .step:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--charcoal-12); }
  .gallery { display: grid; grid-template-columns: 1fr; grid-auto-rows: 310px; }
  .gallery figure:first-child { grid-column: auto; }
  .page-hero { padding: 50px 0 58px; }
  .page-hero aside { margin-top: 10px; }
  .cta-grid { align-items: start; }
  .booking-copy { padding: 22px; }
  .booking-frame, .booking-frame iframe { min-height: 790px; height: 790px; }
  .article-grid > :last-child:nth-child(odd),
  .credits-grid > :last-child:nth-child(odd) { grid-column: auto; width: 100%; }
}

@media (max-width: 420px) {
  .btn-row .btn { width: 100%; }
  .hero-actions,
  .hero-cta-primary,
  .hero-actions .btn { width: 100%; }
}

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


/* Portrait Alexandra dans la colonne de titre (section méthode) — 2026-08-08 */
.portrait-inline { margin: 32px 0 0; max-width: 340px; }
.portrait-inline img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; display: block; }
.portrait-inline figcaption {
  margin-top: 10px; font-size: .74rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-60, #6b655d);
}
@media (max-width: 900px) { .portrait-inline { max-width: 280px; margin-top: 24px; } }














/* ============================================================
   HARMONISATION GABARIT ANNE-LAURE — 2026-08-08
   Applique le langage visuel du site de référence
   (annelaurecharton) à toutes les pages, sans toucher au HTML :
   typographie Playfair Display / Montserrat, cartes blanches
   sur lin, boutons pleins, respiration généreuse.
   Les couleurs restent celles du brand book d'Alexandra.
   ============================================================ */

:root {
  --linen: #f3eee5;
  --linen2: #e9e1d4;
  --copper: #b47a55;
  --copper-deep: #935c3c;
  --charcoal: #302c27;
  --charcoal-deep: #211e1a;
  --paper: #fffdf9;
  --muted-ink: #5a5249;
  --hair: rgba(48, 44, 39, 0.12);
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--linen);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4,
.page-hero h1, .section-head h2, .card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.28rem; }

/* le mot-clé en italique : signature typographique de la référence */
h1 .accent, h2 .accent, h3 .accent {
  font-style: italic;
  color: var(--copper-deep);
}

.eyebrow, .tag, .card-number, .article-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-deep);
  opacity: 0.9;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  color: var(--muted-ink);
  line-height: 1.72;
}

p { color: var(--muted-ink); }

/* ---------- boutons : un seul composant ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--linen);
  box-shadow: 0 8px 22px rgba(48, 44, 39, 0.16);
}

.btn-primary:hover {
  background: var(--charcoal-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(48, 44, 39, 0.35);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background: rgba(48, 44, 39, 0.06);
  transform: translateY(-2px);
}

/* ---------- cartes ---------- */
.card, .service-card, .article-card, .step, .credit-photo {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover, .service-card:hover, .article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(48, 44, 39, 0.10);
}

.callout {
  background: var(--linen2);
  border-left: 3px solid var(--copper);
  border-radius: 0 6px 6px 0;
}

.quote, blockquote.quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--charcoal);
  border-left: 2px solid var(--copper);
}

/* ---------- respiration ---------- */
.section { padding-block: clamp(64px, 8vw, 104px); }
.page-hero { padding-block: clamp(72px, 9vw, 120px) clamp(40px, 5vw, 64px); }
.section-accent { background: var(--linen2); }

/* ---------- en-tête / pied de page ---------- */
.site-header { background: rgba(243, 238, 229, 0.97); }
/* Le flou ne s'applique qu'en desktop : backdrop-filter fait du header un
   conteneur pour les enfants position:fixed, ce qui écrase le menu mobile. */
@media (min-width: 901px) {
  .site-header { backdrop-filter: blur(10px); }
}
.brand { font-family: 'Playfair Display', Georgia, serif; letter-spacing: 0.02em; }

.site-footer { background: var(--charcoal); color: var(--linen); }
.site-footer a { color: var(--linen); opacity: 0.88; }
.site-footer a:hover { opacity: 1; }
.site-footer p, .site-footer span { color: rgba(243, 238, 229, 0.8); }
.footer-col h4, .footer-brand strong { font-family: 'Playfair Display', Georgia, serif; color: var(--linen); }

.cta-band { background: var(--charcoal); color: var(--linen); }
.cta-band h2, .cta-band p { color: var(--linen); }
.cta-band .btn-primary { background: var(--linen); color: var(--charcoal); }
.cta-band .btn-primary:hover { background: var(--paper); }

/* ---------- images : jamais d'étirement ---------- */
img { max-width: 100%; }
.split-media img, .service-card-image img, .brand-photo img { height: auto; }

/* ---------- mises en page à deux colonnes ----------
   L'aside était court et laissait un grand blanc sous lui ; les grilles
   à 3 colonnes se retrouvaient dans une colonne étroite (2 mots par ligne). */
.content-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 4vw; }
.content-layout > aside,
.content-layout > .page-side { position: sticky; top: 96px; }
.content-layout .grid-3 { gap: 16px; }
.content-layout .steps { gap: 18px; }

@media (max-width: 1100px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-layout > aside,
  .content-layout > .page-side { position: static; }
}
/* 3 cartes en 2 colonnes laisseraient la troisième orpheline : soit 3 de front,
   soit une seule colonne. Jamais 2+1. */
@media (max-width: 860px) {
  .content-layout .grid-3, .grid-3 { grid-template-columns: 1fr; }
}

.page-hero-grid { align-items: center; }

/* ---------- calendrier (Cal.com) intégré ---------- */
.calendar-shell {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: clamp(10px, 2vw, 20px);
  box-shadow: 0 12px 34px rgba(48, 44, 39, 0.08);
}

/* Cal.com bascule en affichage mobile sous ~768px de large : la colonne du
   calendrier doit rester au-dessus de ce seuil, sinon vue étriquée en colonne. */
.booking-layout { grid-template-columns: minmax(0, .52fr) minmax(0, 1.48fr); gap: 36px; }
.booking-frame { min-width: 0; }
.booking-frame iframe { width: 100%; height: 680px; border: 0; display: block; }
@media (max-width: 1180px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-frame iframe { height: 880px; }
}

/* ---------- accueil : hero portrait + galerie pleine largeur (gabarit de référence) ---------- */
.home-hero { padding-block: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 72px); }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 5vw, 72px); align-items: center; }
.home-hero h1 { margin: .18em 0 .5em; }
.home-hero-media { margin: 0; }
.home-hero-media img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 6px; display: block; }
.hero-note { margin-top: 16px; font-size: .84rem; color: var(--muted-ink); }

.acc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.acc-card { display: block; text-decoration: none; background: var(--paper);
  border: 1px solid var(--hair); border-radius: 6px; padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease; }
.acc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(48,44,39,.10); }
.acc-card h3 { margin: 8px 0 8px; }
.acc-card p { margin: 0; font-size: .95rem; }
.acc-card .arrow { display: inline-block; margin-top: 14px; font-size: .78rem;
  letter-spacing: .06em; color: var(--copper-deep); }

.galerie { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 6px; }
.galerie .gal-item { overflow: hidden; }
.galerie .gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.galerie .gal-item--big { grid-column: span 2; grid-row: span 2; }

.citation-band .quote { border: 0; text-align: center; margin: 0; padding: 0; }
.narrow.center { max-width: 720px; margin-inline: auto; text-align: center; }
.narrow.center .btn-row { justify-content: center; }

@media (max-width: 900px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-media { order: -1; max-width: 420px; margin-inline: auto; }
  .acc-grid { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .galerie .gal-item--big { grid-column: span 2; grid-row: span 1; }
}

/* ---------- correctifs de marge (cartes .step) ----------
   .step héritait d'un padding 30px 24px 12px 0 : sans fond c'était invisible,
   mais dès qu'on lui donne une carte, le texte se colle au bord gauche et le
   bas est étranglé. Et .steps n'avait aucun gap : les cartes se touchaient. */
.steps { gap: 18px; }
.step { padding: 26px 24px; }
.step p:last-child { margin-bottom: 0; }

/* Une image dont le ratio natif diffère du cadre est rognée sur les côtés
   (cas de la photo des diplômes, 4:3 dans un cadre 4:5). La source est
   letterboxée en amont sur fond lin — ne jamais compenser par un object-position
   au jugé, qui coupe toujours quelque chose. */

/* ---------- en-têtes de page sans média ----------
   Le bloc de texte est bridé à 900px dans un conteneur de 1180 : aligné à
   gauche il paraissait poussé sur le côté, avec 280px de vide à droite.
   Centré, comme les en-têtes de section du gabarit de référence.
   (Les en-têtes AVEC média — .page-hero-grid — gardent l'alignement à gauche.) */
.page-hero > .container:not(:has(.page-hero-grid)) { text-align: center; }
.page-hero > .container:not(:has(.page-hero-grid)) > * { margin-inline: auto; }
.page-hero > .container:not(:has(.page-hero-grid)) .lead { max-width: 68ch; }
.page-hero > .container:not(:has(.page-hero-grid)) .breadcrumb { justify-content: center; }
.page-hero > .container:not(:has(.page-hero-grid)) .eyebrow { display: block; }
.page-hero > .container:not(:has(.page-hero-grid)) .btn-row { justify-content: center; }

/* Rattrapage : quand l'en-tête contient un média, TOUT reste aligné à gauche
   (la règle :not(:has()) ne portait pas jusqu'aux descendants de la grille). */
.page-hero .page-hero-grid,
.page-hero .page-hero-grid * { text-align: left; }
.page-hero .page-hero-grid > * { margin-inline: 0; }

/* Bloc journal de l'accueil : 3 articles: 3 colonnes (en 2 colonnes le 3e
   serait orphelin), 1 colonne en petit écran. */
#journal .article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { #journal .article-grid { grid-template-columns: 1fr; } }
/* Le thème étend le 3e article sur toute la largeur (anti-orphelin prévu pour
   une grille à 2 colonnes) : inutile ici puisqu'on est en 3 colonnes. */
#journal .article-grid > * { grid-column: auto; justify-self: stretch; width: auto; max-width: none; }

/* Symbole du logo dans l'en-tête (posé 2026-08-09).
   .brand est une grille de 2 lignes (nom + baseline) : le symbole occupe une
   colonne à gauche et enjambe les deux lignes. Surtout pas d'inline-flex, qui
   aligne les 3 éléments sur une seule ligne et comprime le texte.
   Pas de vector-effect non plus : le trait de 7 unités du viewBox 176x200
   deviendrait 7 pixels réels sur 30px de large, soit une tache pleine. */
.brand { display: grid; grid-template-columns: auto 1fr; column-gap: 11px; align-items: center; }
.brand-mark { grid-row: 1 / 3; color: var(--copper, #b47a55); fill: none; stroke: currentColor; }
@media (max-width: 560px) { .brand-mark { width: 25px; height: 28px; } }

/* ---------- page rendez-vous : cartes de réservation ---------- */
.rdv-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.rdv-card { display: flex; flex-direction: column; gap: 14px; padding: 32px 30px;
  background: var(--paper); border: 1px solid var(--hair); border-radius: 8px; }
.rdv-card--first { border-color: var(--copper); box-shadow: 0 10px 30px rgba(48,44,39,.08); }
.rdv-card-top { display: grid; gap: 6px; }
.rdv-card h2 { margin: 0; font-size: 1.5rem; }
.rdv-card-meta { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--copper-deep); }
.rdv-card p { margin: 0; flex: 1; }
.rdv-card .btn { align-self: flex-start; cursor: pointer; }
.rdv-notes { max-width: 760px; margin: 46px auto 0; display: grid; gap: 18px; }
.rdv-notes .callout { padding: 22px 24px; }
.rdv-notes .muted { font-size: .86rem; color: var(--muted-ink); }
@media (max-width: 860px) { .rdv-cards { grid-template-columns: 1fr; } }


/* ---------- en-tête sur une seule ligne (2026-08-09) ----------
   La baseline longue passait sur 2 lignes et poussait le menu à se casser :
   « À propos », « Le cabinet » et « Rendez-vous » se coupaient en deux.
   Libellés insécables + espacement resserré au-dessus de 1100px. */
.brand strong, .brand span { white-space: nowrap; }
.desktop-nav a, .desktop-nav button, .nav-cta { white-space: nowrap; }
@media (min-width: 1101px) and (max-width: 1500px) {
  .desktop-nav { gap: clamp(14px, 1.5vw, 26px); }
  .desktop-nav a, .desktop-nav button { font-size: .82rem; letter-spacing: .07em; }
}
