@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #0b1f33;
  --color-primary-soft: #142c47;
  --color-accent: #c9a24a;
  --color-accent-soft: #e0be6f;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f1e8;
  --color-ink: #0b1f33;
  --color-ink-soft: #405268;
  --color-line: rgba(11, 31, 51, 0.14);
  --color-overlay: rgba(11, 31, 51, 0.62);
  --shadow-soft: 0 18px 48px rgba(11, 31, 51, 0.12);
  --shadow-strong: 0 28px 70px rgba(11, 31, 51, 0.24);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-ink);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }

p {
  color: var(--color-ink-soft);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--color-accent-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section--tight { padding: 4rem 0; }
.section--surface { background: var(--color-surface-alt); }
.section--dark {
  background: var(--color-primary);
  color: #f4f1ea;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p { color: #f4f1ea; }

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero__title { color: #fff; }
.hero__sub { color: rgba(255, 255, 255, 0.88); max-width: 640px; }

.hero__frame {
  border-left: 2px solid var(--color-accent);
  padding-left: 1.6rem;
}

.btn {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.btn-gold:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent-soft);
  color: var(--color-primary);
}

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

.btn-light {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-light:hover { background: var(--color-accent); border-color: var(--color-accent); }

.card-luxe {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
}

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

.card-luxe__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-luxe__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.card-luxe:hover .card-luxe__media img { transform: scale(1.06); }

.card-luxe__body { padding: 1.7rem; }

.tag-18 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #b3282e;
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}

.disclaimer-bar {
  background: var(--color-primary-soft);
  color: #f4f1ea;
  font-size: 0.86rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.disclaimer-bar strong { color: var(--color-accent); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 1rem 0;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  background: rgba(11, 31, 51, 0.55);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  background: rgba(11, 31, 51, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem 0;
}

.site-header__contact {
  display: flex;
  gap: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  align-items: center;
}
.site-header__contact i { color: var(--color-accent); margin-right: 0.4rem; }

.nav-menu {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 4px;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--color-accent);
  transition: width 0.35s var(--ease);
}

.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: #fff; }

.hamburger {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.hamburger:hover { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--color-primary);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  z-index: 1060;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.mobile-drawer a:hover { color: var(--color-accent); padding-left: 0.5rem; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 22, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease);
  z-index: 1055;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.stat-block {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-block__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--color-accent);
  font-weight: 600;
  display: block;
  line-height: 1;
}
.stat-block__label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-top: 0.6rem;
  display: block;
}
.section--dark .stat-block__label { color: rgba(255, 255, 255, 0.75); }

.feature-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  height: 100%;
  transition: transform 0.35s var(--ease);
}
.feature-item:hover { transform: translateY(-5px); }
.feature-item__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.feature-item h3 { font-size: 1.15rem; margin: 0 0 0.35rem; }
.feature-item p { margin: 0; font-size: 0.93rem; }

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
}
.testimonial__quote { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-ink); font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.4rem; }
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--color-surface-alt);
}
.testimonial__meta { font-size: 0.82rem; color: var(--color-ink-soft); }
.testimonial__stars i { color: var(--color-accent); font-size: 0.85rem; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(4, 12, 22, 0.85));
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.process-step {
  position: relative;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  height: 100%;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.process-step p { margin: 0; font-size: 0.92rem; }

.faq-accordion .accordion-item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.9rem;
  overflow: hidden;
  background: var(--color-surface);
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-ink);
  background: var(--color-surface);
  padding: 1.2rem 1.4rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background: var(--color-surface-alt);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--color-line); }
.faq-accordion .accordion-button::after { filter: hue-rotate(180deg) saturate(0.6); }
.faq-accordion .accordion-body { color: var(--color-ink-soft); font-size: 0.95rem; padding: 0 1.4rem 1.4rem; }

.contact-form .form-control,
.contact-form .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  background: var(--color-surface);
  color: var(--color-ink);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 74, 0.22);
}
.contact-form label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: 0.4rem;
}

