/* =========================================================
   Apartmány v Bulharsku — design system
   ========================================================= */

:root {
  --navy-950: #081720;
  --navy-900: #0b2430;
  --navy-800: #123244;
  --navy-700: #1a4256;
  --gold-500: #c9a668;
  --gold-400: #d9bc86;
  --gold-100: #f2e8d5;
  --teal-600: #2c6663;
  --cream-50: #faf7f1;
  --cream-100: #f3ecdf;
  --ink-900: #16232a;
  --ink-700: #3a474d;
  --ink-500: #647178;
  --white: #ffffff;

  --font-serif: ui-serif, Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -20px rgba(8, 23, 32, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(8, 23, 32, 0.25);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--navy-950); }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 780px) {
  .container { padding-inline: 32px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: .9em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
h2.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.section-sub { color: var(--ink-500); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-gold:hover { background: var(--gold-400); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-dark {
  background: transparent;
  border-color: rgba(11,36,48,.25);
  color: var(--navy-950);
}
.btn-outline-dark:hover { border-color: var(--navy-950); background: rgba(11,36,48,.06); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-header.is-scrolled {
  background: rgba(8, 23, 32, .92);
  backdrop-filter: saturate(140%) blur(10px);
  padding: 12px 0;
  box-shadow: 0 6px 24px -12px rgba(0,0,0,.4);
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--white); }
.brand .mark { width: 34px; height: 34px; color: var(--gold-500); flex-shrink: 0; }
.brand .word { font-family: var(--font-serif); font-size: 1.18rem; letter-spacing: .01em; line-height: 1.1; }
.brand .word small { display: block; font-family: var(--font-sans); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-400); margin-top: 3px; }

.nav-desktop { display: none; }
@media (min-width: 960px) {
  .nav-desktop { display: flex; align-items: center; gap: 34px; }
  .nav-desktop a {
    color: rgba(255,255,255,.88);
    font-size: .92rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
  }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
    background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
  }
  .nav-desktop a:hover::after { transform: scaleX(1); }
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.75); }
.lang-switch a { padding: 3px 7px; border-radius: 5px; letter-spacing: .04em; }
.lang-switch a.is-active { color: var(--navy-950); background: var(--gold-500); }
.lang-switch span { opacity: .4; }
.header-phone { display: none; }
@media (min-width: 640px) {
  .header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; font-size: .92rem; }
  .header-phone svg { width: 17px; height: 17px; color: var(--gold-500); }
}
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25); color: var(--white);
}
.nav-toggle svg { width: 18px; height: 18px; }
@media (min-width: 960px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy-950);
  display: flex; flex-direction: column;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { color: var(--white); font-family: var(--font-serif); font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav .header-phone { display: inline-flex; margin-top: 24px; color: var(--gold-400); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,12,18,.82) 0%, rgba(4,12,18,.62) 38%, rgba(4,12,18,.28) 62%, rgba(4,12,18,.12) 82%),
    linear-gradient(180deg, rgba(6,17,24,.6) 0%, rgba(6,17,24,.42) 30%, rgba(6,17,24,.55) 60%, rgba(6,17,24,.95) 100%);
}

.hero-inner { position: relative; z-index: 1; }
.hero-tag, .hero h1, .hero p.lead { text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.hero-inner { padding-bottom: 90px; padding-top: 190px; width: 100%; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-400); margin-bottom: 22px;
}
.hero-tag::before { content: ""; width: 34px; height: 1px; background: var(--gold-400); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 6vw, 4.1rem);
  max-width: 15ch;
  margin-bottom: .3em;
}
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero p.lead { max-width: 46ch; color: rgba(255,255,255,.82); font-size: 1.12rem; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-scroll {
  display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.65);
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.9), transparent); animation: scrolldown 2s infinite; }
@keyframes scrolldown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 26px; max-width: 640px;
}
.hero-stats div { padding-right: 14px; }
.hero-stats strong { display: block; font-family: var(--font-serif); font-size: clamp(1.4rem,2.6vw,1.9rem); color: var(--gold-400); }
.hero-stats span { font-size: .78rem; color: rgba(255,255,255,.72); }

/* ---------- Intro ---------- */
.intro { background: var(--white); }
.intro-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .intro-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; } }
.intro-copy p { color: var(--ink-700); font-size: 1.05rem; }
.intro-locations { display: grid; gap: 16px; margin-top: 28px; }
.location-pill {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: var(--radius-md);
  background: var(--cream-100); border: 1px solid rgba(11,36,48,.06);
}
.location-pill .pin {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-950); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
}
.location-pill .pin svg { width: 20px; height: 20px; }
.location-pill strong { display: block; font-size: .98rem; color: var(--navy-950); }
.location-pill span { font-size: .85rem; color: var(--ink-500); }

.intro-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/5; max-height: 640px; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo .badge {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(8,23,32,.72); backdrop-filter: blur(6px);
  color: var(--white); padding: 12px 18px; border-radius: var(--radius-sm);
  font-size: .82rem; letter-spacing: .04em;
}

/* ---------- Apartments ---------- */
.apartments { background: var(--cream-50); }
.apt-list { display: grid; gap: 28px; }

.apt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  border: 1px solid rgba(11,36,48,.06);
}
@media (min-width: 900px) {
  .apt-card { grid-template-columns: 1.1fr 1fr; }
  .apt-card.reverse { grid-template-columns: 1fr 1.1fr; }
  .apt-card.reverse .apt-card-media { order: 2; }
}

.apt-card-media { position: relative; min-height: 280px; }
.apt-card-media .main-photo-link { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.apt-card-media .main-photo { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.apt-card-media .thumbs {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  display: flex; gap: 8px;
}
.apt-card-media .thumb-link { position: relative; display: block; cursor: zoom-in; border-radius: 8px; }
.apt-card-media .thumb-link.thumb-hidden { display: none; }
.apt-card-media .thumbs img {
  width: 56px; height: 56px; object-fit: cover; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.85); box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.apt-card-media .thumb-more {
  position: absolute; inset: 0; border-radius: 8px;
  background: rgba(8,23,32,.62); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700;
}
.apt-card-media .count-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(8,23,32,.72); color: var(--white); backdrop-filter: blur(4px);
  font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}

.apt-card-body { padding: 32px 30px 34px; display: flex; flex-direction: column; }
.apt-card-loc { display: flex; align-items: center; gap: 8px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-600); font-weight: 700; margin-bottom: 10px; }
.apt-card-loc svg { width: 15px; height: 15px; }
.apt-card-body h3 { font-size: 1.55rem; margin-bottom: 6px; }
.apt-card-body .apt-desc { color: var(--ink-700); }

.apt-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.apt-facts .fact {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream-100); border-radius: 999px; padding: 8px 14px;
  font-size: .82rem; color: var(--navy-900); font-weight: 600;
}
.apt-facts .fact svg { width: 16px; height: 16px; color: var(--gold-500); }

.apt-amenities { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 24px; }
.apt-amenities span { font-size: .84rem; color: var(--ink-500); display: flex; align-items: center; gap: 7px; }
.apt-amenities span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); flex-shrink: 0; }

.apt-card-footer { margin-top: auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.placeholder-media {
  position: relative; min-height: 280px; height: 100%;
  background:
    radial-gradient(circle at 25% 20%, rgba(201,166,104,.35), transparent 55%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  color: var(--gold-400); text-align: center; padding: 30px;
}
.placeholder-media svg { width: 46px; height: 46px; opacity: .85; }
.placeholder-media strong { color: var(--white); font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; }
.placeholder-media span { font-size: .8rem; color: rgba(255,255,255,.55); max-width: 26ch; }

/* ---------- Full width break ---------- */
.breakout {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-align: center; overflow: hidden;
}
.breakout img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.breakout::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,17,24,.35), rgba(6,17,24,.72)); }
.breakout blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 3.4vw, 2.3rem); max-width: 18ch; margin: 0 auto 14px; line-height: 1.35; }
.breakout cite { font-style: normal; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); }

/* ---------- Amenities / why us ---------- */
.why { background: var(--white); }
.why-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(4,1fr); } }
.why-item { padding: 28px 22px; border-radius: var(--radius-md); background: var(--cream-100); border: 1px solid rgba(11,36,48,.05); }
.why-item .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-950); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.why-item .icon svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { font-size: .89rem; color: var(--ink-500); margin: 0; }

