/* Hussar Stables — shared styles */
:root {
  --cream: #f8f4ea;
  --cream-2: #fffdf7;
  --dark: #17130b;
  --dark-2: #221c10;
  --gold: #d5b46c;
  --gold-deep: #b8933f;
  --ink: #2b2417;
  --muted: #6d6350;
  --line: #e7dfc9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: "DM Sans", sans-serif; line-height: 1.5; }
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.15; }

.topbar {
  background: var(--cream); border-bottom: 1px solid #e5dcc6;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 24px; position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-badge {
  width: 38px; height: 38px; border-radius: 50%; background: var(--dark);
  color: var(--gold); font-family: "Playfair Display", serif; font-weight: 700;
  display: grid; place-items: center; font-size: 14px; flex: none;
}
.brand-name { font-family: "Playfair Display", serif; font-weight: 700; font-size: 17px; line-height: 1.1; }
.brand-sub { font-size: 10px; letter-spacing: .14em; color: var(--gold-deep); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-size: 14px; text-decoration: none; color: var(--ink); }
.nav a:hover { color: var(--gold-deep); }
.btn {
  display: inline-block; font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600;
  background: var(--dark); color: var(--gold); border: 0; border-radius: 8px;
  padding: 13px 22px; cursor: pointer; text-decoration: none; text-align: center;
  transition: background .15s;
}
.btn:hover { background: var(--dark-2); }
.btn.gold { background: var(--gold); color: var(--dark); }
.btn.gold:hover { background: var(--gold-deep); }
.btn.small { padding: 10px 16px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--ink); cursor: pointer; }

