/* ==========================================================================
   AHANSA Life Foundation — Editorial Design System
   White · Black · Golden CTAs
   ========================================================================== */

:root {
  /* Palette — white background, black text, gold accent/CTA */
  --cream: #ffffff;
  --ivory: #ffffff;
  --parchment: #f5f5f5;
  --espresso: #000000;
  --charcoal: #111111;
  --muted: #555555;
  --dusty-rose: #c5a046; /* gold used for accents + CTAs */
  --dusty-rose-dark: #a8862f;
  --dusty-rose-soft: rgba(197, 160, 70, 0.12);
  --gold: #c5a046;
  --gold-dark: #a8862f;
  --gold-soft: rgba(197, 160, 70, 0.28);
  --white: #ffffff;
  --black: #000000;
  --error: #9b3b3b;
  --success: #2f5d3a;

  /* Typography */
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Layout */
  --container: 72rem;
  --container-narrow: 42rem;
  --header-h: 5rem;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.08);

  /* Image grade — neutral, clean */
  --img-filter: saturate(0.95) contrast(1.02) brightness(1);
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: var(--img-filter);
}

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

a:hover {
  color: var(--gold);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* Focus — WCAG visible */
:focus-visible {
  outline: 2px solid var(--dusty-rose);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  background: var(--espresso);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.35rem;
}

p {
  max-width: 65ch;
}

p + p {
  margin-top: 1.25rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: var(--space-sm);
}

/* Decorative motif — thin gold rule + monogram */
.motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--space-md) 0;
}

.motif::before,
.motif::after {
  content: "";
  flex: 1;
  max-width: 5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.motif-mark {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: italic;
}

.motif--left {
  justify-content: flex-start;
}

.motif--left::before {
  display: none;
}

.motif--left::after {
  max-width: 4rem;
}

/* Layout helpers */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--container-narrow));
  margin-inline: auto;
}

.section {
  padding: var(--space-xl) 0;
}

.section--tight {
  padding: var(--space-lg) 0;
}

.section--cream {
  background: var(--white);
}

.section--parchment {
  background: var(--parchment);
}

.section--espresso {
  background: var(--black);
  color: var(--white);
}

.section--espresso h2,
.section--espresso h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-lg);
}

.section-header p {
  margin: var(--space-sm) auto 0;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  color: inherit;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

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

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

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

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--outline-light:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-dark);
  border-color: transparent;
  padding-inline: 0;
  letter-spacing: 0.14em;
  position: relative;
}

.btn--ghost::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.65rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.btn--ghost:hover::after {
  width: 100%;
}

/* Link underline grow */
.link-underline {
  position: relative;
  display: inline;
  background-image: linear-gradient(var(--dusty-rose), var(--dusty-rose));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.4s var(--ease);
}

