:root {
  --espresso: #331f1c;
  --espresso-deep: #241614;
  --beige: #e6d7c3;
  --beige-light: #f5ede4;
  --gold: #b8860b;
  --gold-soft: #d4a017;
  --charcoal: #2c2c2c;
  --ink: #3a322f;
  --muted: #7a6f6a;
  --cream: #fbf6f0;
  --warm-white: #fffef8;
  --white: #ffffff;
  --line: rgba(51, 31, 28, 0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 12px 40px rgba(51, 31, 28, 0.08);
  --shadow-hover: 0 18px 44px rgba(51, 31, 28, 0.12);
  --header: 76px;
  --wrap: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }

body {
  font-family: "Montserrat", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 50% at 6% -8%, rgba(184, 134, 11, 0.13), transparent 54%),
    radial-gradient(ellipse 70% 42% at 100% 6%, rgba(51, 31, 28, 0.08), transparent 48%),
    url("../assets/gfx/marble-warm.png") center / cover no-repeat;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background: url("../assets/gfx/grain.png") repeat;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--espresso);
  color: #fff;
  padding: 8px 16px;
  z-index: 2000;
}
.skip:focus { left: 12px; top: 12px; }

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.18;
}

h1 { font-size: clamp(2.35rem, 4.6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.85rem); }
h3 { font-size: clamp(1.28rem, 1.8vw, 1.6rem); }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.lead { font-size: 1.08rem; color: var(--ink); font-weight: 300; }

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 28px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.ornament {
  width: 64px;
  height: auto;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s var(--ease);
  background: none;
  white-space: nowrap;
}
.btn-primary { background: var(--espresso); color: #fff; border-color: var(--espresso); }
.btn-primary:hover { background: transparent; color: var(--espresso); }
.btn-ghost { border-color: var(--espresso); color: var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--espresso); border-color: var(--espresso); }
.btn-light { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-light:hover { background: #fff; color: var(--espresso); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(251, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  border-top: 2px solid var(--gold);
  transition: 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 254, 248, 0.96);
}
.site-header .inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 42px; width: auto; max-width: 180px; object-fit: contain; }

.nav-desk {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-desk a {
  text-decoration: none;
  font-size: 0.78rem;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
  color: var(--espresso);
}
.nav-desk a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav-desk a:hover::after,
.nav-desk a.is-on::after { width: 100%; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
}
.lang button {
  background: none;
  border: 0;
  padding: 6px 9px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.lang button.is-on { background: var(--espresso); color: #fff; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(51, 31, 28, 0.35);
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--espresso);
  margin: 0;
  transition: 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px 28px;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 18px; width: 100%; }
body.nav-open .mobile-nav { display: block; }

.fx-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 120;
  background: var(--gold);
  pointer-events: none;
}

/* Hero */
.hero-band {
  position: relative;
  background:
    radial-gradient(ellipse 55% 80% at 88% 42%, rgba(184, 134, 11, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(255, 254, 248, 0.2), rgba(251, 246, 240, 0.04) 70%);
}
.hero {
  min-height: min(100vh, 880px);
  padding: calc(var(--header) + 36px) 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 56px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.hero-copy { max-width: 36rem; min-width: 0; }
.hero-sub {
  font-size: 1.12rem;
  font-weight: 300;
  margin: 4px 0 32px;
  max-width: 32rem;
  color: var(--ink);
  overflow-wrap: break-word;
}
.hero h1 { color: var(--espresso); }

.hero-stage {
  position: relative;
  height: min(78vh, 680px);
  min-height: 480px;
}
.hero-clip {
  position: absolute;
  inset: 0 0 64px 56px;
  overflow: hidden;
}
.hero-clip::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(232, 201, 120, 0.55);
  pointer-events: none;
  z-index: 1;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.g-tick {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 3;
  border: 1.5px solid var(--gold-soft);
}
.g-tick.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.g-tick.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.photo-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--espresso);
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
  font-weight: 600;
}
.hero-inset-clip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 48%;
  overflow: hidden;
  border: 10px solid var(--cream);
  z-index: 2;
  box-shadow: var(--shadow-hover);
}
.hero-inset-clip::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 134, 11, 0.45);
  pointer-events: none;
}
.hero-inset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.marquee {
  overflow: hidden;
  border: 0;
  background: var(--espresso-deep);
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 36s linear infinite;
  padding: 18px 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 254, 248, 0.72);
  font-weight: 600;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { white-space: nowrap; }
