:root {
  --ink: #161616;
  --charcoal: #201d1b;
  --espresso: #3a2d28;
  --latte: #b99b7a;
  --cream: #f7f0e8;
  --warm-white: #fffaf3;
  --amber: #b9791f;
  --sand: #eccf9c;
  --amber-deep: #7c4a1a;
  --muted: #6f6862;
  --line: rgba(32, 29, 27, .12);
  --shadow: 0 28px 80px rgba(28, 22, 17, .16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(236,207,156,.45), transparent 34rem),
    linear-gradient(135deg, #fffaf3 0%, #f6eee5 52%, #efe1d1 100%);
  min-height: 100vh;
}

body.dark-page {
  background:
    radial-gradient(circle at top right, rgba(216,181,109,.16), transparent 32rem),
    linear-gradient(135deg, #171513 0%, #241f1b 60%, #352821 100%);
  color: var(--warm-white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 800;
  margin-bottom: .8rem;
}
.eyebrow::before {
  content: "";
  width: .5rem;
  height: .5rem;
  border-radius: 99px;
  background: var(--amber);
  flex-shrink: 0;
}
.dark-page .eyebrow,
.card.dark .eyebrow,
.cta-panel .eyebrow { color: var(--sand); }

.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 243, .82);
  border-bottom: 1px solid rgba(36, 33, 31, .08);
}
.dark-page .site-header {
  background: rgba(22, 20, 18, .78);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .78rem;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.35rem;
}
.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--warm-white);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(20,16,12,.1);
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-links a {
  padding: .8rem .92rem;
  border-radius: 999px;
  color: rgba(22, 22, 22, .78);
  font-size: .94rem;
  font-weight: 700;
}
.dark-page .nav-links a { color: rgba(255, 250, 243, .75); }
.nav-links a:hover, .nav-links a.active { background: rgba(185,121,31, .14); color: var(--ink); }
.dark-page .nav-links a:hover, .dark-page .nav-links a.active { background: rgba(236,207,156,.12); color: #fff; }
.nav-cta {
  background: var(--charcoal) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(36, 33, 31, .18);
}
.dark-page .nav-cta { background: var(--sand) !important; color: var(--ink) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s ease;
}
.menu-toggle:hover { background: rgba(185,121,31,.1); }
.menu-toggle:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.dark-page .menu-toggle:hover { background: rgba(236,207,156,.12); }
.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s ease;
}
.dark-page .menu-toggle-bar { background: var(--warm-white); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn-row { display: flex; align-items: center; flex-wrap: wrap; gap: .85rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: .9rem 1.25rem;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--charcoal); color: #fff; box-shadow: 0 18px 38px rgba(36,33,31,.20); }
.btn-secondary { border-color: rgba(36,33,31,.16); background: rgba(255,255,255,.45); color: var(--charcoal); }
.btn-light { background: var(--warm-white); color: var(--charcoal); }
.btn-mint { background: var(--sand); color: var(--charcoal); box-shadow: 0 18px 38px rgba(236,207,156,.22); }

/* ---------- Atmosphere: full-bleed photo sections ----------
   Shared grain texture + a dark scrim (baked into each modifier's
   background-image so white text stays legible over any photo). */
.atmosphere {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .35;
  pointer-events: none;
}
.atmosphere-hero {
  background-image:
    linear-gradient(180deg, rgba(10,8,6,.2) 0%, rgba(10,8,6,.62) 60%, rgba(10,8,6,.94) 100%),
    url("photos/hero.png");
}
.atmosphere-band {
  background-image:
    linear-gradient(160deg, rgba(10,8,6,.55) 0%, rgba(10,8,6,.85) 100%),
    url("photos/event-band.png");
}

.photo-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.photo-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 5rem;
  text-align: center;
}
.photo-hero-content .btn-row { justify-content: center; }
.photo-hero h1 {
  margin: 0 auto 1.1rem;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.085em;
  max-width: 810px;
  color: #fff;
}
.photo-hero h1 span { color: var(--sand); }
.photo-hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255,250,243,.82);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 1.8rem;
}

