/* ================================================================
   SICILIA WITH LOVE — SHARED STYLESHEET
   Used by: index.php, sponsorships.php
   bootstrap-grid.min.css loads before this file on both pages.
   ================================================================ */

:root {
  --red: #e91f0e;
  --blue: #0057b0;
  --cream: #f4e8c8;
  --cream-dark: #ecdcac;
  --gold: #c9a84c;
  --gold-light: #ffe9bf;
  --navy: #003a78;
  --bronze: #a0522d;
  --silver: #7a8fa6;
  --text-dark: #1a0a00;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.325rem; /* base bump: was implicitly 1rem */
  overflow-x: hidden;
}

  /* ════════════════════════════════════════════════════════════
     NAVBAR
  ════════════════════════════════════════════════════════════ */
  #main-nav {
    background: rgba(244, 232, 200, 0.97);
    backdrop-filter: blur(8px);
    border-bottom-color: var(--gold);
    transition: box-shadow 0.3s;
    height: 64px;
  }
  #main-nav.scrolled { box-shadow: 0 4px 24px rgba(233, 31, 14, 0.12); }

  .navbar-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 1.44rem;   /* was 1.15rem */
    color: var(--red);
  }
  .navbar-brand em { color: var(--blue); }
  .navbar-brand:hover { color: var(--red-dark); }

  /* Nav links */
  .nav-link-brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.25rem;   /* was 1rem */
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    transition: color 0.2s;
    padding: 0.4rem 0.6rem;
  }
  .nav-link-brand:hover,
  .nav-link-brand:focus { color: var(--red); }
  .nav-link-brand.active { color: var(--red); border-bottom: 2px solid var(--red); }

  /* Offcanvas */
  #navOffcanvas { background: var(--cream); max-width: 300px; }
  #navOffcanvas .offcanvas-header { border-bottom-color: var(--gold); }

  /* Small nav CTA variant */
  .btn-nav-cta {
    background: var(--red);
    color: white;
    border: 2px solid var(--red);
    font-weight: 600;
    font-size: 1.125rem;   /* was 0.9rem */
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35em 1.1em;
    transition: background 0.2s, color 0.2s;
  }
  .btn-nav-cta:hover,
  .btn-nav-cta:focus {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: white;
  }

/* ─── SHARED UTILITIES ──────────────────────────────────────── */
.stripe-divider { height: 6px; background: linear-gradient(90deg, var(--red) 33.33%, var(--gold) 33.33%, var(--gold) 66.66%, var(--blue) 66.66%); }
.section-bg     { background: var(--cream); }
.section-bg-alt { background: var(--gold-light); }

.corner-accent { position: absolute; pointer-events: none; display: block; height: auto; width: min(12vw, 120px); }
.corner-accent.tl { top: 0; left: 0; }
.corner-accent.tr { top: 0; right: 0; }
.corner-accent.bl { bottom: 0; left: 0; }
.corner-accent.br { bottom: 0; right: 0; }

footer { background: var(--navy); color: rgba(255,255,255,0.75); text-align: center; padding: 2rem clamp(1.5rem, 4vw, 3rem); font-size: 1rem; /* was 0.9rem */ }
footer a { color: var(--gold); text-decoration: none; }
footer .footer-top { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: white; margin-bottom: 0.5rem; }
footer .footer-top span { color: var(--gold); font-style: italic; }

/* Mobile nav (shared) */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: var(--cream); flex-direction: column;
    padding: 1.5rem 2rem; border-bottom: 2px solid var(--gold);
    gap: 1.25rem; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger  { display: flex; }
}

@media (max-width: 600px) {
  .corner-accent.tr, .corner-accent.bl { display: none; }
  .corner-accent { width: min(18vw, 90px); }
}

/* ================================================================
   HOME PAGE (index.php)
   ================================================================ */

