/* ============================================
   Backyard Blockbusters — Styles
   Vibe: warm cinema, golden-hour, minimalist
   ============================================ */

:root {
  /* Palette */
  --bg:           #fdfaf5;
  --bg-alt:       #f7f2e8;
  --surface:      #fffefa;
  --surface-2:    #f0ebe0;
  --line:         #e2d9cb;

  --ink:          #1e1609;   /* primary text - deep warm black */
  --ink-soft:     #5c4e3a;   /* secondary text */
  --ink-muted:    #9e8e78;

  --accent:       #b8860b;   /* rich gold */
  --accent-2:     #8b6508;   /* deeper amber */
  --accent-glow:  rgba(184, 134, 11, 0.12);
  --danger:       #b03020;

  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 12px 40px rgba(0,0,0,0.45);

  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;
}

/* ============= ANNOUNCEMENT BANNER ============= */
.announcement-banner {
  background: var(--accent);
  color: #fffefa;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.announcement-banner p { margin: 0; }
.announcement-banner strong { font-weight: 600; }
.announcement-banner a { color: #fffefa; text-decoration: underline; font-weight: 500; }
.announcement-banner a:hover { color: #fff; }

/* ============= RESET / BASE ============= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============= TYPOGRAPHY ============= */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 500;
}
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section__lead  { color: var(--ink-soft); max-width: 660px; margin: 0 0 48px; font-size: 1.05rem; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
  background: transparent;
  color: var(--ink);
}
.btn--primary {
  background: var(--accent);
  color: #fffefa;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--lg { padding: 15px 28px; font-size: 0.95rem; }
.btn--block { width: 100%; }

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav__logo-mark {
  color: var(--accent);
  font-size: 0.9em;
}
.nav__links {
  display: flex;
  gap: 30px;
}
.nav__links a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a.nav__link--active {
  color: var(--ink) !important;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.nav__cta { padding: 9px 18px; font-size: 0.82rem; }

@media (max-width: 800px) {
  .nav__links { display: none; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(184,134,11,0.10), transparent 60%),
    radial-gradient(800px 500px at 20% 80%, rgba(184,134,11,0.06), transparent 60%),
    linear-gradient(180deg, #fdfaf5 0%, #f7f2e8 100%);
  overflow: hidden;
}
.hero::before {
  /* film-strip top */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background:
    repeating-linear-gradient(90deg,
      var(--bg) 0 18px,
      var(--accent) 18px 30px,
      var(--bg) 30px 48px);
  opacity: 0.18;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28px;
  background:
    repeating-linear-gradient(90deg,
      var(--bg) 0 18px,
      var(--accent) 18px 30px,
      var(--bg) 30px 48px);
  opacity: 0.18;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  max-width: 920px;
}
.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
  font-weight: 500;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 22px;
  font-weight: 500;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__meta {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* ============= SECTIONS ============= */
.section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.section--alt {
  background: var(--bg-alt);
}

/* ============= CARDS ============= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 12px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--accent);
  transition: width .3s ease;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.card:hover::before { width: 100%; opacity: 0.6; }
.card__title {
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--ink);
}
.card p { color: var(--ink-soft); margin: 0; line-height: 1.65; }

.card[data-event-type] { cursor: pointer; }

/* ============= PRICING ============= */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
}
@media (max-width: 800px) {
  .pricing { grid-template-columns: 1fr; }
}
.pricing__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  position: relative;
}
.pricing__card--starter {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}
.pricing__badge {
  display: inline-block;
  background: var(--accent);
  color: #fffefa;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.pricing__badge--alt {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing__amount {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--ink);
}
.pricing__per {
  color: var(--ink-muted);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pricing__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  position: relative;
  padding-left: 26px;
}
.pricing__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.pricing__list li:last-child { border-bottom: none; }
.pricing__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 14px 0 0;
}

.addons {
  list-style: none;
  padding: 0;
  margin: 0;
}
.addons li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.addons li:last-child { border-bottom: none; }
.addon__name em { color: var(--ink-muted); font-style: normal; font-size: 0.85em; }
.addon__price {
  color: var(--accent);
  font-weight: 500;
  font-family: var(--serif);
  font-size: 1.15rem;
}

/* ============= CUSTOM QUOTE ============= */
.custom-quote {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--ink) 0%, #2e1f08 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.custom-quote__inner { max-width: 560px; margin: 0 auto; }
.custom-quote .eyebrow { color: var(--accent); }
.custom-quote__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fffefa;
  margin: 0 0 14px;
}
.custom-quote__text {
  color: rgba(255,254,250,0.7);
  font-size: 1rem;
  margin: 0 0 28px;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .custom-quote { padding: 36px 24px; }
}

/* ============= STEPS ============= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.step__title { font-size: 1.25rem; margin: 0 0 10px; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ============= BOOKING MODE NOTICE ============= */
.booking-mode-notice {
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 22px;
  line-height: 1.5;
}
.booking-mode-notice--request {
  background: rgba(184,134,11,0.07);
  border: 1px solid rgba(184,134,11,0.25);
  color: var(--ink-soft);
}
.booking-mode-notice--book {
  background: rgba(184,134,11,0.12);
  border: 1px solid var(--accent);
  color: var(--ink);
}
.booking-mode-notice strong { color: var(--ink); }

/* ============= FORM ============= */
.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .booking-form { padding: 24px; }
}
.form-row { margin-bottom: 22px; }
.form-row label,
.addons-fieldset legend {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
  padding: 0;
}
.req { color: var(--accent); margin-left: 2px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.form-grid .form-row { margin-bottom: 22px; }
.form-row--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="time"],
input[type="date"],
select,
textarea {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; min-height: 90px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
input:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}
.form-hint { font-size: 0.82rem; color: var(--ink-muted); margin: 6px 0 0; }
.form-hint--center { text-align: center; margin-top: 14px; }

/* color scheme hint for time/date pickers */
input[type="time"], input[type="date"] {
  color-scheme: light;
}

/* ============= ADDONS CHECKBOXES ============= */
.addons-fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px 22px;
  margin: 0 0 22px;
}
.addons-fieldset legend {
  padding: 0 8px;
  margin: 0;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 16px;
  margin-top: 4px;
}
.addon-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  border-radius: var(--radius);
  transition: background .2s ease;
}
.addon-check:hover { background: var(--bg); }
.addon-check input { accent-color: var(--accent); }
.addon-check em { color: var(--accent); font-style: normal; font-weight: 500; margin-left: 4px; }
.addon-qty-select {
  width: auto;
  padding: 2px 6px;
  font-size: 0.85rem;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink-soft);
  border-color: var(--line);
  margin-left: 6px;
}

