:root {
  /* beige palette — like logo background */
  --bg: #f3eee6;
  --bg2: #ebe4d8;
  --bg3: #e2d9cb;
  --card: #faf7f2;
  --line: rgba(60, 45, 30, 0.12);
  --line2: rgba(60, 45, 30, 0.22);
  --text: #2c241c;
  --muted: rgba(44, 36, 28, 0.72);
  --muted2: rgba(44, 36, 28, 0.5);
  --cream: #f0ebe4;
  --accent: #8a7355;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: var(--bg);
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
main { flex: 1; }

/* HEADER — like EXTENDESS */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  padding-top: max(16px, env(safe-area-inset-top, 0px));
  margin: 0;
  transition: background 0.3s, border-color 0.3s;
  /* no gap above header */
  transform: translateZ(0);
}
/* always light beige header + black text */
.header-transparent,
.header-transparent.scrolled,
.header-solid {
  background: rgba(243, 238, 230, 0.96);
  backdrop-filter: blur(16px);
  border: none !important;
  box-shadow: 0 1px 0 rgba(60, 45, 30, 0.1);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* force black logo */
  filter: brightness(0);
  opacity: 1;
}
@media (min-width: 900px) {
  .logo-img { height: 48px; }
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1410;
}
.nav a:hover,
.nav a.active {
  color: #000;
}
.nav-cta {
  color: #faf7f2 !important;
  background: #1a1410;
  border: none;
  padding: 12px 22px !important;
  border-radius: 6px;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  font-weight: 600;
  margin-left: 8px;
}
.nav-cta:hover { opacity: 0.88; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px 2px;
  color: #1a1410;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  width: 22px;
  border-radius: 1px;
}
.nav-toggle .menu-label {
  display: block;
  width: auto;
  height: auto;
  background: none;
  margin-top: 5px;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  color: currentColor;
  opacity: 0.85;
  border-radius: 0;
}

/* HERO */
.hero-home {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  margin: 0;
  overflow: hidden;
  background: #f3eee6;
}
.hero-video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  display: block;
}
.hero-bokeh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.35;
}
.hero-bokeh span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 180, 120, 0.35) 0%, rgba(220, 180, 120, 0.08) 42%, transparent 72%);
  filter: blur(3px);
  animation: bokehFloat ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-bokeh span:nth-child(1) { width: 180px; height: 180px; top: 12%; left: 8%;  animation-duration: 14s; animation-delay: 0s; }
.hero-bokeh span:nth-child(2) { width: 90px;  height: 90px;  top: 28%; right: 12%; animation-duration: 11s; animation-delay: -2s; }
.hero-bokeh span:nth-child(3) { width: 140px; height: 140px; bottom: 22%; left: 18%; animation-duration: 16s; animation-delay: -4s; }
.hero-bokeh span:nth-child(4) { width: 70px;  height: 70px;  top: 55%; right: 22%; animation-duration: 10s; animation-delay: -1s; }
.hero-bokeh span:nth-child(5) { width: 220px; height: 220px; top: 8%;  right: 28%; animation-duration: 18s; animation-delay: -6s; }
.hero-bokeh span:nth-child(6) { width: 110px; height: 110px; bottom: 12%; right: 8%;  animation-duration: 13s; animation-delay: -3s; }
.hero-bokeh span:nth-child(7) { width: 60px;  height: 60px;  top: 42%; left: 42%;  animation-duration: 9s;  animation-delay: -5s; }
.hero-bokeh span:nth-child(8) { width: 160px; height: 160px; bottom: 30%; left: 55%; animation-duration: 15s; animation-delay: -7s; }

