/* ============================================
   Dominion Toy Con — photography-driven redesign
   ============================================ */

:root {
  --navy: #0b1628;
  --navy-2: #14233d;
  --ink: #16181d;
  --paper: #f4efe6;
  --cream: #fbf8f2;
  --white: #ffffff;
  --red: #e03636;
  --red-dark: #c01d1d;
  --gold: #e2a31a;
  --cyan: #3eb6d4;
  --muted: #5c6570;
  --line: rgba(11, 22, 40, 0.12);
  --font-display: "Oswald", sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --shadow: 0 18px 40px rgba(11, 22, 40, 0.18);
  --ease: 220ms ease;
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .story-card:hover img,
  .hunt-photos figure:hover img,
  .editorial figure:hover img {
    transform: none;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.hidden { display: none !important; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 2000;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip-link:focus { top: 12px; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1440px, calc(100% - 32px));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-2); color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.is-stuck,
.site-header.is-solid {
  background: rgba(11, 22, 40, 0.96);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1440px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
}

.desktop-nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.15rem;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgba(255,255,255,0.1);
}

.header-cta {
  margin-left: auto;
}

.header-cta .btn {
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 0.35rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: transform var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  z-index: 1001;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--navy);
  z-index: 1002;
  padding: 5.5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--ease);
}
.mobile-drawer.is-open { transform: none; }
.mobile-drawer a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: 1.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.75rem 1.35rem;
  text-align: center;
  border-bottom: 0;
}

@media (min-width: 960px) {
  .desktop-nav { display: flex; }
  .header-cta { margin-left: 0.5rem; }
  .menu-toggle,
  .mobile-drawer,
  .nav-backdrop { display: none; }
  .logo img { height: 50px; }
}

/* Event alert */
.event-alert {
  margin-top: var(--header-h);
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 0;
}
.event-alert p { font-weight: 700; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11,22,40,0.9) 0%, rgba(11,22,40,0.32) 52%, rgba(11,22,40,0.5) 100%),
    linear-gradient(90deg, rgba(11,22,40,0.42), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) 0 2.75rem;
}

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 14ch;
}

.hero-sub {
  margin-top: 0.85rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 650;
  max-width: 28ch;
}

.hero-lead {
  margin-top: 0.65rem;
  max-width: 38ch;
  color: rgba(255,255,255,0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: 1.15rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.28rem 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Section chrome */
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 16ch;
}

.section-copy {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head {
  margin-bottom: 2rem;
}

/* Photo story */
.story {
  background: var(--navy);
  color: #fff;
}

.story .section-copy { color: rgba(255,255,255,0.78); }
.story .section-kicker { color: var(--gold); }

.story-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}

.story-card {
  position: relative;
  overflow: hidden;
  background: #000;
}

.story-card .gallery-trigger,
.story-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms ease;
}

.story-card:hover img { transform: scale(1.06); }

.story-card--tall { min-height: 72vw; }
.story-card--wide { min-height: 58vw; }

.story-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.92rem;
  font-weight: 650;
}

@media (min-width: 800px) {
  .story-grid {
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-template-rows: 420px 360px;
  }
  .story-card--a { grid-column: 1 / 3; grid-row: 1; min-height: 0; }
  .story-card--b { grid-column: 3; grid-row: 1 / 3; min-height: 0; }
  .story-card--c { grid-column: 1; grid-row: 2; min-height: 0; }
  .story-card--d { grid-column: 2; grid-row: 2; min-height: 0; }
}

/* Categories */
.categories { background: var(--cream); overflow: hidden; }

.category-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 1rem;
  cursor: grab;
  scrollbar-width: thin;
}
.category-track.is-dragging { cursor: grabbing; }
.category-track::-webkit-scrollbar { height: 8px; }
.category-track::-webkit-scrollbar-thumb { background: rgba(11,22,40,0.25); border-radius: 99px; }

.category-card {
  flex: 0 0 auto;
  width: min(260px, 78vw);
  min-height: 280px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  background: var(--navy-2);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.88), rgba(11,22,40,0.15));
}
.category-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  line-height: 1;
}

/* Hunt */
.hunt { background: var(--paper); }

.hunt-layout {
  display: grid;
  gap: 1.5rem;
}

.hunt-copy .section-title { max-width: 12ch; }

.hunt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.4rem 0.75rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.hunt-photos {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
}

.hunt-photos figure {
  overflow: hidden;
  background: #000;
}

.hunt-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 500ms ease;
}
.hunt-photos figure:hover img { transform: scale(1.05); }
.hunt-photos .span-2 { grid-column: 1 / -1; }
.hunt-photos .span-2 img { aspect-ratio: 16 / 10; object-position: center 30%; }

@media (min-width: 900px) {
  .hunt-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 3rem;
  }
}

/* Homepage gallery */
.photo-story-gallery { background: var(--navy); color: #fff; }
.photo-story-gallery .section-copy { color: rgba(255,255,255,0.75); }

.editorial {
  display: grid;
  gap: 0.65rem;
}

.editorial figure {
  overflow: hidden;
  position: relative;
  background: #111;
}

.editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 500ms ease;
}
.editorial figure:hover img { transform: scale(1.05); }

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  color: inherit;
}

