@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Jost:wght@400;500;600&display=swap');

:root {
  --color-ink: #17130f;
  --color-ink-soft: #2b2620;
  --color-cream: #faf5ec;
  --color-cream-deep: #f2e9d8;
  --color-white: #fffdf8;
  --color-gold: #d9a900;
  --color-gold-bright: #ffd100;
  --color-text-muted: #6b6255;
  --color-text-muted-dark: #d8cdb8;
  --color-line: rgba(23, 19, 15, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.75rem;
  --text-5xl: 5rem;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-6: 24px; --sp-8: 32px; --sp-10: 40px; --sp-12: 48px;
  --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --radius-card: 20px;
  --radius-pill: 999px;
  --page-max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-ink);
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--sp-6); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--color-ink); color: var(--color-white);
  padding: var(--sp-3) var(--sp-4); z-index: 200;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}
.section-index {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--sp-3);
}

.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: var(--text-sm);
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn--gold { background: var(--color-gold-bright); color: var(--color-ink); }
.btn--gold:hover { background: var(--color-gold); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(217, 169, 0, 0.55); }
.btn--dark { background: var(--color-ink); color: var(--color-white); }
.btn--dark:hover { background: var(--color-ink-soft); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid var(--color-ink); color: var(--color-ink); }
.btn--outline:hover { background: var(--color-ink); color: var(--color-white); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 245, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-3) var(--sp-6); }
.nav__brand { display: flex; align-items: center; gap: var(--sp-3); }
.nav__logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav__brand-text { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); }
.nav__links { display: none; gap: var(--sp-8); font-size: var(--text-sm); font-weight: 500; }
.nav__links a:hover { color: var(--color-gold); }
.nav__cta { display: none; }
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px; width: 28px;
}
.nav__toggle span { display: block; height: 2px; background: var(--color-ink); border-radius: 2px; }
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}
.mobile-menu {
  position: fixed; inset: 0; top: 66px; background: var(--color-cream);
  z-index: 99; display: flex; flex-direction: column; gap: var(--sp-6);
  padding: var(--sp-8) var(--sp-6);
  transform: translateY(-10px); opacity: 0; pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: var(--text-2xl); }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ============ HERO (scroll-scrubbed video) ============ */
.hero-scroll { height: 400vh; position: relative; }
.hero-scroll__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.hero {
  position: relative;
  height: 100%;
  display: flex; align-items: center;
  padding-top: var(--sp-24);
  overflow: hidden;
  background: var(--color-ink);
}
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; display: block;
}
.hero__video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,19,15,0.35) 0%, rgba(23,19,15,0.65) 60%, rgba(23,19,15,0.92) 100%);
}
.hero__content { position: relative; z-index: 2; color: var(--color-white); }
.hero__scroll-cue {
  position: absolute; z-index: 2; left: 50%; bottom: var(--sp-8);
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-1);
  color: var(--color-text-muted-dark);
  font-family: var(--font-body); font-size: var(--text-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: hero-scroll-cue 2.2s ease-in-out infinite;
}
@keyframes hero-scroll-cue {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (prefers-reduced-motion: reduce) { .hero__scroll-cue { animation: none; } }
.hero__eyebrow { color: var(--color-gold-bright); }
.hero__title { font-size: clamp(2.75rem, 7vw, var(--text-5xl)); color: var(--color-white); margin-top: var(--sp-4); }
.hero__title em { font-style: italic; color: var(--color-gold-bright); }
.hero__sub { margin-top: var(--sp-6); max-width: 520px; color: var(--color-text-muted-dark); font-size: var(--text-lg); }
.hero__actions { margin-top: var(--sp-8); display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.hero__badges { margin-top: var(--sp-10); display: flex; flex-wrap: wrap; gap: var(--sp-6); font-size: var(--text-sm); color: var(--color-text-muted-dark); }
.hero__badge { display: flex; align-items: center; gap: var(--sp-2); }
.hero__badge svg { color: var(--color-gold-bright); width: 18px; height: 18px; flex-shrink: 0; }

/* ============ STORY ============ */
.story { padding: var(--sp-24) 0; }
.story__stack { display: flex; flex-direction: column; align-items: center; gap: var(--sp-12); text-align: center; }
.story__text { max-width: 620px; }
.story__title { font-size: clamp(2rem, 4vw, var(--text-3xl)); margin-top: var(--sp-2); }
.story__body { margin-top: var(--sp-6); color: var(--color-text-muted); font-size: var(--text-base); line-height: 1.75; text-align: left; }
.story__body + .story__body { margin-top: var(--sp-4); }
.story__img-wrap { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/5; width: 100%; max-width: 420px; }
.story__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story__cert {
  position: absolute; bottom: var(--sp-6); left: var(--sp-6); right: var(--sp-6);
  background: rgba(250, 245, 236, 0.95); backdrop-filter: blur(6px);
  border-radius: var(--radius-card); padding: var(--sp-4) var(--sp-6);
  display: flex; align-items: center; gap: var(--sp-3);
}
.story__cert-icon { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); color: var(--color-gold); }
.story__cert-text { font-size: var(--text-sm); font-weight: 600; }
.story__cert-sub { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ============ SERVICES ============ */
.services { padding: var(--sp-24) 0; background: var(--color-cream-deep); }
.services__head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-12); }
.services__title { font-size: clamp(2rem, 4.5vw, var(--text-3xl)); margin-top: var(--sp-2); }
.services__sub { margin-top: var(--sp-4); color: var(--color-text-muted); }

.tabs { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; margin-bottom: var(--sp-8); }
.tab {
  padding: var(--sp-2) var(--sp-6); border-radius: var(--radius-pill);
  background: var(--color-white); font-size: var(--text-sm); font-weight: 500;
  border: 1px solid var(--color-line); transition: all 0.15s ease;
}
.tab:hover { border-color: var(--color-gold); }
.tab.is-active { background: var(--color-ink); color: var(--color-white); border-color: var(--color-ink); }

.service-panel__subtitle { text-align: center; font-style: italic; color: var(--color-text-muted); margin-bottom: var(--sp-6); font-family: var(--font-display); font-size: var(--text-lg); }
.service-list { display: grid; gap: var(--sp-3); max-width: 780px; margin: 0 auto; }
.service-item {
  background: var(--color-white); border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-6); border: 1px solid var(--color-line);
}
.service-item__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-4); }
.service-item__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); }
.service-item__price { font-weight: 600; color: var(--color-gold); font-size: var(--text-lg); white-space: nowrap; }
.service-item__meta { margin-top: var(--sp-1); display: flex; flex-wrap: wrap; gap: var(--sp-3); font-size: var(--text-sm); color: var(--color-text-muted); }
.service-item__duration::after { content: ''; }
.service-item__desc { font-style: italic; }

/* ============ GALLERY ============ */
.gallery { padding: var(--sp-24) 0; }
.gallery__head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-10); }
.gallery__title { font-size: clamp(2rem, 4.5vw, var(--text-3xl)); margin-top: var(--sp-2); }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (min-width: 700px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
.gallery__item { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cta { text-align: center; margin-top: var(--sp-10); }

/* ============ BOOK / VISIT ============ */
.book { padding: var(--sp-24) 0; background: var(--color-ink); color: var(--color-white); }
.book__grid { display: grid; gap: var(--sp-12); align-items: center; }
@media (min-width: 900px) { .book__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-16); } }
.book__title { font-size: clamp(2rem, 4.5vw, var(--text-3xl)); color: var(--color-white); margin-top: var(--sp-2); }
.book__body { margin-top: var(--sp-6); color: var(--color-text-muted-dark); font-size: var(--text-base); line-height: 1.75; max-width: 480px; }
.book__actions { margin-top: var(--sp-8); }
.book__card { background: var(--color-ink-soft); border-radius: var(--radius-card); padding: var(--sp-8); }
.book__detail { display: flex; gap: var(--sp-4); padding: var(--sp-4) 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.book__detail:last-child { border-bottom: none; }
.book__detail svg { color: var(--color-gold-bright); flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.book__detail h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; }
.book__detail p { color: var(--color-text-muted-dark); font-size: var(--text-sm); margin-top: 2px; }

/* ============ FOOTER ============ */
.footer { padding: var(--sp-12) 0 var(--sp-8); background: #100d0a; color: var(--color-text-muted-dark); }
.footer__inner { display: flex; flex-direction: column; gap: var(--sp-6); align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: var(--sp-3); }
.footer__logo { width: 40px; height: 40px; border-radius: 50%; }
.footer__brand-text { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-white); }
.footer__social { display: flex; gap: var(--sp-4); }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: border-color 0.15s ease; }
.footer__social a:hover { border-color: var(--color-gold-bright); }
.footer__legal { font-size: var(--text-xs); color: var(--color-text-muted); }
