:root {
  --cream: #f3ebe0;
  --paper: #faf6f0;
  --ink: #1a1210;
  --ink-soft: #3d322e;
  --muted: #6f5e56;
  --burgundy: #8b1d33;
  --burgundy-deep: #5c1222;
  --blush: #e5c9c0;
  --line: #d9cbbe;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --shadow-soft: 0 1px 0 0 rgb(26 18 16 / 0.06), 0 12px 32px -16px rgb(26 18 16 / 0.18);
  --shadow-lift: 0 1px 0 0 rgb(26 18 16 / 0.08), 0 18px 40px -18px rgb(26 18 16 / 0.28);
  --radius: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: 5.5rem; -webkit-font-smoothing: antialiased; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--font-sans); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { width: min(72rem, calc(100% - 2.5rem)); margin-inline: auto; }
@media (min-width: 768px) { .wrap { width: min(72rem, calc(100% - 4rem)); } }

.kicker { margin: 0; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--burgundy); }
.kicker.on-dark { color: var(--blush); }
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
h1, h2, h3, h4 { text-wrap: balance; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 3.5rem; padding: 0 1.75rem; border: 0; border-radius: 0.75rem; font-size: 1rem; font-weight: 500; transition: background-color 0.28s ease, color 0.28s ease, transform 0.22s ease, box-shadow 0.28s ease, opacity 0.28s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--burgundy); color: var(--paper); }
.btn-primary:hover { background: var(--burgundy-deep); }
.btn-invert { background: var(--paper); color: var(--burgundy); }
.btn-invert:hover { background: var(--cream); }
.btn-ghost { background: transparent; color: var(--paper); }
.btn-ghost:hover { background: rgb(250 246 240 / 0.1); }
.btn-sm { min-height: 2.5rem; padding: 0 1rem; font-size: 0.875rem; border-radius: 0.5rem; }
.btn-full { width: 100%; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 40; color: var(--paper); transition: 0.2s; }
.site-header.is-light,
body:not(.home) .site-header { background: rgb(243 235 224 / 0.96); color: var(--ink); border-bottom: 1px solid rgb(217 203 190 / 0.8); box-shadow: var(--shadow-soft); }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 768px) { .site-header__bar { height: 4.5rem; } }
.site-header__logo { height: 3rem; width: auto; }
@media (min-width: 768px) { .site-header__logo { height: 3.5rem; } }
.site-header.is-light .site-header__logo,
body:not(.home) .site-header__logo { filter: brightness(0); }
.site-header:not(.is-light) .site-header__logo { filter: drop-shadow(0 1px 8px rgb(26 18 16 / 0.45)); }
.site-nav { display: none; gap: 1.75rem; }
.site-nav a { font-size: 0.875rem; opacity: 0.85; }
.site-nav a:hover { opacity: 1; }
@media (min-width: 1024px) { .site-nav { display: flex; } .menu-toggle { display: none; } }
.menu-toggle { width: 2.75rem; height: 2.75rem; border: 0; background: none; color: inherit; font-size: 1.5rem; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle:hover { opacity: 0.8; }
.menu-toggle[aria-expanded="true"] { transform: rotate(90deg); }
.site-header__cta { display: none; }
@media (min-width: 640px) { .site-header__cta { display: inline-flex; } }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--cream); padding: 0.75rem 1.25rem 1.5rem; }
.mobile-nav a { display: flex; min-height: 3rem; align-items: center; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); transition: color 0.25s ease, padding-left 0.25s ease; }
.mobile-nav a:hover { color: var(--burgundy); padding-left: 0.35rem; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--ink); color: var(--paper); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgb(26 18 16 / 0.28) 0%, rgb(26 18 16 / 0.08) 14%, transparent 28%, transparent 54%, rgb(26 18 16 / 0.62) 76%, rgb(26 18 16 / 0.94) 100%); }
.hero__inner { position: relative; display: flex; flex-direction: column; min-height: 100svh; padding: 4.35rem 1.15rem 1.5rem; }
@media (min-width: 1024px) { .hero__inner { padding: 4.75rem 2rem 2.5rem; } }
.hero__top { display: flex; flex-direction: column; align-items: center; }
.hero__space { flex: 1; min-height: 3.5rem; }
.hero__bottom { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__kicker { margin: 0; max-width: 100%; border-radius: 999px; background: rgb(26 18 16 / 0.4); color: var(--paper); padding: 0.35rem 0.85rem; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; backdrop-filter: blur(4px); }
@media (min-width: 640px) { .hero__kicker { font-size: 0.75rem; letter-spacing: 0.16em; padding: 0.35rem 1rem; } }
.hero__title { margin: 0.5rem auto 0; width: min(100%, 17rem); padding: 0; background: none; text-align: center; }
@media (min-width: 640px) { .hero__title { width: min(100%, 24rem); } }
@media (min-width: 1024px) { .hero__title { width: min(100%, 28rem); } }
@media (min-width: 1280px) { .hero__title { width: min(100%, 30rem); } }
.hero__title img { display: block; width: 100%; height: auto; }
.hero__tagline { margin: 0 0 1rem; max-width: 48rem; padding: 0; background: none; color: #fff; font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.35rem); font-style: italic; font-weight: 600; line-height: 1.12; text-align: center; -webkit-text-stroke: 0; text-shadow: 0 2px 18px rgb(26 18 16 / 0.55), 0 1px 3px rgb(26 18 16 / 0.75); }
.hero__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0; }
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }
.hero__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.5rem; margin-top: 2rem; font-size: 0.875rem; color: rgb(250 246 240 / 0.85); }
.hero__meta svg { width: 1rem; height: 1rem; color: var(--blush); }
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }

.countdown { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.countdown__cell { min-width: 4rem; padding: 0.5rem 0.75rem; border-radius: 0.5rem; border: 1px solid rgb(250 246 240 / 0.15); background: rgb(26 18 16 / 0.35); text-align: center; }
.countdown__n { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown__l { margin-top: 0.25rem; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgb(250 246 240 / 0.7); }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.bg-cream { background: var(--cream); color: var(--ink); }
.bg-paper { background: var(--paper); color: var(--ink); }
.bg-ink { background: var(--ink); color: var(--paper); }

.grid-12 { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 4rem; } .span-5 { grid-column: span 5; } .span-7 { grid-column: span 7; } }
.photo-frame { overflow: hidden; border-radius: var(--radius); background: rgb(229 201 192 / 0.4); }
.photo-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.italic-line { margin: 0.75rem 0 0; font-family: var(--font-display); font-size: 1.5rem; color: var(--burgundy); font-style: italic; }
.body-copy { margin-top: 2rem; display: grid; gap: 1.25rem; color: var(--ink-soft); line-height: 1.65; }
.body-copy .accent { margin: 0; font-family: var(--font-display); font-size: 1.875rem; color: var(--ink); line-height: 1.3; }

.divider { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--burgundy); }
.divider span { height: 1px; width: 3rem; background: var(--line); }
.divider svg { width: 1rem; height: 1rem; }
.center { text-align: center; }
h2.display { margin: 1rem 0 0; font-size: clamp(2rem, 4vw, 3rem); }

.list-cards { margin: 3rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; }
@media (min-width: 768px) { .list-cards { grid-template-columns: 1fr 1fr; } }
.list-cards li { display: flex; gap: 0.75rem; padding: 1rem 1.25rem; border-radius: 0.75rem; background: var(--cream); color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }
.list-cards svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.2rem; color: var(--burgundy); }
.cta-row { margin-top: 2.5rem; display: flex; justify-content: center; }

.arc-table { margin-top: 3rem; overflow: hidden; border-radius: var(--radius); border: 1px solid rgb(250 246 240 / 0.1); }
.arc-head, .arc-row { display: grid; grid-template-columns: 1fr 1fr; }
.arc-head { background: rgb(250 246 240 / 0.05); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.arc-head div, .arc-row p { margin: 0; padding: 0.85rem 1rem; }
@media (min-width: 768px) { .arc-head div, .arc-row p { padding: 1rem 1.5rem; } }
.arc-head .dim { color: rgb(250 246 240 / 0.55); }
.arc-head .hot { color: var(--blush); }
.arc-row { border-top: 1px solid rgb(250 246 240 / 0.1); }
.arc-row .before { color: rgb(250 246 240 / 0.65); font-size: 0.95rem; line-height: 1.55; }
.arc-row .after { border-left: 1px solid rgb(139 29 51 / 0.4); background: rgb(139 29 51 / 0.15); color: var(--paper); font-size: 0.95rem; line-height: 1.55; }

.outcomes-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .outcomes-grid { grid-template-columns: 1fr 1fr; } }
.num-list { margin: 2rem 0 0; padding: 0; list-style: none; display: grid; gap: 1rem; }
.num-list li { display: flex; gap: 1rem; color: var(--ink-soft); line-height: 1.6; }
.num-list b { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--burgundy); font-weight: 500; }