@keyframes bokehFloat {
  0%, 100% { transform: translate(0, 0) scale(1);    opacity: 0.35; }
  25%      { transform: translate(14px, -20px) scale(1.06); opacity: 0.55; }
  50%      { transform: translate(-10px, 12px) scale(0.94); opacity: 0.4; }
  75%      { transform: translate(18px, 8px) scale(1.08);  opacity: 0.5; }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  /* soft cream veil — video is light */
  background: linear-gradient(180deg, rgba(243,238,230,0.35) 0%, rgba(243,238,230,0.05) 40%, rgba(243,238,230,0.45) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 800px; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: rgba(26, 20, 16, 0.75);
  margin: 0 0 14px;
  font-weight: 400;
}

.hero-home .year {
  font-family: var(--serif);
  letter-spacing: 0.4em;
  color: rgba(26, 20, 16, 0.7);
  margin: 0 0 36px;
  font-size: 1.2rem;
}
.hero-home .lead {
  color: rgba(26, 20, 16, 0.65);
  margin: 0 0 36px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  z-index: 3;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.45);
}

/* TICKER */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
  will-change: transform;
}
.ticker-track span { flex-shrink: 0; padding-right: 0.5em; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
  padding: 88px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 16px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  line-height: 1.2;
}
.section-lead {
  color: var(--muted);
  max-width: 480px;
  margin: -24px 0 40px;
  font-size: 0.95rem;
  font-weight: 300;
}

.page-hero {
  padding: 140px 40px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero .kicker {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 14px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.page-hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
  font-size: 0.95rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}
.btn-dark, .btn-light {
  background: #2c241c;
  color: #faf7f2;
  border: none;
}
.btn-dark:hover, .btn-light:hover { opacity: 0.9; }
.btn-ghost, .btn-outline {
  background: transparent;
  border: 1.5px solid rgba(44, 36, 28, 0.45);
  color: var(--text);
}
.btn-ghost:hover, .btn-outline:hover {
  background: #2c241c;
  border-color: #2c241c;
  color: #faf7f2;
}
/* hero buttons on light video */
.hero-actions .btn-outline {
  border-color: rgba(26, 20, 16, 0.5);
  color: #1a1410;
}
.hero-actions .btn-outline:hover {
  background: #1a1410;
  border-color: #1a1410;
  color: #fff;
}
.btn-block { width: 100%; }
.center { text-align: center; }
.mt { margin-top: 36px; }

/* GRID CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.card, .card-link {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.card-link:hover {
  border-color: var(--line2);
  transform: translateY(-2px);
}
.card h3, .card-link h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.card p, .card-link p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
  font-weight: 300;
}
.card .more, .card-link .more, .card a.more {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted2);
  border-bottom: none;
  align-self: flex-start;
}

/* SERVICE LIST 01/06 style */
.service-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: 0.2s;
}
.service-item:first-child { border-top: 1px solid var(--line); }
.service-item:hover { padding-left: 6px; }
.service-idx {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted2);
  font-weight: 300;
}
.service-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.service-item p { margin: 0; color: var(--muted); font-size: 0.9rem; font-weight: 300; }
.arrow { color: var(--muted2); font-size: 1rem; transition: 0.2s; }
.service-item:hover .arrow { color: var(--text); transform: translateX(4px); }

/* MASTERS */
.masters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.master-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 22px;
  min-height: 140px;
}
.master-role {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 12px;
}
.master-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 400;
  font-family: var(--serif);
  line-height: 1.3;
}
.master-card p { margin: 0; color: var(--muted); font-size: 0.85rem; font-weight: 300; }

/* PRICE */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tab {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
.tab.active {
  background: #2c241c;
  border-color: #2c241c;
  color: #faf7f2;
  font-weight: 600;
}
.price-panel {
  display: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px;
  max-width: 640px;
  margin: 0 auto;
}
.price-panel.active { display: block; }
.price-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0 0 28px;
  font-size: 1.3rem;
}
.price-title span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 8px;
  font-family: var(--sans);
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 300;
}
.price-list li:last-child { border-bottom: none; }
.price-list em {
  font-style: normal;
  font-family: var(--serif);
  color: var(--muted);
  white-space: nowrap;
}
.price-note {
  text-align: center;
  color: var(--muted2);
  font-size: 0.78rem;
  margin: 20px 0 0;
  font-weight: 300;
}

