/* ==========================================================================
   Raven's Occasions — site-wide stylesheet
   doc: RavensOccasions-Styles_SiteWide_20260812_v2.css | created: 2026-08-12 | updated: 2026-08-15
   Filename date = creation date (never changes); version bumps on update.
   v2: Candlelight Luxury direction - Cinzel/Cormorant brand type (self-hosted),
   raven emblem motif, candlelit dark bands, frame-corner cards, subtle reveals.
   Palette: cream #F4F0E5 dominant · oxblood #8B0101 + bronze accents
   Mobile-first. Base text 16px. Minimum touch target 44px.
   ========================================================================== */

@font-face { font-family: 'Cinzel'; src: url('fonts/cinzel-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Cinzel'; src: url('fonts/cinzel-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Raleway'; src: url('fonts/raleway-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Raleway'; src: url('fonts/raleway-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --cream:        #F4F0E5;
  --oxblood:      #8B0101;
  --bronze-pale:  #B7ABA3;
  --bronze:       #6C605A;
  --bronze-deep:  #423A36;
  --ink:          #201A17;

  --rule:  rgba(183, 171, 163, 0.55);
  --tint:  rgba(183, 171, 163, 0.14);
  --tint2: rgba(183, 171, 163, 0.24);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --display: 'Cinzel', Georgia, serif;
  --ink-2: #241D1A;
  --glow: rgba(183, 171, 163, 0.45);
  --sans:  'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --pad:  20px;
  --tap:  44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--bronze-deep);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--oxblood); color: var(--cream); }

:focus-visible { outline: 2px solid var(--oxblood); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 12px 20px; text-decoration: none; font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; color: var(--ink); line-height: 1.18; }

h1 { font-size: clamp(1.75rem, 5.5vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.05rem); }
h3 { font-size: clamp(1.1rem, 2.6vw, 1.3rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--oxblood); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 14px;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.5;
  color: var(--bronze);
  max-width: 62ch;
}

.muted { color: var(--bronze); }
.small { font-size: 0.9rem; }
.center { text-align: center; }
.center .lede, .center .section-head p { margin-left: auto; margin-right: auto; }

.rule { border: none; border-top: 1px solid var(--rule); margin: 40px 0; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.wrap--narrow { max-width: 760px; }

section { padding: 56px 0; }
@media (min-width: 768px) { section { padding: 76px 0; } }

.band-tint { background: var(--tint); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.band-ink  { background: var(--ink); color: var(--bronze-pale); }
.band-ink h1, .band-ink h2, .band-ink h3 { color: var(--cream); }

.section-head { margin-bottom: 36px; }
.section-head h2 { margin-bottom: 12px; }

.grid { display: grid; gap: 20px; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-top: 3px solid var(--oxblood);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 16px;
}

.brand {
  display: inline-flex; align-items: center;
  min-height: var(--tap);
  text-decoration: none; color: var(--ink);
}
.brand-word {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.brand-word em { font-style: normal; color: var(--oxblood); }

.nav-toggle {
  width: var(--tap); height: var(--tap);
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--rule); border-radius: 2px;
  cursor: pointer; color: var(--ink); flex-shrink: 0;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 20px; height: 1.5px; background: currentColor; content: '';
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after  { position: absolute; top:  6px; }
.site-nav.is-open .nav-toggle__bars { background: transparent; }
.site-nav.is-open .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.site-nav.is-open .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

.nav-links { display: none; }
.site-nav.is-open .nav-links {
  display: flex; flex-direction: column;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 8px var(--pad) 20px;
  box-shadow: 0 14px 24px -18px rgba(32, 26, 23, 0.5);
}
.nav-links a {
  display: flex; align-items: center;
  min-height: var(--tap);
  padding: 4px 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--bronze-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--tint2);
}
.nav-links a:hover { color: var(--oxblood); }
.nav-links a[aria-current="page"] { color: var(--oxblood); font-weight: 600; }

.nav-cta {
  margin-top: 14px;
  justify-content: center;
  background: var(--oxblood);
  color: var(--cream) !important;
  border: none !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--ink); color: var(--cream) !important; }

@media (min-width: 1160px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex; flex-direction: row; align-items: center; gap: 16px;
    position: static; padding: 0; background: none; border: none; box-shadow: none;
  }
  .nav-links a {
    min-height: var(--tap);
    font-size: 0.79rem;
    letter-spacing: 0.05em;
    border-bottom: none;
    padding: 0;
    white-space: nowrap;
  }
  .nav-cta { margin-top: 0; padding: 0 18px; font-size: 0.74rem !important; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary { background: var(--oxblood); color: var(--cream); }
.btn--primary:hover { background: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--bronze-pale); }
.btn--ghost:hover { border-color: var(--ink); background: var(--tint); }
.btn--onink { background: var(--cream); color: var(--ink); }
.btn--onink:hover { background: var(--bronze-pale); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.center .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { padding: 48px 0 40px; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 72px 0 56px; } }
.hero h1 { margin-bottom: 18px; max-width: 20ch; }
.hero .lede { margin-bottom: 0; }

.hero-grid { display: grid; gap: 36px; align-items: center; }
.hero-logo { width: min(320px, 78%); margin: 4px auto 0; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.25fr 1fr; }
  .hero-logo { width: 100%; max-width: 430px; margin: 0; justify-self: end; }
}

.about-logo { width: min(360px, 80%); margin: 0 auto 32px; }

.page-head {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) { .page-head { padding: 60px 0 44px; } }
.page-head h1 { margin-bottom: 16px; }

/* Objective selector -------------------------------------------------------- */

.objective { padding-top: 8px; }
.objective__label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bronze); margin-bottom: 18px;
}
.objective__list { display: grid; gap: 12px; }
@media (min-width: 760px) { .objective__list { grid-template-columns: repeat(2, 1fr); } }