.hero {
  position: relative; background: var(--dark); color: #f4ecd9; overflow: hidden;
  padding: 88px 24px 72px; text-align: left;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-inner { position: relative; max-width: 1080px; margin: 0 auto; }
.kicker { color: var(--gold); letter-spacing: .22em; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.hero h1 { font-size: clamp(36px, 6vw, 60px); margin: 14px 0 16px; max-width: 620px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lede { max-width: 560px; color: #e4dcc4; font-size: 17px; line-height: 1.65; margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(213,180,108,.4);
  border-radius: 99px; font-size: 13px; padding: 7px 14px; color: #efe6cd;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.section { padding: 72px 24px; }
.section.alt { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark { background: var(--dark); color: #f4ecd9; }
.container { max-width: 1080px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); margin: 12px 0 10px; }
.section-head p { color: var(--muted); font-size: 16px; }
.section.dark .section-head p { color: #cfc4a8; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.step-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: 14px; padding: 30px 26px; }
.step-num { font-family: "Playfair Display", serif; font-size: 15px; color: var(--gold-deep); font-weight: 700; letter-spacing: .1em; }
.step-card h3 { font-size: 21px; margin: 10px 0 10px; }
.step-card p { color: var(--muted); font-size: 15px; }

.safety-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: 12px; padding: 22px 20px; }
.safety-card h3 { font-family: "DM Sans", sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.safety-card p { color: var(--muted); font-size: 14px; }

.card {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 28px; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(23,19,11,.05);
}
.card.featured { border: 2px solid var(--gold); position: relative; }
.flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; white-space: nowrap;
}
.tier-name { font-family: "Playfair Display", serif; font-size: 25px; }
.tier-price { margin: 10px 0 2px; font-size: 36px; font-weight: 700; }
.tier-price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.tier-tag { color: var(--gold-deep); font-size: 13px; font-weight: 600; margin-bottom: 18px; }
ul.perks { list-style: none; margin: 0 0 22px; flex: 1; }
ul.perks li { padding: 7px 0 7px 26px; position: relative; font-size: 15px; line-height: 1.45; border-top: 1px solid #f0ead7; }
ul.perks li:first-child { border-top: 0; }
ul.perks li::before { content: "✓"; position: absolute; left: 2px; color: var(--gold-deep); font-weight: 700; }

.upsell-card {
  background: var(--dark); color: #f4ecd9; border-radius: 14px; padding: 32px 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px;
}
.upsell-card h3 { font-size: 24px; color: var(--gold); }
.upsell-card p { flex: 1 1 100%; color: #cfc4a8; font-size: 15px; line-height: 1.6; }
.upsell-price { font-size: 30px; font-weight: 700; margin-left: auto; }
.upsell-price span { font-size: 14px; font-weight: 400; color: #cfc4a8; }

.quote-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: 14px; padding: 28px 26px; }
.quote-card blockquote { font-size: 15px; line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.quote-card .who { font-weight: 700; font-size: 14px; }
.quote-card .who span { display: block; font-weight: 400; color: var(--muted); font-size: 13px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 10px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; font-weight: 600; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--gold-deep); flex: none; margin-left: 16px; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer { padding: 0 4px 20px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 760px; }
.faq-group-title { font-family: "Playfair Display", serif; font-size: 22px; margin: 40px 0 6px; }

.contact-box { background: var(--cream-2); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; }
.contact-box h3 { font-size: 22px; margin-bottom: 12px; }
.contact-box p { font-size: 15px; color: var(--muted); margin-bottom: 8px; }
.contact-box a { color: var(--gold-deep); }

.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; }
.legal h3 { font-size: 18px; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15px; color: var(--ink); line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal .callout { background: #f3ead2; border: 1px solid var(--gold); border-radius: 10px; padding: 18px 20px; margin: 18px 0; }
.legal table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }

.booking-frame { width: 100%; min-height: 760px; border: 0; border-radius: 12px; background: var(--cream-2); }

.cta-band { background: var(--dark); color: #f4ecd9; text-align: center; padding: 64px 24px; }
.cta-band h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
.cta-band p { color: #cfc4a8; max-width: 520px; margin: 0 auto 24px; }

footer.site-footer { background: var(--dark); color: #9d9178; padding: 48px 24px 32px; font-size: 14px; }
.footer-grid { max-width: 1080px; margin: 0 auto 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.footer-grid h4 { color: var(--gold); font-family: "DM Sans", sans-serif; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.footer-grid a { display: block; color: #cfc4a8; text-decoration: none; padding: 3px 0; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { color: #9d9178; line-height: 1.6; }
.footer-bottom { max-width: 1080px; margin: 0 auto; border-top: 1px solid #33291a; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.footer-bottom a { color: #cfc4a8; text-decoration: none; margin-left: 16px; }

@media (max-width: 820px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 14px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* --- mobile sticky CTA --- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(23,19,11,.97); border-top: 1px solid #33291a;
}
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 15px; text-align: center; }
@media (max-width: 820px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* --- contact form embed --- */
.ghl-form-wrap { max-width: 760px; margin: 0 auto; }
.ghl-form-wrap iframe { width: 100%; height: 905px; border: none; border-radius: 12px; background: var(--cream-2); }

/* --- instagram section --- */
.ig-band { text-align: center; }
.ig-band .ig-follow { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.ig-band .ig-follow a { color: var(--gold-deep); font-weight: 700; text-decoration: none; }
.ig-carousel { position: relative; max-width: 1080px; margin: 0 auto; }
.ig-grid {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding: 4px;
}
.ig-grid::-webkit-scrollbar { display: none; }
.ig-grid .ig-tile { flex: 0 0 300px; scroll-snap-align: start; }
@media (max-width: 640px) { .ig-grid .ig-tile { flex: 0 0 72vw; } }
.ig-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--dark); color: var(--gold); font-size: 18px;
  display: grid; place-items: center; box-shadow: 0 2px 8px rgba(23,19,11,.25);
  transition: background .15s;
}
.ig-nav:hover { background: var(--dark-2); }
.ig-nav.prev { left: -12px; }
.ig-nav.next { right: -12px; }
.ig-nav[disabled] { opacity: .35; cursor: default; }
@media (max-width: 640px) { .ig-nav { display: none; } }
.ig-tile { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile .play-badge {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(23,19,11,.75); color: #fff; display: grid; place-items: center; font-size: 14px;
  padding-left: 3px;
}
.ig-tile .ig-hover {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0;
  background: rgba(23,19,11,.45); color: var(--gold); font-weight: 700; font-size: 14px;
  transition: opacity .2s;
}
.ig-tile:hover .ig-hover { opacity: 1; }

/* --- stats band --- */
.stats-band { background: var(--dark); border-top: 1px solid #33291a; padding: 34px 24px; }
.stats-band .stats-row { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.stat-num { font-family: "Playfair Display", serif; font-size: 38px; font-weight: 700; color: var(--gold); line-height: 1.1; }
.stat-label { color: #cfc4a8; font-size: 13.5px; margin-top: 4px; line-height: 1.4; }

/* --- founding banner (location pages) --- */
.founding-banner {
  max-width: 1032px; margin: 0 auto 28px; padding: 16px 22px; border-radius: 12px; display: none;
  background: linear-gradient(90deg, #2a2312, #17130b); border: 1px solid var(--gold);
  color: #f4ecd9; text-align: center; font-size: 15.5px;
}
.founding-banner strong { color: var(--gold); }
.tier-price .was { font-size: 16px; color: var(--muted); text-decoration: line-through; font-weight: 400; margin-right: 8px; }

/* Member portal link — subtle outlined pill, never competes with the CTA */
.member-link {
  border: 1.5px solid var(--gold); color: var(--gold-deep); border-radius: 999px;
  padding: 8px 14px; font-size: 13.5px; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.member-link:hover { background: var(--gold); color: var(--dark); }

/* Google review cards (assets/reviews.js) */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.rev { margin: 0; background: var(--cream-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.rev.compact { padding: 12px 14px; }
.rev-stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; }
.rev-q { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink); }
.rev.compact .rev-q { font-size: 13.5px; }
.rev-by { font-size: 13px; font-weight: 700; }
.rev-by span { font-weight: 400; color: var(--muted); }
.rev-badge { grid-column: 1 / -1; display: block; text-align: center; font-size: 13.5px; color: var(--gold-deep); text-decoration: none; font-weight: 600; padding: 4px 0; }
.rev-badge b { color: #f5a623; }

/* Accessibility: keyboard users can jump past the header. */
.skip-link { position: absolute; left: -999px; top: 8px; background: #fff; color: #111; padding: 8px 12px; border-radius: 6px; z-index: 1000; }
.skip-link:focus { left: 8px; }

/* Consent banner (assets/consent.js) */
#hs-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 560px; margin: 0 auto; background: #1d1a16; color: #f4ecd9; padding: 14px 16px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.35); font-size: 14px; z-index: 9999; }
#hs-consent p { margin: 0 0 10px; line-height: 1.45; }
#hs-consent a { color: #d9b866; }
#hs-consent div { display: flex; gap: 8px; justify-content: flex-end; }
#hs-consent button { font: inherit; padding: 8px 14px; border-radius: 8px; border: 1px solid #6a5a35; background: transparent; color: #f4ecd9; cursor: pointer; }
#hs-consent button.hs-accept { background: #b98a32; border-color: #b98a32; color: #1d1a16; font-weight: 600; }
