/* ============================================================
   POSED — Boutique Photo Booth, Austin TX
   Palette: plum & blush + champagne gold
   Type:    Bodoni Moda (display) + Mulish (text) — self-hosted
   ============================================================ */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/bodoni-moda-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: italic; font-weight: 400; font-display: swap;
  src: url("fonts/bodoni-moda-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/bodoni-moda-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("fonts/bodoni-moda-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/bodoni-moda-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal; font-weight: 300; font-display: swap;
  src: url("fonts/mulish-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/mulish-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/mulish-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("fonts/mulish-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/mulish-latin-700-normal.woff2") format("woff2");
}

:root {
  --ivory:      #FBF4F2;  /* blush-cream background */
  --ivory-2:    #F5E9E7;  /* soft blush section band */
  --ink:        #2A1A29;  /* plum-tinted ink */
  --ink-soft:   #3D2A3C;
  --muted:      #7C6A79;  /* mauve-grey */
  --line:       #ECD9D6;  /* soft blush border */
  --gold:       #C8A35A;  /* champagne gold accent */
  --gold-deep:  #A9863F;
  --plum:       #3E1F3D;  /* deep aubergine (dark sections) */
  --plum-deep:  #2E162D;  /* footer */
  --blush:      #D9A7A0;  /* dusty blush accent */
  --white:      #FFFFFF;

  --max:   1140px;
  --pad:   24px;
  --radius: 14px;
  --shadow: 0 18px 50px -22px rgba(28, 27, 25, 0.30);
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Mulish", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.2px;
  text-wrap: balance; /* no widow words on headings at any width */
}

/* Prevent widows/orphans in body copy across all breakpoints */
p, li, .hero-lede, .section-lede, .pkg-for, .pay-line, blockquote {
  text-wrap: pretty;
}

a { color: inherit; text-decoration: none; }

em { font-style: italic; color: var(--gold-deep); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 820px; }
.center { text-align: center; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--gold); }

h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
.center-title { text-align: center; font-size: clamp(2rem, 4.5vw, 3.1rem); }
.center-title.light { color: var(--white); }