.photo-hero-sm {
  position: relative;
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  margin-top: -1px;
}
.photo-hero-sm .photo-hero-content { padding: 120px 0 3.5rem; }
.photo-hero-sm h1 {
  margin: 0 auto .9rem;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: .9;
  letter-spacing: -.08em;
  max-width: 780px;
  color: #fff;
}
.photo-hero-sm h1 span { color: var(--sand); }
.photo-hero-sm p {
  margin: 0 auto;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,250,243,.8);
  line-height: 1.65;
  max-width: 620px;
}
.photo-frame {
  border-radius: var(--radius-xl);
  min-height: 360px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.photo-frame img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }

.panel-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 850; }

.section { padding: 74px 0; }
.section-tight { padding: 42px 0; }
.section-title {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -.075em;
  line-height: .96;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}
.dark-page .section-title p { color: rgba(255,250,243,.7); }

.card {
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 42px rgba(28,22,17,.08);
}
.card.dark {
  background: rgba(36,33,31,.94);
  color: var(--warm-white);
  border-color: rgba(255,255,255,.08);
}
.card h3 { margin: 0 0 .7rem; font-size: 1.35rem; letter-spacing: -.04em; }
.card p { margin: 0; color: var(--muted); line-height: 1.58; }
.card.dark p { color: rgba(255,250,243,.7); }

.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* How it works — connected vertical timeline paired with the trailer visual */
.how-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.6rem; align-items: center; }
.steps-list { display: grid; }
.step-row { position: relative; display: flex; gap: 1.2rem; padding: 1.05rem 0; }
.step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 54px;
  bottom: -8px;
  width: 1px;
  background: rgba(32,29,27,.14);
}
.step-num {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--charcoal);
  color: var(--sand);
  display: grid;
  place-items: center;
  font-weight: 950;
  position: relative;
  z-index: 1;
}
.step-row h3 { margin: 0 0 .35rem; font-size: 1.18rem; letter-spacing: -.02em; }
.step-row p { margin: 0; color: var(--muted); line-height: 1.55; }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.4rem; align-items: start; }
.feature-list { display: grid; gap: .85rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(255,255,255,.65);
}
.check {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(185,121,31,.18);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-weight: 950;
}
.feature-item strong { display: block; margin-bottom: .25rem; }
.feature-item span { color: var(--muted); line-height: 1.5; }

.demo-placeholder {
  border-radius: var(--radius-xl);
  min-height: 520px;
  background:
    linear-gradient(rgba(22,20,18,.42), rgba(22,20,18,.72)),
    radial-gradient(circle at 70% 30%, rgba(236,207,156,.42), transparent 18rem),
    linear-gradient(135deg, #322922, #12100f);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--warm-white);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 4rem);
  box-shadow: var(--shadow);
}
.demo-window {
  border-radius: 28px;
  background: rgba(255,250,243,.08);
  border: 1px solid rgba(255,255,255,.13);
  min-height: 360px;
  padding: 1.1rem;
  backdrop-filter: blur(15px);
}
.demo-window-inner {
  height: 100%;
  min-height: 320px;
  border: 2px dashed rgba(255,250,243,.25);
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,250,243,.72);
}

.form-card, .booking-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
label { color: var(--espresso); font-size: .9rem; font-weight: 850; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(36,33,31,.14);
  border-radius: 16px;
  background: rgba(255,250,243,.8);
  padding: .95rem 1rem;
  font: inherit;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(185,121,31,.65); box-shadow: 0 0 0 4px rgba(185,121,31,.12); }
textarea { min-height: 150px; resize: vertical; }
.note { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.req { color: var(--amber-deep); font-weight: 900; }

.booking-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 1.2rem; align-items: start; }
.calendar-panel { border-radius: 24px; background: rgba(255,250,243,.65); border: 1px solid rgba(36,33,31,.1); padding: 1rem; }
.month-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.month-row button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: var(--charcoal);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
.month-title { font-weight: 950; letter-spacing: -.04em; }
.calendar-days, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .42rem; }
.calendar-days span { color: var(--muted); text-align: center; font-size: .77rem; font-weight: 850; padding: .2rem 0; }
.day {
  aspect-ratio: 1;
  border: 1px solid rgba(36,33,31,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.58);
  cursor: pointer;
  font-weight: 850;
  position: relative;
}
.day:hover { border-color: rgba(185,121,31,.45); background: rgba(185,121,31,.1); }
.day.selected { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.day.selected::after { display: none; }
.day.disabled { opacity: .32; cursor: not-allowed; background: rgba(36,33,31,.05); }
.day.empty { visibility: hidden; }
.day.tier-holiday { background: rgba(139,32,20,.13); border-color: rgba(139,32,20,.3); }
.day.selected.tier-holiday { background: var(--charcoal); border-color: var(--charcoal); }
.day.selected.tier-holiday::after { display: none; }
.day.tier-holiday::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b2014;
}
.day.disabled.tier-holiday { background: rgba(36,33,31,.05); border-color: rgba(36,33,31,.08); }
.day.disabled.tier-holiday::after { display: none; }

