/* ============================================================
   Louisiana Travel Guide - Main Stylesheet
   Domain: louisiana.in
   Color Palette: Deep purple, emerald green, Mardi Gras gold,
   warm cream, rich mahogany.
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --purple:        #4a1768;
  --purple-light:  #6b2fa0;
  --purple-dark:   #2d0e42;
  --green:         #1a7a4a;
  --green-light:   #2ca05a;
  --gold:          #c8952a;
  --gold-light:    #f0b429;
  --gold-pale:     #fdf3dd;
  --cream:         #faf7f2;
  --white:         #ffffff;
  --dark:          #1a1a2e;
  --dark-mid:      #2d2d44;
  --gray:          #6b7280;
  --gray-light:    #e5e7eb;
  --gray-bg:       #f8f5f0;
  --text-primary:  #1f1f2e;
  --text-secondary:#4b5563;
  --shadow-sm:     0 2px 8px rgba(74,23,104,.08);
  --shadow-md:     0 6px 24px rgba(74,23,104,.14);
  --shadow-lg:     0 16px 48px rgba(74,23,104,.18);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
  --font-sans:     'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--purple-light); }

ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Utility Classes ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-pad {
  padding: 5rem 0;
}

.bg-cream    { background: var(--cream); }
.bg-gray-bg  { background: var(--gray-bg); }
.bg-dark     { background: var(--dark); color: var(--white); }
.bg-purple   { background: var(--purple); color: var(--white); }
.bg-gold-pale{ background: var(--gold-pale); }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-purple { color: var(--purple) !important; }
.text-green  { color: var(--green) !important; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,149,42,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--purple);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: .55rem 1.25rem;
  font-size: .85rem;
}

/* ── Header & Navigation ────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(74,23,104,.12);
  backdrop-filter: blur(10px);
}

#site-header.transparent {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(74,23,104,.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

.logo-tagline {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

#site-header.transparent .logo-name { color: var(--white); }
#site-header.transparent .logo-tagline { color: var(--gold-light); }

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-primary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple);
  background: rgba(74,23,104,.07);
}

#site-header.transparent .nav-link {
  color: rgba(255,255,255,.9);
}

#site-header.transparent .nav-link:hover,
#site-header.transparent .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

.nav-cta {
  margin-left: .75rem;
  background: var(--gold);
  color: var(--dark) !important;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}

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

#site-header.transparent .nav-toggle span { background: var(--white); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,14,66,.82) 0%,
    rgba(26,14,34,.6) 50%,
    rgba(26,122,74,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 1.25rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,149,42,.2);
  border: 1px solid rgba(200,149,42,.5);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.hero-title .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .25rem;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,14,34,.85) 0%,
    rgba(26,14,34,.5) 50%,
    rgba(26,14,34,.2) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .page-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .65rem;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-hero-content .page-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-light);
  padding: .75rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--purple);
  font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb .sep {
  color: var(--gray);
  font-size: .7rem;
}

.breadcrumb .current {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}

.card:hover .card-img { transform: scale(1.04); }

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--purple);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.card-badge.gold { background: var(--gold); color: var(--dark); }
.card-badge.green { background: var(--green); }

.card-body {
  padding: 1.5rem;
}

.card-cat {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--dark);
}

.card-text {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-link {
  font-weight: 600;
  font-size: .88rem;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.card-link:hover { gap: .6rem; }

.card-link svg { transition: transform .3s; }
.card-link:hover svg { transform: translateX(4px); }

/* ── Grid Layouts ───────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

/* ── Feature Split Sections ─────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-split.reversed { direction: rtl; }
.feature-split.reversed > * { direction: ltr; }

.feature-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .6s ease;
}

.feature-img-wrap:hover img { transform: scale(1.03); }

.feature-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}

.feature-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1.1rem;
}

.feature-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.feature-list {
  margin: 1.25rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .93rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
  font-size: .8rem;
}

/* ── University Cards ───────────────────────────────────────── */
.uni-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.uni-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.uni-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}

.uni-card:hover .uni-card-img { transform: scale(1.04); }

.uni-card-body {
  padding: 1.75rem;
}

.uni-card-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  border: 1px solid rgba(200,149,42,.3);
}

.uni-card-name {
  font-size: 1.35rem;
  margin-bottom: .3rem;
}