.objective__item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 64px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--bronze-pale);
  border-radius: 2px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.35;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.objective__item:hover {
  border-color: var(--oxblood);
  background: var(--tint);
  transform: translateY(-2px);
}
.objective__item::after {
  content: '→';
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--oxblood);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Candlelight components
   -------------------------------------------------------------------------- */

.band-candle {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  color: var(--bronze-pale);
  position: relative;
  overflow: hidden;
}
.band-candle::before {
  content: ''; position: absolute; left: 50%; top: -240px; transform: translateX(-50%);
  width: 900px; height: 520px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(139, 1, 1, 0.22), rgba(32, 26, 23, 0) 68%);
}
.band-candle > * { position: relative; }
.band-candle h1, .band-candle h2, .band-candle h3 { color: var(--cream); }
.band-candle .eyebrow { color: var(--bronze-pale); }
.band-candle .muted { color: var(--bronze-pale); }
.band-candle .section-head p { color: var(--bronze-pale); }
.band-candle .btn--ghost { color: var(--cream); border-color: rgba(183, 171, 163, 0.5); }
.band-candle .btn--ghost:hover { border-color: var(--cream); background: rgba(244, 240, 229, 0.06); }
.band-candle .fineprint { color: var(--bronze-pale); }
.band-candle .fineprint li::before { color: #D9736B; }

.corners { position: relative; }
.corners::before, .corners::after {
  content: ''; position: absolute; width: 15px; height: 15px;
  border-color: var(--bronze-pale); border-style: solid; pointer-events: none;
}
.corners::before { top: -1px; left: -1px; border-width: 1.5px 0 0 1.5px; }
.corners::after  { bottom: -1px; right: -1px; border-width: 0 1.5px 1.5px 0; }

.hero-art { position: relative; text-align: center; }
.hero-art::before {
  content: ''; position: absolute; inset: -12% -18%;
  background: radial-gradient(ellipse at center, var(--glow), rgba(244, 240, 229, 0) 66%);
  pointer-events: none;
}
.hero-emblem {
  position: relative;
  width: min(430px, 86%);
  margin: 0 auto;
  filter: drop-shadow(0 22px 38px rgba(32, 26, 23, 0.35));
}

.tier-tiles { display: grid; gap: 16px; }
@media (min-width: 640px)  { .tier-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tier-tiles { grid-template-columns: repeat(4, 1fr); } }
.tile {
  border: 1px solid rgba(183, 171, 163, 0.35);
  background: rgba(244, 240, 229, 0.03);
  padding: 26px 20px;
  text-align: center;
}
.tile__name { font-family: var(--display); font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-pale); margin-bottom: 8px; }
.tile__price { font-family: var(--display); font-size: 1.9rem; color: var(--cream); margin-bottom: 8px; }
.tile__d { font-size: 0.82rem; color: var(--bronze-pale); line-height: 1.55; }
.tile--rec {
  border-color: var(--oxblood);
  background: rgba(139, 1, 1, 0.16);
  box-shadow: 0 0 46px -10px rgba(139, 1, 1, 0.55);
}
.tile--rec .badge {
  display: inline-block; background: var(--oxblood); color: var(--cream);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 12px;
}