.link-underline:hover {
  background-size: 100% 1px;
  color: var(--dusty-rose);
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

/* Transparent only when over a dark hero */
.site-header.site-header--light:not(.is-scrolled) {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  width: min(100% - 1.25rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

/* Logo — image + wordmark */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--black);
  line-height: 1.15;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
  flex-shrink: 0;
  min-height: 44px;
  text-decoration: none;
}

.logo:hover {
  color: var(--gold);
  opacity: 1;
}

.logo-img {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: none !important;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

/* Fallback text mark if image missing */
.logo-mark {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--black);
  background: transparent;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: inherit;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-top: 0.12rem;
  color: inherit;
}

.site-header--light:not(.is-scrolled) .logo,
.site-header--light:not(.is-scrolled) .logo-name,
.site-header--light:not(.is-scrolled) .logo-sub {
  color: var(--white);
}

.site-header.is-scrolled .logo,
.site-header.is-solid .logo,
.site-header:not(.site-header--light) .logo {
  color: var(--black);
}

.logo--footer {
  color: var(--white);
  margin-bottom: 1rem;
}

.logo--footer .logo-img {
  width: 2.85rem;
  height: 2.85rem;
}

.logo--footer:hover {
  color: var(--gold);
}

.nav-list {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  position: relative;
  padding: 0.65rem 0.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-header--light:not(.is-scrolled) .nav-link {
  color: var(--ivory);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.4rem;
  width: auto;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--gold);
}

.site-header--light:not(.is-scrolled) .nav-link:hover {
  color: var(--gold);
}

.nav-cta {
  display: none;
  padding: 0.75rem 1.15rem;
  font-size: 0.68rem;
  min-height: 44px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1002;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.site-header--light:not(.is-scrolled) .nav-toggle span {
  background: var(--ivory);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.is-solid .nav-toggle span {
  background: var(--espresso);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav panel */
.nav-panel {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 20rem;
}

.nav-panel .nav-link {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 6vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--espresso);
  min-height: 48px;
  justify-content: center;
  width: 100%;
}

.nav-panel .nav-link::after {
  display: none;
}

.nav-panel-cta {
  margin-top: 1.25rem;
  width: 100%;
  min-height: 48px;
}

.nav-panel-meta {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (min-width: 960px) {
  .nav-list {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: none !important;
  }
}

/* Mobile-first offer strip (homepage) */
.offer-strip {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding: 0 0 var(--space-md);
}

.offer-strip__card {
  width: min(100% - 1.25rem, var(--container));
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.15rem 1.5rem;
}

@media (min-width: 640px) {
  .offer-strip {
    margin-top: -4.5rem;
  }

  .offer-strip__card {
    padding: 1.75rem 2rem 2rem;
  }
}

.offer-strip__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

@media (min-width: 700px) {
  .offer-strip__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.offer-strip__head h2 {
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  margin: 0.25rem 0 0;
}

.offer-price {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.offer-price strong {
  color: var(--espresso);
  font-weight: 500;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 700px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1000px) {
  .offer-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.offer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 72px;
  padding: 0.85rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.25;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    transform 0.3s var(--ease), color 0.3s var(--ease);
}

.offer-item:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 70, 0.12);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.offer-item:hover small {
  color: var(--gold-dark);
}

.offer-item small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .offer-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.offer-actions .btn {
  min-height: 48px;
  width: 100%;
}

@media (min-width: 480px) {
  .offer-actions .btn {
    width: auto;
  }
}

/* Package inclusions */
.inclusion-box {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(197, 160, 70, 0.4);
  background: #fafafa;
}

.inclusion-box h3 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.75rem;
}

.inclusion-box ul {
  list-style: none;
  margin: 0;
}

.inclusion-box li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.inclusion-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 1px;
  background: var(--gold);
}

.inclusion-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.85rem;
  font-style: italic;
}

.addons-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-review-flag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  border: 1px solid var(--dusty-rose-soft);
  background: var(--dusty-rose-soft);
  padding: 0.25rem 0.55rem;
  margin-bottom: 0.75rem;
}

/* Mobile-first base tweaks */
@media (max-width: 479px) {
  :root {
    --space-xl: 3.5rem;
    --space-lg: 2.25rem;
    --header-h: 4.25rem;
  }

  body {
    font-size: 1rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero {
    min-height: 88vh;
    min-height: 88dvh;
  }

  .hero__content {
    padding-bottom: 5.5rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }

  .btn {
    min-height: 48px;
    padding: 0.9rem 1.35rem;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}

.hero--page {
  min-height: 52vh;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__media .hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform;
}

.hero-crossfade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s var(--ease);
  filter: var(--img-filter);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 13, 11, 0.72) 0%,
    rgba(15, 13, 11, 0.28) 45%,
    rgba(15, 13, 11, 0.2) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
}

.hero--page .hero__content {
  padding-bottom: 3.5rem;
  text-align: center;
}

.hero h1 {
  color: var(--ivory);
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

.hero--page h1 {
  max-width: none;
  margin-inline: auto;
}

.hero__sub {
  font-size: 1.1rem;
  max-width: 32rem;
  color: rgba(251, 247, 242, 0.88);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero--page .hero__sub {
  margin-inline: auto;
}

/* ========== Cards & grids ========== */
.grid-2 {
  display: grid;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
}

/* ========== Pictograms & icons ========== */
.icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-block;
  flex-shrink: 0;
  color: currentColor;
  vertical-align: middle;
  overflow: visible;
}

.icon use {
  pointer-events: none;
}

.icon--sm {
  width: 1.1rem;
  height: 1.1rem;
}

.icon--md {
  width: 1.75rem;
  height: 1.75rem;
}

.icon--lg {
  width: 2.25rem;
  height: 2.25rem;
}

.icon--xl {
  width: 2.75rem;
  height: 2.75rem;
}

.icon--gold {
  color: var(--gold);
}

.icon--black {
  color: var(--black);
}

.icon--white {
  color: var(--white);
}

.picto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(197, 160, 70, 0.55);
  border-radius: 50%;
  color: var(--gold);
  background: transparent;
  flex-shrink: 0;
}

.picto .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.picto--sq {
  border-radius: 2px;
}

.picto--solid {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}

.picto--soft {
  background: rgba(197, 160, 70, 0.1);
  border-color: transparent;
  color: var(--gold-dark);
}

.feature-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 160, 70, 0.55);
  border-radius: 50%;
  color: var(--gold);
}

.feature-icon .icon,
.feature-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  fill: none;
}

.point-card .picto {
  margin-bottom: 1rem;
}

.point-card--icon {
  text-align: left;
}

.offer-item {
  gap: 0.35rem;
}