.section-lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 18px auto 0;
}
.section-lede.center { text-align: center; }
.section-lede.light { color: rgba(255,255,255,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Mulish", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #1c1b19;
  box-shadow: 0 12px 28px -12px rgba(200, 163, 90, 0.7);
}
.btn-gold:hover { background: var(--gold-deep); color: #fff; }

.btn-blush {
  background: var(--blush);
  color: #2A1A29;
  box-shadow: 0 12px 28px -12px rgba(217, 167, 160, 0.75);
}
.btn-blush:hover { background: #CD938B; color: #2A1A29; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn-block { width: 100%; margin-top: 8px; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 245, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(0,0,0,0.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1.05; width: fit-content; }
.brand-mark {
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 7px;
  color: var(--ink);
}
.brand-sub {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 6.7px; /* tracked so AUSTIN · TX spans exactly under POSED */
  color: var(--muted);
  margin-top: 5px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 11vw, 130px) 0 clamp(64px, 9vw, 110px);
  background:
    radial-gradient(900px 480px at 50% -8%, rgba(217, 167, 160, 0.24), transparent 70%),
    radial-gradient(700px 400px at 12% 110%, rgba(200, 163, 90, 0.10), transparent 70%),
    var(--ivory);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(62,31,61,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 65%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}
/* "pose." is the punchline — gold and upright (not a soft italic afterthought) */
.hero-title em { font-style: normal; font-weight: 600; color: var(--gold-deep); }
.hero-lede {
  max-width: 540px;
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-note {
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-photo {
  margin: 0;
  justify-self: center;
  max-width: 440px;
  width: 100%;
}
.hero-photo img,
.hero-photo-ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 12px solid #fff;
  border-radius: 6px;
  box-shadow: 0 40px 70px -34px rgba(28, 27, 25, 0.6);
  transform: rotate(2deg);
}
/* Placeholders shown while awaiting photo uploads */
.hero-photo-ph,
.g-photo.g-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #f1dcd9, #d9b3bb);
}
.hero-photo-ph span,
.g-ph span {
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(62, 31, 61, 0.45);
}
@media (max-width: 860px) {
  .hero { text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { order: 2; max-width: 360px; }
  .hero-photo img { transform: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--plum);
  color: rgba(255,255,255,0.80);
  padding: 18px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.trust-row .dot { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-soft { background: var(--ivory-2); }
.section-dark { background: var(--plum); color: var(--ivory); }
.section-dark .section-lede { color: rgba(255,255,255,0.7); }

/* ---------- Split (experience) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.split-text h2 { margin-bottom: 22px; }
.split-text > p { color: var(--muted); margin-bottom: 26px; }

.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,163,90,0.18);
}
.feature-list strong { font-weight: 600; color: var(--ink); }

/* visual collage */
.split-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  aspect-ratio: 1 / 1.05;
}
.visual-card {
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, #f6e7e4, #ecccce);
  overflow: hidden;
}
.visual-card svg {
  position: relative;
  width: 74%;
  height: auto;
  max-height: 66%;
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 120px at 70% 20%, rgba(255,255,255,0.55), transparent 60%);
}
.visual-card.v1 { grid-row: span 2; background: linear-gradient(160deg, #eccfd0, #c89aa8); }
.visual-card.v3 { background: linear-gradient(160deg, #f0dad9, #dcb3bb); }
.visual-label {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--plum);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.step {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.step:hover { border-color: rgba(200,163,90,0.5); transform: translateY(-4px); }
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200,163,90,0.4);
  color: var(--gold);
  margin-bottom: 16px;
}
.step-icon svg { width: 24px; height: 24px; }
.step-num {
  font-family: "Bodoni Moda", serif;
  font-size: 1.5rem;
  color: rgba(200,163,90,0.65);
  display: block;
  margin-bottom: 6px;
}
.step h3 { font-size: 1.45rem; margin-bottom: 10px; color: var(--ivory); }
.step p { font-size: 0.92rem; color: rgba(255,255,255,0.68); }

/* ---------- Packages ---------- */
#packages {
  background:
    radial-gradient(1100px 560px at 50% 42%, rgba(217, 167, 160, 0.22), transparent 70%),
    linear-gradient(180deg, var(--ivory) 0%, #F7E7E4 50%, var(--ivory) 100%);
}
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
  align-items: stretch;
}
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 30px;
  box-shadow: 0 14px 40px -28px rgba(28,27,25,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pkg .btn { margin-top: auto; }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #ffffff, #fdf2f0);
  box-shadow: 0 26px 60px -26px rgba(62,31,61,0.45);
  transform: scale(1.03);
}
.pkg-featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1c1b19;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pkg-head h3 { font-size: 1.9rem; }
.pkg-for { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }
.pkg-price {
  font-family: "Bodoni Moda", serif;
  font-size: 3.6rem;
  font-weight: 600;
  margin: 18px 0 2px;
  color: var(--ink);
}
.pkg-price .dollar { font-size: 1.6rem; vertical-align: super; color: var(--gold-deep); margin-right: 2px; }
.pkg-hours {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.pkg-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pkg-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.pkg-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-deep);
  font-weight: 700;
}
.addons-strip {
  margin-top: 48px;
  text-align: center;
}
.addons-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--ink);
}
.addons-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.addons-pills li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.addons-pills strong { color: var(--gold-deep); font-weight: 600; margin-left: 4px; }

.packages-foot {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}
.packages-foot a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.packages-foot a:hover { color: var(--ink); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
/* A framed print: white mat + soft shadow makes any photo look intentional */
.g-frame {
  background: var(--white);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 16px 36px -24px rgba(28, 27, 25, 0.55);
}
.g-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #f1dcd9, #d9b3bb);
}
.g-photo span {
  font-size: 0.66rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(62, 31, 61, 0.42);
}
.g-photo.gp2 { background: linear-gradient(160deg, #eccfd0, #c89aa8); }
.g-photo.gp3 { background: linear-gradient(160deg, #f0dad9, #dcb3bb); }
.g-photo.gp5 { background: linear-gradient(160deg, #eccfd0, #cfa4ac); }
.g-photo.gp6 { background: linear-gradient(150deg, #f3e0dd, #d9b3bb); }

/* Branded photo-strip mockup — spans two rows */
.g-strip {
  grid-row: span 2;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 10px 0;
  box-shadow: 0 20px 44px -24px rgba(28, 27, 25, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strip-shot {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
}
.strip-shot.ss1 { background: linear-gradient(150deg, #e7decd, #c9b890); }
.strip-shot.ss2 { background: linear-gradient(150deg, #eccfd0, #c89aa8); }
.strip-shot.ss3 { background: linear-gradient(150deg, #d8c6d6, #b79bb4); }
.strip-foot {
  text-align: center;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 6px;
  color: var(--plum);
  padding: 12px 0 16px;
  line-height: 1.2;
}
.strip-foot span {
  display: block;
  font-family: "Mulish", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 760px) {
  /* Compact 2-up grid on phones; first photo spans full width as a lead
     so the 9 photos fill evenly with no orphaned blank cell */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid .g-frame:first-child { grid-column: 1 / -1; }
  .g-frame { padding: 7px; }
}
.gallery-cta {
  text-align: center;
  margin-top: 44px;
}
.gallery-cta p {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 18px;
}

/* ---------- FAQ ---------- */
.faq { margin-top: 44px; display: grid; gap: 14px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 24px;
  transition: border-color 0.25s var(--ease);
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: "Bodoni Moda", serif;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--gold-deep);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Book / contact ---------- */
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 22px;
}
.contact-fineprint {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ---------- Booking form ---------- */
.booking-form {
  max-width: 680px;
  margin: 44px auto 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label,
.addons-label {
  font-size: 0.74rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.10);
}
.field select option { color: #2A1A29; }   /* readable dropdown list */
.field textarea { min-height: 92px; resize: vertical; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.8); cursor: pointer; }

.req-hint { color: rgba(255,255,255,0.45); text-transform: none; letter-spacing: normal; font-size: 0.92em; }
.addr-unknown { margin-top: 10px; }
.field input:disabled { opacity: 0.5; cursor: not-allowed; }

.addons { gap: 12px; }
.addon-grid { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.addon {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
}
.addon input { width: 17px; height: 17px; accent-color: var(--gold); }

.form-actions { grid-column: 1 / -1; text-align: center; margin-top: 6px; }
.form-status {
  grid-column: 1 / -1;
  text-align: center;
  min-height: 1.2em;
  font-size: 0.95rem;
  margin: 0;
}
.form-status.ok  { color: #C6E6CF; }
.form-status.err { color: #F2B8B0; }
.form-status.err a { color: var(--gold); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.or-talk {
  text-align: center;
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.or-talk a { color: var(--gold); border-bottom: 1px solid rgba(200,163,90,0.5); }
.or-talk a:hover { color: #fff; }

/* Reassurance row above the booking form */
.reassure {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 24px auto 0;
  max-width: 620px;
}
.reassure li {
  position: relative;
  padding: 7px 16px 7px 30px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50px;
}
.reassure li::before {
  content: "✓";
  position: absolute;
  left: 13px;
  color: var(--gold);
  font-weight: 700;
}

.book-scarcity {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 0.92rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* Mobile-only sticky booking button */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    padding: 15px 24px;
    border-radius: 50px;
    background: var(--gold);
    color: #2A1A29;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 12px 30px -8px rgba(28,27,25,0.55);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .mobile-cta.hidden {
    opacity: 0;
    transform: translateY(120%);
    pointer-events: none;
  }
}

@media (max-width: 620px) {
  .booking-form { grid-template-columns: 1fr; }
}

/* Retainer + accepted payment methods */
.payment-note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.pay-line {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto 16px;
}
.pay-line strong { color: var(--blush); font-weight: 600; }
.card-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  color: rgba(255,255,255,0.62);
}
.pay-card { width: 50px; height: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum-deep); color: rgba(255,255,255,0.72); padding: 64px 0 30px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark { color: var(--ivory); font-size: 1.5rem; }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  font-family: "Mulish", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a, .footer-col span { display: block; font-size: 0.92rem; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--gold); }
.footer-areas {
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-visual { max-width: 460px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pkg-featured { transform: none; }
  .pkg-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .nav-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .pkg:hover, .step:hover { transform: none; }
}
