*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #F9F2E4;
  --cream-mid:    #F0E8D0;
  --cream-dark:   #E4D8C0;
  --terracotta:   #B85C38;
  --terra-light:  #D07A5A;
  --amber:        #C49030;
  --amber-light:  #E8B85A;
  --sage:         #7A9B72;
  --brown-ink:    #362010;
  --brown-mid:    #6A4030;
  --brown-mute:   #9A7060;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown-ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  line-height: 1.85;
  overflow-x: hidden;
}

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

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 500;
  height: 72px;
  background: rgba(249, 242, 228, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}
.nav-left {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none;
}
.nav-logo-img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease;
}
.nav-left:hover .nav-logo-img { transform: scale(1.06); }
.nav-brand { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 1.45rem;
  color: var(--terracotta);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brown-mute);
}
.nav-links {
  list-style: none; display: flex; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.76rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brown-mid); text-decoration: none;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }

/* ══════════════════════════════════════
   HERO — painting as full background
══════════════════════════════════════ */
.hero {
  min-height: 94vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  overflow: hidden;
  background-image: url('../img/header.jpg');
  background-size: cover;
  background-position: center 45%;
}

/* Subtle vignette so edges don't compete with center text */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    transparent 40%,
    rgba(0,0,0,0.22) 100%
  );
  pointer-events: none;
}

/* Frosted glass content panel */
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
  background: rgba(249, 242, 228, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 24px;
  padding: 3.5rem 4rem;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.12),
    0 2px 8px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
  animation: fadeUp 1.4s ease both;
}

.hero-eyebrow {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 2rem;
  animation: fadeUp 1.4s 0.1s ease both;
}
.hero-quote-wrap {
  position: relative; margin-bottom: 1.8rem;
  animation: fadeUp 1.4s 0.2s ease both;
}
.big-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.7;
  color: rgba(196,144,48,0.16);
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  user-select: none;
}
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(1.85rem, 4.5vw, 3.4rem);
  line-height: 1.28; color: var(--brown-ink);
  position: relative; z-index: 1;
}
.hero-quote .joy { color: var(--terracotta); font-weight: 500; }

.hero-attrib {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: var(--brown-mute);
  letter-spacing: 0.1em; margin-bottom: 2.5rem;
  animation: fadeUp 1.4s 0.35s ease both;
}
.hero-rule {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; margin-bottom: 1.8rem;
  animation: fadeUp 1.4s 0.45s ease both;
}
.hero-rule-line { flex: 0 0 56px; height: 1px; background: var(--amber); opacity: 0.4; }
.hero-rule-ornament { display: flex; gap: 5px; align-items: center; }
.hero-rule-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); opacity: 0.55; }
.hero-rule-dot.lg { width: 6px; height: 6px; opacity: 0.75; }
.hero-identity { animation: fadeUp 1.4s 0.55s ease both; }
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 1.25rem;
  color: var(--brown-mid); letter-spacing: 0.08em;
}
.hero-title {
  font-size: 0.73rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brown-mute); margin-top: 0.2rem;
}

/* Art credit below hero */
.hero-art-credit {
  position: absolute; bottom: 1.4rem; right: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  animation: fadeUp 1.4s 0.9s ease both;
}

.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  animation: fadeUp 1.4s 0.9s ease both;
}
.scroll-word {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.scroll-arrow {
  width: 15px; height: 15px;
  border-right: 1.5px solid rgba(255,255,255,0.7);
  border-bottom: 1.5px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: arrowBounce 2s ease infinite;
}

/* ══════════════════════════════════════
   SHARED SECTION ATOMS
══════════════════════════════════════ */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 780px; margin: 0 auto; }
.section-inner-wide { max-width: 1060px; margin: 0 auto; }

.eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.85rem; display: block;
}
.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; color: var(--brown-ink); margin-bottom: 2rem;
}
.section-h em { font-style: italic; color: var(--terracotta); }
.body-text {
  font-size: 1.03rem; line-height: 1.9;
  color: var(--brown-mid); margin-bottom: 1.3rem;
}
.body-text:last-child { margin-bottom: 0; }
.body-text strong { font-weight: 600; color: var(--brown-ink); }

.pull-quote {
  border-left: 3px solid var(--terracotta);
  border-radius: 0 10px 10px 0;
  background: rgba(184,92,56,0.05);
  padding: 1.5rem 2rem; margin: 2.5rem 0;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.35rem;
  line-height: 1.6; color: var(--brown-ink);
}

/* ══════════════════════════════════════
   WELCOME
══════════════════════════════════════ */
.section-welcome { background: var(--cream); }

/* ══════════════════════════════════════
   COME AS YOU ARE
══════════════════════════════════════ */
.section-come {
  background: var(--cream-mid);
  position: relative; overflow: hidden;
}
.section-come::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,144,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2rem; }
.tag {
  padding: 0.45rem 1.15rem; border-radius: 100px;
  background: rgba(184,92,56,0.09); color: var(--terracotta);
  font-size: 0.88rem; font-weight: 400; letter-spacing: 0.01em;
  border: 1px solid rgba(184,92,56,0.15); transition: background 0.2s;
}
.tag:hover { background: rgba(184,92,56,0.16); }

/* ══════════════════════════════════════
   BODY & SPIRIT — with sunrise painting
══════════════════════════════════════ */
.section-body-spirit { background: var(--cream); }
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1060px; margin: 0 auto;
}

/* Artwork framing */
.artwork-wrap {
  position: relative;
}
.artwork-mat {
  background: white;
  padding: 14px;
  border-radius: 6px;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.07),
    0 14px 48px rgba(0,0,0,0.16),
    0 4px 16px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}