.form-notice {
  display: none;
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(45, 138, 76, 0.12);
  border: 1px solid rgba(45, 138, 76, 0.35);
  color: #1f6b3c;
  font-size: 0.94rem;
}
.form-notice.is-visible { display: block; }
.form-notice.is-error {
  background: rgba(179, 40, 46, 0.1);
  border-color: rgba(179, 40, 46, 0.32);
  color: #8c1f24;
}

.map-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.price-card--featured {
  background: var(--color-primary);
  color: #f4f1ea;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-strong);
}
.price-card--featured h3,
.price-card--featured p,
.price-card--featured .price-card__amount { color: #f4f1ea; }
.price-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent);
  font-weight: 600;
  line-height: 1;
}
.price-card ul { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.price-card ul li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: 0.94rem;
}
.price-card--featured ul li { border-color: rgba(255, 255, 255, 0.15); }
.price-card ul li i { color: var(--color-accent); margin-right: 0.5rem; }

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--color-line);
}
.timeline__item { position: relative; padding-bottom: 2.4rem; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -2.65rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(201, 162, 74, 0.2);
}
.timeline__year { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-accent); }
.timeline__item h3 { font-size: 1.15rem; margin: 0.3rem 0 0.5rem; }

.team-card {
  text-align: center;
  padding: 1.5rem;
}
.team-card__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.1rem;
  border: 3px solid var(--color-accent);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.team-card span { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-accent); }

.cta-band {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 640px; margin: 0 auto 1.8rem; }

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.35s var(--ease), opacity 0.35s var(--ease);
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; }
.partner-logo img { max-height: 55px; max-width: 100%; }

.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.82);
  padding: 5rem 0 2rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 0.35rem 0; font-size: 0.92rem; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.legal-content {
  padding: 8rem 0 5rem;
}
.legal-content h1 { margin-bottom: 1.6rem; }
.legal-content h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.legal-content p, .legal-content li { color: var(--color-ink-soft); font-size: 0.98rem; }

.badge-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.badge-bar .tag-18,
.badge-bar .badge-soft { font-size: 0.72rem; }
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: #f4f1ea;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-slider {
  position: relative;
}
.hero-slider .carousel-item {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}
.hero-slider .carousel-indicators .active { opacity: 1; }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  filter: brightness(2);
}

.event-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  align-items: center;
  transition: transform 0.35s var(--ease);
}
.event-card:hover { transform: translateX(6px); }
.event-card__date {
  flex: 0 0 82px;
  text-align: center;
  border-right: 1px solid var(--color-line);
  padding-right: 1.2rem;
}
.event-card__date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  line-height: 1;
}
.event-card__date span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}
.event-card h3 { font-size: 1.15rem; margin: 0 0 0.3rem; }
.event-card p { margin: 0; font-size: 0.9rem; }

.pill-nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.pill-nav button {
  background: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-ink-soft);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.pill-nav button.is-active,
.pill-nav button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-masonry > * {
  break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1080;
  background: var(--color-primary);
  color: #f4f1ea;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-strong);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); max-width: 720px; }
.cookie-banner__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 0.7rem 1.4rem; font-size: 0.78rem; }

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.newsletter-form .form-control {
  flex: 1 1 240px;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.newsletter-form .form-control::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: none;
}

.blog-article__meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: 1.2rem;
}
.blog-article__meta i { color: var(--color-accent); margin-right: 0.4rem; }

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1030;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.back-to-top.is-visible { display: inline-flex; }
.back-to-top:hover { background: var(--color-accent-soft); transform: translateY(-4px); }

.divider-gold {
  width: 70px;
  height: 2px;
  background: var(--color-accent);
  margin: 1.4rem auto;
}
.divider-gold--left { margin-left: 0; }

@media (max-width: 991.98px) {
  .nav-menu { display: none; }
  .site-header__contact { display: none; }
  .section { padding: 4.5rem 0; }
  .gallery-masonry { columns: 2; }
  .hero-slider .carousel-item { min-height: 78vh; }
}

