:root {
  --bg: #1d1d1b;
  --surface: #252522;
  --surface-2: #171715;
  --fg: #eeddcb;
  --muted: #a89f8e;
  --beige: #eeddcb;
  --beige-light: #f5ebdc;
  --beige-dark: #d4c4a8;
  --accent: #b89162;
  --accent-dark: #9a7348;
  --line: rgba(238, 221, 203, 0.16);
  --radius: 1.25rem;
  --pill: 999px;
  --max: 72rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 0;
}
.btn-lg { min-height: 3rem; padding: 0 1.5rem; }
.btn-fill { background: var(--accent); color: var(--bg); }
.btn-fill:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--beige); border: 2px solid var(--beige); }
.btn-ghost:hover { background: var(--beige); color: var(--bg); }
.btn-solid { background: var(--beige); color: var(--bg); }
.btn-solid:hover { background: var(--beige-dark); }
.btn-full { width: 100%; }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }

.snow { pointer-events: none; position: fixed; inset: 0; z-index: 40; overflow: hidden; }
.snowflake {
  position: absolute; top: -12px; border-radius: 999px;
  background: var(--beige);
  animation: snow-fall linear infinite;
}
@keyframes snow-fall { to { transform: translateY(110vh); opacity: 0; } }

.banner { background: var(--accent); color: var(--bg); text-align: center; padding: 0.65rem 1rem; font-size: 0.875rem; font-weight: 500; }

.hero-photo { position: relative; }
.hero-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-dim { position: absolute; inset: 0; background: rgba(0,0,0,.6); pointer-events: none; }

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.8);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; max-width: var(--max); margin: 0 auto; }
.logo { height: 3.5rem; width: auto; }
nav { display: none; gap: 1.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(238,221,203,.8); }
nav a:hover { color: var(--beige); }

