/* ============================================================
   Bluestream Entertainment — Master Stylesheet
   SmartersWeb Tech | 2026
   Client: Bluestream Entertainment, Fairview, Alberta
   Design: Wedding-primary, Birthday-secondary, Community-tertiary
   Palette: Deep Navy #0D1B2A | Gold #C9A84C | Ivory #F8F4EE |
            Slate #4A5568 | Blush #F2E8E4 | Charcoal #1E2A38
   ============================================================ */

/* ── 1. CSS Custom Properties ──────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1E2A38;
  --navy-light:  #2C3E50;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07830;
  --ivory:       #F8F4EE;
  --ivory-dark:  #EDE8E0;
  --blush:       #F2E8E4;
  --slate:       #4A5568;
  --slate-light: #718096;
  --white:       #FFFFFF;
  --black:       #0A0E14;
  --success:     #2F855A;
  --error:       #C53030;
  --warning:     #B7791F;

  --font-head:   'Playfair Display', 'Georgia', serif;
  --font-body:   'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.15), 0 2px 6px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.20), 0 4px 12px rgba(0,0,0,.12);
  --shadow-gold: 0 4px 24px rgba(201,168,76,.25);

  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);

  --max-width:   1280px;
  --section-pad: clamp(60px, 8vw, 120px);
  --nav-height:  80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── 3. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--slate); font-size: clamp(.9rem, 1.5vw, 1.05rem); }
p:last-child { margin-bottom: 0; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-ivory   { color: var(--ivory); }
.text-slate   { color: var(--slate); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--slate);
  max-width: 620px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ── 4. Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.section { padding: var(--section-pad) 0; }
.section-light { background: var(--ivory); }
.section-dark  { background: var(--navy); color: var(--ivory); }
.section-navy  { background: var(--navy-mid); color: var(--ivory); }
.section-blush { background: var(--blush); }
.section-ivory { background: var(--ivory-dark); }

.grid { display: grid; gap: clamp(20px, 3vw, 40px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 32px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.4);
}

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

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

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

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

.btn-dark {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── 6. Navigation ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}

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

.nav-logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -.01em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(248,244,238,.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: .7rem;
  transition: var(--transition);
}

.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: .85rem;
  color: rgba(248,244,238,.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

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

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

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: calc(var(--nav-height) + 24px) 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ivory);
  border-bottom: 1px solid rgba(248,244,238,.08);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .mobile-cta {
  margin-top: 24px;
  display: block;
  text-align: center;
}

/* ── 7. Hero Sections ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .35;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.92) 0%,
    rgba(13,27,42,.75) 50%,
    rgba(13,27,42,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 60px) 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}

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

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(248,244,238,.8);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(248,244,238,.12);
}

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(248,244,238,.6);
}

/* Page hero (shorter) */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.9) 0%, rgba(13,27,42,.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.page-hero-content h1 {
  color: var(--ivory);
  margin-bottom: 16px;
}

.page-hero-content p {
  color: rgba(248,244,238,.75);
  font-size: 1.15rem;
  max-width: 600px;
}

/* ── 8. Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,.06);
}

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

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.card-body { padding: 28px; }
.card-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.card-text { color: var(--slate); font-size: .95rem; line-height: 1.7; }

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

/* Pricing Card */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--gold);
}

.pricing-card.featured * { color: var(--ivory); }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-card.featured .pricing-desc { color: rgba(248,244,238,.7); }

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

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--slate); }
.pricing-desc { color: var(--slate); font-size: .9rem; margin-bottom: 28px; }

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--slate);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.pricing-card.featured .pricing-features li {
  color: rgba(248,244,238,.75);
  border-color: rgba(248,244,238,.08);
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
}

.testimonial-text {
  font-size: .97rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 24px;
  margin-top: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ivory);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
}

.testimonial-role {
  font-size: .8rem;
  color: var(--slate-light);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.stars span { color: var(--gold); font-size: 1rem; }

/* ── 9. Feature / Icon Lists ───────────────────────────────── */
.feature-list { list-style: none; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .95rem;
  color: var(--slate);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .icon {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 10. Gallery Grid ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.6);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--ivory); font-size: .9rem; font-weight: 500; }

