/* CiniManx — Premium cinema hire, Isle of Man */
:root {
  --bg: #0b0c10;
  --bg-elevated: #12141a;
  --bg-soft: #171a22;
  --bg-alt: #0f1117;
  --surface: #1c2030;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f0ea;
  --text-muted: #a8a39a;
  --text-dim: #6f6a63;
  --gold: #e8b86d;
  --gold-bright: #f0c97a;
  --gold-deep: #c4923f;
  --teal: #3d8b8b;
  --teal-soft: rgba(61, 139, 139, 0.18);
  --danger: #e07070;
  --ok: #6dbf8a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold-bright);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 720px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 12, 16, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(11, 12, 16, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--text);
}

.logo em {
  font-style: normal;
  color: var(--gold);
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold-deep) 55%, transparent 56%),
    linear-gradient(135deg, #1a2230, #0d1018);
  box-shadow: 0 0 0 1px rgba(232, 184, 109, 0.35), inset 0 0 12px rgba(232, 184, 109, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.35rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: #1a1408 !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  filter: brightness(1.06);
  color: #1a1408 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), filter 0.2s, background 0.2s, border-color 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1408;
}

.btn-primary:hover {
  color: #1a1408;
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 12, 16, 0.35) 0%, rgba(11, 12, 16, 0.55) 40%, rgba(11, 12, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 12, 16, 0.75) 0%, rgba(11, 12, 16, 0.25) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 36em;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 560px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-strong);
}

.hero-stats strong {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--gold-bright);
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Promo */
.promo-strip {
  background: linear-gradient(90deg, #1a160e, #241c10 40%, #15201f);
  border-block: 1px solid rgba(232, 184, 109, 0.2);
  padding: 0.9rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.promo-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.promo-pill {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 184, 109, 0.15);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-strip strong {
  color: var(--gold-bright);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.lede {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  font-size: 1.08rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.feature-card:hover {
  border-color: rgba(232, 184, 109, 0.35);
  transform: translateY(-2px);
}

.feature-card--wide {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card--wide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  flex: 1;
}

.feature-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent, var(--bg-elevated) 20%);
  margin-top: -3rem;
  position: relative;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--gold-bright);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.callout {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(61, 139, 139, 0.35);
  background: linear-gradient(120deg, rgba(61, 139, 139, 0.12), rgba(232, 184, 109, 0.06));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.callout h3 {
  margin-bottom: 0.35rem;
}

.callout p {
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
}

/* Occasions */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.occasion-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.occasion-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 184, 109, 0.3);
}

.occasion-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.occasion-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.occasion-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.95fr;
  gap: 1.15rem;
  align-items: stretch;
}

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  border-color: rgba(232, 184, 109, 0.45);
  background:
    radial-gradient(circle at top right, rgba(232, 184, 109, 0.12), transparent 50%),
    var(--bg-elevated);
  box-shadow: var(--shadow);
}

.price-card--addon {
  padding: 0;
  overflow: hidden;
}

.addon-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  max-height: 180px;
}

.price-card--addon .price-label,
.price-card--addon .price-amount,
.price-card--addon .price-note,
.price-card--addon .btn {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.price-card--addon .price-label {
  margin-top: 1.15rem;
}

.price-card--addon .btn {
  margin-bottom: 1.5rem;
  width: calc(100% - 3rem);
}

.price-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 0 0 0.5rem;
}

.price-amount {
  font-family: var(--display);
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  line-height: 1;
}

.price-amount .currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 0.1rem;
  color: var(--gold);
}

.price-amount .per {
  font-size: 0.95rem;
  font-family: var(--font);
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
}

.price-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.price-includes li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.deposit-note {
  margin: 1.75rem 0 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
}

.deposit-note strong {
  color: var(--text-muted);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Booking */
.section--book {
  background:
    radial-gradient(ellipse at top, rgba(232, 184, 109, 0.07), transparent 45%),
    var(--bg);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.booking-calendar-panel,
.booking-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-toolbar h3 {
  margin: 0;
  font-size: 1.15rem;
}

.cal-nav {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cal-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.cal-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.dot.available {
  background: var(--ok);
}

.dot.selected {
  background: var(--gold);
}

.dot.booked {
  background: var(--text-dim);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.cal-dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.35rem 0;
}

.cal-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.cal-day:hover:not(:disabled):not(.is-empty) {
  border-color: rgba(232, 184, 109, 0.4);
  background: rgba(232, 184, 109, 0.08);
}

.cal-day.is-empty {
  cursor: default;
  visibility: hidden;
}

.cal-day.is-past,
.cal-day.is-booked {
  color: var(--text-dim);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.45;
}

.cal-day.is-available {
  background: rgba(109, 191, 138, 0.08);
}

.cal-day.is-selected,
.cal-day.is-in-range {
  background: linear-gradient(135deg, rgba(232, 184, 109, 0.35), rgba(196, 146, 63, 0.25));
  border-color: rgba(232, 184, 109, 0.5);
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: none;
  opacity: 1;
}

.cal-day.is-range-start,
.cal-day.is-range-end {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1a1408;
  border-color: transparent;
}

.cal-hint {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 184, 109, 0.15);
}

.field input[readonly] {
  color: var(--gold-bright);
  cursor: default;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--danger);
}

.stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0.4rem;
}

.stepper button {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.stepper button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.stepper input {
  text-align: center;
  -moz-appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.addons {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem 1rem;
  margin: 0;
}

.addons legend {
  padding: 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.check-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  cursor: pointer;
}

.check-card + .check-card {
  border-top: 1px solid var(--border);
}

.check-card.is-invalid {
  outline: 1px solid var(--danger);
  outline-offset: 2px;
  border-radius: 8px;
}

.check-card input {
  margin-top: 0.25rem;
  accent-color: var(--gold-deep);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.check-card strong {
  display: block;
  font-size: 0.95rem;
}

.check-card em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.quote-box {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.quote-line--muted {
  color: var(--text-muted);
}

.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-strong);
  font-family: var(--display);
  font-size: 1.15rem;
}

.quote-total strong {
  font-size: 1.65rem;
  color: var(--gold-bright);
}

.quote-fine {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.form-status {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-ok {
  color: var(--ok);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 0;
  list-style: none;
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-media {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.final-cta p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Footer */
.site-footer {
  background: #08090c;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-tag {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0.75rem 0 0;
  max-width: 28ch;
}

.site-footer h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.footer-list a {
  color: var(--text-muted);
}

.footer-list a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom p {
  margin: 0;
}

.footer-fine {
  opacity: 0.75;
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(100%, 440px);
  background: var(--bg-elevated);
  border: 1px solid rgba(232, 184, 109, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.modal-panel p:not(.eyebrow) {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card--wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .occasion-grid,
  .pricing-grid,
  .steps,
  .booking-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card--addon {
    grid-column: span 2;
  }

  .price-card--addon .addon-visual img {
    max-height: 220px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1.25rem;
    background: rgba(11, 12, 16, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero {
    min-height: 85vh;
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .occasion-grid,
  .pricing-grid,
  .steps,
  .booking-layout,
  .footer-grid,
  .form-row--2 {
    grid-template-columns: 1fr;
  }

  .feature-card--wide,
  .price-card--addon {
    grid-column: auto;
  }

  .section {
    padding: 3.75rem 0;
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-calendar-panel,
  .booking-form {
    padding: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