.uni-card-loc {
  font-size: .85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.uni-card-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.uni-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.uni-highlight-tag {
  background: var(--gray-bg);
  color: var(--text-secondary);
  font-size: .75rem;
  padding: .3rem .7rem;
  border-radius: 50px;
  border: 1px solid var(--gray-light);
}

/* ── Comparison Table ───────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: .9rem;
}

.comparison-table th {
  background: var(--purple);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.comparison-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
  color: var(--text-secondary);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover { background: rgba(74,23,104,.04); }

.check { color: var(--green); font-weight: 700; }

/* ── Itinerary Timeline ─────────────────────────────────────── */
.itinerary-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: .85rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--gold));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -1.85rem;
  top: .3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-day {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.timeline-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Stat Counters ──────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: .35rem;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Tips Box ───────────────────────────────────────────────── */
.tip-box {
  background: linear-gradient(135deg, var(--gold-pale), #fff8e8);
  border: 1px solid rgba(200,149,42,.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.tip-box .tip-heading {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.tip-box p {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.info-box {
  background: rgba(74,23,104,.06);
  border: 1px solid rgba(74,23,104,.15);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.warning-box {
  background: rgba(220,60,60,.05);
  border: 1px solid rgba(220,60,60,.2);
  border-left: 4px solid #dc3c3c;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* ── Disclaimer ─────────────────────────────────────────────── */
.disclaimer {
  background: rgba(74,23,104,.05);
  border: 1px solid rgba(74,23,104,.12);
  border-radius: var(--radius-sm);
  padding: .9rem 1.25rem;
  font-size: .82rem;
  color: var(--text-secondary);
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.disclaimer-icon { flex-shrink: 0; margin-top: .1rem; }

/* ── Newsletter / CTA Banner ────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--green) 100%);
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: .9rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.newsletter-input::placeholder { color: rgba(255,255,255,.6); }

.newsletter-input:focus {
  border-color: var(--gold-light);
  background: rgba(255,255,255,.18);
}

.newsletter-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .9rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cta-note {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
}

/* ── Season Badges ──────────────────────────────────────────── */
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--green);
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.season-badge.spring  { background: #2ecc71; }
.season-badge.summer  { background: #e74c3c; }
.season-badge.fall    { background: #e67e22; }
.season-badge.winter  { background: #3498db; }
.season-badge.year    { background: var(--purple); }

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--gold); }

.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.6);
}

.footer-social {
  display: flex;
  gap: .65rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: .55rem; }

.footer-link {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.footer-link:hover { color: var(--white); padding-left: .35rem; }

.footer-contact-item {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .65rem;
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

.footer-copy a { color: rgba(255,255,255,.65); }
.footer-copy a:hover { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

.footer-bottom-links a:hover { color: var(--white); }

.cookie-note {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Cookie Consent Banner ──────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,14,34,.97);
  backdrop-filter: blur(16px);
  color: var(--white);
  z-index: 9999;
  padding: 1.25rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}

#cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: .87rem;
  color: rgba(255,255,255,.8);
  min-width: 240px;
}

.cookie-text a { color: var(--gold); }

.cookie-btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .87rem;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept:hover { background: var(--gold-light); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
  padding: .6rem 1.25rem;
  border-radius: 50px;
  font-size: .87rem;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

/* ── Image Gallery ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: .75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,14,34,.4);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── Tabs ───────────────────────────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: .5rem;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: .75rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Accordion / FAQ ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .97rem;
  color: var(--dark);
  gap: 1rem;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { color: var(--purple); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(200,149,42,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); }

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ── Back To Top ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(74,23,104,.35);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}

#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--purple-light); transform: translateY(-3px); }

/* ── Lazy Load Fade ─────────────────────────────────────────── */
img.lazy {
  opacity: 0;
  transition: opacity .5s ease;
}
img.lazy.loaded { opacity: 1; }

/* ── Skip Link (Accessibility) ──────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--purple);
  color: var(--white);
  padding: .65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}

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

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive Breakpoints ─────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

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

  /* Mobile slide-in menu */
  .primary-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem 1.25rem;
    gap: .5rem;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--gray-light);
  }

  .primary-nav.mobile-open .nav-link {
    color: var(--text-primary);
    padding: .9rem 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--gray-light);
    font-size: 1.05rem;
  }

  .primary-nav.mobile-open .nav-cta {
    margin-left: 0;
    margin-top: .75rem;
    text-align: center;
    justify-content: center;
  }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split.reversed { direction: ltr; }
  .feature-img-wrap img { height: 280px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 640px) {
  .section-pad { padding: 3.5rem 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .comparison-table { font-size: .78rem; }
  .comparison-table td,
  .comparison-table th { padding: .65rem .75rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 1; }
  .page-hero { min-height: 320px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