.calendar-legend { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.1rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 750; color: var(--muted); }
.legend-swatch { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.legend-swatch.available { background: rgba(255,255,255,.9); border: 1px solid rgba(36,33,31,.18); }
.legend-swatch.holiday { background: rgba(139,32,20,.45); border: 1px solid rgba(139,32,20,.6); }
.legend-swatch.booked { background: rgba(36,33,31,.12); border: 1px solid rgba(36,33,31,.2); }
.pricing-panel { display: grid; gap: 1rem; }
.price-result {
  min-height: 190px;
  border-radius: 24px;
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 1.4rem;
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
}
.price-result::after {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(236,207,156,.16);
}
.price-result h3 { margin: 0 0 .4rem; font-size: 1.65rem; letter-spacing: -.05em; }
.price-result p { margin: 0; color: rgba(255,250,243,.72); line-height: 1.6; }
.price-big { font-size: 3.4rem; line-height: 1; letter-spacing: -.08em; font-weight: 950; margin: .9rem 0 .25rem; }
.package-options { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.package {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.68);
}
.package strong { display: block; margin-bottom: .25rem; }
.package span { color: var(--muted); font-size: .92rem; line-height: 1.45; }
.availability-list { display: grid; gap: .65rem; }
.slot {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.7);
}
.slot-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.slot button { border: 0; border-radius: 999px; padding: .65rem .9rem; background: var(--amber); color: #fff; font-weight: 850; cursor: pointer; }
.slot.sold { opacity: .55; }
.slot.sold button { background: rgba(36,33,31,.2); color: var(--muted); cursor: not-allowed; }
.slot.locked { opacity: .5; }
.slot.locked button { background: rgba(36,33,31,.16); color: var(--muted); cursor: not-allowed; }
.slot-note { font-size: .82rem; color: var(--muted); margin: 0; }

.slot-contact { display: grid; gap: .6rem; padding-top: .2rem; border-top: 1px dashed rgba(32,29,27,.14); }
.slot-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.slot-contact-fields .field { display: grid; gap: .3rem; }
.slot-contact-fields .field.full { grid-column: 1 / -1; }
.slot-contact-fields label { font-size: .78rem; font-weight: 800; color: var(--espresso); }
.slot-contact-fields input {
  width: 100%;
  padding: .65rem .8rem;
  border-radius: 12px;
  border: 1px solid rgba(32,29,27,.16);
  background: #fff;
  font: inherit;
  font-size: .9rem;
  outline: none;
}
.slot-contact-fields input:focus { border-color: rgba(185,121,31,.65); box-shadow: 0 0 0 3px rgba(185,121,31,.12); }
.slot-contact-hint { font-size: .8rem; color: var(--muted); margin: 0; }
.slot-contact-actions { display: flex; gap: .6rem; }
.btn-mini-primary, .btn-mini-ghost {
  border-radius: 999px;
  padding: .6rem 1rem;
  font-weight: 850;
  font-size: .88rem;
  cursor: pointer;
  border: 0;
}
.slot-contact-actions button.btn-mini-primary { background: var(--ink); color: #fff; }
.slot-contact-actions button.btn-mini-ghost { background: transparent; color: var(--muted); border: 1px solid rgba(32,29,27,.16); }

.cta-panel {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(236,207,156,.24), transparent 18rem),
    linear-gradient(135deg, var(--amber-deep), var(--charcoal));
  color: #fff;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow);
}
.cta-panel h2 { margin: 0 0 .5rem; font-size: clamp(2.2rem, 4vw, 4rem); line-height: .95; letter-spacing: -.07em; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.65; max-width: 620px; }

.site-footer {
  padding: 56px 0 30px;
  border-top: 1px solid rgba(32,29,27,.1);
  color: var(--muted);
}
.dark-page .site-footer { border-top-color: rgba(255,255,255,.08); color: rgba(255,250,243,.62); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr .8fr;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(32,29,27,.1);
}
.dark-page .footer-grid { border-bottom-color: rgba(255,255,255,.08); }
.footer-brand-col { display: grid; gap: .7rem; }
.footer-desc { font-size: .92rem; line-height: 1.6; max-width: 240px; }
.footer-col h4 { margin: 0 0 1rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--espresso); font-weight: 850; }
.dark-page .footer-col h4 { color: rgba(255,250,243,.85); }
.footer-links-col { display: grid; gap: .65rem; }
.footer-links-col a { font-weight: 750; color: inherit; }
.footer-links-col a:hover { color: var(--amber); }
.footer-contact { display: grid; gap: .65rem; font-size: .92rem; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; list-style: none; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--amber); }
.social-row { display: flex; gap: .6rem; }
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(185,121,31,.12);
  color: var(--espresso);
  border: 1px solid rgba(185,121,31,.2);
  cursor: default;
}
.dark-page .social-btn { background: rgba(255,255,255,.08); color: var(--warm-white); border-color: rgba(255,255,255,.12); }
.social-btn svg { width: 19px; height: 19px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: 1.4rem;
  font-size: .86rem;
}
.rate-table { display: grid; gap: .7rem; margin: 1.4rem 0; }
.rate-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: .95rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.7);
  font-size: .92rem;
}
.rate-row strong { font-size: 1rem; }
.rate-row span.rate-days { color: var(--muted); font-size: .84rem; }
.rate-row .rate-amt { font-weight: 900; letter-spacing: -.03em; }