.offer-item .picto {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.35rem;
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--gold-dark);
}

.offer-item .picto .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.offer-item:hover .picto {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.step .picto {
  margin: 0 auto 1rem;
}

.credentials span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.credentials .icon {
  color: var(--gold);
  width: 1rem;
  height: 1rem;
}

.info-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.info-label .icon {
  color: var(--gold);
  width: 1rem;
  height: 1rem;
}

.inclusion-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding-left: 0;
}

.inclusion-box li::before {
  display: none;
}

.inclusion-box li .icon {
  color: var(--gold);
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.quote-block .picto {
  margin: 0 auto 1.25rem;
  border: none;
  color: var(--gold);
}

.btn .icon {
  width: 1rem;
  height: 1rem;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 1rem;
}

.icon-row__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.icon-row__item .icon {
  color: var(--gold);
  width: 1rem;
  height: 1rem;
}

.hero .icon-row__item {
  color: rgba(255, 255, 255, 0.78);
}

.hero .icon-row__item .icon {
  color: var(--gold);
}

.feature-card:hover .feature-icon {
  border-color: var(--gold);
  background: rgba(197, 160, 70, 0.1);
  color: var(--gold);
}

.feature-card:hover h3 {
  color: var(--gold-dark);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s var(--ease);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-inline: auto;
}

.point-card {
  background: var(--white);
  padding: var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.point-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}

.point-card:hover .picto {
  border-color: var(--gold);
  color: var(--gold);
}

.point-card:hover h3 {
  color: var(--gold-dark);
}

.point-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.point-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Ceremony cards */
.ceremony-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--ivory);
}

.ceremony-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.ceremony-card:hover img {
  transform: scale(1.03);
}

.ceremony-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 13, 11, 0.75) 0%,
    rgba(15, 13, 11, 0.1) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.ceremony-card h3 {
  color: var(--ivory);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.ceremony-card p {
  font-size: 0.85rem;
  color: rgba(251, 247, 242, 0.8);
}

/* Split / about teaser */
.split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .split--reverse .split__media {
    order: 2;
  }

  .split--reverse .split__content {
    order: 1;
  }
}

.split__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split:hover .split__media img {
  transform: scale(1.025);
}

.split__content .eyebrow {
  margin-bottom: 1rem;
}

.split__content h2 {
  margin-bottom: 1.25rem;
}

.split__content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Service alternating blocks */
.service-block {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.service-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .service-block {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .service-block--flip .service-block__media {
    order: 2;
  }
}

.service-block__media {
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.service-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-block:hover .service-block__media img {
  transform: scale(1.03);
}

.service-block__content h2 {
  margin-bottom: 1rem;
}

.service-block__content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Welcome note */
.welcome-note {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

.welcome-note p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-inline: auto;
  font-style: italic;
}

.welcome-note .sign-off {
  margin-top: 1.75rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: normal;
  color: var(--espresso);
}

.welcome-note .sign-off span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
  font-style: normal;
}

/* Quote */
.quote-block {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--espresso);
}

.quote-block cite {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Invitation banner */
.invite-banner {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
}

.invite-banner__media {
  position: absolute;
  inset: 0;
}

.invite-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invite-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 11, 0.5);
}

.invite-banner__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) 1.5rem;
}

.invite-banner h2 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
  max-width: 16ch;
  margin-inline: auto;
}

/* Steps */
.steps {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.step {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.65rem;
  letter-spacing: 0.05em;
}

.step .picto {
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-inline: auto;
}

/* Pricing */
.pricing-invite {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: var(--space-lg);
  border: 1px solid rgba(197, 160, 70, 0.45);
  background: var(--white);
}

.pricing-invite .price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--espresso);
  margin: 1rem 0;
}

.pricing-invite p {
  color: var(--muted);
  margin-inline: auto;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 700px) {
  .gallery-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-strip a,
.gallery-strip figure {
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  cursor: pointer;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-strip a:hover img,
.gallery-strip figure:hover img {
  transform: scale(1.04);
}

/* FAQ accordion */
.accordion {
  max-width: 44rem;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(196, 168, 130, 0.4);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--espresso);
}

.accordion-trigger:hover {
  color: var(--gold);
}

.accordion-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--dusty-rose);
  transition: transform 0.35s var(--ease);
}

.accordion-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.accordion-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: scaleY(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.accordion-panel.is-open {
  grid-template-rows: 1fr;
}

.accordion-panel-inner {
  overflow: hidden;
}

.accordion-panel p {
  padding: 0 0 1.5rem;
  color: var(--muted);
}

/* Blog */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.blog-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--gold-soft);
}

.blog-tab {
  background: none;
  border: none;
  padding: 1rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease);
}