/* ── 11. Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid rgba(0,0,0,.1);
  border-radius: var(--radius-md);
  font-size: .95rem;
  color: var(--navy);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

.form-control::placeholder { color: var(--slate-light); }

.form-control.error { border-color: var(--error); }
.form-control.success { border-color: var(--success); }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-error {
  display: block;
  font-size: .8rem;
  color: var(--error);
  margin-top: 6px;
}

.form-hint {
  display: block;
  font-size: .8rem;
  color: var(--slate-light);
  margin-top: 6px;
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .92rem;
  color: var(--slate);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-checks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

/* Alert / Notice */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: .92rem;
  margin-bottom: 24px;
  border-left: 4px solid transparent;
}

.alert-success {
  background: rgba(47,133,90,.08);
  border-color: var(--success);
  color: var(--success);
}

.alert-error {
  background: rgba(197,48,48,.08);
  border-color: var(--error);
  color: var(--error);
}

/* ── 12. Dividers & Decorative ─────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider.centered { margin-left: auto; margin-right: auto; }

.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px 0;
  opacity: .4;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: .6;
}

.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}

/* ── 13. Breadcrumb ────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: .82rem;
  margin-bottom: 16px;
}

.breadcrumb li { display: flex; align-items: center; gap: 8px; color: rgba(248,244,238,.6); }
.breadcrumb li a { color: rgba(248,244,238,.8); transition: var(--transition); }
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb li.active { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: '/'; opacity: .5; }

/* ── 14. FAQ Accordion ─────────────────────────────────────── */
.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  border: none;
}

.faq-question:hover { background: var(--ivory-dark); }
.faq-item.open .faq-question { background: var(--navy); color: var(--ivory); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: var(--ivory);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 20px 24px;
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ── 15. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--ivory);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .brand-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--ivory);
  margin-bottom: 8px;
}

.footer-brand .brand-tag {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: rgba(248,244,238,.6);
  font-size: .9rem;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(248,244,238,.7);
  margin-bottom: 10px;
}

.footer-contact-item a {
  color: rgba(248,244,238,.7);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ivory);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(248,244,238,.08);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(248,244,238,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-newsletter p {
  color: rgba(248,244,238,.6);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  color: var(--ivory);
  font-size: .88rem;
  outline: none;
  transition: var(--transition);
}

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

.newsletter-input::placeholder { color: rgba(248,244,238,.4); }

.newsletter-btn {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover { background: var(--gold-light); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(248,244,238,.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(248,244,238,.4);
  transition: var(--transition);
}

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

/* ── 16. CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.15) 0%, transparent 70%);
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 { color: var(--ivory); margin-bottom: 16px; }
.cta-banner p { color: rgba(248,244,238,.75); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── 17. Process Steps ─────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 32px 24px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.process-step:last-child::after { display: none; }

.step-number {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
}

.process-step h4 { color: var(--navy); margin-bottom: 10px; }
.process-step p { color: var(--slate); font-size: .9rem; }

/* ── 18. Tab Component ─────────────────────────────────────── */
.tabs { border-bottom: 2px solid rgba(0,0,0,.08); margin-bottom: 40px; display: flex; gap: 4px; flex-wrap: wrap; }

.tab-btn {
  padding: 12px 24px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
}

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

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

/* ── 19. Back to Top / Floating ────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

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

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .pricing-card { padding: 32px 24px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
  .page-hero { min-height: 360px; }
}

/* ── 21. Animations ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.animate-fadeup { animation: fadeUp .7s ease both; }
.animate-fadein { animation: fadeIn .7s ease both; }
.animate-float  { animation: float 4s ease-in-out infinite; }

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 22. Print ─────────────────────────────────────────────── */
@media print {
  .site-nav, .hamburger, .mobile-nav,
  .back-to-top, .cta-banner { display: none !important; }
  body { background: white; color: black; }
  .hero, .page-hero { min-height: auto; background: white; }
  .hero-overlay, .page-hero-overlay { display: none; }
  .hero-title, .hero-description { color: black; }
}