:root {
  --navy: #0A182B;
  --navy-2: #12263A;
  --gold: #C5A059;
  --gold-2: #A8843D;
  --cream: #F6F1E8;
  --ink: #1B2430;
  --muted: #6B7280;
  --line: #E6DCC8;
  --white: #fff;
  --shadow: 0 24px 50px rgba(10, 24, 43, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 9; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10, 24, 43, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold); }
.brand strong { display: block; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; }
.brand small { display: block; color: var(--gold); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: #e8e4dc; font-size: 14px; font-weight: 500;
  transition: color .25s ease;
}
.nav-links a.is-on, .nav-links a:hover { color: var(--gold); }
.nav-call {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 8px 12px; border-radius: 999px; font-size: 13px !important;
}
.menu-btn { display: none; background: none; color: #fff; border: 1px solid var(--gold); padding: 8px 12px; }
.hero {
  position: relative;
  min-height: 86vh;
  color: #fff;
  display: grid;
  align-items: end;
  padding: 90px 0 70px;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: var(--navy);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,24,43,.45), rgba(10,24,43,.78));
}
.hero-copy {
  position: relative; z-index: 2;
  animation: rise .9s ease both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
  margin: 0 0 18px;
  font-weight: 600;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { max-width: 520px; color: #ddd6c8; margin-bottom: 32px; }
.search-card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  border-radius: 14px;
  max-width: 760px;
}
.search-card select, .search-card input, .search-card button {
  border: 0; background: var(--cream); padding: 14px 16px; font: inherit; border-radius: 10px;
}
.search-card button {
  background: var(--navy); color: #fff; font-weight: 700; cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.search-card button:hover { background: var(--gold); color: var(--navy); }
.section { padding: 88px 0; }
.section.alt { background: var(--cream); }
.kicker {
  color: var(--gold-2); letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 12px; font-weight: 700; margin-bottom: 10px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 16px;
}
.lead { color: var(--muted); max-width: 560px; }
.prose p { color: var(--muted); margin: 0 0 16px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.page-hero p { max-width: 640px; color: #cfc6b4; margin-top: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.card {
  background: #fff; border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  background: var(--navy);
}
.flyers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.flyer {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4.4;
  background: #0A182B;
  border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease;
}
.flyer:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.flyer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0A182B;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.listing-card {
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.listing-card .flyer { border: 0; }
.card-body { padding: 18px 18px 22px; }
.card-body span { color: var(--gold-2); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.card-body h3 { font-family: var(--serif); font-size: 26px; margin: 6px 0 8px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 28px 8px 8px 0; border-top: 1px solid var(--line); }
.stat b { display: block; font-family: var(--serif); font-size: 42px; color: var(--navy); }
.stat span { color: var(--muted); font-size: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy); font-weight: 700;
  padding: 12px 18px; border-radius: 999px;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn.ghost:hover { background: var(--navy); color: #fff; }
.cta {
  background: var(--navy); color: #fff; padding: 72px 0;
}
.cta h2 { color: #fff; }
.cta p { color: #cfc6b4; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.split-media {
  background: transparent;
  min-height: 0;
}
.split-media img,
.split > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.step {
  padding: 8px 8px 8px 0;
  border-top: 1px solid var(--line);
}
.step span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: 18px 0 8px;
}
.step h3 { font-family: var(--serif); font-size: 28px; margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; }
.faq { display: grid; gap: 12px; margin-top: 36px; max-width: 820px; }
.faq details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px 18px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq details[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); margin: 0 0 16px; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in .reveal-stagger > * { opacity: 1; transform: none; }
.hero-video { transition: transform 12s linear; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.list { display: grid; gap: 14px; margin-top: 24px; }
.list div { display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.list b { color: var(--gold); }
.site-footer { background: var(--navy); color: #d7d0c4; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-logo { width: 64px; border-radius: 50%; margin-bottom: 12px; border: 1px solid var(--gold); }
.site-footer h3 { color: var(--gold); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer a, .site-footer p { display: block; color: #d7d0c4; margin: 6px 0; }
.footer-base {
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(197,160,89,.2);
  display: flex; justify-content: space-between; font-size: 13px;
}
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  background: #25D366; color: #fff; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px; font-weight: 700; box-shadow: 0 12px 30px rgba(0,0,0,.2);
  transition: transform .25s ease, box-shadow .25s ease;
  line-height: 1;
}
.wa-fab-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: block;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,.28); }
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 72px 0 48px;
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
}
.page-hero h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); margin: 0; }
.form { display: grid; gap: 12px; max-width: 560px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); font: inherit; background: #fff;
}
.form button { justify-self: start; }
.notice { padding: 12px 14px; background: #e8f6ec; border: 1px solid #b7e0c2; margin-bottom: 16px; }
.empty { color: var(--muted); padding: 40px 0; }
.admin-body { background: var(--cream); min-height: 100vh; font-family: var(--sans); }
.admin-top { background: var(--navy); color: #fff; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.admin-wrap { width: min(980px, calc(100% - 32px)); margin: 28px auto; }
.admin-card { background: #fff; padding: 24px; border: 1px solid var(--line); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table img { width: 72px; height: 52px; object-fit: cover; }
.danger { color: #9b1c1c; }
.login-box { max-width: 380px; margin: 12vh auto; background: #fff; padding: 32px; border: 1px solid var(--line); }
@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav-links {
    display: none; position: absolute; inset: 78px 0 auto; background: var(--navy);
    flex-direction: column; padding: 20px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .grid-3, .flyers, .listing-grid, .stats, .steps, .split, .footer-grid, .search-card { grid-template-columns: 1fr !important; }
  .hero { min-height: 78vh; align-items: center; }
  .card img { height: 240px; }
  .flyer { aspect-ratio: 3 / 4.4; max-width: 420px; margin: 0 auto; width: 100%; }
  .split-media { min-height: 0; }
  .split-media img, .split > img {
    width: 100%;
    height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-copy, .flyer img, .card, .btn, .reveal-stagger > * { animation: none; transition: none; opacity: 1; transform: none; }
}