.will-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .will-reveal { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 28px 24px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--bronze); }
.card__link {
  display: inline-flex; align-items: center; min-height: var(--tap);
  margin-top: 12px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--oxblood); text-decoration: none;
}
.card__link:hover { color: var(--ink); }
.card__link::after { content: '→'; margin-left: 8px; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.pkg-grid { display: grid; gap: 20px; }
@media (min-width: 760px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }

.pkg {
  background: var(--cream);
  border: 1px solid var(--bronze-pale);
  border-radius: 2px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.band-candle .pkg { background: rgba(244, 240, 229, 0.03); border-color: rgba(183, 171, 163, 0.35); }
.band-candle .pkg__name { color: var(--bronze-pale); }
.band-candle .pkg__price { color: var(--cream); }
.band-candle .pkg__hours, .band-candle .pkg__cur { color: var(--bronze-pale); }
.band-candle .pkg__includes { border-color: rgba(183, 171, 163, 0.3); }
.band-candle .pkg__includes li { color: var(--bronze-pale); }
.band-candle .pkg__includes li::before { color: #D9736B; }
.band-candle .pkg__note { color: var(--bronze-pale); font-family: var(--serif); font-style: italic; font-size: 0.95rem; }
.band-candle .pkg--rec {
  border-color: var(--oxblood);
  background: rgba(139, 1, 1, 0.16);
  box-shadow: 0 0 52px -12px rgba(139, 1, 1, 0.6);
}
.pkg--gold { border-color: var(--oxblood); }
.pkg__name { font-family: var(--display); font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.pkg__hours {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bronze); margin-bottom: 18px;
}
.pkg__price {
  font-family: var(--display); font-size: 2.5rem; line-height: 1; color: var(--oxblood);
  margin-bottom: 4px;
}
.pkg__price sup { font-size: 0.9rem; vertical-align: super; color: var(--bronze); }
.pkg__cur { font-size: 0.85rem; letter-spacing: 0.1em; color: var(--bronze); margin-bottom: 22px; }
.pkg__includes {
  list-style: none;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-bottom: 24px;
}
.pkg__includes li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0;
  font-size: 1rem;
  color: var(--bronze-deep);
}
.pkg__includes li::before { content: '·'; color: var(--oxblood); font-weight: 700; flex-shrink: 0; }
.pkg .btn { margin-top: auto; }

/* Four-tier grid */
.pkg-grid--tiers { align-items: stretch; }
@media (min-width: 700px)  { .pkg-grid--tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .pkg-grid--tiers { grid-template-columns: repeat(4, 1fr); } .pkg-grid--tiers .pkg { padding: 30px 22px; } }
.pkg { position: relative; }
.pkg--rec { border-color: var(--oxblood); box-shadow: 0 14px 30px -20px rgba(139, 1, 1, 0.5); }
.pkg__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--oxblood); color: var(--cream);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px; white-space: nowrap;
}
.pkg__note { font-size: 0.88rem; color: var(--bronze); margin: 0 0 18px; }

.fineprint {
  list-style: none; margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 6px 26px;
  font-size: 0.85rem; color: var(--bronze);
}
.fineprint li::before { content: '·'; color: var(--oxblood); font-weight: 700; margin-right: 8px; }

.base-includes { list-style: none; display: grid; gap: 0 36px; }
@media (min-width: 760px) { .base-includes { grid-template-columns: 1fr 1fr; } }
.base-includes li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 1rem;
}
.base-includes li::before { content: '·'; color: var(--oxblood); font-weight: 700; flex-shrink: 0; }

/* Contact strip */
.contact-strip { background: var(--tint); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.contact-strip h2 { margin-bottom: 10px; }

/* Home tier mini-cards */
.tier-price { font-family: var(--display); color: var(--oxblood); margin-left: 10px; white-space: nowrap; }
.card--rec { border-color: var(--oxblood); }

/* Add-on table */
.addons { border-top: 1px solid var(--rule); }
.addon {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 4px 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.addon__name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.addon__note { flex-basis: 100%; font-size: 0.92rem; color: var(--bronze); }
.addon__price {
  font-family: var(--serif); font-size: 1.5rem; color: var(--oxblood); white-space: nowrap;
}

.notice {
  border-left: 3px solid var(--oxblood);
  background: var(--tint);
  padding: 18px 20px;
  margin-top: 28px;
}
.notice p { font-size: 0.95rem; color: var(--bronze-deep); }
.notice strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   Photo placeholders — replace with real event photography
   -------------------------------------------------------------------------- */

.photo-slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  min-height: 200px;
  padding: 24px;
  text-align: center;
  background: var(--tint);
  border: 2px dashed var(--bronze-pale);
  border-radius: 2px;
}
.photo-slot--wide { aspect-ratio: 16 / 9; min-height: 0; }
.photo-slot--tall { aspect-ratio: 4 / 5; min-height: 0; }
.photo-slot__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--oxblood);
}
.photo-slot__desc { font-size: 0.9rem; color: var(--bronze); max-width: 40ch; line-height: 1.45; }

/* --------------------------------------------------------------------------
   FAQ (native details/summary — no JS required)
   -------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--tap);
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--oxblood); font-size: 1.4rem; flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq details > div { padding-bottom: 18px; color: var(--bronze); max-width: 70ch; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.field label {
  display: block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--bronze-pale);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px; /* 16px prevents zoom-on-focus in mobile Safari */
  line-height: 1.4;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--oxblood); box-shadow: 0 0 0 1px var(--oxblood);
}
.field__hint { font-size: 0.85rem; color: var(--bronze); margin-top: 6px; }