/* ─── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  padding-top: 64px;
  background: var(--cream);
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero-frame { position: absolute; inset: 64px 0 0 0; pointer-events: none; z-index: 2; }
.hero-frame img { position: absolute; height: auto; display: block; }
.hero-frame img.hf-tl { top: 0; left: 0;   width: min(20vw, 322px); transform-origin: top left; }
.hero-frame img.hf-tr { top: 0; right: 0;  width: min(25vw, 490px); transform-origin: top right; }
.hero-frame img.hf-bl { bottom: 0; left: 0;  width: min(18vw, 364px); transform-origin: bottom left; }
.hero-frame img.hf-br { bottom: 0; right: 0; width: min(18vw, 364px); transform-origin: bottom right; }

.hero-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 5rem);
  position: relative; z-index: 3;
}

.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-kicker {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.2rem); /* was clamp(0.9rem, 1.5vw, 1.1rem) */
  letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-kicker::before, .hero-kicker::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold); }

/* h1 sizes left unchanged */
.hero-title { font-family: 'DM Serif Display', Georgia, serif; line-height: 0.88; font-style: normal; }
.hero-title .line-sicilia { display: block; font-size: clamp(4.5rem, 9vw, 9rem);  color: var(--red);  letter-spacing: -0.02em; }
.hero-title .line-with    { display: block; font-size: clamp(2rem, 3.5vw, 3.8rem); font-style: italic; color: var(--blue); letter-spacing: 0.01em; margin-top: 0.1em; padding-left: 0.15em; }
.hero-title .line-love    { display: block; font-size: clamp(5.5rem, 11vw, 11rem); color: var(--red);  letter-spacing: -0.03em; margin-top: -0.05em; }

.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); /* was clamp(1rem, 1.8vw, 1.35rem) */ color: var(--navy); line-height: 1.5; font-weight: 400; }
.hero-subtitle em { font-style: normal; color: var(--red); font-weight: 600; }

.hero-date-block { display: flex; flex-direction: column; gap: 0.25rem; border-left: 3px solid var(--red); padding-left: 1.1rem; margin-top: 0.5rem; }
.hero-date-block .date-main  { font-family: 'DM Serif Display', serif; font-size: clamp(1.45rem, 2.6vw, 2.1rem); /* was clamp(1.3rem, 2.5vw, 2rem) */ color: var(--blue); letter-spacing: -0.01em; }
.hero-date-block .date-venue { font-size: clamp(1rem, 1.5vw, 1.2rem); /* was clamp(0.9rem, 1.4vw, 1.1rem) */ color: var(--text-dark); font-weight: 500; letter-spacing: 0.02em; }
.hero-date-block .date-sub   { font-size: clamp(0.9rem, 1.3vw, 1.05rem); /* was clamp(0.8rem, 1.2vw, 0.95rem) */ color: var(--gold); font-style: italic; font-weight: 400; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

.hero-image-col { display: flex; align-items: flex-end; justify-content: flex-end; }
.hero-horse {
  width: 100%; max-width: 580px; margin-top: -12%;
  filter: drop-shadow(0 12px 40px rgba(233,31,14,0.15));
  animation: horseFloat 4s ease-in-out infinite;
}
@keyframes horseFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

.btn-primary {
  display: inline-block; background: var(--red); color: white; text-decoration: none;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.15rem; /* was 1.05rem */
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75em 2em;
  border: 2px solid var(--red); transition: all 0.25s;
}
.btn-primary:hover { background: transparent; color: var(--red); }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--blue); text-decoration: none;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.15rem; /* was 1.05rem */
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75em 2em;
  border: 2px solid var(--blue); transition: all 0.25s;
}
.btn-secondary:hover { background: var(--blue); color: white; }

