/* ==========================================================================
   SOLUGIVA — Global Stylesheet
   Luxury Catering, Event Planning & Private Chef | Lagos
   Palette + type system sourced from the Solugiva WordPress style guide.
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Colors */
  --color-gold: #C8A96A;
  --color-gold-dark: #A8853F;
  --color-charcoal: #1A1A1A;
  --color-text: #333333;
  --color-wine: #7A1E2C;
  --color-ivory: #F9F6F1;
  --color-white: #FFFFFF;
  --color-border: #E4DFD5;
  --color-muted: #8A8378;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Lato', -apple-system, sans-serif;

  /* Layout */
  --content-width: 1200px;
  --section-pad-y: 100px;
  --section-pad-y-mobile: 56px;
  --radius: 4px;

  /* header image overlay */
  /* Container holds the image context */
.image-container {
  position: relative;
  display: inline-block; /* Fits the container tightly to the image */
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;

}


.overlay-text {
  color: white;
  font-size: 20px;
}


  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

/* ---------- 2. Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

/* .iconx {
  display: flex;
  align-items: center;
  gap: 14px;
} */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-charcoal);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  padding-left: 15px;
}
@media (min-width: 640px) { h1 { font-size: 52px; } }
@media (min-width: 1024px) { h1 { font-size: 62px; } }

h2 {
  font-size: 28px;
  margin-bottom: 18px;
  padding-left: 10px;
}
@media (min-width: 640px) { h2 { font-size: 36px; } }
@media (min-width: 1024px) { h2 { font-size: 44px; } }

h3 {
  font-size: 22px;
  margin-bottom: 14px;
  padding-left: 10px;
}
@media (min-width: 1024px) { h3 { font-size: 28px; } }

h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  padding-left: 10px;
}
@media (min-width: 1024px) { h4 { font-size: 21px; } }

h5 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--color-wine);
  margin-bottom: 8px;
}
p {padding-left: 10px;

}
@media (min-width: 1024px) { h5 { font-size: 17px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(184, 155, 13);
  margin-bottom: 16px;
  padding: 0 10px 0 60;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.lede {
   font-size: 18px;
  font-weight: 300;
  color: #946501;
  /* background: var(--color-charcoal); */
  padding: 20px;
  max-width: 620px;
}

/* Signature element: the gold thread divider — a hairline with a diamond
   knot at its center, echoing a table runner / plating garnish line. */
.thread-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 200px;
  margin: 28px 0;
}
.thread-divider.center { margin-left: auto; margin-right: auto; }
.thread-divider::before,
.thread-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.thread-divider .knot {
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- 4. Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  background:darkolivegreen
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-pad-y-mobile);
}
@media (min-width: 1024px) {
  .section { padding-block: var(--section-pad-y); }
}

/* .section-ivory { background: var(--color-ivory); }
.section-charcoal { background: var(--color-charcoal); color: #CCCCCC; }
.section-charcoal h2, .section-charcoal h3 { color: var(--color-white); } */

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .thread-divider { margin-inline: auto; }

.grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 72px; }
  .split.reverse > *:first-child { order: 2; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-wine); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--color-white); }

.btn-outline-dark {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}
.btn-outline-dark:hover { background: var(--color-charcoal); color: var(--color-white); }

.btn-block { width: 100%; }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 88px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), height var(--transition), box-shadow var(--transition);
}
.site-header.is-solid {
  background: rgba(26, 26, 26, 0.94);
  backdrop-filter: blur(6px);
  height: 76px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
/* Interior pages start solid since there is no dark hero behind them */
.site-header.is-static {
  position: static;
  background: var(--color-charcoal);
  height: 76px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.logo span { color: var(--color-gold); }

.nav-menu {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 960px) {
  .nav-menu { display: flex; }
}
.nav-menu a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  position: relative;
  padding-block: 6px;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--color-gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-actions .btn { padding: 12px 26px; font-size: 12px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span {
  height: 2px;
  background: var(--color-white);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 76px;
  background: var(--color-charcoal);
  z-index: 400;
  padding: 32px 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { margin-top: 24px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* color: var(--color-white); */
  color: white
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,13,10,0.78) 0%, rgba(14,13,10,0.62) 26%, rgba(20,19,15,0.76) 60%, rgba(14,13,10,0.94) 100%);
  z-index: 1;
}
/* Extra dark band pinned behind the fixed transparent header so the logo
   and nav stay readable over any hero image, without hiding the photo. */
.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* Adjust 0.4 - 0.7 */
    /* z-index: -1; */
}

.hero h1, .page-hero h1 { text-shadow: 0 2px 16px rgba(0,0,0,0.45); }
.hero .container { padding-top: 120px; padding-bottom: 80px; position: absolute;   /* or relative if that's your layout */
    inset: 0;
    z-index: 2;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center; }

.hero h1 { color: var(--color-white); max-width: 780px; }
/* .hero .lede { color: #E8E4DA; margin-bottom: 36px; } */
.hero .lede,
.page-hero .lede {
    color: #fff;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;

}
.page-hero .container { padding-block: 64px; position: relative; }
.page-hero h1 { color: var(--color-white); margin-bottom: 12px; }
.page-hero .lede { color: #E8E4DA; }

/* ---------- 8. Cards ---------- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(26,26,26,0.08);
}
.card .icon-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.card .icon-mark svg { transform: rotate(-45deg); width: 22px; height: 22px; }

.media-card {
  position: relative;
  overflow: hidden;
}
.media-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.media-card:hover img { transform: scale(1.06); }
.media-card .media-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px;
  background: linear-gradient(0deg, rgba(26,26,26,0.85), transparent);
  color: var(--color-white);
}
.media-card .media-caption h4 { color: var(--color-white); margin-bottom: 4px; }
.media-card .media-caption span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--color-gold); }

/* ---------- 9. Forms ---------- */
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--color-charcoal);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-white);
  border: 1px solid #DDDDDD;
  border-radius: var(--radius);
  color: var(--color-text);
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; gap: 22px; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.form-note {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 8px;
}
.form-success {
  display: none;
  background: var(--color-ivory);
  border: 1px solid var(--color-gold);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.form-success.is-visible { display: block; }

/* ---------- 10. Testimonials ---------- */
.testimonial-slider { position: relative; max-width: 760px; margin-inline: auto; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; animation: fadeIn 0.5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-slide .stars { color: var(--color-gold); letter-spacing: 4px; margin-bottom: 22px; font-size: 15px; }
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-charcoal);
  margin-bottom: 28px;
}
@media (min-width: 768px) { .testimonial-slide blockquote { font-size: 28px; } }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.author-name { font-weight: 600; color: var(--color-charcoal); font-size: 14px; }
.author-role { font-size: 13px; color: var(--color-muted); }

