*,
        *::before,
        *::after {
            box-sizing: border-box
        }

        html,
        body {
            max-width: 100%;
            overflow-x: hidden
        }
:root {
  --cream: #f8f4ec;
  --cream-dark: #ede8dc;
  --burgundy: #8b1a1a;
  --burgundy-light: #b22222;
  --black: #1a1008;
  --charcoal: #2d2416;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --white: #ffffff;
  --grey-light: #f0ebe0;
  --grey-mid: #c8bfac;
  --text-body: #3a3028;
  --shadow-retro: 4px 4px 0 rgba(139,26,26,0.18);
  --shadow-card: 0 8px 32px rgba(26,16,8,0.12);
  --radius: 2px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-body); }

a { color: var(--burgundy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--burgundy-light); }

/* ── Retro Utility Classes ── */
.font-display { font-family: var(--font-display); }
.text-burgundy { color: var(--burgundy); }
.text-gold { color: var(--gold); }
.bg-cream { background-color: var(--cream); }
.bg-cream-dark { background-color: var(--cream-dark); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-burgundy { background-color: var(--burgundy); }

.retro-border {
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
}
.retro-border-gold {
  border: 2px solid var(--gold);
  box-shadow: 4px 4px 0 rgba(201,168,76,0.3);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ── Decorative Elements ── */
.deco-line {
  width: 60px;
  height: 3px;
  background: var(--burgundy);
  margin: 1rem 0;
}
.deco-line-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0;
}
.deco-line-center { margin: 1rem auto; }

.deco-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.12;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.08;
  pointer-events: none;
}

.retro-pattern-bg {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(139,26,26,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.zigzag-divider {
  width: 100%;
  height: 20px;
  background:
    linear-gradient(135deg, var(--cream) 25%, transparent 25%) -14px 0,
    linear-gradient(225deg, var(--cream) 25%, transparent 25%) -14px 0,
    linear-gradient(315deg, var(--cream) 25%, transparent 25%),
    linear-gradient(45deg, var(--cream) 25%, transparent 25%);
  background-size: 28px 20px;
  background-color: var(--cream-dark);
}

/* ── Buttons ── */
.btn-retro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
  display: inline-block;
  transition: all .2s;
  box-shadow: 3px 3px 0 var(--black);
  cursor: pointer;
}
.btn-retro:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold-light);
  box-shadow: 5px 5px 0 var(--burgundy);
  transform: translate(-1px, -1px);
}
.btn-retro-outline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  display: inline-block;
  transition: all .2s;
  box-shadow: 3px 3px 0 rgba(139,26,26,0.25);
}
.btn-retro-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--black);
  transform: translate(-1px, -1px);
}
.btn-gold {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  display: inline-block;
  transition: all .2s;
  box-shadow: 3px 3px 0 var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--burgundy);
  transform: translate(-1px, -1px);
}

/* ── Cards ── */
.retro-card {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.retro-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(139,26,26,0.25);
}

.card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.25rem 0.75rem;
}

/* ── Sections ── */
.section-py { padding: 80px 0; }
.section-py-sm { padding: 50px 0; }

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading .section-label { display: block; text-align: center; }

/* ── Top Bar ── */
.top-bar {
  background: var(--charcoal);
  color: var(--grey-mid);
  font-size: 0.8rem;
  padding: 8px 0;
  letter-spacing: 0.03em;
}
.top-bar i { color: var(--gold); font-size: 0.75rem; }
.top-bar .top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar .social-links a {
  color: var(--grey-mid);
  font-size: 0.9rem;
  margin-left: 10px;
  transition: color .2s;
}
.top-bar .social-links a:hover { color: var(--gold); }