/* ABOUT */
.about-text {
  max-width: 560px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
  font-weight: 300;
  color: var(--text);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 36px auto 0;
}
.stat, .stat-link {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  color: inherit;
  transition: border-color 0.2s;
}
.stat-link:hover { border-color: var(--line2); }
.stat strong, .stat-link strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}
.stat span, .stat-link span {
  color: var(--muted2);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* CONTACTS */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}
.contacts-grid h3, .contacts h3 {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 12px;
  font-weight: 400;
}
.contacts-grid p, .contacts p {
  margin: 0;
  line-height: 1.7;
  font-weight: 300;
}
.muted { color: var(--muted); }

/* FAQ */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 400;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--muted2); font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

/* BOOKING WIZARD */
.wizard {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px 28px;
}
.wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}
.wstep {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.wstep.active {
  color: var(--text);
  border-color: var(--line2);
}
.wstep.done { color: var(--muted); }
.wpanel { display: none; }
.wpanel.active { display: block; }
.wtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin: 0 0 22px;
  text-align: center;
}
.choice-grid { display: grid; gap: 8px; }
.choice {
  text-align: left;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 300;
  transition: 0.15s;
}
.choice:hover { border-color: var(--line2); }
.choice.selected {
  background: #2c241c;
  color: #faf7f2;
  border-color: #2c241c;
  font-weight: 500;
}
.choice small {
  display: block;
  margin-top: 4px;
  opacity: 0.65;
  font-size: 0.78rem;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.time-grid .choice { text-align: center; padding: 12px 6px; }
.field-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}
.field-label input,
.book-form-light input,
.book-form-light textarea,
.book-form-light select {
  border: 1px solid var(--line);
  background: var(--bg2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 300;
}
.field-hint { font-size: 0.8rem; color: var(--muted2); margin: 0 0 8px; font-weight: 300; }
.wactions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.werror { color: #f87171; font-size: 0.85rem; margin: 12px 0 0; text-align: center; }
.summary {
  background: var(--bg2);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.55;
  border: 1px solid var(--line);
  font-weight: 300;
}
.book-form-light { display: flex; flex-direction: column; gap: 12px; }
.book-form-light label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted2);
}
.book-form-light .check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}
.book-form-light .check input { width: auto; margin-top: 3px; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.form-ok, .wizard .form-ok {
  text-align: center;
  color: var(--muted);
  margin-top: 16px;
  font-weight: 300;
}
.book-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px;
  color: var(--text);
}
.book-wrap h2 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0 0 8px;
  text-align: center;
}
.book-wrap .lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 0.9rem;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: 56px 40px 48px;
  margin-top: auto;
}
.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0.35em;
  font-size: 1rem;
  margin-bottom: 12px;
  text-align: center;
}
.footer p { text-align: center; margin: 6px 0; font-weight: 300; font-size: 0.88rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 24px 0 8px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}
.footer-nav a:hover { color: var(--text); }
.footer-copy {
  color: var(--muted2);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 28px !important;
  text-align: center;
}

