:root {
  --cream: #f7efe2;
  --cream-soft: #fdf8ef;
  --espresso: #241812;
  --espresso-deep: #1c120c;
  --body-text: #6b5644;
  --body-muted: #3a2a1d;
  --text-on-dark: #f3e7d4;
  --text-on-dark-soft: #cbb99f;

  --accent: #8f5a2c;
  --accent-hover: #6f4a2a;
  --gold: #d09b58;
  --gold-hover: #e0ac66;

  --border-light: #e6d6bf;
  --border-light-2: #e2d1b8;
  --border-light-3: #eaddc7;
  --border-dark: #3a281c;
  --border-dark-2: #6a5340;

  --max-width: 1200px;
  --max-width-mid: 1120px;
  --max-width-narrow: 1060px;
  --side-pad: clamp(24px, 5vw, 64px);
  --section-pad: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--body-muted);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { color: var(--accent-hover); }

::selection { background: #e7cfa8; color: var(--espresso); }

h1, h2, h3 { margin: 0; }

.hl { color: var(--text-on-dark); }
.hl-dark { color: var(--espresso); }
.script-accent {
  font-family: 'Parisienne', cursive;
  text-transform: none;
  color: var(--accent);
  font-size: 1.15em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--primary {
  background: var(--accent);
  color: var(--cream-soft);
}
.btn--primary:hover { background: var(--accent-hover); color: var(--cream-soft); }

.btn--outline {
  background: transparent;
  color: #4a3627;
  border-color: #cdb491;
  padding: 15px 28px;
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--gold {
  background: var(--gold);
  color: var(--espresso);
  font-weight: 500;
}
.btn--gold:hover { background: var(--gold-hover); color: var(--espresso); }

.btn--outline-dark {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--border-dark-2);
  padding: 15px 28px;
}
.btn--outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn--small { font-size: 11px; padding: 12px 22px; }
.btn--block { display: block; text-align: center; margin-top: 22px; padding: 16px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Kicker ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 26px;
}
.kicker__rule { width: 34px; height: 1px; background: var(--accent); flex: none; }
.kicker--center { display: block; margin-bottom: 0; }
.kicker--gold { color: var(--gold); }

.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.1;
  color: var(--espresso);
}
.h2--dark { color: #fbf2e2; }

/* ---------- Layout helpers ---------- */
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-inner--narrow { max-width: var(--max-width-narrow); }
.section-inner--mid { max-width: var(--max-width-mid); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head--wide { max-width: 680px; }
.section-head .h2 { margin-top: 16px; }
.section-head__lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 14px 0 0;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--side-pad);
  background: rgba(247, 239, 226, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__mark { height: 46px; width: auto; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--espresso);
}
.nav__sub {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5em;
  font-size: 9px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
  padding-left: 3px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.nav__menu a:not(.btn) {
  color: #4a3627;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--espresso);
  border-radius: 1px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 104px) var(--side-pad) var(--section-pad);
}
.hero__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.02;
  color: var(--espresso);
}
.hero__script {
  display: block;
  font-family: 'Parisienne', cursive;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: clamp(52px, 6.4vw, 104px);
  line-height: 0.86;
  color: var(--accent);
  margin: 0.06em 0 0.04em;
}
.hero__lede {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 26px 0 34px;
}
.hero__figure {
  margin: 0;
  position: relative;
}
.hero__figure::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid #d8c3a2;
  border-radius: 6px;
  z-index: 0;
}
.hero__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 60px -24px rgba(36, 24, 18, 0.5);
}

/* ---------- Events ---------- */
.events {
  background: var(--cream-soft);
  padding: var(--section-pad) var(--side-pad);
  border-top: 1px solid var(--border-light-3);
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.event-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 34px 26px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.event-card:hover { border-color: var(--accent); }
.event-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}
.event-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--espresso);
}
.event-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body-text);
  margin: 0;
}