.days { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .days { grid-template-columns: repeat(3, 1fr); } }
.day { display: flex; flex-direction: column; padding: 1.5rem; border-radius: var(--radius); background: var(--cream); }
.day h3 { margin: 0.75rem 0 0; font-size: 1.875rem; }
.day .sub { margin: 0.5rem 0 0; color: var(--muted); font-style: italic; font-size: 0.9rem; }
.day ul { margin: 1.5rem 0 0; padding: 0; list-style: none; flex: 1; display: grid; gap: 0.65rem; color: var(--ink-soft); font-size: 0.9rem; }
.day li { border-left: 1px solid rgb(139 29 51 / 0.3); padding-left: 0.75rem; }
.day .result { margin-top: 1.5rem; padding: 1rem; border: 0; border-radius: 0.9rem; background: rgb(139 29 51 / 0.3); color: var(--ink); font-size: 0.9rem; line-height: 1.55; }
.day .result strong { color: var(--ink); }
.callout-wine { margin: 0; padding: 1rem 1.15rem; border-radius: 1rem; background: rgb(139 29 51 / 0.3); color: var(--ink); line-height: 1.65; }
.callout-soft { margin: 1.25rem 0 0; padding: 1rem 1.15rem; border-radius: 1rem; background: rgb(139 29 51 / 0.2); color: var(--ink); line-height: 1.65; }

.format-grid { margin-top: 3rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .format-grid { grid-template-columns: 1fr 1fr; } }
.format-card { padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); }
.format-card h3 { margin: 0; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.format-card p { margin: 0.5rem 0 0; color: var(--muted); line-height: 1.6; }
.dot-list { margin: 2rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; }
@media (min-width: 768px) { .dot-list { grid-template-columns: 1fr 1fr; } }
.dot-list li { display: flex; gap: 0.75rem; color: var(--ink-soft); line-height: 1.6; }
.dot-list i { width: 0.4rem; height: 0.4rem; margin-top: 0.55rem; border-radius: 99px; background: var(--burgundy); flex-shrink: 0; }

.speakers { display: grid; gap: 2rem; margin-top: 3.5rem; }
@media (min-width: 1024px) { .speakers { grid-template-columns: 1fr 1fr; } }
.speakers h3 { margin: 1.5rem 0 0; font-size: 1.875rem; }
.role { margin: 0.25rem 0 0; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blush); }
.speakers ul { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; color: rgb(250 246 240 / 0.75); font-size: 0.9rem; }
.quote { margin: 1.5rem 0 0; padding-left: 1rem; border-left: 1px solid var(--burgundy); font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--blush); line-height: 1.35; }
.muted-p { margin: 1.5rem 0 0; color: rgb(250 246 240 / 0.75); line-height: 1.65; }

.together { position: relative; overflow: hidden; background: var(--ink); }
.together img { width: 100%; max-height: 38rem; object-fit: cover; object-position: 50% 18%; opacity: 0.9; }
.together::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(26 18 16 / 0.15), rgb(26 18 16 / 0.55)); }
.together p { position: absolute; inset: auto 0 2rem; z-index: 1; margin: 0; text-align: center; font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem); font-style: italic; color: var(--paper); }

.two-col { display: grid; gap: 3rem; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col h2 { margin: 0.75rem 0 0; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.two-col p { margin: 1rem 0 0; color: var(--ink-soft); line-height: 1.65; }

.pillars { margin-top: 3.5rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding: 1.5rem; border-radius: var(--radius); background: var(--paper); }
.pillar .n { margin: 0; font-family: var(--font-display); font-size: 2.25rem; color: var(--burgundy); }
.pillar h3 { margin: 1rem 0 0; font-size: 1.5rem; }
.pillar p { margin: 0.5rem 0 0; color: var(--muted); line-height: 1.6; }

.packages { margin-top: 3.5rem; display: grid; gap: 1.25rem; align-items: stretch; }
@media (min-width: 1024px) { .packages { grid-template-columns: repeat(3, 1fr); } }
.pack { display: flex; flex-direction: column; padding: 1.5rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); color: var(--ink); }
.pack.is-hot { background: var(--burgundy); color: var(--paper); border: 0; box-shadow: var(--shadow-lift); }
@media (min-width: 1024px) { .pack.is-hot { transform: translateY(-0.75rem); } }
.badge { align-self: flex-start; border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; }
.badge-paper { background: var(--paper); color: var(--burgundy); }
.badge-wine { background: var(--burgundy); color: var(--paper); }
.pack h3 { margin: 0.75rem 0 0; font-size: 1.875rem; }
.pack .sub { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--muted); }
.pack.is-hot .sub { color: var(--blush); }
.pack .tag { margin: 1rem 0 0; font-size: 0.9rem; line-height: 1.55; color: var(--muted); }
.pack.is-hot .tag { color: rgb(250 246 240 / 0.8); }
.pack .price { margin: 1.5rem 0 0; font-family: var(--font-display); font-size: 3rem; line-height: 1; }
.pack ul { margin: 1.5rem 0 0; padding: 0; list-style: none; flex: 1; display: grid; gap: 0.75rem; font-size: 0.9rem; }
.pack li { display: flex; gap: 0.6rem; }
.pack li svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--burgundy); }
.pack.is-hot li svg { color: var(--blush); }
.pack .btn { margin-top: 2rem; }