/* ---------- Reviews ---------- */
.reviews { background: var(--white); }
.reviews-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--cream-100); border: 1px solid rgba(11,36,48,.06); border-radius: var(--radius-lg);
  padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 14px;
}
.review-stars { display: flex; gap: 4px; }
.review-stars svg { width: 17px; height: 17px; color: var(--gold-500); }
.review-stars svg.is-empty { color: rgba(11,36,48,.16); }
.review-text { font-family: var(--font-serif); font-style: italic; color: var(--navy-950); font-size: 1.05rem; line-height: 1.55; margin: 0; flex: 1; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-author .avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy-950); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.review-author span { font-size: .88rem; font-weight: 600; color: var(--ink-900); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream-50); }
.gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid a:nth-child(4) { grid-column: span 2; }
}
.gallery-grid a { display: block; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,17,24,.45) 100%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-grid a:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(6, 17, 24, .95);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 76px;
  opacity: 0; transition: opacity .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox-figure { max-width: min(92vw, 1150px); max-height: 88vh; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox-figure img {
  max-width: 100%; max-height: 76vh; width: auto; height: auto; object-fit: contain;
  border-radius: 10px; box-shadow: 0 40px 90px -24px rgba(0,0,0,.65);
  background: rgba(255,255,255,.03);
}
.lightbox-figure figcaption { color: rgba(255,255,255,.78); font-size: .9rem; text-align: center; max-width: 70ch; }
.lightbox-close, .lightbox-nav {
  position: absolute; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  color: var(--white); cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.lightbox-close { top: 18px; right: 18px; width: 44px; height: 44px; }
.lightbox-close svg { width: 19px; height: 19px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox-nav svg { width: 23px; height: 23px; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-count {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.55); font-size: .78rem; letter-spacing: .08em;
}
@media (max-width: 720px) {
  .lightbox { padding: 78px 14px 40px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* ---------- Contact ---------- */
.contact {
  position: relative; color: var(--white); overflow: hidden;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800) 120%);
}
.contact::before {
  content: ""; position: absolute; inset: 0; opacity: .12; z-index: 0;
  background: radial-gradient(circle at 85% 20%, var(--gold-500), transparent 45%),
              radial-gradient(circle at 10% 90%, var(--teal-600), transparent 50%);
}
.contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact h2 { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,.68); }
.contact-phone {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 22px 30px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  margin-top: 10px;
}
.contact-phone .ic {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-500); color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
}
.contact-phone .ic svg { width: 22px; height: 22px; }
.contact-phone a { font-family: var(--font-serif); font-size: 1.65rem; color: var(--white); letter-spacing: .01em; }
.contact-phone span { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 4px; }
.contact-note { margin-top: 22px; color: rgba(255,255,255,.6); font-size: .9rem; max-width: 48ch; }

.contact-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 30px;
}
.contact-card ul { display: grid; gap: 18px; }
.contact-card li { display: flex; gap: 14px; align-items: flex-start; }
.contact-card .ic2 { width: 34px; height: 34px; border-radius: 8px; background: rgba(201,166,104,.16); color: var(--gold-400); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .ic2 svg { width: 17px; height: 17px; }
.contact-card strong { display: block; font-size: .92rem; color: var(--white); }
.contact-card span { font-size: .84rem; color: rgba(255,255,255,.6); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.62); padding: 56px 0 26px; }
.footer-top { display: grid; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; max-width: 40ch; }
.footer-col h5 { color: var(--white); font-family: var(--font-sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .9rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: .8rem;
}
.footer-bottom .credit a { color: var(--gold-400); font-weight: 600; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 620px; margin-inline: auto;
  background: var(--white); color: var(--ink-900);
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  padding: 22px 24px; border: 1px solid rgba(11,36,48,.08);
  transform: translateY(140%); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p { font-size: .87rem; color: var(--ink-700); margin-bottom: 16px; }
.cookie-banner a { text-decoration: underline; color: var(--navy-900); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 22px; font-size: .86rem; }

/* ---------- Utility / reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold-500); color: var(--navy-950);
  padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.wave-divider { color: var(--cream-50); display: block; line-height: 0; }