.gallery-trigger:focus-visible,
.menu-toggle:focus-visible,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .editorial {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
  }
  .editorial figure:nth-child(1) { grid-column: span 7; grid-row: span 3; }
  .editorial figure:nth-child(2) { grid-column: span 5; grid-row: span 3; }
  .editorial figure:nth-child(3) { grid-column: span 4; grid-row: span 3; }
  .editorial figure:nth-child(4) { grid-column: span 4; grid-row: span 3; }
  .editorial figure:nth-child(5) { grid-column: span 4; grid-row: span 3; }
  .editorial figure:nth-child(6) { grid-column: span 12; grid-row: span 3; }
  .editorial figure:nth-child(6) img { aspect-ratio: 16 / 8; }
  .editorial figure:nth-child(7) { grid-column: span 5; grid-row: span 3; }
  .editorial figure:nth-child(8) { grid-column: span 7; grid-row: span 3; }
  .editorial figure img { aspect-ratio: auto; min-height: 100%; }
}

.gallery-cta { margin-top: 1.75rem; text-align: center; }

/* Family */
.family { background: var(--cream); }

.family-split {
  display: grid;
  gap: 1.5rem;
}

.family-photo .gallery-trigger,
.family-photo picture,
.family-photo img {
  display: block;
  width: 100%;
}

.family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.perk-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.perk-list li {
  list-style: none;
  padding-left: 1.4rem;
  position: relative;
  font-weight: 650;
}
.perk-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

@media (min-width: 860px) {
  .family-split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3rem;
  }
}

/* Event details */
.details {
  background: var(--navy);
  color: #fff;
}

.details-grid {
  display: grid;
  gap: 1rem;
}

.detail-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.35rem 1.25rem;
}

.detail-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.detail-card p { color: rgba(255,255,255,0.88); }
.detail-card .hours { font-weight: 750; font-size: 1.15rem; }

.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .details-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* Vendors preview */
.vendors-preview { background: var(--paper); }

.vendor-cards {
  display: grid;
  gap: 0.85rem;
}

.vendor-card {
  background: #fff;
  overflow: hidden;
}

.vendor-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.vendor-card p {
  padding: 0.9rem 1rem 1.1rem;
  font-weight: 650;
}

.vendor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .vendor-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Vendor CTA */
.vendor-cta-section {
  position: relative;
  color: #fff;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.vendor-cta-section .bg,
.vendor-cta-section .bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vendor-cta-section .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,22,40,0.88) 0%, rgba(11,22,40,0.45) 70%);
}

.vendor-cta-section .wrap { position: relative; z-index: 1; padding: 4.5rem 0; }

.benefit-grid {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.6rem;
  max-width: 42ch;
}
.benefit-grid li {
  list-style: none;
  font-weight: 650;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.final-cta .bg,
.final-cta .bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.88), rgba(11,22,40,0.25));
}
.final-cta .wrap { position: relative; z-index: 1; padding: 4rem 0 3rem; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  text-transform: uppercase;
  line-height: 0.92;
  max-width: 12ch;
}

/* Contact / creators */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  gap: 2rem;
}
.contact-form {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  padding: 0.8rem 0.85rem;
  background: #fff;
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid rgba(224, 54, 54, 0.25);
  border-color: var(--red);
}
.required { color: var(--red); }

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
}

.creators {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}
.creators-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.creators-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.2rem 0;
}
.creators-logos img {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Footer */
.site-footer {
  background: #070d18;
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
.site-footer a { color: #fff; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}
.copyright { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.page-hero .bg,
.page-hero .bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.page-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.9), rgba(11,22,40,0.35));
}
.page-hero .wrap { position: relative; z-index: 1; padding: calc(var(--header-h) + 3rem) 0 2.4rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.prose-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.prose-section:nth-of-type(odd) { background: #fff; }
.prose-section:nth-of-type(even) { background: var(--paper); }

.info-grid {
  display: grid;
  gap: 1rem;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.35rem;
}
.info-card h2,
.info-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.info-list { list-style: none; }
.info-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: 0; }

.pricing-grid {
  display: grid;
  gap: 0.85rem;
}
.price-card {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}
.cta-panel {
  background: var(--red);
  color: #fff;
  padding: 1.6rem;
  margin-top: 1.25rem;
}
.cta-panel h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; }

@media (min-width: 760px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}

/* Gallery page masonry */
.masonry {
  columns: 1;
  gap: 0.75rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  background: #111;
}
.masonry-item img {
  width: 100%;
  height: auto;
}
.masonry-item figcaption {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  padding: 0.65rem 0.2rem 0.2rem;
}
@media (min-width: 700px) { .masonry { columns: 2; } }
@media (min-width: 1100px) { .masonry { columns: 3; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  max-width: 70ch;
  text-align: center;
  font-size: 0.95rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.lightbox-close { top: 0.7rem; right: 0.7rem; }
.lightbox-prev { left: 0.4rem; top: 50%; }
.lightbox-next { right: 0.4rem; top: 50%; }

/* Utility / motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.center { text-align: center; }
.center .section-title,
.center .section-copy { margin-inline: auto; }

.simple-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 4rem) 1.5rem 4rem;
  text-align: center;
}
.simple-page h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.7rem;
}