/* ─── COUNTDOWN ─────────────────────────────────────────────── */
.countdown-bar {
  background: var(--blue); padding: 1.5rem 1rem; text-align: center;
  position: relative; z-index: 1;
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
}
.countdown-bar::before, .countdown-bar::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 600px; height: 1px; background: rgba(255,250,0,0.3);
}
.countdown-bar::before { top: 8px; }
.countdown-bar::after  { bottom: 8px; }
.countdown-label { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; /* was 0.9rem */ letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.6rem; color: #fff; }
.countdown-units { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.countdown-unit  { display: flex; flex-direction: column; align-items: center; min-width: 64px; }
.countdown-number { font-family: 'Artusi', 'Playfair Display', serif; font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: 1; color: #fff; font-weight: 500; }
.countdown-unit-label { font-size: 0.8rem; /* was 0.7rem */ letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.75; margin-top: 0.3rem; color: #fff; }
.countdown-sep { font-size: 1.5rem; color: var(--gold-light); opacity: 0.4; align-self: center; }

/* ─── SECTIONS ──────────────────────────────────────────────── */
section { padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem); max-width: 1200px; margin: 0 auto; }

/* h2 sizes left unchanged */
.section-header { position: relative; display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.section-header h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--red); letter-spacing: -0.01em; line-height: 1; }
.section-header .section-num { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(3rem, 5vw, 4.5rem); color: var(--cream-dark); position: absolute; left: -0.5em; top: -0.3em; z-index: -1; line-height: 1; user-select: none; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about-body p { font-size: clamp(1.15rem, 1.9vw, 1.4rem); /* was clamp(1.05rem, 1.8vw, 1.3rem) */ line-height: 1.75; color: var(--text-dark); margin-bottom: 1.25rem; }
.about-body strong { color: var(--red); font-weight: 600; }
.about-body em { color: var(--blue); font-style: italic; }

.about-card { background: white; border: 1px solid var(--gold-light); padding: 2rem 1.75rem; position: relative; box-shadow: 4px 4px 0 var(--cream-dark); overflow: hidden; }
.about-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.55rem; /* was 1.4rem */ color: var(--blue); margin-bottom: 1rem; letter-spacing: -0.01em; }
.about-card p  { font-size: 1.1rem; /* was 1rem */ line-height: 1.7; color: var(--text-dark); margin-bottom: 0.75rem; }
.about-card .tagline { font-style: italic; color: var(--gold); font-size: 1.15rem; /* was 1.05rem */ margin-top: 1rem; border-top: 1px solid var(--gold-light); padding-top: 1rem; }

/* ─── EVENT DETAILS ─────────────────────────────────────────── */
.details-full-wrap { position: relative; border: 2px solid var(--gold); padding: clamp(2rem, 5vw, 4rem); background: white; overflow: hidden; }
.detail-item { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem; border-left: 3px solid var(--red); background: var(--cream); }
.detail-item .di-label { font-size: 0.85rem; /* was 0.75rem */ letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.detail-item .di-value { font-family: 'DM Serif Display', serif; font-size: clamp(1.2rem, 2.1vw, 1.7rem); /* was clamp(1.1rem, 2vw, 1.6rem) */ color: var(--navy); line-height: 1.2; }
.detail-item .di-sub   { font-size: 1.05rem; /* was 0.95rem */ color: var(--text-dark); font-style: italic; }

/* ─── TICKETS ───────────────────────────────────────────────── */
.ticket-card { position: relative; padding: 2.5rem 2rem; background: white; border: 2px solid transparent; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.ticket-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.ticket-card.featured { border-color: var(--red);  background: linear-gradient(135deg, #fff 60%, rgba(233,31,14,0.04)); }
.ticket-card.standard { border-color: var(--blue); background: linear-gradient(135deg, #fff 60%, rgba(0,87,176,0.04)); }
.ticket-badge { position: absolute; top: 1rem; right: 1rem; font-size: 0.75rem; /* was 0.65rem */ letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; padding: 0.3em 0.8em; background: var(--red); color: white; }
.ticket-card.standard .ticket-badge { background: var(--blue); }
.ticket-type  { font-size: 0.9rem; /* was 0.8rem */ letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.ticket-name  { font-family: 'DM Serif Display', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--red); line-height: 1.1; margin-bottom: 0.75rem; }
.ticket-card.standard .ticket-name { color: var(--blue); }
.ticket-price { font-family: 'DM Serif Display', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--text-dark); line-height: 1; margin-bottom: 0.25rem; }
.ticket-price sup { font-size: 0.45em; vertical-align: super; margin-right: 0.1em; }
.ticket-availability { font-size: 1rem; /* was 0.9rem */ color: var(--gold); font-style: italic; margin-bottom: 1.25rem; }
.ticket-includes { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; padding: 0; }
.ticket-includes li { font-size: 1.05rem; /* was 0.95rem */ color: var(--text-dark); padding-left: 1.2rem; position: relative; line-height: 1.4; }
.ticket-includes li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 0.3em; }
.ticket-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; font-size: 1.1rem; /* was 1rem */ line-height: 1.6; color: var(--text-dark); font-style: italic; }
.ticket-note strong { font-style: normal; color: var(--red); }

/* ─── PAYMENT ───────────────────────────────────────────────── */
.payment-method { padding: 2.25rem 2rem; background: white; border-top: 4px solid var(--red); position: relative; overflow: hidden; }
.payment-method.etransfer { border-top-color: var(--blue); }
.pm-title { font-family: 'DM Serif Display', serif; font-size: 1.75rem; /* was 1.6rem */ color: var(--red); margin-bottom: 0.5rem; }
.payment-method.etransfer .pm-title { color: var(--blue); }
.pm-body { font-size: 1.1rem; /* was 1rem */ line-height: 1.7; color: var(--text-dark); }
.pm-body strong { display: block; margin-top: 0.75rem; color: var(--navy); font-weight: 600; }
.pm-body a { color: var(--red); text-decoration: none; font-weight: 600; }
.pm-body a:hover { text-decoration: underline; }
.pm-address { font-style: italic; margin-top: 0.4rem; line-height: 1.6; font-size: 1.07rem; /* was 0.97rem */ }
.payment-note { color: var(--navy); padding: 1.5rem 2rem; font-size: 1.1rem; /* was 1rem */ line-height: 1.6; text-align: center; }
.payment-note strong { color: var(--navy); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-inner { position: relative; background: white; border: 2px solid var(--gold); padding: clamp(2.5rem, 5vw, 4rem); text-align: center; max-width: 680px; margin: 0 auto; overflow: hidden; }
.contact-inner p { font-size: clamp(1.1rem, 1.9vw, 1.35rem); /* was clamp(1rem, 1.8vw, 1.25rem) */ line-height: 1.7; color: var(--text-dark); margin-bottom: 1rem; }
.contact-inner .contact-name { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--blue); margin-bottom: 0.25rem; }
.contact-inner a { color: var(--red); text-decoration: none; font-weight: 600; }
.contact-inner a:hover { text-decoration: underline; }
.contact-inner .grazie { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--red); margin-top: 1.5rem; }

/* ─── HOME MOBILE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { padding: 2.5rem 1.5rem 1rem; }
  .hero-image-col { justify-content: center; }
  .hero-horse { max-width: 100%; margin-top: -15%; }
}

@media (max-width: 600px) {
  .hero-frame img.hf-tr, .hero-frame img.hf-bl { display: none; }
}

/* ─── HOME ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.10s; }
.hero-text > *:nth-child(2) { animation-delay: 0.22s; }
.hero-text > *:nth-child(3) { animation-delay: 0.36s; }
.hero-text > *:nth-child(4) { animation-delay: 0.48s; }
.hero-text > *:nth-child(5) { animation-delay: 0.60s; }
.hero-image-col { animation: fadeUp 0.9s 0.4s ease both; }

@media print { .countdown-bar { display: none; } }

/* ================================================================
   SPONSORSHIPS PAGE (sponsorships.php)
   ================================================================ */

.page-header { padding-top: 64px; background: var(--cream); position: relative; overflow: hidden; text-align: center; padding-bottom: 0; }
.page-header-frame { position: absolute; inset: 64px 0 0 0; pointer-events: none; z-index: 2; }
.page-header-frame img { position: absolute; height: auto; display: block; }
.page-header-frame img.hf-tl { top: 0; left: 0; width: min(16vw, 240px); }
.page-header-frame img.hf-tr { top: 0; right: 0; width: min(20vw, 320px); }
@media (max-width: 600px) { .page-header-frame img.hf-tr { display: none; } }
.page-header-inner { position: relative; z-index: 3; }

.page-kicker {
  font-weight: 600; font-size: clamp(0.9rem, 1.4vw, 1.1rem); /* was clamp(0.8rem, 1.3vw, 1rem) */
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.page-kicker::before, .page-kicker::after { content: ''; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* page-title h1 left unchanged */
.page-title { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(2.8rem, 7vw, 6rem); color: var(--red); letter-spacing: -0.02em; line-height: 0.95; margin-bottom: 0.5rem; }
.page-title span { display: block; font-style: italic; color: var(--blue); font-size: 0.42em; letter-spacing: 0.01em; line-height: 1.4; }
.page-subtitle { font-size: clamp(1.1rem, 1.9vw, 1.35rem); /* was clamp(1rem, 1.8vw, 1.25rem) */ line-height: 1.65; color: var(--navy); font-style: italic; max-width: 640px; margin: 1.25rem auto 0; }

.tier-selector { background: var(--navy); }
.tier-selector-label { text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; /* was 1rem */ letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }

.tier-card {
  display: flex; flex-direction: column; align-items: center; text-decoration: none;
  padding: 1.25rem 1rem; border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--tier-color, white); height: 100%;
  transition: filter 0.2s, transform 0.2s;
}
.tier-card:hover { filter: brightness(1.12); transform: translateY(-4px); }
.tier-card.color-red    { --tier-color: var(--red);    background: #4a0b06; }
.tier-card.color-gold   { --tier-color: var(--gold);   background: #3d2e08; }
.tier-card.color-blue   { --tier-color: var(--silver); background: #0d2340; }
.tier-card.color-bronze { --tier-color: var(--bronze); background: #3a1a0a; }
.tier-card.color-navy   { --tier-color: #5b7fa6;       background: #061628; }

.tc-badge  { font-size: 0.75rem; /* was 0.65rem */ letter-spacing: 0.15em; text-transform: uppercase; color: var(--tier-color, white); font-weight: 700; }
.tc-name   { font-family: 'DM Serif Display', serif; font-size: 1.15rem; /* was 1.05rem */ color: white; text-align: center; line-height: 1.2; }
.tc-amount { font-family: 'DM Serif Display', serif; font-size: 1.6rem; /* was 1.5rem */ color: var(--tier-color, white); line-height: 1; }
.tc-arrow  { font-size: 0.85rem; /* was 0.75rem */ color: rgba(255,255,255,0.4); margin-top: 0.6rem; }

.tier-section { scroll-margin-top: 80px; }
.tier-left-sticky { position: sticky; top: 88px; }
@media (max-width: 767px) { .tier-left-sticky { position: static; } }

.tier-tier-badge { font-size: 0.82rem; /* was 0.72rem */ letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.6rem; }
.tier-tier-badge.color-red    { color: var(--red); }
.tier-tier-badge.color-gold   { color: var(--gold); }
.tier-tier-badge.color-blue   { color: var(--silver); }
.tier-tier-badge.color-bronze { color: var(--bronze); }
.tier-tier-badge.color-navy   { color: #5b7fa6; }

/* tier name heading h3 left unchanged */
.tier-name-heading { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.tier-name-heading.color-red    { color: var(--red); }
.tier-name-heading.color-gold   { color: var(--gold); }
.tier-name-heading.color-blue   { color: var(--blue); }
.tier-name-heading.color-bronze { color: var(--bronze); }
.tier-name-heading.color-navy   { color: var(--navy); }

.tier-amount-display { font-family: 'DM Serif Display', serif; font-size: clamp(3rem, 6vw, 5.5rem); color: var(--text-dark); line-height: 1; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.tier-amount-display sup { font-size: 0.35em; vertical-align: super; }

.tier-cta-btn { display: inline-block; text-decoration: none; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.1rem; /* was 1rem */ letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75em 2em; border: 2px solid; transition: all 0.25s; }
.tier-cta-btn.color-red    { border-color: var(--red);    color: var(--red); }
.tier-cta-btn.color-gold   { border-color: var(--gold);   color: var(--gold); }
.tier-cta-btn.color-blue   { border-color: var(--blue);   color: var(--blue); }
.tier-cta-btn.color-bronze { border-color: var(--bronze); color: var(--bronze); }
.tier-cta-btn.color-navy   { border-color: var(--navy);   color: var(--navy); }
.tier-cta-btn:hover { color: white; }
.tier-cta-btn.color-red:hover    { background: var(--red); }
.tier-cta-btn.color-gold:hover   { background: var(--gold); }
.tier-cta-btn.color-blue:hover   { background: var(--blue); }
.tier-cta-btn.color-bronze:hover { background: var(--bronze); }
.tier-cta-btn.color-navy:hover   { background: var(--navy); }

.tier-right { background: white; border-top: 4px solid; position: relative; overflow: hidden; }
.tier-right.color-red    { border-top-color: var(--red); }
.tier-right.color-gold   { border-top-color: var(--gold); }
.tier-right.color-blue   { border-top-color: var(--blue); }
.tier-right.color-bronze { border-top-color: var(--bronze); }
.tier-right.color-navy   { border-top-color: var(--navy); }

.tier-tagline { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.25rem, 2.1vw, 1.6rem); /* was clamp(1.15rem, 2vw, 1.5rem) */ color: var(--text-dark); margin-bottom: 1.25rem; line-height: 1.4; }
.tier-body    { font-size: clamp(1.1rem, 1.7vw, 1.25rem); /* was clamp(1rem, 1.6vw, 1.15rem) */ line-height: 1.75; color: var(--text-dark); margin-bottom: 1.75rem; }
.includes-label { font-size: 0.82rem; /* was 0.72rem */ letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }

.includes-list { list-style: none; padding: 0; margin: 0; }
.includes-list li { font-size: 1.15rem; /* was 1.05rem */ color: var(--text-dark); padding-left: 1.5rem; position: relative; line-height: 1.4; }
.includes-list li::before { content: '✦'; position: absolute; left: 0; font-size: 0.6rem; top: 0.35em; }
.includes-list.color-red    li::before { color: var(--red); }
.includes-list.color-gold   li::before { color: var(--gold); }
.includes-list.color-blue   li::before { color: var(--blue); }
.includes-list.color-bronze li::before { color: var(--bronze); }
.includes-list.color-navy   li::before { color: var(--navy); }

.tier-closing { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(1.1rem, 1.7vw, 1.3rem); /* was clamp(1rem, 1.6vw, 1.2rem) */ padding-top: 1.25rem; border-top: 1px solid var(--cream-dark); line-height: 1.5; }
.tier-closing.color-red    { color: var(--red); }
.tier-closing.color-gold   { color: var(--gold); }
.tier-closing.color-blue   { color: var(--blue); }
.tier-closing.color-bronze { color: var(--bronze); }
.tier-closing.color-navy   { color: var(--navy); }

.contact-bar { background: var(--navy); padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem); text-align: center; }
.contact-bar h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); color: white; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.contact-bar h2 span { color: var(--gold); font-style: italic; }
.contact-bar p { font-size: clamp(1.1rem, 1.7vw, 1.3rem); /* was clamp(1rem, 1.6vw, 1.2rem) */ color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 0.5rem; }
.contact-bar a { color: var(--gold); text-decoration: none; font-weight: 600; }
.contact-bar a:hover { text-decoration: underline; }

.btn-outline-cream {
  display: inline-block; background: white; color: var(--navy); text-decoration: none;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; /* was 1.05rem */
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75em 2em;
  border: 2px solid white; transition: all 0.25s;
}
.btn-outline-cream:hover { background: transparent; color: white; }

.btn-outline-gold {
  display: inline-block; background: transparent; color: var(--gold); text-decoration: none;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; /* was 1.05rem */
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75em 2em;
  border: 2px solid var(--gold); transition: all 0.25s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.site-footer { background: #001e45; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: white; }
.footer-logo span { color: var(--gold); font-style: italic; }
.site-footer a { color: var(--gold); text-decoration: none; }

@keyframes fadeUpSlow {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-header-inner > * { animation: fadeUpSlow 0.6s ease both; }
.page-header-inner > *:nth-child(1) { animation-delay: 0.05s; }
.page-header-inner > *:nth-child(2) { animation-delay: 0.15s; }
.page-header-inner > *:nth-child(3) { animation-delay: 0.25s; }