/* =========================================
   Fringes & Fairways – main-v12.css
   Brand Styling – CURRENT (CLEANED)
   ========================================= */

/* ---------- CSS Reset & Base ---------- */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Playfair Display", serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #020617;
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
}

/* Make body stretch full height */
html {
  min-height: 100%;
}

body {
  min-height: 100vh;
}

/* Remove default margins on headings & paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Remove default list styles */
ul,
ol {
  margin: 0;
  padding: 0;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
button {
  font: inherit;
}

/* ---------- CSS Variables ---------- */
:root {
  --bg-main: #050816;
  --bg-section: #020617;
  --bg-alt: #0b1220;
  --bg-card: #020617;
  --bg-card-soft: #020818;

  --border-subtle: rgba(148, 163, 184, 0.25);

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;

  --gold-primary: #b9972e;
  --gold-secondary: #fbbf24;

  --accent-blue: #38bdf8;
}

/* ---------- Layout Containers & Sections ---------- */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, #020617, #000000);
}

main {
  flex: 1 0 auto;
}

/* Generic centered container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Generic section spacing */
.section {
  padding: 3.5rem 1.25rem;
}

.section-narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* Section headings */
.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading .section-title {
  margin-bottom: 0.6rem;
}

/* ---------- Typography Utilities ---------- */
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Header / Title Font – Playfair Display ===== */
h1,
h2,
h3,
h4,
.section-title,
.why-title,
.serving-title,
.page-hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0.4rem auto 0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #b9972e, #fbbf24);
  color: #020617;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Secondary / Ghost button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  gap: 0.4rem;
}

/* =========================================
   3. Global Header & Navigation
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);

  /* Updated per spec */
  background-color: #1a1a1a;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  transition: padding 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease,
    background-color 0.26s ease;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Shrink state on scroll */