.marquee-track b { color: var(--gold-soft); font-weight: 600; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(var(--wrap), calc(100% - 48px));
  margin: -1px auto 56px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}
.pillar {
  background: rgba(255, 254, 248, 0.94);
  padding: 44px 32px 40px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: "Crimson Text", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.pillar::after {
  content: attr(data-n);
  position: absolute;
  right: 12px;
  bottom: -18px;
  font-family: "Crimson Text", serif;
  font-size: 7.5rem;
  line-height: 1;
  color: rgba(184, 134, 11, 0.08);
  pointer-events: none;
}

/* Sections */
.section { padding: 96px 0; }
.section-cream { background: rgba(251, 246, 240, 0.52); }
.section-white { background: rgba(255, 254, 248, 0.86); }
.section-beige { background: rgba(245, 237, 228, 0.78); }
.section-dark {
  background: var(--espresso-deep);
  color: rgba(255, 255, 255, 0.82);
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-paper {
  position: relative;
  background:
    linear-gradient(180deg, rgba(251, 246, 240, 0.82), rgba(245, 237, 228, 0.88)),
    url("../assets/gfx/paper-gold.png") center / cover;
}
.section-ink {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  background: var(--espresso-deep) center / cover no-repeat;
}
.section-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(36, 22, 20, 0.93) 18%, rgba(36, 22, 20, 0.72));
}
.section-ink > .wrap { position: relative; z-index: 1; }
.section-ink h2,
.section-ink h3 { color: #fff; }
.section-ink .eyebrow { color: var(--gold-soft); }
.section-ink .gold-rule { background: var(--gold-soft); }
.section-ink p,
.section-ink .lead { color: rgba(255, 255, 255, 0.78); }

.page-hero {
  padding: calc(var(--header) + 100px) 0 92px;
  min-height: 440px;
  background: var(--espresso-deep) center 42% / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(36, 22, 20, 0.88) 10%, rgba(36, 22, 20, 0.42));
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.55), transparent);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .gold-rule { background: var(--gold-soft); }
.page-hero p {
  max-width: 38rem;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}
.crumbs {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 16px;
}
.crumbs a { color: #fff; text-decoration: none; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.split-copy p { margin-bottom: 1.05rem; }
.quote {
  background: rgba(245, 237, 228, 0.78);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  margin: 28px 0;
  font-family: "Crimson Text", serif;
  font-size: 1.28rem;
  font-style: italic;
  color: var(--espresso);
}

.frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #cfc3b3 center / cover no-repeat;
  box-shadow: var(--shadow-hover);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232, 201, 120, 0.5);
  pointer-events: none;
}

.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.area {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 0 0 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: 0.35s var(--ease);
  overflow: hidden;
}
.area:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.area-media {
  height: 176px;
  overflow: hidden;
  position: relative;
}
.area-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(36, 22, 20, 0.28));
  pointer-events: none;
}
.area-idx {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  font-family: "Crimson Text", serif;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.08em;
}
.area-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.8s var(--ease);
}
.area:hover .area-media img { transform: scale(1.07); }
.area-body { padding: 22px 24px 0; display: flex; flex-direction: column; flex: 1; }
.area svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 12px;
}
.area p { color: var(--ink); font-size: 0.92rem; margin-top: 10px; flex: 1; }
.area .more {
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.area.plain {
  padding: 32px 26px 28px;
  min-height: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  align-items: start;
}
.stat {
  text-align: center;
  min-width: 0;
  padding: 0 6px;
}
.stat-num {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 0 0 12px;
  font-family: "Crimson Text", serif;
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2.35rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.15;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.45);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: manual;
  max-width: 16ch;
  margin: 0 auto;
  color: var(--muted);
}

.mandates { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mandate {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.35s var(--ease);
}
a.mandate:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.mandate span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.step {
  padding: 8px 28px 8px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: 0; padding-right: 0; }
.step:not(:first-child) { padding-left: 28px; }
.step b {
  display: block;
  font-family: "Crimson Text", serif;
  color: var(--gold);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 10px;
}

.team {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}
.portrait {
  min-height: 560px;
  background: #cfc3b3 center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(232, 201, 120, 0.5);
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--espresso);
  color: #fff;
  padding: 14px 20px;
  font-size: 0.8rem;
}
.meta-list { margin-top: 22px; }
.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.meta-list span { color: var(--muted); }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--espresso);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 12px 0 6px; color: var(--ink); }

