/* ============================================================
   FOXYNOYD — Custom Styles v2 · Editorial · Jewel Tones · Soft
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,700;1,9..144,300;1,9..144,400&family=Jost:wght@300;400;500&display=swap');

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Palette — Jewel Tones on Soft Air */
  --mist:         #F0F4F8;        /* page background — cold white */
  --mist-mid:     #E2EAF0;        /* cards / alt sections         */
  --mist-deep:    #C8D7E2;        /* borders                      */
  --navy:         #0D1F35;        /* primary dark                 */
  --navy-mid:     #1A3050;        /* headings                     */
  --emerald:      #1B5E44;        /* primary accent               */
  --emerald-hov:  #154D38;        /* hover state                  */
  --emerald-soft: rgba(27,94,68,.10);
  --terra:        #C4533C;        /* secondary accent / CTA       */
  --terra-hov:    #A8432E;
  --terra-soft:   rgba(196,83,60,.10);
  --slate:        #5A6B7A;        /* body text                    */
  --white:        #FAFCFE;        /* pure soft white              */

  --bs-body-font-family: 'Jost', sans-serif;
  --bs-body-font-size:   1.05rem;
  --bs-body-color:       #3A4B59;
  --bs-body-bg:          #F0F4F8;
  --bs-link-color:       var(--emerald);
  --bs-link-hover-color: var(--emerald-hov);
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  background-color: var(--mist);
  color: var(--slate);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 6.5vw, 6.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem);   font-weight: 300; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 400; }
p  { color: var(--slate); font-size: 1rem; font-weight: 300; }

a { color: var(--emerald); transition: color .25s; }
a:hover { color: var(--emerald-hov); }
img { max-width: 100%; }

/* ── Section spacing ─────────────────────────────────────── */
.section-py   { padding: 6.5rem 0; }
.section-alt  { background-color: var(--mist-mid); }
.section-dark { background-color: var(--navy); }

/* ── Section label / eyebrow ─────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  background-color: var(--emerald);
  color: var(--white) !important;
  border: 1.5px solid var(--emerald);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover {
  background-color: var(--emerald-hov);
  border-color: var(--emerald-hov);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(27,94,68,.28);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--mist-deep);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-gold:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.btn-outline-white {
  background-color: transparent;
  color: rgba(255,255,255,.9) !important;
  border: 1.5px solid rgba(255,255,255,.4);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  background-color: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.75);
  color: #fff !important;
}

.btn-white {
  background-color: var(--white);
  color: var(--emerald-hov) !important;
  border: 1.5px solid var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-3px);
}

/* ── Navbar ──────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 1.3rem 0;
  transition: background .4s, box-shadow .4s, padding .4s;
}
#mainNav.scrolled {
  background: rgba(240,244,248,.97) !important;
  box-shadow: 0 2px 30px rgba(13,31,53,.07);
  padding: .75rem 0;
  backdrop-filter: blur(16px);
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .3s;
}
#mainNav.scrolled .nav-brand { color: var(--navy); }

.nav-link-custom {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78) !important;
  position: relative;
  padding: .25rem 0 !important;
  margin: 0 1.1rem;
  text-decoration: none;
  transition: color .3s;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link-custom:hover,
.nav-link-custom.active { color: var(--terra) !important; }
.nav-link-custom:hover::after,
.nav-link-custom.active::after { width: 100%; }
#mainNav.scrolled .nav-link-custom { color: var(--slate) !important; }
#mainNav.scrolled .nav-link-custom:hover { color: var(--terra) !important; }

/* Bootstrap toggler override */
.navbar-toggler {
  border: none !important;
  padding: .3rem !important;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.navbar-toggler-icon-custom span {
  display: block;
  width: 25px; height: 2px;
  background: rgba(255,255,255,.85);
  transition: all .3s;
}
#mainNav.scrolled .navbar-toggler-icon-custom span { background: var(--navy); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,31,53,.82) 0%,
    rgba(13,31,53,.55) 50%,
    rgba(27,94,68,.25) 100%
  );
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-content { position: relative; z-index: 2; }

.hero-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.22);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .65s .2s forwards;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .75s .4s forwards;
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .75s .6s forwards;
  font-weight: 300;
}
.hero-buttons {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .75s .8s forwards;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.hero-scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  margin: .4rem auto 0;
  animation: scrollPulse 2.2s infinite;
}

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 3.5rem 0; }
.stat-item { text-align: center; padding: 1rem; }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* ── Program Cards ───────────────────────────────────────── */
.program-card {
  background: var(--white);
  border: 1px solid var(--mist-deep);
  padding: 2.8rem 2.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s, box-shadow .4s;
  border-radius: 2px;
}
.program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.program-card:hover { transform: translateY(-9px); box-shadow: 0 24px 60px rgba(13,31,53,.10); }
.program-card:hover::after { transform: scaleX(1); }

.program-icon {
  width: 52px; height: 52px;
  background: var(--emerald-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  font-size: 1.3rem;
  color: var(--emerald);
}
.program-tag {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: .7rem;
}
.program-meta {
  font-size: .82rem;
  color: var(--slate);
  margin: 1rem 0 1.5rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-weight: 300;
}
.program-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
}
.program-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 400;
  color: var(--warm-gray);
}
.featured-badge {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: var(--terra);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
}