/* ---------- Story ---------- */
.story {
  background: var(--espresso);
  color: var(--text-on-dark);
  padding: clamp(72px, 10vw, 130px) var(--side-pad);
}
.story__grid {
  max-width: var(--max-width-mid);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.story__stat-num {
  font-family: 'Parisienne', cursive;
  font-size: clamp(46px, 5.5vw, 74px);
  line-height: 0.95;
  color: var(--gold);
}
.story__stat-label {
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(18px, 2vw, 26px);
  color: #e9d9c0;
  margin-top: 6px;
}
.story__rule { width: 54px; height: 1px; background: var(--gold); margin: 28px 0; }
.story__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.4;
  color: #e9d9c0;
  margin: 0;
  max-width: 360px;
}
.story__body h2 { margin-bottom: 22px; }
.story__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-on-dark-soft);
  margin: 0 0 18px;
  max-width: 540px;
}
.story__body p:last-child { margin-bottom: 0; }

/* ---------- Flavors ---------- */
.flavors { background: var(--cream); padding: var(--section-pad) var(--side-pad); }
.flavors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 6vw, 72px);
}
.flavors__col { list-style: none; margin: 0; padding: 0; }
.flavors__col li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light-2);
}
.flavors__dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-3px);
}
.flavors__col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 4px;
  color: var(--espresso);
}
.flavors__col p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0;
}
/* ---------- Experience ---------- */
.experience {
  background: var(--cream-soft);
  padding: var(--section-pad) var(--side-pad);
  border-top: 1px solid var(--border-light-3);
  border-bottom: 1px solid var(--border-light-3);
}
.experience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
}
.experience__item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.experience__item:last-child { border-right: none; }
.experience__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 16px;
}
.experience__item div {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  color: var(--espresso);
  line-height: 1.3;
}

/* ---------- Packages ---------- */
.packages {
  background: var(--espresso);
  color: var(--text-on-dark);
  padding: clamp(60px, 8vw, 104px) var(--side-pad);
}
.packages__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.packages .h2 { margin: 16px 0 20px; }
.packages__lede {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-on-dark-soft);
  max-width: 560px;
  margin: 0 auto 34px;
}

/* ---------- Book / Contact ---------- */
.book { background: var(--cream); padding: var(--section-pad) var(--side-pad); }
.book__grid {
  max-width: var(--max-width-mid);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.book__copy .h2 { margin-bottom: 20px; }
.book__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
  max-width: 460px;
  margin: 0 0 12px;
}
.book__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: #8a7357;
  margin: 0;
}
.book__card {
  background: var(--cream-soft);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
}
.book__field { padding: 18px 0; border-bottom: 1px solid var(--border-light-3); }
.book__field--last { border-bottom: none; padding-bottom: 6px; }
.book__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a08a6f;
  margin-bottom: 8px;
}
.book__value {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2vw, 25px);
  color: var(--espresso);
  word-break: break-word;
}
.book__value:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso-deep);
  color: #b9a488;
  padding: clamp(48px, 6vw, 76px) var(--side-pad) 40px;
}
.footer__top {
  max-width: var(--max-width-mid);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__mark { height: 58px; width: auto; }
.footer__wordmark { display: flex; flex-direction: column; line-height: 1; }
.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  color: var(--text-on-dark);
}
.footer__sub {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
  padding-left: 3px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  font-size: 13px;
}
.footer__links a { color: var(--text-on-dark-soft); }
.footer__links a:hover { color: var(--text-on-dark); }
.footer__bottom {
  max-width: var(--max-width-mid);
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: #7d6a52;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--border-light);
    padding: 8px var(--side-pad) 20px;
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--border-light-3); }
  .nav__menu .btn { margin-top: 16px; text-align: center; }

  .hero__grid,
  .story__grid,
  .book__grid {
    grid-template-columns: 1fr;
  }
  .hero__figure { order: -1; max-width: 420px; margin: 0 auto; }
  .story__body p { max-width: none; }
  .story__quote { max-width: none; }

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

  .experience__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .experience__item:nth-child(3n) { border-right: none; }
  .experience__item:nth-child(-n+3) { border-bottom: 1px solid var(--border-light); }
}

@media (max-width: 640px) {
  .flavors__grid { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
  .experience__item:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .experience__item:nth-child(2n) { border-right: none; }
  .experience__item:nth-child(-n+3) { border-bottom: none; }
  .experience__item:nth-child(-n+4) { border-bottom: 1px solid var(--border-light); }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { text-align: center; }
}