/* ── Navbar ── */
.navbar-retro {
  background: var(--cream);
  border-bottom: 3px solid var(--black);
  box-shadow: 0 2px 0 var(--burgundy);
  padding: 0;
}
.navbar-retro .navbar-brand {
  padding: 10px 0;
}
.navbar-retro .navbar-brand img {
  height: 52px;
  width: auto;
}
.navbar-retro .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 1.1rem 0.9rem;
  position: relative;
  transition: color .2s;
}
.navbar-retro .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--burgundy);
  transition: all .25s;
  transform: translateX(-50%);
}
.navbar-retro .nav-link:hover,
.navbar-retro .nav-link.active {
  color: var(--burgundy);
}
.navbar-retro .nav-link:hover::after,
.navbar-retro .nav-link.active::after {
  width: 100%;
}
.navbar-retro .nav-cta {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border: 2px solid var(--burgundy);
  box-shadow: 2px 2px 0 var(--black);
  margin-left: 0.5rem;
  border-radius: var(--radius);
}
.navbar-retro .nav-cta:hover {
  background: var(--black) !important;
  border-color: var(--black) !important;
  color: var(--gold-light) !important;
}
.navbar-retro .nav-cta::after { display: none; }

.navbar-toggler {
  border: 2px solid var(--black);
  border-radius: 0;
  padding: 4px 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a1008' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero / Slider ── */
.hero-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,8,0.82) 0%, rgba(139,26,26,0.45) 100%);
  z-index: 1;
}
.hero-section .container { position: relative; z-index: 2; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide-img.active { opacity: 1; }
.hero-content { color: var(--white); }
.hero-content .section-label { color: var(--gold-light); }
.hero-content h1 {
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; }

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: rgba(26,16,8,0.7);
  color: var(--gold-light);
  text-align: center;
  font-family: var(--font-display);
}
.hero-badge .big { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.hero-badge .small { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

.slider-controls button {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .2s;
  font-size: 1rem;
}
.slider-controls button:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

/* ── Stat Boxes ── */
.stat-box {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}
.stat-box .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 0.4rem;
}

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  height: 100%;
}
.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(139,26,26,0.2);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 3px solid var(--black);
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--cream-dark);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--burgundy);
  opacity: 0.12;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--charcoal); margin: 0.75rem 0; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-author-role { font-size: 0.75rem; color: var(--grey-mid); }

/* ── Partners ── */
.partners-section { background: var(--cream-dark); }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  filter: grayscale(1) opacity(0.6);
  transition: filter .2s;
  padding: 0 1rem;
}
.partner-logo:hover { filter: grayscale(0) opacity(1); }
.partner-logo img { max-height: 60px; max-width: 160px; object-fit: contain; }

/* ── Map / Contact Section ── */
.map-contact-section { background: var(--charcoal); color: var(--white); }
.map-contact-section h2 { color: var(--white); }
.map-contact-section p { color: rgba(255,255,255,0.75); }
.map-frame {
  border: 3px solid var(--gold);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.4);
  width: 100%;
  height: 350px;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-text { font-size: 0.9rem; }
.contact-info-text strong { display: block; color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }

/* ── Pricing ── */
.price-card {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.price-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(139,26,26,0.2);
}
.price-card.featured {
  border-color: var(--burgundy);
  box-shadow: 4px 4px 0 var(--burgundy);
}
.price-card-header {
  background: var(--cream-dark);
  border-bottom: 2px solid var(--black);
  padding: 1.5rem;
  text-align: center;
}
.price-card.featured .price-card-header {
  background: var(--burgundy);
  color: var(--white);
}
.price-card.featured .price-card-header h3 { color: var(--white); }
.price-card .price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}
.price-card.featured .price-amount { color: var(--gold-light); }
.price-card .price-period { font-size: 0.85rem; color: var(--grey-mid); }
.price-card-body {
  padding: 1.5rem;
  flex: 1;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.price-feature i { color: var(--burgundy); margin-top: 3px; }

/* ── Team ── */
.team-card {
  text-align: center;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  padding: 2rem 1.5rem;
  transition: all .25s;
}
.team-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(139,26,26,0.2);
}
.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
  display: block;
}
.team-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.team-role { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--burgundy); }

