:root {
  --cream: #fbf6ec;
  --cream-2: #f4ecdb;
  --ink: #171310;
  --ink-soft: #5c5344;
  --honey: #e0a82e;
  --honey-deep: #b8860b;
  --honey-bright: #f2c14e;
  --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: "Inter", -apple-system, sans-serif; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: rgba(251,246,236,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8dfc8;
}
.nav-logo {
  font-family: "Yellowtail", cursive; font-size: 28px; color: var(--honey-deep);
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
.nav-links a:hover { color: var(--honey-deep); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 10px 18px; border-radius: 999px;
}
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 60px 20px 70px; }
.hero-logo { width: min(440px, 82vw); }
.hero-tag { margin-top: -8px; }
.script { font-family: "Yellowtail", cursive; font-size: clamp(28px, 6vw, 40px); color: var(--honey-deep); }
.hero-sub { color: var(--ink-soft); margin: 16px 0 26px; line-height: 1.7; font-size: 16px; }
.cta {
  display: inline-block; background: linear-gradient(180deg, var(--honey-bright), var(--honey));
  color: var(--ink); text-decoration: none; border: none; cursor: pointer;
  font: 700 13px/1 "Inter", sans-serif; letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(224,168,46,.35);
}
.cta:hover { filter: brightness(1.05); }
.hero-badge {
  margin-top: 26px; display: inline-block; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid #e0d5ba; border-radius: 999px; padding: 9px 16px; background: #fff;
  display: block; width: fit-content; margin-left: auto; margin-right: auto;
}

/* ---------- sections ---------- */
section { max-width: 1080px; margin: 0 auto; padding: 60px 22px; }
.h2 {
  font-family: "Anton", Impact, sans-serif; font-size: clamp(30px, 5vw, 44px);
  letter-spacing: .02em; text-transform: uppercase; margin-bottom: 8px;
}
.section-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 28px; }

/* ---------- packs ---------- */
.pack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.pack-card {
  background: #fff; border: 1px solid #eee3cb; border-radius: var(--radius);
  padding: 22px; text-align: center; position: relative;
  transition: transform .15s, box-shadow .15s;
}
.pack-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(23,19,16,.08); }
.pack-card.featured { border-color: var(--honey); box-shadow: 0 0 0 1px var(--honey); }
.pack-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--honey-bright);
  font: 700 10px/1 "Inter", sans-serif; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.pack-img img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 10px; }
.pack-name { font-family: "Anton", sans-serif; font-size: 24px; margin-top: 14px; }
.pack-desc { color: var(--ink-soft); font-size: 13.5px; margin: 6px 0 12px; line-height: 1.5; }
.pack-price { font-size: 22px; font-weight: 700; color: var(--honey-deep); margin-bottom: 16px; }
.pack-price small { font-size: 10px; color: #b3a888; text-transform: uppercase; letter-spacing: .1em; vertical-align: middle; }
.buy {
  width: 100%; background: var(--ink); color: var(--cream); border: none; cursor: pointer;
  font: 700 12px/1 "Inter", sans-serif; letter-spacing: .16em; text-transform: uppercase;
  padding: 15px; border-radius: 999px;
}
.buy:hover { background: #2c241c; }

/* ---------- band ---------- */
.band { max-width: none; background: var(--ink); text-align: center; padding: 70px 20px; }
.band-script {
  font-family: "Yellowtail", cursive; font-size: clamp(40px, 8vw, 72px);
  background: linear-gradient(180deg, var(--honey-bright), var(--honey-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.band p { color: #cbbfa4; margin-top: 10px; letter-spacing: .22em; text-transform: uppercase; font-size: 12px; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.ab { background: #fff; border: 1px solid #eee3cb; border-radius: var(--radius); padding: 26px 22px; }
.ab h3 { font-size: 15px; margin-bottom: 8px; }
.ab p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.65; }

/* ---------- faq ---------- */
.faq details {
  background: #fff; border: 1px solid #eee3cb; border-radius: 12px;
  padding: 18px 20px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 15px; }
.faq p { color: var(--ink-soft); font-size: 14px; margin-top: 10px; line-height: 1.65; }

/* ---------- notify ---------- */
.notify { text-align: center; }
.notify-row { display: flex; gap: 10px; justify-content: center; max-width: 480px; margin: 0 auto; }
.n-input {
  flex: 1; background: #fff; border: 1px solid #e0d5ba; border-radius: 999px;
  padding: 15px 20px; font: 400 15px/1 "Inter", sans-serif; color: var(--ink);
}
.n-input:focus { outline: none; border-color: var(--honey); }
.n-hint { margin-top: 12px; font-size: 13px; color: var(--honey-deep); min-height: 18px; }

/* ---------- footer ---------- */
.foot { background: var(--ink); text-align: center; padding: 50px 20px 40px; }
.foot-logo { width: 110px; opacity: .95; }
.foot-links { color: #cbbfa4; font-size: 13px; margin: 16px 0 20px; letter-spacing: .08em; }
.legal { max-width: 640px; margin: 0 auto; color: #7d7360; font-size: 11px; line-height: 1.7; }

/* ---------- mobile ---------- */
@media (max-width: 720px) {
  .burger { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid #e8dfc8; padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .nav-cta { width: auto !important; margin: 8px 24px 0; text-align: center; border-radius: 999px; }
  .hero { padding: 40px 16px 54px; }
  section { padding: 44px 16px; }
  .notify-row { flex-direction: column; }
  .n-input, .notify .cta { width: 100%; }
}

/* contact + family links */
.nav-links a.fam { color: var(--honey-deep); }
.foot-links a { color: #cbbfa4; text-decoration: none; }
.foot-links a:hover { color: var(--honey-bright); }
.foot-links .soon { opacity: .55; }
.foot-addr { color: #9a8f78; font-size: 12px; margin-bottom: 18px; letter-spacing: .06em; }
.contact-page { max-width: 720px; }
.contact-card { background: #fff; border: 1px solid #eee3cb; border-radius: var(--radius); padding: 26px 22px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.c-msg { width: 100%; min-height: 130px; resize: vertical; border-radius: 14px; margin-bottom: 14px; }
.addr-block { margin-top: 26px; background: var(--cream-2); border-radius: var(--radius); padding: 22px; line-height: 1.8; font-size: 14px; }
@media (max-width: 700px) { .c-row { grid-template-columns: 1fr; } }

/* drip caps hero (dark logo card on cream) + unambiguous script */
.hero-logo-dark { border-radius: 24px; box-shadow: 0 18px 50px rgba(23,19,16,.18); }
.band-script { font-family: "Pacifico", cursive; }
.hero-tag .script { font-family: "Pacifico", cursive; font-size: clamp(24px, 5vw, 34px); }
