/* =========================================================================
   The Austrian Agency — Design System v2 (Premium)
   Dark + light alternating sections, champagne-gold accent.
   Fonts: Sora (display) + Inter (body).
   Re-theme the accent in ONE place: --gold (+ --gold-hi / --gold-ink).
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Accent — champagne gold */
  --gold: #C9A75C;
  --gold-hi: #E2C888;          /* brighter, for hover / highlights on dark */
  --gold-ink: #9A7B2E;         /* deeper gold, readable on light backgrounds */
  --gold-soft: rgba(201, 167, 92, 0.14);
  --gold-line: rgba(201, 167, 92, 0.32);

  /* Ink (dark) scale */
  --ink: #0C0D10;
  --ink-2: #101216;
  --ink-surface: #15171C;
  --ink-surface-2: #1B1E24;

  /* Paper (light) scale — warm off-white */
  --paper: #F6F4EF;
  --paper-2: #EEEBE3;
  --paper-surface: #FFFFFF;

  /* Semantic — DEFAULT (dark theme). Sections override these. */
  --bg: var(--ink);
  --surface: var(--ink-surface);
  --surface-2: var(--ink-surface-2);
  --text: #F3F2EF;
  --muted: #A6A49E;
  --dim: #6E6C68;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --accent-2: var(--gold);        /* gold variant that stays legible in-context */

  /* Type */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-hero: clamp(2.7rem, 5.4vw + 0.6rem, 5.4rem);
  --fs-h2: clamp(2rem, 3vw + 0.5rem, 3.15rem);
  --fs-h3: clamp(1.15rem, 0.8vw + 0.7rem, 1.4rem);
  --fs-lead: clamp(1.06rem, 0.6vw + 0.9rem, 1.3rem);
  --fs-body: 1.0625rem;

  --space-section: clamp(4.5rem, 9vw, 8.5rem);
  --container: 1220px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-lg: 0 30px 70px -24px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 260ms;
}