/* ── FAQ ── */
.faq-section { background: var(--cream-dark); }
.faq-item {
  border: 2px solid var(--black);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  box-shadow: 3px 3px 0 rgba(139,26,26,0.12);
  overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-question:hover { background: var(--cream-dark); }
.faq-question i { color: var(--burgundy); transition: transform .25s; font-size: 0.85rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-body);
  border-top: 1px solid var(--cream-dark);
}
.faq-item.open .faq-answer { display: block; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,16,8,0.85));
  color: var(--white);
  padding: 1.5rem 1rem 0.75rem;
  font-size: 0.82rem;
  transform: translateY(100%);
  transition: transform .3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  background: var(--white);
}
.comparison-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 3px solid var(--burgundy);
  font-size: 0.95rem;
}
.comparison-table thead th:first-child { background: var(--black); }
.comparison-table tbody tr:nth-child(even) td { background: var(--cream); }
.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.comparison-table td:first-child { font-weight: 600; color: var(--charcoal); }
.comparison-table td i.fa-check { color: var(--burgundy); }
.comparison-table td i.fa-xmark { color: var(--grey-mid); }

/* ── Process Steps ── */
.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 rgba(139,26,26,0.12);
  margin-bottom: 1rem;
}
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--black);
}
.step-content h5 { font-family: var(--font-display); margin-bottom: 0.25rem; }
.step-content p { margin: 0; font-size: 0.9rem; color: var(--text-body); }

/* ── Cross-links Block ── */
.crosslinks-section { background: var(--cream-dark); }
.crosslink-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 2px 2px 0 rgba(139,26,26,0.15);
  transition: all .2s;
  text-decoration: none;
}
.crosslink-btn:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--black);
  transform: translate(-1px, -1px);
}

/* ── Blog Cards ── */
.blog-card {
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-retro);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.blog-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(139,26,26,0.2);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 2px solid var(--black);
  display: block;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 0.5rem; }
.blog-card-meta span { color: var(--burgundy); font-weight: 700; }

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
  border-top: 4px solid var(--burgundy);
}
.site-footer h5, .site-footer h6 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.site-footer h5::after, .site-footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--burgundy);
}
.site-footer a { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: block; margin-bottom: 0.5rem; transition: color .2s; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all .2s;
  margin-right: 6px;
  border-radius: var(--radius);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  border-top: 3px solid var(--gold);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
#cookie-banner a { color: var(--gold-light); }
#cookie-accept {
  background: var(--burgundy);
  border: 2px solid var(--burgundy);
  color: var(--white);
  padding: 0.4rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── Form Notification ── */
.form-notification {
  display: none;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  border: 2px solid;
}
.form-notification.success {
  background: #f0faf0;
  border-color: #2d7a2d;
  color: #1a4d1a;
  display: block;
}
.form-notification.error {
  background: #fff0f0;
  border-color: var(--burgundy);
  color: var(--burgundy);
  display: block;
}

/* ── Article / Blog ── */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 1.05rem; line-height: 1.85; }
.article-body h2 { font-size: 1.7rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h3 { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body blockquote {
  border-left: 4px solid var(--burgundy);
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background: var(--cream-dark);
  font-style: italic;
}

/* ── Hero Banner (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.8); }
.page-hero .deco-circle {
  border-color: var(--gold);
  opacity: 0.1;
}

/* ── About Page ── */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
  border-left: 3px solid var(--gold);
  margin-left: 1rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--burgundy);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

/* ── Utility ── */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.overflow-hidden { overflow: hidden; }
.ratio-4x3 { aspect-ratio: 4/3; }
.ratio-1x1 { aspect-ratio: 1; }
.ratio-16x9 { aspect-ratio: 16/9; }
.z-1 { z-index: 1; position: relative; }

.highlight-box {
  background: var(--cream-dark);
  border-left: 4px solid var(--burgundy);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.badge-retro {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius);
}
.badge-gold {
  background: var(--gold);
  color: var(--black);
}

.cta-section {
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
.cta-section h2 { color: var(--white); position: relative; }
.cta-section p { color: rgba(255,255,255,0.8); position: relative; }
.cta-section .container { position: relative; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .navbar-retro .navbar-collapse {
    background: var(--cream);
    border-top: 2px solid var(--black);
    padding: 1rem;
    margin-top: 0;
  }
  .navbar-retro .nav-link {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream-dark);
  }
  .navbar-retro .nav-link::after { display: none; }
  .section-py { padding: 55px 0; }
  .hero-section { min-height: 70vh; }
}

@media (max-width: 767px) {
  .top-bar .top-bar-item { font-size: 0.72rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .stat-box .stat-num { font-size: 2.2rem; }
  .section-py { padding: 40px 0; }
}