.slider-controls { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); transition: background var(--transition), transform var(--transition); }
.slider-dot.is-active { background: var(--color-gold); transform: scale(1.3); }

/* ---------- 11. Stats strip ---------- */
.stat-strip { display: grid; gap: 32px; }
@media (min-width: 700px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--color-gold); }
.stat .label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #CCCCCC; margin-top: 6px; }

/* ---------- 12. Gallery / Lightbox ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn.is-active, .filter-btn:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

.masonry {
  columns: 1;
  gap: 20px;
}
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img { width: 100%; transition: transform 0.6s var(--ease); }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item::after {
  content: "\002B";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-white);
  background: rgba(26,26,26,0);
  transition: background var(--transition), opacity var(--transition);
  opacity: 0;
}
.masonry-item:hover::after { background: rgba(26,26,26,0.35); opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.94);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 86vh; max-width: 100%; }
.lightbox-close {
  position: absolute;
  top: 28px; right: 32px;
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--color-white);
  font-size: 28px;
  padding: 12px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ---------- 13. Footer ---------- */
.site-footer {
  background: var(--color-charcoal);
  color: #CCCCCC;
  padding-block: 72px 28px;
  padding-left: 30px;
}
.footer-grid {
  display: grid;
  gap: 44px;
  margin-bottom: 56px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-grid h5 { color: var(--color-gold); text-transform: uppercase; letter-spacing: 1px; }
.footer-grid .logo { display: inline-block; margin-bottom: 16px; }
.footer-grid p { color: #A9A9A9; font-size: 14px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #CCCCCC; font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--color-gold); }
.footer-contact li { margin-bottom: 14px; font-size: 14px; color: #CCCCCC; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--color-gold); }
.social-row { display: flex; gap: 14px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid #3A3A3A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.social-row a:hover { border-color: var(--color-gold); background: rgba(200,169,106,0.1); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid #2E2E2E;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: #888888;
}

/* ---------- 14. WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 600;
  transition: transform var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ---------- 15. Reveal-on-scroll ----------
   Content is visible by default. The .js-ready class is added by script.js
   the instant it runs, so if the script ever fails to load (bad path, ad
   blocker, etc.) every section still displays normally instead of staying
   invisible. */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); padding: 10px;}

/* ---------- 16. Breadcrumb ---------- */
.breadcrumb { font-size: 13px; color: #D8D3C8; margin-bottom: 18px; letter-spacing: 0.5px; }
.breadcrumb a { color: var(--color-gold); }

/* ---------- 17. Utilities ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-32 { margin-bottom: 32px; }
.mx-auto { margin-inline: auto; }
.max-narrow { max-width: 560px; }
.max-medium { max-width: 900px; margin-inline: auto; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.font-italic { font-style: italic; }
.text-sm { font-size: 14px; }
.text-sm-muted { font-size: 14px; color: var(--color-muted); }
.link-inline { color: var(--color-wine); text-decoration: underline; }
.author-info { text-align: left; }

.list-tight { font-size: 14px; color: var(--color-muted); margin-bottom: 0; }
.list-tight.has-gap { margin-bottom: 24px; }
.list-tight li { margin-bottom: 8px; }
.list-tight li:last-child { margin-bottom: 0; }

.price-unit { font-size: 13px; color: var(--color-muted); font-weight: 400; }
.stars-inline { color: var(--color-gold); margin-bottom: 16px; }

.contact-list { font-size: 15px; }
.contact-row { margin-bottom: 20px; display: flex; gap: 14px; align-items: flex-start; }
.contact-row:last-child { margin-bottom: 0; }
.contact-label { color: var(--color-wine); min-width: 90px; display: inline-block; }

.map-frame { border: 1px solid var(--color-border); overflow: hidden; }
.map-frame iframe { border: 0; display: block; }

.tag-pill { display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 10px;
}
.price-tag { font-family: var(--font-display); font-size: 22px; color: var(--color-wine); font-weight: 700; }

/* ---------- 18. CTA band ---------- */
.cta-band {
  position: relative;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}
.cta-band .hero-media::after { background: rgba(26,26,26,0.78); }
.cta-band h2 { color: var(--color-white); }
.cta-band .lede { color: #E8E4DA; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }
