/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --orange:      #c8581e;
  --orange-warm: #e07845;
  --orange-pale: #f5e6d8;
  --orange-deep: #8a3710;
  --cream:       #faf5ee;
  --cream-dark:  #f0e8da;
  --ink:         #18140f;
  --ink-mid:     #2c241a;
  --text:        #3a2e24;
  --text-muted:  #7a6655;
  --text-light:  #b09880;
  --serif:       'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:        'Jost', 'Montserrat', sans-serif;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* subtle paper grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 900;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 680px; margin: 0 auto; padding: 0 28px; }

/* ── TYPE ───────────────────────────────────────────────── */
.serif { font-family: var(--serif); }

/* ── UTILITIES ──────────────────────────────────────────── */
.tag-pill {
  display: inline-block; font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(200,88,30,0.3); border-radius: 99px;
  padding: 5px 16px;
}
.rule {
  display: block; width: 40px; height: 1.5px;
  background: linear-gradient(to right, var(--orange), var(--orange-warm));
  border: none; border-radius: 99px; outline: none;
  margin: 0;
}
.rule.center { margin: 0 auto; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block; position: relative; overflow: hidden;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 17px 42px; border: none; cursor: pointer;
  border-radius: 1px; transition: color .3s;
}
.btn-solid {
  background: var(--orange); color: var(--cream);
}
.btn-solid::before {
  content: ''; position: absolute; inset: 0;
  background: var(--orange-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 0;
}
.btn-solid:hover::before { transform: scaleX(1); }
.btn-solid span { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent; color: var(--orange);
  border: 1px solid rgba(200,88,30,0.4);
  transition: background .25s, border-color .25s;
}
.btn-ghost:hover { background: var(--orange-pale); border-color: var(--orange); }

/* ── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 22px 0;
}
#nav.scrolled {
  background: rgba(250,245,238,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,88,30,0.1);
  padding: 14px 0;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--cream); letter-spacing: .02em;
  transition: color .35s;
}
.nav-logo span { color: var(--orange-warm); transition: color .35s; }
#nav.scrolled .nav-logo { color: var(--ink); }
#nav.scrolled .nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(250,245,238,0.7); transition: color .2s; position: relative;
}
#nav.scrolled .nav-link { color: var(--text-muted); }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transition: transform .22s;
}
.nav-link:hover { color: var(--orange); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta-btn { font-size: 10px; padding: 11px 24px; }

/* mobile */
.mob-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mob-btn span { display: block; height: 1px; background: var(--cream); transition: background .35s; }
.mob-btn span:nth-child(1) { width: 22px; }
.mob-btn span:nth-child(2) { width: 15px; }
#nav.scrolled .mob-btn span { background: var(--ink); }
.mob-menu {
  display: none; flex-direction: column; gap: 18px;
  padding: 18px 28px 24px;
  background: var(--ink-mid); border-top: 1px solid rgba(200,88,30,0.2);
}
#nav.scrolled .mob-menu { background: var(--cream); border-top-color: var(--orange-pale); }
.mob-menu .nav-link { color: rgba(250,245,238,0.8); }
#nav.scrolled .mob-menu .nav-link { color: var(--text-muted); }
.mob-menu.open { display: flex; }

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(162deg,
    var(--ink) 0%,
    var(--ink-mid) 28%,
    #4a1e08 58%,
    var(--orange-deep) 78%,
    var(--orange) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 68% 35%, rgba(224,120,69,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 70% at 15% 85%, rgba(24,20,15,0.55) 0%, transparent 60%);
}
/* thin vertical line decorations */
.hero-vline {
  position: absolute; width: 1px; top: 50%; transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent, rgba(224,120,69,0.25), transparent);
}
.hero-vline.l { left: 7%; height: 50%; }
.hero-vline.r { right: 7%; height: 42%; }

.hero-body {
  position: relative; z-index: 10; text-align: center;
  max-width: 820px; padding: 150px 28px 120px;
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(224,120,69,.75);
  margin-bottom: 30px;
  animation: fadeUp .8s ease both .1s;
}
.hero-h1 {
  font-family: var(--serif); font-size: clamp(3rem,7.5vw,6.2rem);
  font-weight: 500; color: var(--cream); line-height: 1.05;
  letter-spacing: -.01em; margin-bottom: 0;
  animation: fadeUp .9s ease both .25s;
}
.hero-h1 em { color: var(--orange-warm); font-style: italic; }
.hero-drop {
  width: 1px; height: 68px;
  background: linear-gradient(to bottom, transparent, rgba(224,120,69,.6));
  margin: 36px auto;
  animation: fadeUp .9s ease both .4s;
}
.hero-sub {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: rgba(250,245,238,.65); max-width: 500px; margin: 0 auto 52px;
  line-height: 1.85;
  animation: fadeUp .9s ease both .5s;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: center;
  animation: fadeUp .9s ease both .65s;
}
.hero-scroll-cue {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: .35; z-index: 10;
  animation: fadeUp .9s ease both .9s;
}
.hero-scroll-cue span { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--orange-warm); }
.hero-scroll-cue i { display: block; width: 1px; height: 42px; background: linear-gradient(to bottom, rgba(224,120,69,.55), transparent); }

/* ── INTRO QUOTE BAND ───────────────────────────────────── */
.quote-band { background: var(--ink); padding: 26px 28px; text-align: center; }
.quote-band p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem,2.8vw,1.35rem); color: var(--orange-warm);
  opacity: .9; letter-spacing: .01em;
}

/* ── SECTIONS SHARED ────────────────────────────────────── */
.section { padding: 110px 0; }
.section-label { margin-bottom: 18px; }
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 500; color: var(--ink); line-height: 1.12; margin-bottom: 20px;
}
.section-title em { color: var(--orange); font-style: italic; }
.section-sub {
  font-size: 14.5px; font-weight: 300; color: var(--text-muted);
  line-height: 1.85; max-width: 520px;
}
.section-sub.center { margin: 0 auto; text-align: center; }

/* ── STORY ──────────────────────────────────────────────── */
#story { background: #fff; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.story-portrait {
  position: relative; aspect-ratio: .82;
  background: linear-gradient(155deg, var(--ink-mid) 0%, #3d1a06 45%, var(--orange-deep) 100%);
  border-radius: 2px; overflow: hidden;
}
.portrait-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,88,30,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,88,30,.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.portrait-quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,8,4,.92) 0%, rgba(12,8,4,.5) 60%, transparent 100%);
  padding: 60px 32px 32px;
}
.portrait-quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.25rem; color: #fff; line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.portrait-quote cite {
  display: block; font-family: var(--sans); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: 10px; font-style: normal;
}
/* Image placeholder instructions overlay */
.portrait-ph-label {
  position: absolute; top: 28px; left: 28px;
  font-family: var(--sans); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(250,245,238,.2);
}

/* deco corners */
.deco-tl { position: absolute; top: -14px; left: -14px; width: 70px; height: 70px; border: 1px solid rgba(200,88,30,.22); border-radius: 2px; pointer-events: none; }
.deco-br { position: absolute; bottom: -14px; right: -14px; width: 44px; height: 44px; background: var(--orange); opacity: .18; border-radius: 2px; pointer-events: none; }

.story-text { }
.story-text .rule { margin-bottom: 32px; }
.story-text p {
  font-size: 14.5px; font-weight: 300; color: var(--text-muted);
  line-height: 1.9; margin-bottom: 22px;
}
.story-text p strong { font-weight: 500; color: var(--text); }
.story-text p:first-of-type { font-family: var(--serif); font-size: 1.05rem; color: var(--text); font-style: italic; font-weight: 400; }

/* ── SERVICES ───────────────────────────────────────────── */
#services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 68px; }
.services-header .rule { margin: 20px auto 24px; }
.cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 860px; margin: 0 auto; }

.card {
  background: #fff; border: 1px solid rgba(200,88,30,.12);
  border-radius: 2px; padding: 48px 42px;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-warm));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.card:hover { transform: translateY(-7px); box-shadow: 0 28px 60px rgba(200,88,30,.1); border-color: rgba(200,88,30,.28); }
.card:hover::before { transform: scaleX(1); }
.card.featured::before { transform: scaleX(1); }

.card-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 500;
  color: var(--orange-pale); line-height: 1; margin-bottom: 16px;
  transition: color .3s;
}
.card:hover .card-num { color: rgba(200,88,30,.25); }
.card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--ink); margin-bottom: 16px; line-height: 1.2;
}
.card .card-desc {
  font-size: 13.5px; font-weight: 300; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 28px;
}
.card-features { list-style: none; margin-bottom: 36px; }
.card-features li {
  font-size: 12.5px; font-weight: 500; color: var(--text);
  padding: 7px 0; border-bottom: 1px solid var(--orange-pale);
  display: flex; align-items: center; gap: 10px;
}
.card-features li::before { content: '→'; color: var(--orange); font-size: 11px; }
.booking-note {
  font-size: 12px; color: var(--text-light); font-weight: 300;
  margin-top: 12px; line-height: 1.6; font-style: italic;
}
  font-family: var(--serif); font-size: 2rem; font-weight: 500;
  color: var(--orange); margin-bottom: 20px; line-height: 1;
}
.card-price span {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--text-muted);
}
.card-price-note {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid var(--border);
  border-radius: 99px; display: inline-block;
}
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--orange); color: var(--cream);
  padding: 4px 16px; border-radius: 99px; margin-top: 8px;
}

/* ── PHILOSOPHY ─────────────────────────────────────────── */
#philosophy { position: relative; padding: 130px 28px; text-align: center; overflow: hidden; }
.phil-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-mid) 45%, #3d1a06 100%);
}
.phil-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); border-radius: 50%;
  border: 1px solid rgba(200,88,30,.1); pointer-events: none;
}
.phil-body { position: relative; z-index: 10; max-width: 740px; margin: 0 auto; }
.phil-bar { width: 34px; height: 1px; background: rgba(224,120,69,.4); margin: 0 auto 48px; }
.phil-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(2rem,5.5vw,3.8rem);
  color: var(--cream); font-weight: 400; line-height: 1.3; letter-spacing: -.01em;
}
.phil-bar.bottom { margin: 48px auto 28px; }
.phil-attr {
  font-family: var(--sans); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(250,245,238,.28);
}

/* ── CTA SECTION ────────────────────────────────────────── */
#cta { background: var(--cream-dark); padding: 110px 0; }
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; padding: 0 28px; }
.cta-inner .rule { margin: 20px auto 32px; }
.cta-inner p { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.85; margin-bottom: 44px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── CONTACT ────────────────────────────────────────────── */
#contact { background: #fff; padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-left .section-title { font-size: clamp(1.9rem,4vw,2.8rem); margin-bottom: 12px; }
.contact-left .rule { margin-bottom: 28px; }
.contact-left p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.9; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.c-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.c-lbl { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); }
.c-val { font-size: 13px; font-weight: 500; color: var(--ink); }

.form-wrap { background: var(--cream); border: 1px solid rgba(200,88,30,.12); border-radius: 2px; padding: 44px 42px; }
.form-opening {
  font-family: var(--serif); font-style: italic; font-size: 1.08rem;
  color: var(--text); line-height: 1.6; margin-bottom: 36px;
}
.form-group { margin-bottom: 30px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.field {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(200,88,30,.2);
  padding: 10px 0; font-family: var(--sans); font-size: 14px;
  color: var(--ink); outline: none; transition: border-color .2s;
}
.field::placeholder { color: rgba(58,46,36,.3); }
.field:focus { border-color: var(--orange); }
textarea.field { resize: none; }
.form-submit { width: 100%; text-align: center; }
#form-ok {
  display: none; text-align: center; padding: 48px 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 1.3rem; color: var(--text); line-height: 1.6;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--ink); padding: 60px 28px 36px; text-align: center; }
.footer-logo { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); font-weight: 600; letter-spacing: .03em; }
.footer-logo span { color: var(--orange-warm); }
.footer-tagline { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,245,238,.28); margin-top: 6px; margin-bottom: 32px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-bottom: 32px; }
.footer-link { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,245,238,.35); transition: color .2s; }
.footer-link:hover { color: var(--orange-warm); }
.footer-rule { width: 34px; height: 1px; background: rgba(200,88,30,.22); margin: 0 auto 22px; }
.footer-copy { font-size: 11px; color: rgba(250,245,238,.16); }

/* ── CALENDAR MODAL ─────────────────────────────────────── */
.cal-modal {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(24,20,15,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.cal-modal-inner {
  background: var(--cream); border-radius: 2px;
  padding: 48px 44px; max-width: 480px; width: 100%;
  position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.cal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 24px;
  color: var(--text-muted); cursor: pointer; line-height: 1;
  transition: color .2s;
}
.cal-close:hover { color: var(--orange); }
.cal-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--ink); margin-bottom: 6px;
}
.cal-sub {
  font-size: 13px; color: var(--text-muted); font-weight: 300;
  margin-bottom: 32px;
}
.cal-row { margin-bottom: 24px; }
.cal-row label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
@media (max-width: 520px) {
  .cal-modal-inner { padding: 36px 24px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.rd1 { transition-delay: .08s; }
.rd2 { transition-delay: .18s; }
.rd3 { transition-delay: .3s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-row { grid-template-columns: 1fr; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-portrait { max-width: 440px; }
  #contact .wrap-narrow > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta-btn { display: none; }
  .mob-btn { display: flex; }
  .section { padding: 80px 0; }
  #philosophy { padding: 100px 28px; }
  #cta { padding: 80px 0; }
}
@media (max-width: 420px) {
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .form-wrap { padding: 32px 24px; }
}