/* FAB */
.fab-book {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: #2c241c;
  color: #faf7f2;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.fab-book:hover { transform: scale(1.04); }

@media (max-width: 900px) {
  .header { padding: 16px 18px; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(250, 247, 242, 0.98);
    padding: 16px 20px 28px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
    color: var(--text);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; color: var(--text); }
  .nav-cta {
    text-align: center;
    margin: 12px 0 0;
  }
  .section, .page-hero { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding-top: 120px; }
  .service-item { grid-template-columns: 1fr auto; }
  .service-idx { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr; }
  
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .fab-book { right: 12px; bottom: 12px; }
}


/* ===== SITE LOADER ===== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f3eee6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}
.site-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader-logo {
  width: min(220px, 55vw);
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  filter: brightness(0);
  animation: loaderLogoIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.site-loader-year {
  margin-top: 18px;
  font-family: var(--serif);
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: rgba(26, 20, 16, 0.55);
  opacity: 0;
  animation: loaderFade 1s ease 0.7s forwards;
}
.site-loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 20, 16, 0.45), transparent);
  margin-top: 28px;
  animation: loaderLine 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes loaderFade {
  to { opacity: 1; }
}
@keyframes loaderLine {
  to { width: min(160px, 40vw); }
}


/* Motto in header + typewriter */
.nav-motto {
  flex: 1;
  text-align: center;
  font-size: clamp(0.55rem, 1.2vw, 0.72rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(26, 20, 16, 0.65);
  margin: 0 12px;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 400;
  min-height: 1.2em;
}
.nav-motto .cursor {
  display: inline-block;
  width: 0.55em;
  border-right: 1px solid rgba(245,240,235,0.7);
  animation: blink 0.85s step-end infinite;
  margin-left: 2px;
}
.lead-type {
  /* hero brand uses Marck Script */
}
.lead-type .cursor,
.hero-home .brand .cursor {
  display: inline-block;
  border-right: 1.5px solid rgba(245,240,235,0.85);
  animation: blink 0.7s step-end infinite;
  margin-left: 2px;
  height: 0.95em;
  vertical-align: -0.05em;
}
@keyframes blink {
  50% { border-color: transparent; }
}
@media (max-width: 900px) {
  .nav-motto { display: none; }
}









.hero-home .year {
  font-family: var(--serif);
  letter-spacing: 0.35em;
  color: rgba(245,240,235,0.5);
  margin: 0 0 32px;
  font-size: 1rem;
}


.hero-home .brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: none;
  margin: 0 0 16px;
  line-height: 1.25;
  color: #fff;
  font-style: normal;
}
.hero-home .year {
  font-family: var(--serif);
  letter-spacing: 0.35em;
  color: rgba(245,240,235,0.5);
  margin: 0 0 32px;
  font-size: 1rem;
}


/* flush top — kill black strip above header */
html, body, main { margin-top: 0 !important; padding-top: 0; }
.header { top: 0 !important; }


.hero-home .year {
  font-family: var(--serif);
  letter-spacing: 0.42em;
  color: rgba(255,255,255,0.85) !important;
  margin: 0 0 36px !important;
  font-size: 1.25rem !important;
  font-weight: 400;
}
.section-label { color: rgba(44, 36, 28, 0.55) !important; }
.section-title { color: var(--text) !important; font-size: clamp(1.15rem, 2.4vw, 1.45rem) !important; }
.card h3, .card-link h3 { color: var(--text) !important; }
.service-item h3 { color: var(--text) !important; }
.header { border: none !important; outline: none !important; box-shadow: none !important; }

/* no outline/contour on header */
.header,
.header-transparent,
.header-solid {
  border: none !important;
  outline: none !important;
}

/* force dark text on light pages — no white on beige */
.page-hero h1,
.page-hero p,
.page-hero .kicker,
.about-text,
.footer,
.footer-brand,
.footer p,
.footer-nav,
.footer-nav a,
.footer-copy,
.card,
.card-link,
.card p,
.master-card,
.master-card p,
.service-item,
.service-item p,
.wtitle,
.wstep,
.summary,
.book-wrap,
.book-wrap h2,
.price-panel,
.faq-item,
.faq-item summary,
.stat,
.stat-link,
.ticker {
  color: var(--text) !important;
}
.footer-nav a,
.footer-copy,
.page-hero .kicker,
.section-label,
.card p,
.master-card p,
.service-item p {
  color: var(--muted) !important;
}
/* hero on light video — dark text */
.hero-home .hero-scroll {
  color: rgba(26, 20, 16, 0.45) !important;
}
.hero-actions .btn-outline {
  color: #1a1410 !important;
  border-color: rgba(26, 20, 16, 0.5) !important;
}
.hero-actions .btn-outline:hover {
  background: #1a1410 !important;
  border-color: #1a1410 !important;
  color: #fff !important;
}