.site-header.shrink {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #1a1a1a;
  border-top-color: #1a1a1a;
  border-bottom-color: #1a1a1a;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

.site-header.shrink .header-inner {
  padding: 0.45rem 1.25rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hide header text label next to logo (logo image only in header) */
.header-logo-text {
  display: none;
}

.logo-img-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  height: auto;
  width: 260px;
  max-height: 100px;
  transition: all 0.26s ease;
}

/* Logo shrink */
.site-header.shrink .logo-img {
  width: 180px;
  max-height: 70px;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.96rem;
}

.header-nav a {
  color: #e5e7eb;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.15rem;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #b9972e, #fbbf24);
  transition: width 0.18s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a.active {
  color: var(--gold-primary);
}

/* =========================================
   4. Global Footer
   ========================================= */
.site-footer {
  background-color: #1a1a1a; /* match header */
  border-top: 1px solid #1a1a1a; /* outline */
  border-bottom: 1px solid #1a1a1a; /* bottom line for bar look */
  padding: 1.75rem 1.25rem 1.8rem;
  color: #9ca3af;
  font-size: 0.88rem;
  margin-top: 3rem;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Top row: logo + quick info */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-logo-text {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #e5e7eb;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Footer contact + social */
.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-contact a:hover {
  color: var(--gold-primary);
}

/* Footer bottom row layout */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between; /* left text – center icons – right links */
  gap: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* Footer social icons – NO pills, only images */
.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0; /* sits cleanly in the row */
}

.footer-social-link img {
  width: 28px; /* smaller, consistent visual size */
  height: auto; /* keep aspect ratio (esp. TikTok) */
  display: block;
  transition: filter 0.15s ease;
}

.footer-social-link:hover img {
  filter: brightness(1.4); /* subtle glow instead of big grow */
  transform: none; /* no scaling on hover */
}

/* Updated footer link colors per spec */
.footer-links a {
  color: #b9972e;
}

.footer-links a:hover {
  color: #d4af37;
}

/* =========================================
   5. Home Page (page-home)
   ========================================= */

/* ---------- Home Hero Section ---------- */
.hero {
  padding: 3.5rem 1.25rem 3.25rem;
  background: radial-gradient(circle at top, #0b1120, #020617);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-tagline {
  font-size: 0.95rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(2.5rem, 3.7vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--gold-primary);
}

.hero-subtitle {
  font-size: 1.02rem;
  color: #9ca3af;
  margin-bottom: 1.8rem;
  max-width: 540px;
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-note {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Hero meta */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.hero-meta span strong {
  color: #e5e7eb;
}

/* Hero media / image */
.hero-media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: radial-gradient(circle at top, #0f172a, #020617);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero badge */
.hero-badge-floating {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-secondary);
}

/* ---------- Shared Page Hero (Pricing, About, FAQ, Policies) ---------- */
.page-hero {
  padding: 3.1rem 1.25rem 2.5rem;
  background: radial-gradient(circle at top, #0b1120, #020617);
  border-bottom: 1px solid rgba(30, 64, 175, 0.4);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin: 0 0 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ---------- Events & Experiences – Home Page ---------- */
.events-section {
  padding: 3.2rem 1.25rem 3.4rem;
  background: #020617;
}

.events-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: stretch;
}

.events-list {
  display: grid;
  gap: 1.2rem;
}

.event-card {
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at top, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.36);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.events-image-wrap {
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, #0b1120, #020617);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
}

.event-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.event-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Events highlight card */
.events-highlight-card {
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.7rem;
  background: radial-gradient(circle at top, #0b1120, #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.events-highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.events-highlight-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.events-highlight-meta {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Gold border on hover for key cards (single source of truth) */
.event-card,
.events-highlight-card,
.packages-card {
  transition: border-color 0.2s ease;
}

.event-card:hover,
.events-highlight-card:hover,
.packages-card:hover {
  border-color: #b9972e;
}

/* spacing inside packages card */
.packages-card .packages-btn {
  margin-top: 0.75rem;
}

.packages-card .packages-note {
  margin-top: 1.1rem;
}

/* ---------- Why Choose F&F + Simple, Transparent Packages – Home ---------- */
.why-and-packages {
  padding: 3.4rem 1.25rem 3.2rem;
  background: #020617;
}

.why-and-packages-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr);
  gap: 2.5rem;
}

/* Left: Why choose us */
.why-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-title {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.why-list-icon {
  width: 0.9rem;
  margin-top: 0.25rem;
}

/* ===== Space & Requirements – Dimension Formatting Fix ===== */
.why-text {
  display: inline-block;
}

.why-label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-dims {
  white-space: nowrap; /* prevents vertical stacking */
  letter-spacing: 0.02em;
}

/* Fallback for very narrow devices */
@media (max-width: 360px) {
  .why-dims {
    white-space: normal;
  }
}

/* Right: Simple, Transparent Packages */
.packages-card {
  background: radial-gradient(circle at top, #020617, #020617);
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.75);
}

.packages-card p {
  margin-top: 0.5rem;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ---------- What’s Included With Every Booking – Home ---------- */
.included-intro {
  margin-bottom: 1.5rem;
}

.included-section {
  padding: 3.4rem 1.25rem 3.4rem;
  background: radial-gradient(circle at top, #020617, #020617);
}

.included-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.05fr);
  gap: 2.4rem;
  align-items: center;
}

/* Image side */
.included-image-wrap {
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, #0b1120, #020617);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
}

.included-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* List side */
.included-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.75rem;
}

/* ---------- About Page – Story & Expectations ---------- */
.about-story {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.about-story p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-badge {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

/* Why we exist / what to expect */
.about-expect {
  max-width: 900px;
  margin: 0 auto;
}

.about-expect ul {
  list-style: none;
  margin: 1rem 0 0;
  padding-left: 0;
  color: var(--text-muted); /* match body text color */
}

.about-expect li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-expect li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: var(--gold-primary); /* gold star bullets */
}

/* Image strip – side-by-side images, same size & centered */
.about-image-strip {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.about-image-item {
  flex: 1 1 260px;
  max-width: 340px;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, #0b1120, #020617);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.75);
  aspect-ratio: 4 / 3;
}

.about-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Service Area (used in Home/About/Contact/FAQ) ---------- */
.serving-section {
  padding: 3.2rem 1.25rem 3rem;
  background: #020617;
}

.serving-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.serving-badge {
  margin-bottom: 0.6rem;
}

.serving-title {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.serving-text {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Single-row cities, gold text */
.serving-cities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
}

.serving-cities a {
  color: var(--gold-secondary);
  font-weight: 500;
}

.serving-inner .btn-primary {
  margin-top: 1.75rem;
}

/* ---------- Service Area Grid (used on Contact/FAQ/etc.) ---------- */
.service-area-grid {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.service-area-grid a {
  display: block;
  text-align: center;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================================
   6. Pricing Page (page-pricing)
   ========================================= */
.pricing-section {
  background: #020617;
}

.pricing-intro {
  max-width: 750px;
  margin: 0 auto 2rem;
  text-align: center;
}

.pricing-intro p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.page-pricing .page-hero .hero-actions {
  justify-content: center;
  margin-top: 1.4rem; /* lowers the buttons by ~one text line */
}

/* Pricing cards grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* =========================================
   ABOUT — "How We Show Up" mobile stacking
   ========================================= */
.page-about .pricing-card .card-title-gold {
  text-align: center;
  width: 100%;
}

/* Stack the 3 cards on mobile for About page only */
@media (max-width: 768px) {
  .page-about .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: radial-gradient(circle at top, #020617, #020617);
  border-radius: 1.3rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pricing-card-hover {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}

.pricing-card-hover:hover {
  border-color: #b9972e;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at top, #111827, #020617);
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.pricing-price {
  font-size: 1.35rem;
  font-weight: 600;
}

.pricing-duration {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Pricing features list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0.8rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.pricing-feature-dot {
  font-size: 0.8rem;
  margin-top: 0.15rem;
  color: var(--gold-secondary);
}

/* Bottom note on pricing page */
.pricing-bottom-note {
  max-width: 750px;
  margin: 2.3rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Gold card title styling (used in pricing.html) */
.card-title-gold {
  color: #b9972e !important;
}

/* =========================================
   8. FAQ Page (page-faq)
   ========================================= */
.faq-section {
  padding: 3.2rem 1.25rem 3.4rem;
  background: #020617;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, #020617, #020617);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

/* Single FAQ item */
.faq-item {
  border-bottom: 1px solid rgba(30, 64, 175, 0.25);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
}

.faq-question-text {
  font-size: 0.98rem;
  font-weight: 500;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Answer container */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
  padding: 0 1.25rem;
}

.faq-answer-inner {
  padding-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Open state driven by JS toggling .is-open */
.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

/* FAQ bottom contact prompt */
.faq-contact-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.faq-contact-cta p {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

/* =========================================
   9. Contact / Book Now Page (page-contact)
   ========================================= */
.section-title-left {
  text-align: left;
}

/* Contact / Book Now Layout */
.contact-section {
  padding: 3.2rem 1.25rem 3.6rem;
  background: #020617;
}

/* ===== Contact Page – Accessibility Statement ===== */
.accessibility-section {
  padding: 2.8rem 1.25rem 3.2rem;
  background: #020617; /* match the contact-section background */
  text-align: center;
  margin-top: 2.5rem;
}

.accessibility-inner {
  max-width: 850px;
  margin: 0 auto;
}

.accessibility-title {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--gold-primary);
  font-family: "Playfair Display", serif;
}

.accessibility-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.accessibility-contact a {
  color: var(--gold-secondary);
  transition: color 0.2s ease;
}

.accessibility-contact a:hover {
  color: var(--gold-primary);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

/* ===== Contact Page Tweaks ===== */

/* 1) Remove line under hero on contact page only */
.page-contact .page-hero {
  border-bottom: none;
  box-shadow: none;
}

/* 2) Gold headings for the three steps */
.contact-step-heading {
  color: #b9972e;
}

/* 3) Extra spacing + centered email note on the contact page */
.page-contact .note-spaced {
  margin-top: 2.5rem; /* ~2 blank lines worth of space */
  text-align: center;
}

/* ================================
   CONTACT PAGE – CENTER FORM LAYOUT
   ================================ */

/* Optional polish – breathing room above form */
.page-contact .contact-section {
  padding-top: 48px;
}

/* 4) Email hover effect */
.contact-email-list a {
  transition: color 0.2s ease;
}

.contact-email-list a:hover {
  color: #b9972e;
}

.page-contact .form-fallback-note {
  text-align: center;
}

.page-contact .contact-email-list {
  text-align: center;
}

/* 5) Smartsheet iframe sizing */
.page-contact .contact-form-card .embed-frame {
  width: 100%;
  min-height: 650px; /* base */
  border: none;
  display: block;
}

/* Left: Book Your Event steps */
.contact-steps-card {
  background: radial-gradient(circle at top, #020617, #020617);
  border-radius: 1.3rem;
  padding: 1.6rem 1.7rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.contact-steps-card h2 {
  margin-bottom: 0.85rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-steps-card p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Ordered step list */
.contact-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.contact-step {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.contact-step-number {
  min-width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.contact-step-text strong {
  display: inline;
}

/* Right: Smartsheet form card */
.contact-form-card {
  background: radial-gradient(circle at top, #020617, #020617);
  border-radius: 1.3rem;
  padding: 1.6rem 1.7rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.contact-form-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form-card p {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact page: left card subtext + service area list */
.contact-subtext-small {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.contact-steps-card .service-area-list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.contact-steps-card .service-area-list li {
  margin-bottom: 0.15rem;
}

/* Two-column layout for Book Your Event (steps left, form right) */
.section .container.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Stack on smaller screens */
@media (max-width: 960px) {
  .section .container.grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Default iframe styling */
.embed-frame {
  width: 100%;
  border: none;
  margin-top: 1rem;
}

/* Contact page – force taller form on desktop */
@media (min-width: 961px) {
  .page-contact .contact-form-card .embed-frame {
    min-height: 750px; /* 600 * 1.25 */
  }
}

/* Fallback note if form cannot be accessed */
.form-fallback-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Book Your Event – gold step headings */
.section .steps .step strong {
  color: #b9972e;
}

/* ---------- Hero Graphic (Standalone Logo Hero) ---------- */
.hero-logo-wrap {
  padding: 2.5rem 1.25rem 3rem;
  background: radial-gradient(circle at top, #0b1120, #020617);
}

/* ===== Shared Badge Styles ===== */
.veteran-badge {
  text-align: center;
  font-size: 20px;
  margin-top: 0.5rem;
}

.veteran-badge .star-red {
  color: red;
}

.veteran-badge .star-blue {
  color: blue;
}

/* ===== Utility ===== */
.text-center {
  text-align: center;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .events-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-and-packages-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .included-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 2.6rem;
    padding-bottom: 2.7rem;
  }

  .hero-media {
    margin-top: 1.5rem;
  }

  .site-footer {
    padding: 1.5rem 1.25rem 1.6rem; /* slightly tighter on mobile */
  }

  .site-footer-inner {
    gap: 1rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .footer-contact {
    text-align: left;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.7rem;
  }

  .footer-left {
    align-items: center;
  }

  .footer-right {
    justify-content: center;
  }

  /* ========= MOBILE FOOTER ICON FIXES ========= */
  .footer-social-row {
    justify-content: center;
    gap: 1rem; /* clean spacing between icons */
  }

  /* Normalize icons by consistent height instead of width */
  .footer-social-link img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* Slight boost for TikTok due to padding in PNG */
  .footer-social-link img[alt="TikTok"] {
    height: 32px;
  }

  /* Instagram visually appears larger naturally — reduce slightly */
  .footer-social-link img[alt="Instagram"] {
    height: 26px;
  }

  /* ========= MOBILE HEADER LOGO FIX ========= */
  .logo-img {
    height: 70px;
    width: auto;
  }

  .site-header.shrink .logo-img {
    height: 50px;
  }
}

/* =========================================
   Contact Page – Single Column Layout Helpers
   (Save Contact + Form)
   ========================================= */

.page-contact .contact-inner.centered-single-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact .contact-inner.centered-single-column > * {
  width: 100%;
  max-width: 900px;
}

.page-contact .contact-save-wrap {
  text-align: center;
}
/* === CONTACT: FORCE "SAVE CONTACT" ABOVE FORM (production-safe) === */
.page-contact .contact-inner.centered-single-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
}

.page-contact .contact-inner.centered-single-column > * {
  width: 100% !important;
  max-width: 900px !important;
}

.page-contact .contact-save-wrap {
  order: 0 !important;
  text-align: center !important;
}

.page-contact .contact-form-card {
  order: 1 !important;
}
/* =========================================
   LINKS PAGE (page-links) — FORCE LAYOUT
   ========================================= */

.page-links .links-section {
  padding: 3.2rem 1.25rem 3.6rem;
  background: #020617;
}

.page-links .links-inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-links .links-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.36);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.75);
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.page-links .links-card:hover {
  border-color: #b9972e;
  transform: translateY(-1px);
}

.page-links .links-emoji {
  font-size: 1.35rem;
  line-height: 1;
  width: 2rem;
  display: inline-flex;
  justify-content: center;
}

.page-links .links-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.page-links .links-card-title {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-links .links-card-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.page-links .links-arrow {
  margin-left: auto;
  font-size: 1.6rem;
  color: var(--gold-primary);
  opacity: 0.9;
}

/* Minimal footer centering */
.page-links .links-footer-min .footer-bottom {
  justify-content: center;
}

.page-links .links-footer-left {
  text-align: center;
  align-items: center;
}