.package-options.three { grid-template-columns: repeat(3, 1fr); }
.package .package-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(185,121,31,.14);
  color: var(--amber-deep);
  margin-bottom: .7rem;
}
.package .package-icon svg { width: 18px; height: 18px; }

.addon-tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.addon-tags span {
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.7);
  font-size: .86rem;
  font-weight: 750;
  color: var(--espresso);
}

.recap-showcase {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.recap-copy p { color: var(--muted); line-height: 1.65; max-width: 46ch; }
.recap-visual { display: flex; justify-content: center; }
.recap-visual img { width: 300px; max-width: 100%; height: auto; display: block; }

.confirm-panel {
  border-radius: var(--radius-lg);
  background: rgba(185,121,31,.08);
  border: 1px solid rgba(185,121,31,.28);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.confirm-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: grid;
  place-items: center;
}
.confirm-icon svg { width: 20px; height: 20px; }
.confirm-panel h3 { margin: 0 0 .3rem; font-size: 1.15rem; letter-spacing: -.03em; }
.confirm-panel p { margin: 0; color: var(--muted); line-height: 1.55; font-size: .94rem; }
.slot.requested { opacity: .75; }
.slot.requested button { background: rgba(185,121,31,.16); color: var(--amber-deep); cursor: default; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: .9rem; }
.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.7);
  overflow: hidden;
}
.faq-heading { margin: 0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 850;
  font-size: 1.04rem;
  letter-spacing: -.01em;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.faq-question:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(185,121,31,.12);
  transition: background .25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--amber-deep);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform .25s ease; }
.faq-item.open .faq-icon { background: var(--amber); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-answer-inner { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  margin: 0;
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.hidden { display: none !important; }

@media (max-width: 940px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    background: rgba(255,250,243,.96);
    border: 1px solid rgba(36,33,31,.1);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .dark-page .nav-links { background: rgba(22,20,18,.96); }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { border-radius: 14px; }
  .section-title, .two-col, .demo-placeholder, .booking-grid, .recap-showcase, .bento, .how-grid { grid-template-columns: 1fr; }
  .section-title { row-gap: .75rem; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .package-options.three { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(var(--max), calc(100% - 28px)); }
  .nav { min-height: 68px; }
  .brand { font-size: 1.15rem; }
  .logo-mark { width: 40px; height: 40px; }
  .form-grid, .package-options, .slot-contact-fields { grid-template-columns: 1fr; }
  .photo-hero h1, .photo-hero-sm h1 { font-size: clamp(2.6rem, 14vw, 3.6rem); }
  .section { padding: 52px 0; }
  .photo-frame, .photo-frame img { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .rate-row { grid-template-columns: 1fr; gap: .3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle-bar, .nav-links { transition: none; }
  .faq-answer, .faq-icon, .faq-icon::after { transition: none; }
}