.blog-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--dusty-rose);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.blog-tab[aria-selected="true"] {
  color: var(--espresso);
}

.blog-tab[aria-selected="true"]::after {
  transform: scaleX(1);
}

.tag-chip {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(122, 111, 101, 0.3);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: 100px;
}

.tag-chip:hover,
.tag-chip.is-active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--dusty-rose-soft);
}

.blog-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  color: inherit;
  border-color: var(--gold);
}

.blog-card:hover h3 {
  color: var(--gold-dark);
}

.blog-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.03);
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card__byline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--gold-soft);
  padding-top: 1rem;
  margin-top: auto;
}

.blog-card.is-hidden,
.featured-story.is-hidden {
  display: none;
}

/* Featured story */
.featured-story {
  display: grid;
  gap: 0;
  margin-bottom: var(--space-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 900px) {
  .featured-story {
    grid-template-columns: 1.2fr 1fr;
  }
}

.featured-story__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

@media (min-width: 900px) {
  .featured-story__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.featured-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.featured-story:hover .featured-story__media img {
  transform: scale(1.03);
}

.featured-story__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-story__body h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.featured-story__body p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Blog post page */
.post-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: var(--space-lg);
  text-align: center;
}

.post-hero .container--narrow {
  width: min(100% - 2.5rem, 48rem);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.25rem;
}

.post-meta .author {
  color: var(--dusty-rose);
}

.post-featured-img {
  width: min(100% - 2.5rem, 56rem);
  margin: 0 auto var(--space-lg);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  width: min(100% - 2.5rem, var(--container-narrow));
  margin: 0 auto var(--space-xl);
}

.post-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}

.post-content h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.post-content p,
.post-content li {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
  margin: 0 0 1.5rem 1.25rem;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--espresso);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.post-content a {
  color: var(--dusty-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-posts {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--parchment);
}

/* Contact */
.contact-layout {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
  }
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(122, 111, 101, 0.3);
  background: var(--white);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: var(--error);
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.4rem;
}

.form-group.is-invalid .form-error {
  display: block;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  display: none;
}

.form-status.is-success {
  display: block;
  color: var(--success);
}

.form-status.is-error {
  display: block;
  color: var(--error);
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p,
.contact-info a {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-info .info-block {
  margin-bottom: 1.75rem;
}

.contact-info .info-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-info .social-links a {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--black);
}

.contact-info .social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.map-embed {
  margin-top: var(--space-lg);
  border: 0;
  width: 100%;
  height: 320px;
  filter: grayscale(0.3) contrast(0.95) saturate(0.85);
}

/* Legal pages */
.legal-content {
  width: min(100% - 2.5rem, 46rem);
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 var(--space-xl);
}

.legal-content h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-content .updated {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  margin: 0 0 1.25rem 1.25rem;
}

.legal-content a {
  color: var(--dusty-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 404 */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
}

.page-404 h1 {
  margin-bottom: 1rem;
}

.page-404 p {
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 32ch;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand .logo {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.65rem;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  max-width: none;
}

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 70, 0.25);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--black);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 720px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.68rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(15, 13, 11, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  filter: none;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(251, 247, 242, 0.4);
  background: transparent;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: var(--ivory);
}

/* Credentials line */
.credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

.credentials span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-0 {
  margin-bottom: 0;
}

/* Main offset for solid header pages */
.page-main {
  min-height: 60vh;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================================
   WordPress menu + CMS compatibility
   ========================================================================== */
.nav-list .menu-item,
.nav-panel .menu-item {
  list-style: none;
}
.nav-panel .menu-item a,
.nav-panel > .menu-item > a {
  display: block;
}
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a,
.nav-panel .current-menu-item > a {
  color: var(--gold);
}
.footer-col .menu,
.footer-legal .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col .menu-item,
.footer-legal .menu-item {
  display: block;
  list-style: none;
}
.footer-col .menu-item a,
.footer-legal .menu-item a {
  display: block;
}
.entry-content > *:first-child { margin-top: 0; }
.page-main--legal .legal-content {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: var(--space-xl) var(--space-sm);
}
.wp-block-image { margin: 1.5rem 0; }
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 0.875rem;
}
.page-numbers.current {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}
.blog-card.is-hidden,
.featured-story.is-hidden {
  display: none !important;
}
.mt-lg { margin-top: var(--space-lg); }
.text-center { text-align: center; }

.nav-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.nav-panel-list .menu-item {
  display: block;
}
.nav-panel-list .menu-item a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.35rem;
  font-family: var(--font-serif);
}
.footer-menu,
.footer-legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu .menu-item a,
.footer-legal-menu .menu-item a {
  display: block;
}
.footer-legal .footer-legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer-legal .footer-legal-menu .menu-item a {
  display: inline;
}
