:root {
  --ink: #2b211c;
  --ink-soft: #6a5d54;
  --paper: #f6f3ee;
  --paper-warm: #efe9e0;
  --line: #ddd3c7;
  --rose: #d98a9e;
  --pistachio: #a9b388;
  --saffron: #e3b23c;
  --lavender: #b7a4c9;
  --teal: #7fa9ae;
  --cocoa: #8a6650;
  --max: 1120px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 50;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
}

.btn {
  display: inline-block;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--paper-warm); }

/* Header */
.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}
.nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 32px); }
.nav a { text-decoration: none; font-size: 0.95rem; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink) !important;
  border-bottom: 1.5px solid var(--saffron);
  padding-bottom: 2px;
}

main { display: block; }

section { padding: clamp(40px, 5.5vw, 76px) var(--pad); max-width: var(--max); margin: 0 auto; }

.sec-head { max-width: 640px; margin-bottom: clamp(22px, 3vw, 38px); }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.sec-sub { color: var(--ink-soft); margin-top: 0.8rem; }

/* Hero */
.hero {
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: clamp(500px, 76vh, 740px);
  align-items: center;
}
.hero-text { padding: clamp(32px, 6vh, 72px) clamp(28px, 6vw, 96px); justify-self: start; }
.hero h1 { max-width: 13ch; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); }
.lede { font-size: 1.1rem; color: var(--ink-soft); margin: 1.3rem 0 1.9rem; max-width: 42ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { align-self: stretch; overflow: hidden; position: relative; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Collections */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
}
.tier-mid { background: #fff; }
.tier-ultra { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tier-ultra .price span { color: #cbb9a8; }
.tier-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.tier-ultra .tier-top { border-color: #4a3a31; }
.tier-top h3 { font-size: 1.5rem; }
.price { font-family: "Fraunces", serif; font-size: 1.5rem; margin: 0; }
.price span { font-family: "Hanken Grotesk", sans-serif; font-size: 0.8rem; color: var(--ink-soft); margin-left: 3px; }
.flavors { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; font-size: 0.95rem; text-align: center; }
.collections-note { text-align: center; margin: 28px auto 0; color: var(--ink-soft); }
.collections-note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.flavors li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.flavors li:last-child { border-bottom: none; }
.tier-ultra .flavors li { border-color: #4a3a31; }
.tier-note { margin-top: 20px; font-size: 0.85rem; color: #cbb9a8; line-height: 1.5; }

/* Craft */
.craft { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: stretch; }
.craft h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.craft-copy p { color: var(--ink-soft); margin: 0 0 1rem; }
.craft-video { margin: 0; display: flex; flex-direction: column; }
.craft-video video { width: 100%; display: block; flex: 1 1 auto; min-height: 340px; object-fit: cover; border-radius: 14px; background: #000; box-shadow: 0 14px 36px rgba(43,33,28,0.15); }
.craft-video figcaption { margin-top: 12px; color: var(--ink-soft); font-size: 0.9rem; }

/* About / maker */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-photo { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(43,33,28,0.14); aspect-ratio: 4 / 5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.about-copy p { color: var(--ink-soft); margin: 0 0 1rem; }
.about-copy .signoff { font-family: "Fraunces", serif; font-size: 1.25rem; color: var(--cocoa); font-style: italic; margin-top: 0.4rem; }

/* Palette */
.palette { text-align: center; }
.palette .sec-head { margin-left: auto; margin-right: auto; }
.swatches { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(10px, 2vw, 22px); }
.sw { width: clamp(54px, 9vw, 88px); aspect-ratio: 1; border-radius: 16px; background: var(--c); box-shadow: 0 8px 18px rgba(43,33,28,0.1); }

/* Event packages */
.pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pkg { border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; background: var(--paper-warm); display: flex; flex-direction: column; text-align: center; }
.pkg-feature { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 0 18px 40px rgba(43,33,28,0.18); }
.pkg-tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron); margin: 0 0 0.6rem; }
.pkg h3 { font-size: 1.5rem; margin: 0; }
.pkg-price { font-family: "Fraunces", serif; font-size: 1.6rem; margin: 6px 0 18px; }
.pkg-feature .pkg-price { color: #fff; }
.pkg-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.pkg-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.pkg-list li:last-child { border-bottom: none; }
.pkg-feature .pkg-list li { border-color: #4a3a31; }
.addons-card { max-width: 900px; margin: 44px auto 0; background: var(--paper-warm); border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 4vw, 40px); box-shadow: 0 12px 30px rgba(43,33,28,0.08); }
.addons-label { text-align: center; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 18px; }
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
.addon { display: flex; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.addon span:first-child { font-weight: 500; }
.addon span:last-child { color: var(--ink-soft); white-space: nowrap; }
.pkg-cta { margin: 36px auto 0; text-align: center; }
.pkg-cta p { margin: 0 0 14px; color: var(--ink-soft); }

/* Gallery */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-warm);
  box-shadow: 0 8px 22px rgba(43,33,28,0.10);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.shot:hover img { transform: scale(1.04); }

/* FAQ accordion */
.faq .sec-head { margin-left: auto; margin-right: auto; text-align: center; }
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 32px 18px 0; font-family: "Fraunces", serif; font-size: 1.1rem; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--cocoa); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 32px 20px 0; color: var(--ink-soft); }

/* Inquire */
.inquire-section { max-width: none; padding: clamp(48px, 7vw, 92px) var(--pad); background: var(--ink); color: var(--paper); }
.inquire { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 64px); align-items: start; }
.inquire-intro h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.inquire-section .eyebrow { color: #cbb9a8; }
.inquire-intro p { color: #d9cbbd; }
.inquire-section .field label { color: #cbb9a8; }
.inquire-section .btn-solid { background: var(--paper); color: var(--ink); }
.inquire-section .btn-solid:hover { background: #fff; }
.form { display: flex; flex-direction: column; gap: 16px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%236a5d54' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--cocoa); outline-offset: 1px; border-color: transparent; }
.inquire-meta { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 0.95rem; color: #d9cbbd; }
.inquire-meta li { padding-left: 18px; position: relative; }
.inquire-meta li::before { content: "·"; position: absolute; left: 4px; color: var(--saffron); font-weight: 700; }
.inquire-meta a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.info { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; border: 1px solid currentColor; font-size: 0.62rem; font-style: italic; font-family: Georgia, serif; opacity: 0.65; cursor: help; vertical-align: 1px; }
.form .btn { align-self: flex-start; margin-top: 6px; border: none; cursor: pointer; }
.form .btn:disabled { opacity: 0.6; cursor: default; }
.form-status { margin-top: 18px; padding: 16px 18px; border-radius: 10px; font-size: 0.97rem; line-height: 1.5; }
.form-status.ok { background: var(--paper-warm); border: 1px solid var(--line); color: var(--ink); }
.form-status.err { background: #fbeae6; border: 1px solid #e3b4a6; color: #8a3a25; }

/* Footer */
.site-foot { padding: clamp(40px, 5vw, 64px) var(--pad) 28px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.foot-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.foot-brand { font-family: "Fraunces", serif; font-size: 1.4rem; color: var(--ink); margin: 0 0 0.6rem; }
.foot-brand-col p { margin: 0; max-width: 40ch; font-size: 0.95rem; }
.foot-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
.foot-col a, .foot-col span { display: block; color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; margin-bottom: 9px; }
.foot-col a:hover { color: var(--ink); }
.foot-bar { max-width: var(--max); margin: 36px auto 0; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; font-size: 0.82rem; flex-wrap: wrap; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
/* Sticky mobile CTA */
.mobile-cta { display: none; }

@media (max-width: 860px) {
  .hero, .craft, .inquire, .about { grid-template-columns: 1fr; }
  .hero-text { justify-self: stretch; padding: 32px var(--pad) 24px; }
  .hero h1 { font-size: 2.3rem; }
  .lede { font-size: 1.05rem; margin: 1.1rem 0 1.5rem; }
  .hero-media { height: 40vh; }
  .craft-video video { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
  .about-photo { order: -1; max-width: 420px; }
  .tiers { grid-template-columns: 1fr; }
  .pkgs { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; max-width: 420px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bar { flex-direction: column; gap: 6px; }
  .faq-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .nav a:not(.nav-cta) { display: none; }
  .site-foot { padding-bottom: 100px; }
  .mobile-cta {
    display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
    text-align: center; background: var(--ink); color: var(--paper);
    padding: 15px 18px; border-radius: 999px; text-decoration: none; font-weight: 500;
    box-shadow: 0 12px 30px rgba(43,33,28,0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}