.hero-intro { position: relative; z-index: 10; padding: 4rem 1.25rem 2.5rem; }
.hero-copy { max-width: 48rem; margin: 0 auto; text-align: center; text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.chip {
  display: inline-flex; margin-bottom: 1.25rem; padding: 0.35rem 1rem;
  border-radius: var(--pill); border: 1px solid rgba(238,221,203,.4);
  font-size: 0.875rem; font-weight: 500;
}
h1 { font-size: 1.875rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.lead { max-width: 36rem; margin: 0 auto; font-size: 1rem; line-height: 1.65; }

.hero-actions { padding: 2rem 1.25rem 5rem; text-align: center; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.stats { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; justify-items: center; gap: 2rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; }
.stat-label { font-size: 0.875rem; color: var(--muted); }
.more { margin-top: 3rem; display: flex; justify-content: center; color: rgba(238,221,203,.6); }

.photo-banner { position: relative; isolation: isolate; height: 18rem; overflow: hidden; }
.photo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-banner .shade { position: absolute; inset: 0; background: rgba(29,29,27,.45); }
.photo-banner .grad { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), transparent, rgba(29,29,27,.3)); }
.photo-copy { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 1.5rem; text-align: center; }
.photo-copy h2 { max-width: 36rem; font-size: 1.5rem; font-weight: 700; line-height: 1.2; color: var(--beige-light); }
.photo-copy p { margin: 0.75rem 0 0; max-width: 32rem; font-size: 0.875rem; line-height: 1.6; color: rgba(245,235,220,.85); }

.cards { padding: 2.5rem 0 5rem; }
.grid-3 { display: grid; gap: 1.5rem; align-items: stretch; }
.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.card:hover { border-color: rgba(238,221,203,.4); }
.card-toggle { display: flex; width: 100%; align-items: flex-start; gap: 0.75rem; background: none; border: 0; color: inherit; text-align: left; padding: 0; }
.card-head { min-width: 0; flex: 1; }
.card-title-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.card h3 { font-size: 1.25rem; font-weight: 600; color: var(--beige); }
.guests { display: block; margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.chevron { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform .2s; }
.card.is-open .chevron { transform: rotate(180deg); }
.card-desc { margin: 1rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card.is-open .card-desc { -webkit-line-clamp: unset; display: block; }
.card-extra { display: none; margin: 1.25rem 0 1.5rem; padding: 0; list-style: none; }
.card.is-open .card-extra { display: block; }
.card-extra li { display: flex; gap: 0.5rem; font-size: 0.875rem; margin: 0.5rem 0; }
.check { color: var(--beige); margin-top: 0.1rem; }

.pack { text-align: center; padding: 2rem; position: relative; display: flex; flex-direction: column; height: 100%; }
.pack.popular { border-color: var(--beige); box-shadow: 0 0 40px rgba(238,221,203,.12); }
.badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  white-space: nowrap; border-radius: var(--pill); background: var(--beige);
  color: var(--bg); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700;
}
.pack .card-toggle { display: block; width: 100%; }
.pack-title { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.pack h3 { font-weight: 700; }
.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--beige);
  margin: 0;
  text-align: center;
  white-space: nowrap;
}
.price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pack-date { margin: 0.75rem 0 0; font-size: 0.875rem; font-weight: 600; color: var(--beige-light); }
.pack-condition { margin: 0.5rem 0 1.5rem; font-size: 0.875rem; font-weight: 600; line-height: 1.5; color: var(--beige-light); }
.pack-condition span { padding: 0 0.2rem; color: var(--muted); }
.pack-condition + .card-extra { margin-top: 0; }
.benefit-icon { margin-top: 0.1rem; color: var(--beige-dark); }
.pack .card-extra { margin-bottom: 1.5rem; }
.pack .card-extra li { border-bottom: 1px solid var(--line); padding: 0.5rem 0; text-align: left; margin: 0; }
.pack .card-extra li:last-child { border: 0; }
.pack .btn { margin-top: auto; }

.sec-head { text-align: center; margin-bottom: 3rem; }
.sec-head h2 { font-size: 1.5rem; font-weight: 700; color: var(--beige); }
.sec-head p { margin: 0.75rem auto 0; max-width: 36rem; color: var(--muted); }

.why-cards { padding: 2.5rem 0 3rem; }
.why-grid { display: grid; gap: 1rem; }
.why-item { border: 1px solid var(--line); background: rgba(238,221,203,.05); border-radius: var(--radius); padding: 1.5rem; }
.why-item h3 { font-size: 1rem; font-weight: 600; color: var(--beige-light); margin: 0.75rem 0 0.25rem; }
.why-item p { margin: 0; font-size: 0.875rem; color: var(--muted); }

.faq-sec { padding: 5rem 0; }
.faq-wrap { max-width: 56rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; color: var(--beige-light); font-weight: 600; line-height: 1.5;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; color: var(--accent); font-size: 1.5rem; font-weight: 400; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--beige); outline-offset: 4px; border-radius: 0.25rem; }
.faq-item p { margin: -0.25rem 0 1.25rem; max-width: 48rem; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item a { color: var(--beige); text-decoration: underline; text-underline-offset: 0.2em; }
.faq-item a:focus-visible { outline: 2px solid var(--beige); outline-offset: 3px; border-radius: 0.15rem; }

.form-sec { background: var(--surface-2); padding: 5rem 1.25rem; }
.form-box { max-width: 36rem; margin: 0 auto; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 2rem; }
.form-box h2 { text-align: center; font-size: 1.5rem; font-weight: 700; }
.form-box .sub { text-align: center; font-size: 0.875rem; color: var(--muted); margin: 0.5rem 0 2rem; }
form { display: grid; gap: 1rem; }
.row-2 { display: grid; gap: 1rem; }
label span { display: block; margin-bottom: 0.4rem; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.field {
  width: 100%; min-height: 2.75rem; padding: 0.7rem 1rem;
  border-radius: 0.75rem; border: 1px solid var(--line);
  background: rgba(238,221,203,.06); color: var(--fg);
  font-family: inherit; font-size: 1rem;
}
.field:focus { outline: none; border-color: var(--beige); }
.field::placeholder { color: var(--muted); }
select.field option { color: #1d1d1b; background: #fff; }
textarea.field { min-height: 6rem; resize: vertical; }
.hp-field {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.consent-field { border: 1px solid var(--line); border-radius: 0.75rem; padding: 0.9rem 1rem; }
.consent-field.has-error { border-color: rgba(220, 145, 124, .75); }
.consent-control { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.consent-control:focus-within { outline: 2px solid var(--beige); outline-offset: 4px; border-radius: 0.25rem; }
.consent-control input { width: 1.15rem; height: 1.15rem; margin: 0.15rem 0 0; flex: 0 0 auto; accent-color: var(--accent); }
.consent-control .consent-copy { display: block; margin: 0; color: var(--fg); font-size: 0.875rem; font-weight: 400; line-height: 1.55; }
.consent-links { display: flex; flex-wrap: wrap; gap: 0.35rem 0.5rem; margin: 0.65rem 0 0 1.9rem; font-size: 0.8rem; line-height: 1.5; color: var(--muted); }
.consent-links a { color: var(--beige); text-decoration: underline; text-underline-offset: 0.2em; }
.consent-links a:hover { color: var(--beige-light); }
.consent-links a:focus-visible { outline: 2px solid var(--beige); outline-offset: 3px; border-radius: 0.15rem; }
.consent-error { margin: 0.65rem 0 0 1.9rem; color: #efb5a5; font-size: 0.875rem; line-height: 1.45; }
.consent-error[hidden] { display: none; }
.form-status { border: 1px solid var(--line); border-radius: 0.75rem; padding: 0.8rem 1rem; font-size: 0.875rem; line-height: 1.45; }
.form-status[hidden] { display: none; }
.form-box.is-success .form-status { border-color: rgba(185, 225, 174, .5); color: #d9f1d2; }
.form-box.is-error .form-status, .form-box.is-unconfigured .form-status { border-color: rgba(238, 221, 203, .45); color: var(--beige-light); }
.form-box.is-sending .btn[type="submit"] { cursor: wait; opacity: .75; }

.legal-header { position: static; }
.legal-header-inner { width: min(52rem, calc(100% - 2.5rem)); margin: 0 auto; padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.legal-header .logo { height: 3.5rem; }
.legal-main { width: min(52rem, calc(100% - 2.5rem)); margin: 0 auto; padding: 2.5rem 0 5rem; }
.legal-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 1.5rem; }
.legal-card h1 { margin: 0; color: var(--beige-light); font-size: clamp(1.65rem, 6vw, 2.5rem); line-height: 1.2; }
.legal-card h2 { margin: 2rem 0 0.75rem; color: var(--beige); font-size: 1.15rem; line-height: 1.35; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }
.legal-card p { margin: 0.75rem 0; }
.legal-card ul { margin: 0.75rem 0; padding-left: 1.25rem; }
.legal-card li + li { margin-top: 0.35rem; }
.legal-card a { color: var(--beige); text-decoration: underline; text-underline-offset: 0.2em; }
.legal-card a:focus-visible { outline: 2px solid var(--beige); outline-offset: 3px; border-radius: 0.15rem; }
.legal-kicker { margin-top: 0 !important; color: var(--accent) !important; font-size: 0.75rem !important; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.operator-details { padding: 1rem 1.15rem 1rem 2.25rem !important; border: 1px solid rgba(238, 221, 203, .28); border-radius: 0.75rem; background: rgba(238, 221, 203, .04); }
.operator-details li { color: var(--beige-light); font-weight: 600; overflow-wrap: anywhere; }
.legal-review { padding: 0.9rem 1rem; border-left: 3px solid var(--accent); background: rgba(184, 145, 98, .08); color: var(--beige-light) !important; }
.legal-actions { margin-top: 1.5rem; display: flex; justify-content: flex-start; }

footer { border-top: 1px solid var(--line); background: var(--surface-2); padding: 3rem 1.25rem; }
.foot { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.foot > div { display: flex; flex-direction: column; align-items: center; width: 100%; }
.foot .logo { height: 4rem; margin-inline: auto; display: block; }
.foot p { max-width: 24rem; margin: 0.75rem auto 0; font-size: 0.875rem; color: var(--muted); }
.phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; font-weight: 700; color: var(--beige); }
.addr { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); margin: 0.35rem 0 0; }

@media (min-width: 768px) {
  .logo { height: 5rem; }
  .foot .logo { height: 6rem; }
  nav { display: flex; }
  .header-inner { flex-direction: row; justify-content: space-between; gap: 1rem; }
  h1 { font-size: 3rem; }
  .lead { font-size: 1.125rem; }
  .hero-intro { padding-top: 6rem; padding-bottom: 3.5rem; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat-value { font-size: 1.875rem; }
  .photo-banner { height: 24rem; }
  .photo-copy h2 { font-size: 2.25rem; }
  .photo-copy p { font-size: 1rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  #packages .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sec-head h2 { font-size: 1.875rem; }
  .card-toggle { pointer-events: none; }
  .chevron { display: none; }
  .card-desc { -webkit-line-clamp: unset; display: block; }
  .card-extra { display: block; }
  .row-2 { grid-template-columns: 1fr 1fr; }
  .form-box { padding: 2.5rem; }
  .legal-main { padding-top: 4rem; }
  .legal-card { padding: 2.5rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  #packages .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .snowflake { animation: none; display: none; }
  .faq-item summary::after { transition: none; }
}