fieldset { border: none; }
legend {
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink);
  margin-bottom: 6px; padding: 0;
}
.fieldset-note { font-size: 0.92rem; color: var(--bronze); margin-bottom: 18px; }

.check {
  display: flex; align-items: flex-start; gap: 12px;
  min-height: var(--tap);
  padding: 9px 0;
  cursor: pointer;
  font-size: 1rem;
}
.check input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; flex-shrink: 0; accent-color: var(--oxblood); }
.check span { color: var(--bronze-deep); }
.check b { color: var(--ink); font-weight: 600; }

.form-status { margin-top: 18px; font-size: 0.95rem; }
.form-status[data-state="error"] { color: var(--oxblood); font-weight: 600; }

.form-success {
  border: 1px solid var(--oxblood);
  background: var(--tint);
  padding: 32px 28px;
  text-align: center;
}
.form-success h2 { margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band { text-align: center; }
.band-ink.cta-band {
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  position: relative; overflow: hidden;
}
.band-ink.cta-band::before {
  content: ''; position: absolute; left: 50%; bottom: -220px; transform: translateX(-50%);
  width: 820px; height: 480px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(139, 1, 1, 0.25), rgba(32, 26, 23, 0) 70%);
}
.band-ink.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--bronze-pale); max-width: 56ch; margin: 0 auto 26px; }

/* --------------------------------------------------------------------------
   Contact list
   -------------------------------------------------------------------------- */

.contact-list { list-style: none; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--rule); }
.contact-list dt, .contact-list__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 4px;
}
.contact-list a, .contact-list__value {
  display: inline-flex; align-items: center; min-height: var(--tap);
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink); text-decoration: none;
}
.contact-list a:hover { color: var(--oxblood); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--ink); color: var(--bronze-pale); padding: 48px 0 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.footer-grid { display: grid; gap: 32px; margin-bottom: 36px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }

.footer-logo { width: 250px; max-width: 70%; margin-bottom: 16px; }
.footer-wordmark { font-family: var(--display); font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); margin-bottom: 8px; }

/* Visible to screen readers only — the footer logo carries the name visually. */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.footer-tag { font-size: 0.92rem; color: var(--bronze-pale); }

.footer-col h3 {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-pale);
  margin-bottom: 10px;
}
.footer-col ul { list-style: none; }
.footer-col a {
  display: inline-flex; align-items: center; min-height: var(--tap);
  color: var(--cream); text-decoration: none; font-size: 0.95rem;
}
.footer-col a:hover { color: var(--bronze-pale); text-decoration: underline; }

.footer-base {
  border-top: 1px solid rgba(183, 171, 163, 0.25);
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--bronze-pale);
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between;
}

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */

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

/* Real event photography ---------------------------------------------------
   v3 (2026-08-15): replaces the dashed photo placeholders. Images are actual
   booth output, shown with the overlay the guest received on the night. */
.photo { margin: 0; }
.photo img {
  display: block; width: 100%; height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(32,26,23,0.14);
}
.photo__cap {
  margin-top: 10px;
  font-size: 0.82rem; line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--bronze);
  text-align: center;
}
.band-candle .photo__cap,
.band-ink .photo__cap { color: var(--bronze-pale); }
/* Tall strip output shouldn't dominate its column. */
.photo img[width="600"] { max-width: 340px; margin: 0 auto; }

/* Interim public notice ----------------------------------------------------
   Shown while photography is being finalised. Sits above the nav so it is the
   first thing read, without competing with the brand mark. */
.site-notice {
  background: var(--ink);
  color: var(--bronze-pale);
  border-bottom: 1px solid var(--bronze-deep);
  font-size: 0.88rem;
  line-height: 1.5;
}
.site-notice p {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
/* Cream logo standing in for the hero motif in the interim build. */
.hero-emblem--logo { max-width: 420px; margin: 0 auto; }
@media (max-width: 700px) { .hero-emblem--logo { max-width: 280px; } }
/* Footer wordmark - stands in for the logo mark in the interim build. */
.footer-wordmark:not(.visually-hidden) {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin: 0 0 10px;
}

/* PROMO BANNER START ------------------------------------------------------
   Limited-time promotion strip shown above the pricing tiers. Delete this
   whole block when the promo ends; nothing else references it. */
.promo-banner {
  background: var(--cream);
  border-top: 1px solid var(--bronze-pale);
  border-bottom: 1px solid var(--bronze-pale);
}
.promo-banner p {
  margin: 0;
  padding: 16px 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--oxblood);
}
@media (max-width: 600px) { .promo-banner p { padding: 14px 0; } }
/* PROMO BANNER END -------------------------------------------------------- */