/* Section themes — override the semantic tokens */
.sec--dark {
  --bg: var(--ink);
  --surface: var(--ink-surface);
  --surface-2: var(--ink-surface-2);
  --text: #F3F2EF;
  --muted: #A6A49E;
  --dim: #6E6C68;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --accent-2: var(--gold);
  background: var(--bg);
  color: var(--text);
}
.sec--ink2 { --bg: var(--ink-2); background: var(--ink-2); }
.sec--light {
  --bg: var(--paper);
  --surface: var(--paper-surface);
  --surface-2: var(--paper-2);
  --text: #14151A;
  --muted: #5A5E68;
  --dim: #8A8D96;
  --border: rgba(20, 21, 26, 0.10);
  --border-strong: rgba(20, 21, 26, 0.20);
  --accent-2: var(--gold-ink);
  background: var(--bg);
  color: var(--text);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #14151A; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text);
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--muted); }
strong { color: var(--text); font-weight: 600; }
.accent-text { color: var(--gold); }
.sec--light .accent-text { color: var(--gold-ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 780px; }
section { position: relative; }
.section-pad { padding-block: var(--space-section); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p { margin-top: 1.1rem; font-size: var(--fs-lead); }
.section-cta { display: flex; justify-content: center; margin-top: clamp(2.6rem, 5vw, 3.6rem); }
@media (max-width: 560px) { .section-cta .btn { width: 100%; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.92rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 500; font-size: 0.97rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold); color: #14151A; box-shadow: 0 8px 24px -10px rgba(201,167,92,0.6); }
.btn-primary:hover { background: var(--gold-hi); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.sec--light .btn-ghost:hover { color: var(--gold-ink); border-color: var(--gold-ink); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 1.05rem 2.05rem; font-size: 1.04rem; }
/* Arrow on every "Book a Call" CTA button (links to #book) */
a.btn[href$="#book"]::after {
  content: "\2192"; /* → */
  font-size: 1.1em; line-height: 1;
  transition: transform var(--dur) var(--ease);
}
a.btn[href$="#book"]:hover::after { transform: translateX(4px); }

/* ---------- Logo ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.72rem; }
.logo-mark {
  width: 48px; height: 32px;
  background: url("../assets/img/aa-logo.png") center / contain no-repeat;
}
.brand__name {
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text);
  line-height: 1.1;
}
.brand__name span { display: block; color: var(--dim); font-weight: 500; letter-spacing: 0.16em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(12, 13, 16, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 72px; }
.nav__menu { display: flex; align-items: center; gap: 2.1rem; margin-left: auto; }
.nav__menu a { font-size: 0.94rem; color: #C6C4BE; transition: color var(--dur) var(--ease); }
.nav__menu a:hover { color: var(--gold); }
.nav__menu-cta { display: none; }
.nav__actions { display: flex; align-items: center; gap: 1rem; margin-left: 1.5rem; }

/* Language switch */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  overflow: hidden; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
}
.lang-switch button { padding: 0.42rem 0.72rem; color: #8A8880; transition: color var(--dur) var(--ease), background var(--dur) var(--ease); }
.lang-switch button[aria-pressed="true"] { color: #14151A; background: var(--gold); }
.lang-switch button:hover { color: #E9E7E1; }
.lang-switch button[aria-pressed="true"]:hover { color: #14151A; }

/* Mobile toggle */
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 22px; height: 2px; border-radius: 2px; background: #F3F2EF;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle span { top: 50%; margin-top: -1px; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateX(-50%) translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

/* ---------- Hero (photo) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: clamp(7rem, 14vw, 10rem); padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden; color: #F3F2EF;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05); }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,10,12,0.94) 0%, rgba(9,10,12,0.72) 42%, rgba(9,10,12,0.35) 75%, rgba(9,10,12,0.55) 100%),
    linear-gradient(0deg, rgba(9,10,12,0.9) 0%, rgba(9,10,12,0.1) 40%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background: radial-gradient(120% 80% at 80% 0%, var(--gold-soft), transparent 55%);
}
.hero .container { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.42rem 0.95rem 0.42rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(6px);
  font-size: 0.82rem; color: #D7D5CE; margin-bottom: 1.9rem;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.hero h1 { font-size: var(--fs-hero); font-weight: 600; max-width: 17ch; margin-bottom: 1.6rem; color: #FCFBF8; }
.hero h1 .accent-text { color: var(--gold); }
.hero__lead { font-size: var(--fs-lead); max-width: 54ch; color: #CFCDC6; margin-bottom: 2.5rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill); font-size: 0.86rem; color: #D7D5CE;
  background: rgba(255,255,255,0.04);
}
.chip svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--border); padding-block: 2.1rem; }
.trust-strip__label { text-align: center; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-bottom: 1.5rem; }
.trust-strip__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.7rem; }

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .grid-5 { grid-template-columns: 1fr; } }

.card {
  padding: 1.9rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface); height: 100%;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: 0 24px 50px -30px rgba(0,0,0,0.55); }
.sec--light .card:hover { box-shadow: 0 24px 50px -28px rgba(20,21,26,0.22); }
.card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 13px;
  background: var(--gold-soft); color: var(--accent-2); margin-bottom: 1.35rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.55rem; }
.card p { font-size: 0.98rem; }

.vertical-card { position: relative; overflow: hidden; }
.vertical-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.vertical-card:hover::after { transform: scaleX(1); }

/* ---------- Steps ---------- */
.step__num {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--accent-2); border: 1px solid var(--gold-line);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.3rem;
}

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  border: 1px solid var(--gold-line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(201,167,92,0.05), transparent);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--gold); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 0.9rem; color: var(--muted); margin-top: 0.45rem; }

/* ---------- Feature list ---------- */
.checks { display: grid; gap: 1rem; margin-top: 1.6rem; }
.check { display: flex; gap: 0.85rem; align-items: flex-start; }
.check svg { flex: none; width: 22px; height: 22px; color: var(--accent-2); margin-top: 2px; }
.check span { color: var(--muted); }

/* Value row (centered points under the verticals) */
.value-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem 2.4rem; margin-top: clamp(2.4rem, 4vw, 3.2rem); }
.value-row .check { align-items: center; }
.value-row .check svg { margin-top: 0; }

/* Value items (icon tile + statement, e.g. Why-buy points) */
.value-item .card__icon { margin-bottom: 1.1rem; }
.value-item h3 { font-size: 1.18rem; line-height: 1.28; }

/* Trust / compliance badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1rem; border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill); font-family: var(--font-head);
  font-size: 0.86rem; font-weight: 500; color: var(--text);
}
.badge svg { width: 18px; height: 18px; color: var(--accent-2); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* ---------- Booking ---------- */
.booking__wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.booking__frame {
  background: var(--paper-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0.75rem;
  box-shadow: 0 30px 60px -30px rgba(20,21,26,0.3); min-height: 640px;
}
.booking__frame iframe { width: 100%; min-height: 620px; border-radius: 14px; }
.booking__gate {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.9rem; min-height: 620px; padding: 2rem;
}
.booking__gate svg { width: 46px; height: 46px; color: var(--gold-ink); }
.booking__gate h3 { font-size: 1.28rem; color: var(--text); }
.booking__gate p { max-width: 36ch; color: var(--muted); font-size: 0.96rem; }
.booking__gate .btn { margin-top: 0.4rem; }
.booking__gate-link { font-size: 0.85rem; color: var(--gold-ink); text-decoration: underline; text-underline-offset: 2px; }
.booking__gate-link:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.footer__brand p { margin-top: 1.1rem; max-width: 34ch; font-size: 0.95rem; }
.footer__col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); margin-bottom: 1.1rem; font-weight: 600; font-family: var(--font-head); }
.footer__col a { display: block; color: var(--muted); font-size: 0.95rem; padding: 0.32rem 0; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: 0.85rem; color: var(--dim); }
.footer__bottom a { color: var(--dim); }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Legal pages ---------- */
.legal-content h1 { font-size: var(--fs-h2); margin: 0.7rem 0 2.2rem; }
.legal-content h2 {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 600;
  color: var(--text); margin: 2.8rem 0 0.4rem; letter-spacing: -0.015em;
  padding-top: 1.6rem; border-top: 1px solid var(--border);
}
.legal-content h1 + h2 { border-top: none; padding-top: 0; margin-top: 1rem; }
.legal-content h3 {
  font-family: var(--font-head); font-size: 1.04rem; font-weight: 600;
  color: var(--text); margin: 1.7rem 0 0.5rem; letter-spacing: -0.01em;
}
.legal-content p { color: var(--muted); line-height: 1.75; margin-bottom: 0.9rem; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal-content a:hover { color: var(--gold-hi); }
.legal-content strong { color: var(--text); }
.legal-content em { color: var(--dim); font-style: italic; }

/* ---------- Cookie consent ---------- */
.cookie { display: none !important; } /* legacy static banner — replaced by injected .cc-banner */
.btn-mini { background: transparent; color: #C6C4BE; border: 1px solid var(--border-strong); }
.btn-mini:hover { color: #FFFFFF; border-color: #FFFFFF; }

/* Compact banner */
.cc-banner {
  position: fixed; left: 50%; bottom: clamp(1rem, 3vw, 1.75rem);
  transform: translateX(-50%) translateY(170%); z-index: 200;
  width: min(720px, calc(100vw - 2rem));
  display: grid; gap: 1.1rem;
  background: var(--ink-surface-2); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.6rem; color: #F3F2EF; opacity: 0;
  transition: transform 460ms var(--ease), opacity 460ms var(--ease);
}
.cc-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cc-banner__body h4 { font-size: 1.08rem; margin-bottom: 0.4rem; color: #F3F2EF; }
.cc-banner__body p { font-size: 0.9rem; color: #A6A49E; line-height: 1.6; }
.cc-banner__body p a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cc-banner__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cc-banner__actions .btn { flex: 1 1 auto; padding: 0.72rem 1.2rem; font-size: 0.92rem; }

/* Preferences modal */
.cc-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 1.25rem; }
.cc-modal[hidden] { display: none; }
.cc-modal__backdrop { position: absolute; inset: 0; background: rgba(6, 7, 9, 0.66); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.cc-modal__panel {
  position: relative; z-index: 1; width: min(640px, 100%);
  max-height: min(86vh, 800px); overflow-y: auto;
  background: var(--ink-surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem); color: #F3F2EF;
  scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent;
}
.cc-modal__panel::-webkit-scrollbar { width: 10px; }
.cc-modal__panel::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; border: 3px solid transparent; background-clip: content-box; }
.cc-modal__panel::-webkit-scrollbar-track { background: transparent; }
.cc-modal__close {
  position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px;
  display: grid; place-items: center; border-radius: 10px; color: #A6A49E;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cc-modal__close:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.cc-modal__close svg { width: 20px; height: 20px; }
.cc-modal__panel h3 { font-size: 1.4rem; margin-bottom: 0.6rem; padding-right: 2.5rem; }
.cc-modal__intro { font-size: 0.92rem; color: #A6A49E; line-height: 1.6; margin-bottom: 1.4rem; }
.cc-cats { display: grid; }
.cc-cat { padding: 1.15rem 0; border-top: 1px solid var(--border); }
.cc-cat:first-child { border-top: none; padding-top: 0.4rem; }
.cc-cat__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.45rem; }
.cc-cat__row h4 { font-size: 1rem; }
.cc-cat p { font-size: 0.88rem; color: #9A9892; line-height: 1.6; }
.cc-always { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.cc-modal__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.cc-modal__actions .btn { flex: 1 1 auto; padding: 0.75rem 1.2rem; font-size: 0.92rem; }

/* Toggle switch */
.cc-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.cc-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.cc-switch__track { position: absolute; inset: 0; background: var(--border-strong); border-radius: 999px; transition: background var(--dur) var(--ease); pointer-events: none; }
.cc-switch__track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform var(--dur) var(--ease); }
.cc-switch input:checked + .cc-switch__track { background: var(--gold); }
.cc-switch input:checked + .cc-switch__track::before { transform: translateX(20px); }
.cc-switch input:focus-visible + .cc-switch__track { outline: 2px solid var(--gold); outline-offset: 2px; }

body.cc-open { overflow: hidden; }

@media (max-width: 560px) {
  .cc-banner__actions .btn, .cc-modal__actions .btn { flex: 1 1 100%; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 90ms; }
[data-delay="2"] { transition-delay: 180ms; }
[data-delay="3"] { transition-delay: 270ms; }
[data-delay="4"] { transition-delay: 360ms; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .booking__wrap { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav__cta-desktop { display: none; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 72px 0 auto 0;
    background: rgba(12,13,16,0.98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1rem var(--gutter) 1.75rem; margin-left: 0;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  body.menu-open .nav__menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu a:not(.btn) { width: 100%; padding: 0.95rem 0; font-size: 1.1rem; color: #F3F2EF; border-bottom: 1px solid var(--border); }
  .nav__menu-cta { display: inline-flex; width: 100%; margin-top: 1.2rem; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .cookie__actions .btn { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .brand__name { display: none; }
  .nav__actions { margin-left: 0; gap: 0.6rem; }
  .lang-switch button { padding: 0.42rem 0.58rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { filter: grayscale(100%); }
}