/* ============= BREAKDOWN LIST ============= */
.total-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.breakdown-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 4px 0;
}
.breakdown-line:first-child { color: var(--ink); font-weight: 500; }

/* ============= TOTAL BOX ============= */
.total-box {
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 0 0 26px;
}
.total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.total-line span {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.total-line strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 600;
}
.total-line--small { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.total-line--small strong { font-size: 1.2rem; color: var(--ink); }

/* ============= CALENDAR ============= */
.calendar-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 0 0 22px;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-header h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0;
}
.cal-nav {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 36px; height: 36px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all .2s ease;
}
.cal-nav:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all .15s ease;
  position: relative;
}
.cal-day--blank { background: transparent; cursor: default; }
.cal-day--past { background: transparent; color: var(--ink-muted); opacity: 0.3; cursor: not-allowed; }
.cal-day--prelaunch { background: transparent; color: var(--ink-muted); opacity: 0.35; cursor: not-allowed; font-style: italic; }
.cal-day--available { border-color: rgba(212,165,116,0.3); }
.cal-day--available:hover { border-color: var(--accent); background: var(--accent-glow); }
.cal-day--request { border-color: rgba(184,132,61,0.2); color: var(--ink-soft); font-style: italic; }
.cal-day--request:hover { border-color: var(--accent-2); }
.cal-day--full { background: var(--surface); color: var(--ink-muted); cursor: not-allowed; text-decoration: line-through; }
.cal-day--selected {
  background: var(--accent);
  color: #fffefa;
  border-color: var(--accent);
  font-weight: 600;
}
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.calendar-legend .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dot--available { background: var(--accent); }
.dot--request { background: var(--accent-2); opacity: 0.5; }
.dot--full { background: var(--ink-muted); }

/* ============= MODAL ============= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.modal__panel h3 {
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: var(--accent);
}
.modal__panel p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.modal__close:hover { color: var(--accent); }
.inquiry-form { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }

/* ============= PAYMENT BRIDGE MODAL ============= */
.payment-modal__date {
  font-size: 0.88rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin: 0 0 20px;
}
.payment-modal__breakdown {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.payment-modal__row strong { color: var(--ink); font-weight: 500; }
.payment-modal__row--deposit {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink);
}
.payment-modal__row--deposit strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent);
}
.payment-modal__row--balance { font-size: 0.84rem; color: var(--ink-muted); }
.payment-modal__instruction {
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  text-align: center;
}
.payment-modal__instruction strong { color: var(--accent); font-size: 1.05rem; }
.payment-modal__back {
  margin-top: 10px;
  font-size: 0.84rem;
}

/* ============= TERMS & CONDITIONS ============= */
.terms-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0 0 22px;
  overflow: hidden;
}
.terms-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
  border: none;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease;
}
.terms-toggle:hover { background: var(--surface-2); }
.terms-toggle__icon {
  font-size: 0.7rem;
  color: var(--ink-muted);
  transition: transform .2s ease;
}
.terms-toggle[aria-expanded="true"] .terms-toggle__icon { transform: rotate(180deg); }
.terms-body {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  max-height: 280px;
  overflow-y: auto;
}
.terms-list {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terms-list li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.terms-list li strong {
  color: var(--ink);
  font-weight: 600;
}
.terms-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  background: var(--surface);
}
.terms-agree input { accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }

/* ============= FOOTER ============= */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
  margin-top: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer__title {
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 8px;
}
.footer__tag { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.footer__label {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 500;
}
.footer__line { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 4px; }
.footer__muted { color: var(--ink-muted); font-style: italic; }
.footer__base {
  padding-top: 24px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.82rem;
}
.footer__base p { margin: 0; }

/* ============= ACCESSIBILITY ============= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