.checks { display: grid; gap: 10px; margin: 18px 0 28px; }
.checks li {
  padding-left: 26px;
  position: relative;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.cta-band {
  padding: 120px 0;
  background: var(--espresso) center / cover;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 22, 20, 0.42), rgba(36, 22, 20, 0.28));
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 36px;
  width: 48px;
  height: 2px;
  background: var(--gold-soft);
  transform: translateX(-50%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 12px; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.cta-band p { margin-bottom: 28px; color: rgba(255, 255, 255, 0.8); }

.form,
.panel {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 40px 36px;
}
label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--espresso);
}
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--beige);
  background: var(--cream);
  font-size: 1rem;
  color: var(--charcoal);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  margin: 8px 0 22px;
}
.consent input { width: auto; margin: 3px 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card,
.map-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 36px;
  min-height: 360px;
}
.map-card { padding: 0; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.info-row { display: flex; gap: 16px; margin-bottom: 26px; }
.info-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
  flex-shrink: 0;
}

.tabs { display: flex; gap: 0; margin-bottom: 22px; border: 1px solid var(--line); }
.tabs button {
  flex: 1;
  border: 0;
  background: var(--cream);
  padding: 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tabs button.is-on { background: var(--espresso); color: #fff; }
.tab-panel[hidden] { display: none; }

.days { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 16px; }
.day,
.slot {
  border: 1px solid var(--beige);
  background: var(--cream);
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  font-size: 0.78rem;
}
.day small { display: block; color: var(--muted); }
.day.is-on,
.slot.is-on { background: var(--espresso); color: #fff; border-color: var(--espresso); }
.day.is-on small { color: rgba(255, 255, 255, 0.7); }
.slot:disabled,
.day:disabled { opacity: 0.35; cursor: not-allowed; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }

.confirm {
  display: none;
  text-align: center;
  padding: 28px 10px;
}
.confirm.is-on { display: block; }
.confirm b {
  display: block;
  font-size: 1.4rem;
  font-family: "Crimson Text", serif;
  margin: 8px 0 12px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(36, 22, 20, 0.94), rgba(28, 16, 14, 0.97)),
    url("../assets/gfx/library-warm.png") center 40% / cover;
  color: rgba(255, 255, 255, 0.78);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .logo-link img {
  height: 46px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.site-footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: 16px; }
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer p,
.site-footer li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 0.78rem;
  opacity: 0.7;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--espresso-deep);
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(184, 134, 11, 0.4);
  display: none;
  padding: 16px 0;
}
.cookie.is-on { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cookie h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.cookie p {
  font-size: 0.82rem;
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.84);
  max-width: none;
}
.cookie a { color: #fff; }
.cookie-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; flex-shrink: 0; }
.cookie .btn { min-height: 40px; padding: 0 16px; }
.cookie .btn-ghost { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.cookie .btn-ghost:hover { background: #fff; color: var(--espresso); }
.cookie .btn-light { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.cookie-prefs {
  display: none;
  gap: 16px;
  margin: 12px auto 0;
  width: min(var(--wrap), calc(100% - 48px));
  font-size: 0.85rem;
}
.cookie-prefs.is-on { display: flex; flex-wrap: wrap; }
.cookie .consent { color: rgba(255, 255, 255, 0.84); margin: 0; }
body.has-cookie { padding-bottom: 84px; }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--espresso);
  color: #fff;
  padding: 14px 18px;
  z-index: 95;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s var(--ease);
  max-width: 320px;
}
.toast.is-on { transform: none; opacity: 1; }
body.has-cookie .toast { bottom: 100px; }

.legal { max-width: 760px; }
.legal h2 { font-size: 1.6rem; margin: 32px 0 12px; }
.legal h3 { font-size: 1.2rem; margin: 22px 0 8px; }
.legal p,
.legal li { margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 18px; }

.clients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client {
  background: var(--warm-white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.35s var(--ease);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.client:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.client-media { height: 150px; overflow: hidden; }
.client-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.client:hover .client-media img { transform: scale(1.05); }
.client-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.client .more { margin-top: auto; padding-top: 16px; }

.insights { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 20px; }
.insight {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
  transition: 0.35s var(--ease);
}
.insight:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.insight-media { height: 168px; overflow: hidden; }
.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.insight:hover .insight-media img { transform: scale(1.05); }
.insight-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.insight .more { margin-top: auto; padding-top: 16px; }

.article { max-width: 760px; }
.article + .article { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--line); }
.article img.lead-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  margin: 8px 0 28px;
}
.article p { margin-bottom: 1.1rem; }
.article-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.time-item b {
  display: block;
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.cee-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.cee-photo {
  height: 360px;
  overflow: hidden;
  position: relative;
}
.cee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.cee-photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 134, 11, 0.5);
  pointer-events: none;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.principle b {
  display: block;
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.principle h3 { margin-bottom: 10px; }
.principle p { font-size: 0.92rem; }

.lang-list {
  display: grid;
  gap: 0;
  margin: 8px 0 32px;
}
.lang-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.lang-list li:last-child { border-bottom: 1px solid var(--line); }
.lang-list strong {
  display: block;
  font-family: "Crimson Text", serif;
  font-size: 1.25rem;
  color: var(--espresso);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-grid + .prep { margin-top: 28px; }
.prep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.contact-grid + .prep { margin-top: 28px; }
.prep article {
  background: rgba(255, 254, 248, 0.86);
  border: 1px solid var(--line);
  padding: 28px 26px;
}
.prep h3 { margin-bottom: 10px; }

.prose p { margin-bottom: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .nav-desk { display: none; }
  .nav-toggle { display: flex; }
  .header-tools { margin-left: auto; }
  .logo-link img { height: 36px; max-width: 148px; }
  .site-header .inner { gap: 12px; }
  .areas,
  .process,
  .clients,
  .insights,
  .timeline,
  .principles { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
  .process { gap: 20px; }
  .step,
  .step:not(:first-child),
  .step:last-child {
    border-right: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
  }
  .split,
  .team,
  .contact-grid,
  .cee-band { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 48px;
  }
  .hero-stage { height: 420px; margin-top: 36px; min-height: 360px; }
  .hero-clip { inset: 0 0 40px 28px; }
  .days { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .pillars { width: min(var(--wrap), calc(100% - 32px)); margin-bottom: 32px; }
  .site-header .inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }
  .logo-link { grid-column: 1; }
  .header-tools { grid-column: 2; margin-left: 0; gap: 8px; }
  .nav-toggle { display: flex; grid-column: 3; }
  .logo-link img { height: 32px; max-width: 128px; }
  .areas,
  .process,
  .mandates,
  .form-grid,
  .slots,
  .clients,
  .insights,
  .timeline,
  .principles,
  .prep { grid-template-columns: 1fr; }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }
  .stat { padding: 0 4px; }
  .stat-num {
    font-size: clamp(1.2rem, 5.4vw, 1.7rem);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    max-width: 14ch;
  }
  .header-tools .btn { display: none; }
  .form,
  .panel { padding: 24px 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero {
    padding: calc(var(--header) + 48px) 0 48px;
    min-height: 0;
  }
  .page-hero h1 { max-width: none; font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .page-hero p { font-size: 0.98rem; }
  .hero {
    width: min(1200px, calc(100% - 32px));
    padding-top: calc(var(--header) + 20px);
    padding-bottom: 28px;
    gap: 0;
  }
  .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.35rem); overflow-wrap: break-word; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero .btn-row { flex-direction: column; align-items: stretch; }
  .hero .btn { width: 100%; }
  .hero-stage { height: 260px; min-height: 220px; margin-top: 24px; }
  .hero-clip { inset: 0 0 28px 12px; }
  .hero-inset-clip { width: 46%; height: 40%; border-width: 6px; }
  .pillar { padding: 28px 22px 24px; }
  .frame { min-height: 260px; }
  .portrait { min-height: 320px; }
  .area { min-height: 0; }
  .area-media { height: 160px; }
  .cta-band { padding: 72px 0; }
  .cta-band h2 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .quote { padding: 18px 18px; font-size: 1.12rem; }
  .cookie { padding: 12px 0; }
  .cookie p { font-size: 0.75rem; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 10px; }
  .cookie-row { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-row .btn {
    width: 100%;
    min-height: 40px;
    padding: 0 8px;
    white-space: normal;
    letter-spacing: 0.08em;
    font-size: 0.62rem;
  }
  .cookie-row [data-cookie="set"],
  .cookie-row [data-cookie="save"] { grid-column: 1 / -1; }
  .lang button { padding: 6px 7px; }
  body.has-cookie { padding-bottom: 168px; }
}
