/* Boogi Bliss — Cape Cod wedding luxury */

:root {
  --cream: #FAF6EE;
  --ivory: #FFFDF7;
  --sand: #F1E9D7;
  --sage: #B8C5A6;
  --sage-deep: #7E9070;
  --navy: #1F3A5F;
  --navy-soft: #2D4A73;
  --gold: #C9A961;
  --gold-soft: #D9BE83;
  --blush: #E8C5BD;
  --ink: #2C2C2C;
  --ink-soft: #5A5A55;
  --hairline: rgba(31, 58, 95, 0.12);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  font-weight: 500;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
  font-weight: 600;
}

p { margin: 0 0 1rem; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  margin: 0 0 0.8rem;
}
.kicker.centered { text-align: center; }
.kicker.light { color: var(--gold-soft); }

.centered { text-align: center; }
.subhead {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0.4rem auto 2.4rem;
}

/* ─── Top bar ─────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.brand-mark.small { width: 30px; height: 30px; font-size: 0.85rem; }
.brand-mark .amp { color: var(--gold); margin: 0 1px; }
.brand-word {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--navy);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--navy);
  color: var(--cream) !important;
}

@media (max-width: 720px) {
  .topbar { padding: 14px 18px; }
  .nav { gap: 14px; }
  .nav a:not(.nav-cta) { display: none; }
}

/* ─── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  padding: 110px 28px 140px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 197, 166, 0.35), transparent 55%),
    radial-gradient(ellipse at 90% 30%, rgba(232, 197, 189, 0.30), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  color: var(--navy);
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.4rem;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream) !important;
}
.btn-wide {
  width: 100%;
  max-width: 320px;
  margin: 8px auto 0;
  display: block;
}

.scallop {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  color: var(--cream);
  display: block;
}

/* ─── Story ────────────────────────────────── */
.story {
  padding: 100px 28px;
  background: var(--cream);
}
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 50px; }
}

.story-text .answer {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin: -0.4rem 0 1.4rem;
  font-style: italic;
}
.story-text p { color: var(--ink-soft); font-size: 1.02rem; }
.story-text strong { color: var(--navy); font-weight: 600; }
.verse {
  margin-top: 2rem;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
}

.story-card {
  display: flex;
  justify-content: center;
}
.card-frame {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 50px rgba(31, 58, 95, 0.08);
}
.card-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}
.card-monogram {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.card-monogram .card-amp {
  color: var(--gold);
  font-style: italic;
  font-size: 0.7em;
  margin: 0 0.05em;
}
.card-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 1.2rem 0 0.4rem;
}
.card-est {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0;
}

/* ─── Offerings ───────────────────────────── */
.offerings {
  padding: 100px 28px;
  background: var(--sand);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 2rem;
}
.offer {
  background: var(--ivory);
  padding: 36px 28px;
  border-radius: 6px;
  border: 1px solid var(--hairline);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 58, 95, 0.10);
}
.offer-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}
.offer-icon svg { width: 100%; height: 100%; }
.offer p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ─── Flavors ──────────────────────────────── */
.flavors {
  padding: 100px 28px;
  background: var(--cream);
}
.flavor-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 36px;
}
.flavor-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.06);
}
.dot-cream   { background: #F4E8D0; }
.dot-rose    { background: #E8C5BD; }
.dot-mocha   { background: #8C6A52; }
.dot-mint    { background: #B6CBA9; }
.dot-choc    { background: #4B2E25; }
.dot-peach   { background: #F1B584; }
.dot-lemon   { background: #F2D88A; }
.dot-blush   { background: #D7708A; }
.dot-caramel { background: #C99A5B; }
.dot-blue    { background: #6B86A6; }
.dot-coffee  { background: #6B4732; }

.flavor-note {
  text-align: center;
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ─── Booking ──────────────────────────────── */
.booking {
  padding: 100px 28px 110px;
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream);
}
.booking h2 { color: var(--cream); }
.booking .booking-lede {
  text-align: center;
  color: rgba(250, 246, 238, 0.78);
  max-width: 560px;
  margin: 0 auto 2.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
}

.booking-form {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 253, 247, 0.04);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(217, 190, 131, 0.25);
}
.booking-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
@media (max-width: 620px) {
  .booking-form { padding: 28px; }
  .booking-form .row { grid-template-columns: 1fr; gap: 18px; }
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.booking-form label.full { margin-bottom: 18px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1px solid rgba(217, 190, 131, 0.35);
  background: rgba(250, 246, 238, 0.05);
  color: var(--cream);
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250, 246, 238, 0.10);
}
.booking-form select { appearance: none; cursor: pointer; }
.booking-form select option { color: var(--ink); background: var(--cream); }
.booking-form textarea { resize: vertical; min-height: 110px; }

.form-fineprint {
  text-align: center;
  margin: 1.4rem 0 0;
  color: rgba(250, 246, 238, 0.7);
  font-size: 0.88rem;
}
.form-fineprint a { color: var(--gold-soft); border-bottom: 1px solid rgba(217, 190, 131, 0.4); }
.form-fineprint a:hover { color: var(--gold); }

/* Honeypot — visible to bots, hidden from people + assistive tech */
.booking-form label.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit button state */
.booking-form button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Inline status under the submit button */
.form-status {
  text-align: center;
  margin: 1rem 0 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  color: rgba(250, 246, 238, 0.85);
}
.form-status.is-success {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.form-status.is-error {
  color: #f5b8a8;
}

/* ─── Footer ───────────────────────────────── */
.site-footer {
  background: var(--cream);
  padding: 56px 28px 40px;
  border-top: 1px solid var(--hairline);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand .brand-mark { margin-bottom: 12px; }
.footer-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 0.2rem;
}
.footer-sub {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.92rem;
}
.footer-meta {
  text-align: right;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.footer-meta p { margin: 0 0 0.3rem; }
.footer-meta .copy { margin-top: 0.8rem; font-size: 0.82rem; color: var(--sage-deep); }
@media (max-width: 620px) {
  .footer-meta { text-align: left; }
}