/* ── Split section ───────────────────────────────────────── */
.split-section { min-height: 540px; }
.split-image {
  background-image: url('../images/about.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
.split-content {
  background: var(--emerald);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h2 { color: #fff; margin-bottom: 1.2rem; font-style: italic; }
.split-content p  { color: rgba(255,255,255,.72); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .97rem;
  color: rgba(255,255,255,.85);
  font-weight: 300;
}
.check-list i { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: .8rem;
}
.gallery-item { overflow: hidden; border-radius: 2px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item--tall  { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--mist-deep);
  padding: 2.6rem;
  height: 100%;
  border-radius: 2px;
}
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--terra);
  line-height: .8;
  opacity: .28;
  margin-bottom: .8rem;
}
.testimonial-card p { font-style: italic; font-size: .97rem; line-height: 1.9; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: .9rem; margin-top: 1.8rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--mist-mid);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name  { font-weight: 500; font-size: .95rem; color: var(--navy); line-height: 1.3; }
.testimonial-role  { font-size: .78rem; color: var(--slate); font-weight: 300; }
.stars i { color: var(--terra); font-size: .85rem; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; padding-top: 60%;
  border-radius: 50%;
  background: rgba(27,94,68,.18);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -45%; right: -5%;
  width: 50%; padding-top: 50%;
  border-radius: 50%;
  background: rgba(196,83,60,.12);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; position: relative; z-index: 1; font-style: italic; }
.cta-banner p  { color: rgba(255,255,255,.65); position: relative; z-index: 1; font-weight: 300; }
.cta-banner .d-flex { position: relative; z-index: 1; }

/* ── Contact ────────────────────────────────────────────── */
.contact-icon-box {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--emerald-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald);
  font-size: 1rem;
}
.contact-label {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: .15rem;
}
.contact-value { font-size: .95rem; color: var(--slate); font-weight: 300; }

/* ── Form ───────────────────────────────────────────────── */
.form-label-custom {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .45rem;
  display: block;
}
.form-control-custom,
.form-select-custom {
  width: 100%;
  padding: .9rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--mist-deep);
  border-radius: 8px !important;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
}
.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(27,94,68,.12);
}
textarea.form-control-custom { resize: vertical; min-height: 130px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 5.5rem 0 2.5rem;
  color: rgba(255,255,255,.55);
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: .9rem;
  font-style: italic;
}
.footer-desc { font-size: .9rem; line-height: 1.8; margin-bottom: 1.8rem; font-weight: 300; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px; height: 37px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.48);
  font-size: .9rem;
  margin-right: .5rem;
  transition: all .3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
  transform: translateY(-3px);
}
.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.3rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.48);
  text-decoration: none;
  transition: color .25s, padding-left .25s;
  display: block;
}
.footer-links a:hover { color: var(--terra); padding-left: 6px; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 3rem 0 2rem; }
.footer-copy { font-size: .84rem; font-weight: 300; }
.footer-policy { list-style: none; padding: 0; display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-policy a { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.36); text-decoration: none; transition: color .25s; }
.footer-policy a:hover { color: var(--terra); }

/* ── Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--navy-mid, #1A3050);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 0;
  box-shadow: 0 -4px 40px rgba(13,31,53,.35);
  transform: translateY(110%);
  transition: transform .55s .9s cubic-bezier(.16,1,.3,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: .9rem; color: rgba(255,255,255,.68); font-weight: 300; }
.cookie-text strong { color: #fff; font-weight: 500; }
.cookie-text a { color: var(--terra); }

/* ── Success Popup ──────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10500;
  background: rgba(13,31,53,.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--white);
  padding: 3.5rem 3rem;
  max-width: 460px;
  width: 92%;
  text-align: center;
  position: relative;
  border-radius: 4px;
  transform: scale(.9) translateY(20px);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }
.popup-icon {
  width: 68px; height: 68px;
  background: var(--emerald-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem;
  font-size: 1.9rem;
  color: var(--emerald);
}
.popup-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--slate);
  font-size: 1rem;
  padding: .3rem;
  transition: color .2s;
}
.popup-close:hover { color: var(--navy); }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--emerald) 100%);
  padding: 11rem 0 5.5rem;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .8rem; font-style: italic; }
.page-hero p  { color: rgba(255,255,255,.62); max-width: 540px; margin: 0 auto; font-weight: 300; }

/* ── Team card ───────────────────────────────────────────── */
.team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--mist-mid);
  margin-bottom: 1.4rem;
  border-radius: 2px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-role {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: .6rem;
  margin-top: .3rem;
  font-weight: 500;
}

/* ── Value card ──────────────────────────────────────────── */
.value-card {
  background: var(--mist-mid);
  padding: 2.6rem;
  height: 100%;
  border-radius: 2px;
  border-left: 3px solid var(--emerald);
}
.value-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--emerald);
  opacity: .35;
  line-height: 1;
  margin-bottom: .7rem;
}

/* ── Policy page ─────────────────────────────────────────── */
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 5rem 1.5rem 7rem; }
.policy-wrap h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 .9rem;
  padding-top: .5rem;
  border-top: 1px solid var(--mist-deep);
}
.policy-wrap ul { color: var(--slate); padding-left: 1.8rem; margin-bottom: 1rem; }
.policy-wrap ul li { margin-bottom: .35rem; }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50%       { opacity: .85; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .split-content { padding: 3.5rem 2.5rem; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item--tall, .gallery-item--wide { grid-row: auto; grid-column: auto; }
}
@media (max-width: 767px) {
  html { font-size: 16px; }
  .section-py { padding: 4rem 0; }
  .cta-banner { padding: 4rem 0; }
  .split-content { padding: 3rem 1.8rem; }
  .footer-policy { justify-content: center; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner .d-flex { flex-direction: column; align-items: flex-start !important; gap: 1rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons .btn-gold, .hero-buttons .btn-outline-white { width: 100%; text-align: center; }
}