.artwork-mat:hover {
  transform: rotate(0deg);
  box-shadow:
    0 2px 6px rgba(0,0,0,0.07),
    0 20px 60px rgba(0,0,0,0.2),
    0 6px 20px rgba(0,0,0,0.12);
}
.artwork-mat img {
  display: block; width: 100%;
  border-radius: 3px;
}
.artwork-caption {
  text-align: center; margin-top: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.82rem;
  color: var(--brown-mute); letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   REACH OUT
══════════════════════════════════════ */
.section-reach {
  background: linear-gradient(150deg, #EEDCC8 0%, #F4E8D4 50%, #EAD8C0 100%);
  position: relative; overflow: hidden;
}
.section-reach::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,92,56,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.circumstance-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  backdrop-filter: blur(4px);
  transition: transform 0.2s, box-shadow 0.2s;
}
.circumstance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58,32,16,0.1);
}
.card-icon { font-size: 1.25rem; margin-bottom: 0.6rem; display: block; }
.card-text { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.55; }

/* ══════════════════════════════════════
   RATES
══════════════════════════════════════ */
.section-rates { background: var(--cream); text-align: center; }
.rates-row {
  display: flex; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap; margin-top: 3rem;
}
.rate-card {
  background: #fff; border-radius: 18px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 4px 30px rgba(58,32,16,0.07);
  flex: 1 1 190px; max-width: 250px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(58,32,16,0.12);
}
.rate-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--terracotta);
}
.rate-card.featured {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(58,32,16,0.14);
}
.rate-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.rate-card.featured::before {
  background: linear-gradient(90deg, var(--amber), var(--terracotta)); height: 4px;
}
.rate-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brown-mute); margin-bottom: 0.8rem;
}
.rate-price {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 3.5rem; line-height: 1; color: var(--brown-ink); margin-bottom: 0.3rem;
}
.rate-desc { font-size: 0.85rem; color: var(--brown-mute); line-height: 1.5; }
.rate-badge {
  display: inline-block; margin-top: 0.8rem;
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
  color: #fff; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 100px;
}
.rates-note {
  margin-top: 2.5rem; font-style: italic;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--brown-mute);
}

/* ══════════════════════════════════════
   HOURS BAR
══════════════════════════════════════ */
.hours-bar {
  background: var(--cream-mid); padding: 1.8rem 2rem;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.hour-item {
  text-align: center; padding: 0.5rem 1.8rem;
  border-right: 1px solid var(--cream-dark);
}
.hour-item:last-child { border-right: none; }
.hour-day {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--brown-mute); margin-bottom: 0.2rem;
}
.hour-time { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--brown-mid); }
.hour-closed { color: var(--brown-mute); font-style: italic; }

/* ══════════════════════════════════════
   CTA — logo.jpg as background
   "weeping may linger for the night..."
══════════════════════════════════════ */
.section-cta {
  padding: 7rem 2rem; text-align: center;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(rgba(18, 8, 2, 0.80), rgba(18, 8, 2, 0.85)),
    url('../img/logo.jpg');
  background-size: cover;
  background-position: center;
}
/* Warm amber glow from center */
.section-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,144,48,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-eyebrow { color: var(--amber-light); }
.cta-h {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.15;
  color: var(--cream); margin-bottom: 1.5rem;
}
.cta-h em { font-style: italic; color: var(--amber-light); }
.cta-body {
  font-size: 1.05rem; color: rgba(249,242,228,0.65);
  margin-bottom: 2.8rem; line-height: 1.8;
}

/* Night sky art credit */
.cta-art-credit {
  position: absolute; bottom: 1.2rem; right: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.78rem;
  color: rgba(255,255,255,0.35); letter-spacing: 0.06em;
}

.btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 0.85rem 2.4rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.btn-primary {
  background: var(--terracotta); color: #fff;
  box-shadow: 0 4px 20px rgba(184,92,56,0.35);
}
.btn-primary:hover {
  background: var(--terra-light); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,92,56,0.45);
}
.btn-ghost {
  background: transparent; color: rgba(249,242,228,0.7);
  border: 1px solid rgba(249,242,228,0.25);
}
.btn-ghost:hover {
  background: rgba(249,242,228,0.08); color: var(--cream); transform: translateY(-2px);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--cream-mid); border-top: 1px solid var(--cream-dark);
  padding: 2rem 3rem; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.25rem; color: var(--terracotta);
}
.footer-copy { font-size: 0.75rem; color: var(--brown-mute); }
.footer-nav { list-style: none; display: flex; gap: 1.8rem; }
.footer-nav a {
  font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brown-mute); text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--terracotta); }

/* ══════════════════════════════════════
   FADE-IN SCROLL
══════════════════════════════════════ */
.fi {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fi.visible { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: 0.08s; }
.fi-d2 { transition-delay: 0.16s; }
.fi-d3 { transition-delay: 0.24s; }
.fi-d4 { transition-delay: 0.32s; }
.fi-d5 { transition-delay: 0.40s; }
.fi-d6 { transition-delay: 0.48s; }
.fi-d7 { transition-delay: 0.56s; }
.fi-d8 { transition-delay: 0.64s; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ══════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(184,92,56,0.08); }
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--brown-mid);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(249, 242, 228, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  z-index: 490;
  display: none;
}
.nav-drawer.open {
  max-height: 300px;
  padding: 1rem 1.5rem 1.5rem;
}
.nav-drawer ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.nav-drawer ul li a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown-mid); text-decoration: none;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer ul li:last-child a { border-bottom: none; }
.nav-drawer ul li a:hover { color: var(--terracotta); padding-left: 0.5rem; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: block; }
  .hero-content { padding: 2.5rem 2rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .artwork-wrap { order: -1; }
  .rate-card.featured { transform: none; }
  footer { padding: 1.5rem; flex-direction: column; }
  .hour-item { padding: 0.4rem 1rem; }
}