.faq { max-width: 48rem; }
.acc { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn { width: 100%; display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border: 0; background: none; text-align: left; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); cursor: pointer; transition: color 0.25s ease; }
.acc-btn:hover { color: var(--burgundy); }
.acc-btn span { display: inline-block; transition: transform 0.28s ease; }
.acc-item.is-open .acc-btn span { transform: rotate(45deg); }
.acc-panel { display: none; padding: 0 0 1.1rem; color: var(--ink-soft); line-height: 1.65; }

.site-footer { background: var(--ink); color: var(--paper); padding: 4rem 0 7rem; }
@media (min-width: 768px) { .site-footer { padding: 4rem 0; } }
.site-footer .row { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer .row { flex-direction: row; justify-content: space-between; } }
.site-footer .logo { height: 3.5rem; width: auto; }
.site-footer p { margin: 0.75rem 0 0; font-size: 0.875rem; color: rgb(250 246 240 / 0.65); max-width: 24rem; }
.site-footer nav { display: grid; gap: 0.75rem; font-size: 0.875rem; color: rgb(250 246 240 / 0.8); }
.site-footer nav a:hover { color: var(--paper); }
.legal { margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgb(250 246 240 / 0.1); font-size: 0.75rem; color: rgb(250 246 240 / 0.5); line-height: 1.6; }

.sticky-cta { display: none; position: fixed; inset: auto 0 0; z-index: 30; padding: 0.75rem 1rem; border-top: 1px solid var(--line); background: rgb(243 235 224 / 0.95); animation: vbh-rise 0.35s ease; }
.sticky-cta.is-on { display: block; }
@media (min-width: 768px) { .sticky-cta { display: none !important; } }

@keyframes vbh-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 1.25rem; background: rgb(26 18 16 / 0.55); }
.modal__box { width: min(28rem, 100%); background: var(--paper); color: var(--ink); border-radius: 1.25rem; padding: 1.75rem; box-shadow: var(--shadow-lift); }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal__title { margin: 0; flex: 1; min-width: 0; font-size: 1.75rem; }
.modal__close { flex-shrink: 0; width: 2.5rem; height: 2.5rem; margin: -0.35rem -0.5rem 0 0; border: 0; background: none; color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; transition: transform 0.22s ease, opacity 0.22s ease; }
.modal__close:hover { opacity: 0.65; transform: rotate(90deg); }
.modal form { display: flex; flex-direction: column; width: 100%; }
.modal label { display: flex; flex-direction: column; width: 100%; gap: 0.35rem; margin-top: 0.9rem; font-size: 0.8rem; font-weight: 500; }
.modal input[type="text"],
.modal input[type="tel"],
.modal input[type="email"] { display: block; width: 100%; max-width: 100%; min-height: 2.75rem; padding: 0 0.75rem; border: 1px solid var(--line); border-radius: 0.5rem; background: var(--cream); font: inherit; box-sizing: border-box; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.modal input:focus { outline: none; border-color: rgb(139 29 51 / 0.4); box-shadow: 0 0 0 3px rgb(139 29 51 / 0.18); }
.modal form .btn { width: 100%; margin-top: 1.25rem; }
.modal .ok { display: none; text-align: center; padding: 1rem 0; }
.closing__title { margin: 0 0 1.25rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.tg { display: inline-flex; align-items: center; gap: 0.75rem; min-height: 3.25rem; padding: 0.4rem 1.1rem 0.4rem 0.4rem; border-radius: 999px; background: var(--burgundy); color: var(--paper); font-weight: 500; }
.tg svg { width: 2.4rem; height: 2.4rem; padding: 0.45rem; border-radius: 999px; background: rgb(250 246 240 / 0.16); }
.tg:hover { background: var(--burgundy-deep); }
.doc { max-width: 48rem; margin: 0 auto; padding: 6.5rem 1.25rem 4rem; }
.doc a { color: var(--burgundy); }
.offer h1 { margin-top: 1.5rem; font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; line-height: 1.1; }
.offer .lead { color: var(--muted); font-style: italic; }
.offer h2 { margin: 2rem 0 0.4rem; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.offer p, .offer li { margin: 0.65rem 0 0; line-height: 1.65; color: var(--ink-soft); }
.offer ul { margin: 0.35rem 0 0; padding-left: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
