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

:root {
  --cream: #F6F1E7;
  --cream-deep: #EFE7D6;
  --charcoal: #1E1C19;
  --gold: #A9812F;
  --gold-soft: #C9A45C;
  --clay: #B4713F;
  --line: rgba(30,28,25,0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246,241,231,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 40px; width: auto; }

.brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

nav a:hover, nav a.active { border-color: var(--gold); }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  nav ul { gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
  .brand-name { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(30,28,25,0.35), rgba(30,28,25,0.55)), var(--img) center/cover no-repeat;
  color: var(--cream);
}

.hero-inner { max-width: 620px; padding: 90px 28px; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

h1.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 22px;
}

.hero p.lede {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 460px;
  margin: 0 0 34px;
  color: rgba(246,241,231,0.9);
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-light { color: var(--cream); }
.btn-light:hover { background: var(--cream); color: var(--charcoal); }

.btn-dark { color: var(--charcoal); }
.btn-dark:hover { background: var(--charcoal); color: var(--cream); }

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.bg-deep { background: var(--cream-deep); }
.bg-dark { background: var(--charcoal); color: var(--cream); }

.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head .eyebrow { color: var(--gold); }

h2.title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 0 0 14px;
  line-height: 1.1;
}

.bg-dark h2.title, .bg-dark .eyebrow { color: var(--cream); }
.bg-dark .eyebrow { color: var(--gold-soft); }

p.intro { font-size: 1.05rem; opacity: 0.85; }

hr.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 40px;
}

/* ---------- Story split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split-img { order: 2; }

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-img { order: 0; }
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }

.letter {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
}

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 24px;
}

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }

.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--cream);
  border: 1px solid var(--line);
}

.card .thumb {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-deep);
}

.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .thumb img { transform: scale(1.04); }

.card-body { padding: 22px 22px 26px; }

.card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

h3.card-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 6px;
}

.card-desc { font-size: 0.9rem; opacity: 0.75; margin: 0 0 16px; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.price { font-family: var(--serif); font-size: 1.25rem; }

.buy-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  padding-bottom: 2px;
}

/* ---------- Market tier banner ---------- */
.tier-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  margin-bottom: 40px;
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 16px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; opacity: 0.85; }

.footer-bottom {
  border-top: 1px solid rgba(246,241,231,0.15);
  padding-top: 24px;
  font-size: 0.78rem;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Quote / ritual cards ---------- */
.ritual-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 800px) { .ritual-row { grid-template-columns: repeat(2, 1fr); } }

.ritual-card {
  background: var(--cream);
  padding: 34px 26px;
  text-align: center;
}

.ritual-card .moon { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.ritual-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.ritual-card p { font-size: 0.85rem; font-style: italic; opacity: 0.7; margin: 0; }

/* ---------- Page banner (non-hero pages) ---------- */
.page-banner {
  padding: 70px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.music-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.music-toggle:hover { transform: scale(1.06); }
.music-toggle.playing { color: var(--gold-soft); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Photo hero (homepage) ---------- */
.hero-photo {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroSlowZoom 22s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.055); }
}
@media (max-width: 760px) {
  .hero-photo { min-height: 100vh; }
  .hero-photo-img { object-position: 2% top; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo-img { animation: none; }
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