@media (max-width: 575.98px) {
  .gallery-masonry { columns: 1; }
  .event-card { flex-direction: column; text-align: center; }
  .event-card__date { border-right: none; border-bottom: 1px solid var(--color-line); padding: 0 0 1rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
/* ===== QA fixes: header overlap + contrast ===== */

/* Darken fixed header so white contact text keeps contrast (was rgba .55 -> light grey) */
.site-header { background: rgba(11, 31, 51, 0.78); }
.site-header.is-scrolled { background: rgba(11, 31, 51, 0.97); }

/* Explicit dark base colours so light text over image/gradient backgrounds has contrast */
.hero { background-color: #0b1f33; }
.cta-band { background-color: #0b1f33; }

/* Eyebrows on light surfaces need a darker gold to reach 4.5:1; keep brand gold on dark surfaces */
.eyebrow { color: #8a6d1f; }
.hero .eyebrow,
.cta-band .eyebrow,
.section--dark .eyebrow { color: var(--color-accent); }

/* Gold links inside light cards (Seguir leyendo) -> darker gold for contrast */
.card-luxe a { color: #8a6d1f; }
.card-luxe a:hover { color: #6b5418; }

/* Footer paragraphs: fix dark text on dark footer background */
.site-footer p { color: rgba(255, 255, 255, 0.78); }

/* Push page content below the fixed header on mobile so the hero is not overlapped */
@media (max-width: 991.98px) {
  body { padding-top: 112px; }
}

/* ===== QA fixes: contrast + mobile fixed-header overlap ===== */

/* Give image-backed sections a solid dark background-color so text
   keeps its contrast even when the background image is ignored/failed. */
.hero { background-color: var(--color-primary); }
.cta-band { background-color: var(--color-primary); }

/* Push hero content clear of the fixed header */
.hero { padding-top: 6rem; }

/* Eyebrow text: darker gold on light surfaces, light gold on dark surfaces */
.eyebrow { color: #7f6116; }
.hero .eyebrow,
.cta-band .eyebrow,
.section--dark .eyebrow,
.disclaimer-bar .eyebrow { color: var(--color-accent-soft); }

/* Slightly more opaque header so its translucent tint stays legible
   when it sits over light imagery; force white contact text. */
.site-header { background: rgba(11, 31, 51, 0.82); }
.site-header__contact { color: #ffffff; }

/* Footer body copy was inheriting the light-surface paragraph colour */
.site-footer p { color: rgba(255, 255, 255, 0.82); }

@media (max-width: 991.98px) {
  .hero { padding-top: 7rem; }
}

/* ===== Contrast & mobile header-overlap overrides (appended) ===== */

/* Give image-backed hero / CTA bands a solid dark base so text has a
   determinable high-contrast background. */
.hero,
.cta-band {
  background-color: var(--color-primary);
}

/* Make the fixed header opaque enough that white contact text and
   navigation keep sufficient contrast over any page background. */
.site-header { background-color: rgba(11, 31, 51, 0.92); }
.site-header.is-scrolled { background-color: rgba(11, 31, 51, 0.97); }
.site-header__contact { color: rgba(255, 255, 255, 0.95); }

/* Gallery captions sit on top of the image; give the tile a dark base so
   the caption text always has a determinable background. */
.gallery-item { background-color: #0b1f33; }

/* Darker gold for accent-coloured TEXT places on light backgrounds so the
   WCAG contrast ratio is met (white / #f5f1e8 surfaces). */
.eyebrow,
.stat-block__num,
.timeline__year,
.process-step__num,
.event-card__date strong,
.team-card span,
.faq-accordion a {
  color: #856218;
}

/* Restore the original light gold where the background is dark, so the
   accent stays legible on navy sections, the hero, CTA bands and footer. */
.hero .eyebrow,
.cta-band .eyebrow,
.disclaimer-bar .eyebrow,
.section--dark .eyebrow,
.section--dark .stat-block__num,
.section--dark .timeline__year,
.section--dark .process-step__num,
.site-footer .eyebrow {
  color: var(--color-accent);
}

/* White cards living inside dark sections keep the dark-on-light gold. */
.section--dark .card-luxe .eyebrow,
.section--dark .price-card .eyebrow,
.section--dark .faq-accordion .eyebrow {
  color: #856218;
}

/* Offset the hero below the fixed header on mobile viewports. */
@media (max-width: 991.98px) {
  .hero { padding-top: 7rem; }
}

/* Header navigation links must be light on the dark header */
.site-header .nav-link { color: rgba(255, 255, 255, 0.92); }
.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link:active { color: #ffffff; }
.site-header .navbar-toggler { color: #fff; }

/* Mobile: keep content clear of the fixed header */
@media (max-width: 991.98px) {
  body { padding-top: 112px; }
  main { padding-top: 112px; }
}

/* ===== Final QA overrides: mobile header offset + gold-on-light contrast ===== */

/* --- Mobile: guarantee hero top border-box sits below the fixed header --- */
@media (max-width: 991.98px) {
  body { padding-top: 0; }
  main { padding-top: 0; }
  main > .hero,
  main .hero { margin-top: 102px; }
}

/* --- Darker gold for accent-coloured TEXT sitting on white/light cards ---
   (#c9a24a only reaches ~2.4:1 on white; #7a5c12 reaches ~6.2:1) */
.hero .card-luxe .eyebrow,
.cta-band .card-luxe .eyebrow,
.cta-band .card-luxe .eyebrow,
.price-card .eyebrow {
  color: #7a5c12;
}

/* Price amounts on light cards (featured card keeps its light value on navy) */
.price-card:not(.price-card--featured) .price-card__amount {
  color: #7a5c12;
}

/* Outline-gold buttons rendered on light card backgrounds */
.price-card:not(.price-card--featured) .btn-outline-gold {
  color: #7a5c12;
  border-color: #7a5c12;
}
.price-card:not(.price-card--featured) .btn-outline-gold:hover {
  background: #7a5c12;
  border-color: #7a5c12;
  color: #ffffff;
}

/* Any eyebrow inside a white/light card-luxe regardless of host section */
.card-luxe .eyebrow { color: #7a5c12; }
.hero .card-luxe .eyebrow,
.cta-band .card-luxe .eyebrow { color: #7a5c12; }

/* ===== QA fixes (contacts page): header overlap + remaining contrast ===== */

/* The fixed header overlapped the hero at desktop width too (only the
   mobile media query was offsetting content). Push the page content below
   the fixed header at every viewport. */
body { padding-top: 112px; }

/* Paragraphs inside the white cards that live in dark sections were keeping
   the light-on-dark colour (#f4f1ea on white -> 1.13:1). Force dark ink. */
.section--dark .card-luxe p,
.section--dark .card-luxe .card-luxe__body p {
  color: var(--color-ink-soft);
}

/* Links inside the light .feature-item boxes (e.g. "Política de Privacidad"
   in the privacy card) used the brand gold (#c9a24a on white -> 2.4:1).
   Use the darkened gold that meets WCAG AA on light surfaces. */
.feature-item a { color: #856218; }
.feature-item a:hover,
.feature-item a:focus { color: #6b5418; }

/* ===== Final QA pass: real selectors for hero, dark image sections, cards ===== */

/* The homepage hero is .hero-slider (NOT .hero), so earlier overrides never
   applied. Give the slider + its slides a solid dark base so the white headline,
   sub-copy and gold outline buttons always have a determinable high-contrast bg. */
.hero-slider,
.hero-slider .carousel-item {
  background-color: #0b1f33;
}

/* Image-backed dark section (gastronomy highlight) also needs a solid dark base
   so its white/gold text keeps contrast when the background image is ignored. */
.section[data-photo-slug],
.section[style*="background-image"] {
  background-color: #0b1f33;
}

/* White cards living inside dark sections were inheriting the light
   .section--dark paragraph colour -> light text on a white card. Reset it. */
.section--dark .card-luxe p,
.section--dark .card-luxe li {
  color: var(--color-ink-soft);
}
.section--dark .card-luxe h2,
.section--dark .card-luxe h3,
.section--dark .card-luxe h4 {
  color: var(--color-ink);
}

/* Gold price amounts sit on white cards and are large text: use a darker gold
   to clear the 3:1 large-text ratio. The featured (dark) card stays light. */
.price-card__amount { color: #856218; }
.price-card--featured .price-card__amount { color: #f4f1ea; }

/* Guarantee page content clears the fixed header on mobile / tablet. */
@media (max-width: 991.98px) {
  #page-root { margin-top: 112px; }
}
