/* =====================================================
   HORIZONTES NOVA — ENHANCED PROTOTYPE
   Identical brand tokens to the live site (arculati kódex
   v1.0). Additions: animated starfield hero, logo intro
   animation, GSAP scroll reveals, micro-interactions,
   new sections: Packages · Articles · FAQ.
   ===================================================== */
:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a2f55;
  --navy-deep:  #090f1d;
  --gold:       #c9a84c;
  --gold-lt:    #e8c96a;
  --gold-dim:   rgba(201,168,76,.14);
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --gray-light: #eaecf4;
  --gray:       #9aa3b8;
  --text:       #1e2a3a;
  --text-muted: #5a6478;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(15,31,61,.09);
  --shadow-lg:  0 14px 52px rgba(15,31,61,.18);
  --max-w:      1120px;
  --nav-h:      72px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:'Inter',sans-serif; color:var(--text); background:var(--white); line-height:1.7; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
.container { max-width:var(--max-w); margin:0 auto; padding:0 28px; }
.section { padding:100px 0; }
.hidden { display:none !important; }

h1,h2,h3 { font-family:'Playfair Display',serif; line-height:1.18; color:var(--navy); }
h1 { font-size:clamp(2.1rem,5vw,3.5rem); font-weight:700; letter-spacing:-.015em; }
h2 { font-size:clamp(1.65rem,3.5vw,2.45rem); font-weight:600; }
h3 { font-size:1.12rem; font-weight:600; }

.section-label {
  display:block; font-size:.7rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.section-header { text-align:center; margin-bottom:60px; }
.section-header h2 { margin-top:6px; }
.section-header .section-sub { color:var(--text-muted); max-width:56ch; margin:16px auto 0; font-weight:300; }

/* on navy sections the gold label keeps contrast; on white we
   pair it with navy heading per kódex (no gold body text) */

/* ---------- buttons ---------- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 28px; border-radius:var(--radius);
  font-family:'Inter',sans-serif; font-weight:600; font-size:.92rem;
  transition:all .22s ease; cursor:pointer;
  border:2px solid transparent; white-space:nowrap;
  position:relative; overflow:hidden;
}
.btn-primary { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.btn-primary:hover { background:var(--gold-lt); border-color:var(--gold-lt); transform:translateY(-2px); box-shadow:0 8px 28px rgba(201,168,76,.38); }
.btn-ghost { background:transparent; color:var(--white); border-color:rgba(255,255,255,.38); }
.btn-ghost:hover { background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.7); }
.btn-nav { background:var(--gold); color:var(--navy); padding:9px 20px; font-size:.83rem; border:none; }
.btn-nav:hover { background:var(--gold-lt); transform:translateY(-1px); }
.btn-full { width:100%; justify-content:center; }
/* micro-interaction: sheen sweep on primary buttons */
.btn-primary::after {
  content:''; position:absolute; top:0; bottom:0; width:36%;
  left:-50%; transform:skewX(-22deg);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition:left .55s ease; pointer-events:none;
}
.btn-primary:hover::after { left:130%; }

/* ---------- navbar (same behaviour as live site) ---------- */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--nav-h);
  transition:background .3s, box-shadow .3s, backdrop-filter .3s;
}
.navbar.scrolled {
  background:rgba(255,255,255,.97);
  box-shadow:0 2px 20px rgba(15,31,61,.08);
  backdrop-filter:blur(10px);
}
.navbar.scrolled .nav-links a { color:var(--text-muted); }
.navbar.scrolled .nav-links a:hover { color:var(--gold); }
.navbar.scrolled .lang-option { color:var(--text-muted); }
.navbar.scrolled .lang-option.active { color:var(--gold); }
.navbar.scrolled .lang-sep { color:var(--gray); }
.navbar.scrolled .logo-img-white { display:none; }
.navbar.scrolled .logo-img-dark { display:block; }

.nav-inner { display:flex; align-items:center; justify-content:space-between; height:var(--nav-h); gap:24px; }
.nav-logo { display:flex; align-items:center; flex-shrink:0; }
.logo-img { height:48px; width:auto; display:block; }
.logo-img-dark { display:none; }
.nav-links { display:flex; align-items:center; gap:30px; flex:1; justify-content:center; }
.nav-links a {
  font-size:.82rem; font-weight:500; letter-spacing:.04em;
  color:rgba(255,255,255,.78); position:relative; padding-bottom:2px;
  transition:color .2s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-1px; left:0; right:100%;
  height:1.5px; background:var(--gold); transition:right .25s ease;
}
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { right:0; }
.nav-right { display:flex; align-items:center; gap:20px; flex-shrink:0; }

.lang-toggle { background:none; border:none; cursor:pointer; display:flex; align-items:center; gap:5px; font-family:'Inter',sans-serif; font-size:.8rem; font-weight:500; }
.lang-option { color:rgba(255,255,255,.48); transition:color .2s; }
.lang-option.active { color:var(--gold); font-weight:700; }
.lang-sep { color:rgba(255,255,255,.22); }

.nav-burger { display:none; flex-direction:column; justify-content:center; gap:5px; background:none; border:none; cursor:pointer; padding:8px 4px; width:36px; height:36px; }
.nav-burger span { display:block; height:2px; width:22px; border-radius:2px; background:rgba(255,255,255,.85); transition:transform .3s ease, opacity .3s ease, background .3s; }
.navbar.scrolled .nav-burger span { background:var(--text); }
.nav-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.nav-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position:fixed; top:var(--nav-h); left:0; right:0; z-index:98;
  background:var(--navy-deep); border-bottom:1px solid rgba(201,168,76,.15);
  box-shadow:0 8px 32px rgba(0,0,0,.35);
  max-height:0; overflow:hidden; transition:max-height .36s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { max-height:520px; }
.mobile-nav-inner { padding:8px 28px 24px; }
.mobile-nav a { display:block; padding:15px 0; font-size:1rem; font-weight:500; color:rgba(255,255,255,.82); border-bottom:1px solid rgba(255,255,255,.07); transition:color .2s, padding-left .2s; }
.mobile-nav a:last-of-type { border-bottom:none; }
.mobile-nav a:hover { color:var(--gold); padding-left:6px; }
.mobile-nav-cta { margin-top:20px; display:block; text-align:center; padding:13px; background:var(--gold); color:var(--navy); border-radius:var(--radius); font-weight:700; font-size:.9rem; }
@media (max-width:880px) { .nav-burger { display:flex; } .nav-links { display:none; } .nav-right .btn-nav { display:none; } }

/* =====================================================
   HERO — animated starfield + gold horizon + logo intro
   ===================================================== */
.hero {
  background:linear-gradient(150deg, var(--navy-deep) 0%, #0f1f3d 45%, #162847 100%);
  min-height:100vh;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding:calc(var(--nav-h) + 60px) 0 110px;
}
#starfield { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
/* gold horizon glow rising from the bottom — the brand's horizon metaphor */
.hero-horizon {
  position:absolute; left:50%; bottom:-340px; transform:translateX(-50%);
  width:1400px; height:520px; border-radius:50%;
  background:radial-gradient(ellipse at center,
    rgba(201,168,76,.32) 0%, rgba(201,168,76,.10) 38%, transparent 68%);
  filter:blur(14px);
  animation:horizonBreath 9s ease-in-out infinite;
  pointer-events:none;
}
.hero-horizon::before {
  content:''; position:absolute; left:10%; right:10%; top:-1px; height:1px;
  background:linear-gradient(to right, transparent, rgba(232,201,106,.7), transparent);
}
@keyframes horizonBreath {
  0%,100% { opacity:.75; transform:translateX(-50%) scaleY(1); }
  50%     { opacity:1;   transform:translateX(-50%) scaleY(1.07); }
}

.hero-grid {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.25fr 1fr;
  gap:48px; align-items:center;
}
.hero-eyebrow { display:flex; align-items:center; gap:16px; margin-bottom:26px; }
.hero-rule { display:block; width:48px; height:2px; flex-shrink:0; background:linear-gradient(to right, var(--gold), var(--gold-lt)); transform-origin:left; }
.hero-tag { font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(232,201,106,.8); }
.hero h1 { color:var(--white); margin-bottom:24px; }
.hero-sub { color:rgba(255,255,255,.70); font-size:1.05rem; font-weight:300; max-width:600px; margin-bottom:44px; line-height:1.78; }
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }

/* logo animation stage — inline white SVG, sunrise sequence built from its own parts */
.hero-logo-stage {
  position:relative;
  display:flex; align-items:center; justify-content:center;
  min-height:300px;
}
/* faint gold mist behind the logo — no disc, no edge */
.hero-logo-stage::before {
  content:''; position:absolute; width:140%; aspect-ratio:1;
  background:radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 58%);
  pointer-events:none;
}
.hero-logo-svg {
  width:min(460px,100%); height:auto; position:relative;
  overflow:visible;
  filter:drop-shadow(0 4px 30px rgba(9,15,29,.55));
}


.hero-scroll-hint {
  position:absolute; bottom:38px; left:50%;
  transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.hero-scroll-hint span {
  display:block; width:1.5px; height:42px;
  background:linear-gradient(to bottom, rgba(201,168,76,.65), transparent);
  animation:scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.3; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.12); } }


@media (max-width:880px) {
  .hero { padding-top:calc(var(--nav-h) + 40px); }
  .hero-grid { grid-template-columns:1fr; gap:8px; }
  .hero-logo-stage { min-height:0; order:2; margin-top:30px; }
  .logo-disc { width:min(300px,80%); }
}

/* =====================================================
   TRUST BAR — animated counters
   ===================================================== */
.trust-bar {
  background:var(--navy);
  padding:36px 0 48px;
  border-top:1px solid rgba(201,168,76,.12);
  position:relative; z-index:1;
}
.trust-inner { display:flex; align-items:stretch; justify-content:center; flex-wrap:wrap; }
.trust-item { display:flex; flex-direction:column; align-items:center; text-align:center; padding:16px 44px; }
.trust-number { font-family:'Playfair Display',serif; font-size:1.75rem; font-weight:700; color:var(--gold); line-height:1; margin-bottom:7px; font-variant-numeric:tabular-nums; }
.trust-label { font-size:.73rem; color:rgba(255,255,255,.62); letter-spacing:.06em; text-transform:uppercase; }
.trust-divider { width:1px; align-self:stretch; background:rgba(255,255,255,.1); margin:8px 0; }
.trust-item--credential { gap:5px; }
.trust-cred-icon { color:var(--gold); margin-bottom:5px; }
.trust-cred-icon svg { width:26px; height:26px; display:block; }
.trust-cred-eyebrow { font-size:.62rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(201,168,76,.65); }
.trust-item--credential .trust-label { font-size:.73rem; font-weight:500; color:rgba(255,255,255,.72); letter-spacing:.02em; text-transform:none; max-width:180px; line-height:1.4; }

/* =====================================================
   ABOUT
   ===================================================== */
.about { background:var(--off-white); position:relative; z-index:2; }
.about::before {
  content:''; position:absolute; top:-52px; left:0; right:0; height:52px;
  background:var(--off-white);
  clip-path:polygon(0 0, 0 100%, 100% 100%);
  pointer-events:none;
}
.about-inner { display:grid; grid-template-columns:1fr 1.55fr; gap:80px; align-items:start; padding-top:8px; }
.about-photo { position:sticky; top:calc(var(--nav-h) + 28px); }
.photo-frame {
  border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5;
  box-shadow:0 24px 64px rgba(15,31,61,.24);
  background:linear-gradient(150deg, #1c3058 0%, #0f1f3d 40%, #070d1a 100%);
  position:relative;
}

.career-timeline {
  margin-top:18px; background:var(--white); border-radius:var(--radius);
  padding:16px 20px; box-shadow:0 4px 18px rgba(15,31,61,.08);
  border:1px solid var(--gray-light); display:flex; align-items:flex-start;
}
.career-node { flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px; padding:0 6px; }
.career-dot { width:9px; height:9px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 3px var(--gold-dim); margin-bottom:4px; }
.career-when { font-size:.6rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); }
.career-what { font-size:.68rem; color:var(--text-muted); line-height:1.45; }
.career-line { flex-shrink:0; width:26px; height:1px; background:var(--gray-light); margin-top:8px; }

.about-copy h2 { margin:6px 0 26px; }
.about-copy p { color:var(--text-muted); margin-bottom:18px; max-width:62ch; }
.about-copy p strong { color:var(--text); font-weight:600; }
.about-list { margin-top:26px; display:grid; grid-template-columns:1fr 1fr; gap:12px 28px; }
.about-list li {
  position:relative; padding-left:26px;
  font-size:.93rem; color:var(--text); font-weight:500;
}
.about-list li::before {
  content:''; position:absolute; left:0; top:.46em;
  width:14px; height:8px;
  border-left:2px solid var(--gold); border-bottom:2px solid var(--gold);
  transform:rotate(-45deg) scale(0);
  transform-origin:center; transition:transform .4s ease .1s;
}
.about-list li.tick-in::before { transform:rotate(-45deg) scale(1); }
@media (max-width:880px) {
  .about-inner { grid-template-columns:1fr; gap:46px; }
  .about-photo { position:static; max-width:360px; }
  .about-list { grid-template-columns:1fr; }
}

/* =====================================================
   SERVICES — cards with animated stroke icons
   ===================================================== */
.services { background:var(--white); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.svc-card {
  background:var(--white); border:1px solid var(--gray-light);
  border-radius:var(--radius-lg); padding:34px 28px 30px;
  box-shadow:var(--shadow);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position:relative; overflow:hidden;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(to right, var(--gold), var(--gold-lt));
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s ease;
}
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(201,168,76,.4); }
.svc-card:hover::before { transform:scaleX(1); }
.svc-icon {
  width:52px; height:52px; border-radius:12px;
  background:var(--gold-dim);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  transition:background .28s ease, transform .28s ease;
}
.svc-card:hover .svc-icon { background:rgba(201,168,76,.22); transform:scale(1.06) rotate(-3deg); }
.svc-icon svg { width:26px; height:26px; stroke:var(--gold); stroke-width:1.7; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.svc-icon svg path, .svc-icon svg circle, .svc-icon svg rect, .svc-icon svg line, .svc-icon svg polyline { stroke-dasharray:80; stroke-dashoffset:80; }
.svc-card.icon-drawn svg path, .svc-card.icon-drawn svg circle, .svc-card.icon-drawn svg rect, .svc-card.icon-drawn svg line, .svc-card.icon-drawn svg polyline {
  animation:iconDraw 1.1s ease forwards;
}
@keyframes iconDraw { to { stroke-dashoffset:0; } }
.svc-card h3 { margin-bottom:12px; }
.svc-card p { font-size:.92rem; color:var(--text-muted); line-height:1.7; }
@media (max-width:980px) { .services-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px) { .services-grid { grid-template-columns:1fr; } }

/* =====================================================
   PACKAGES — navy section, white cards (kódex 9.)
   ===================================================== */
.packages { background:var(--navy-mid); position:relative; overflow:hidden; }
.packages::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(201,168,76,.08) 1px, transparent 1px);
  background-size:26px 26px; pointer-events:none;
}
.packages .section-header h2 { color:var(--white); }
.packages .section-sub { color:rgba(255,255,255,.6); }
.pkg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; position:relative; }
.pkg-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:32px 26px 28px; box-shadow:var(--shadow);
  display:flex; flex-direction:column;
  transition:transform .28s ease, box-shadow .28s ease;
  position:relative;
}
.pkg-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }

.pkg-name { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:600; color:var(--navy); margin-bottom:10px; }
.pkg-desc { font-size:.86rem; color:var(--text-muted); line-height:1.65; flex:1; }
.pkg-price {
  margin-top:22px; padding-top:18px; border-top:1px solid var(--gray-light);
  font-family:'Playfair Display',serif; font-size:1.45rem; font-weight:700; color:var(--navy);
}
.pkg-price small { display:block; font-family:'Inter',sans-serif; font-size:.65rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--gray); margin-top:4px; }
.pkg-note { text-align:center; margin-top:34px; font-size:.84rem; color:rgba(255,255,255,.55); font-weight:300; position:relative; }
@media (max-width:1020px) { .pkg-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px)  { .pkg-grid { grid-template-columns:1fr; } }

/* =====================================================
   ARTICLES — teaser cards
   ===================================================== */
.articles { background:var(--off-white); }
.articles-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.art-card {
  background:var(--white); border:1px solid var(--gray-light);
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .28s ease, box-shadow .28s ease;
  display:flex; flex-direction:column;
}
.art-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.art-head {
  background:linear-gradient(150deg, var(--navy-mid) 0%, var(--navy) 70%);
  padding:26px 26px 22px; position:relative; overflow:hidden;
}
.art-head::after {
  content:''; position:absolute; right:-30px; bottom:-58px;
  width:160px; height:120px; border-radius:50%;
  background:radial-gradient(ellipse at center, rgba(201,168,76,.35), transparent 65%);
  transition:transform .4s ease;
}
.art-card:hover .art-head::after { transform:scale(1.25); }
.art-tag { font-size:.62rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-lt); }
.art-head h3 { color:var(--white); margin-top:10px; font-size:1.14rem; line-height:1.35; position:relative; z-index:1; }
.art-body { padding:22px 26px 26px; flex:1; display:flex; flex-direction:column; }
.art-body p { font-size:.88rem; color:var(--text-muted); line-height:1.65; flex:1; }
.art-more {
  margin-top:18px; font-size:.78rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--navy);
  display:inline-flex; align-items:center; gap:8px;
}
.art-more .arr { color:var(--gold); transition:transform .25s ease; }
.art-card:hover .art-more .arr { transform:translateX(5px); }
@media (max-width:980px) { .articles-grid { grid-template-columns:1fr; max-width:560px; margin:0 auto; } }

/* =====================================================
   FAQ
   ===================================================== */
.faq { background:var(--white); }
.faq-list { max-width:760px; margin:0 auto; }
.faq-item {
  border:1px solid var(--gray-light); border-radius:var(--radius);
  margin-bottom:14px; background:var(--white);
  transition:box-shadow .25s ease, border-color .25s ease;
}
.faq-item.open { border-color:rgba(201,168,76,.45); box-shadow:var(--shadow); }
.faq-q {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:20px 24px; text-align:left;
  font-family:'Playfair Display',serif; font-size:1.06rem; font-weight:600; color:var(--navy);
}
.faq-x {
  flex-shrink:0; width:26px; height:26px; border-radius:50%;
  background:var(--gold-dim); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Inter',sans-serif; font-weight:400; font-size:1.1rem; line-height:1;
  transition:transform .3s ease, background .3s ease;
}
.faq-item.open .faq-x { transform:rotate(45deg); background:var(--gold); color:var(--navy); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a-inner { padding:0 24px 22px; font-size:.92rem; color:var(--text-muted); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background:var(--off-white); }
.contact-grid { display:grid; grid-template-columns:1fr 1.25fr; gap:70px; align-items:start; }
.contact-info .section-label { margin-bottom:10px; }
.contact-info h2 { margin-bottom:18px; }
.contact-info > p { color:var(--text-muted); max-width:46ch; margin-bottom:30px; }
.contact-channels { display:flex; flex-direction:column; gap:12px; }
.chan {
  display:flex; align-items:center; gap:16px;
  background:var(--white); border:1px solid var(--gray-light); border-radius:var(--radius);
  padding:15px 18px; box-shadow:var(--shadow);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.chan:hover { transform:translateX(6px); border-color:rgba(201,168,76,.45); box-shadow:var(--shadow-lg); }
.chan-icon { width:38px; height:38px; border-radius:10px; background:var(--gold-dim); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.chan-icon svg { width:18px; height:18px; stroke:var(--gold); stroke-width:1.7; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.chan-label { font-size:.62rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gray); }
.chan-value { font-size:.92rem; font-weight:600; color:var(--navy); }

.contact-form {
  background:var(--white); border-radius:var(--radius-lg);
  padding:40px 38px; box-shadow:var(--shadow-lg);
  border:1px solid var(--gray-light);
}
.f-row { margin-bottom:20px; }
.f-row label { display:block; font-size:.74rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px; }
.f-row input, .f-row select, .f-row textarea {
  width:100%; padding:12px 14px;
  font-family:'Inter',sans-serif; font-size:.95rem; color:var(--text);
  background:var(--off-white); border:1px solid var(--gray-light); border-radius:var(--radius);
  transition:border-color .2s, box-shadow .2s, background .2s;
}
.f-row input:focus, .f-row select:focus, .f-row textarea:focus {
  outline:none; border-color:var(--gold); background:var(--white);
  box-shadow:0 0 0 3px rgba(201,168,76,.16);
}
.f-row textarea { resize:vertical; min-height:110px; }
.f-consent { display:flex; gap:11px; align-items:flex-start; margin:22px 0; }
.f-consent input { margin-top:4px; accent-color:var(--gold); width:15px; height:15px; flex-shrink:0; }
.f-consent label { font-size:.8rem; color:var(--text-muted); line-height:1.55; }
.f-consent a { color:var(--navy); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.form-success { margin-top:18px; padding:14px 16px; border-radius:var(--radius); border:1px solid rgba(201,168,76,.5); background:var(--gold-dim); font-size:.9rem; color:var(--text); }
.btn-sending { pointer-events:none; opacity:.75; }
@media (max-width:880px) { .contact-grid { grid-template-columns:1fr; gap:46px; } .contact-form { padding:30px 24px; } }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background:var(--navy-deep); padding:52px 0 38px; color:rgba(255,255,255,.55); }
.footer-inner { display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.footer-left { display:flex; flex-direction:column; gap:10px; }
.footer-logo { height:40px; width:auto; }
.footer-tagline { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.4); }
.footer-meta { font-size:.78rem; display:flex; gap:24px; flex-wrap:wrap; }
.footer-meta a { transition:color .2s; }
.footer-meta a:hover { color:var(--gold-lt); }

/* =====================================================
   GSAP reveal base state (no-JS safe: visible by default,
   .gs-ready body class arms the initial hidden state)
   ===================================================== */
.gs-ready .gs-up { opacity:0; transform:translateY(34px); }
.gs-ready .gs-fade { opacity:0; }
@media (prefers-reduced-motion:reduce) {
  .gs-ready .gs-up, .gs-ready .gs-fade { opacity:1 !important; transform:none !important; }
  .hero-horizon, .hero-scroll-hint span { animation:none; }
}

/* =====================================================
   MULTI-PAGE ADDITIONS — subpage header, CTA band,
   active nav state, on-page CTAs. Added when the
   single-page site was split into separate pages.
   ===================================================== */

/* ---- active nav item (current page) ---- */
.nav-links a.active { color:var(--white); }
.nav-links a.active::after { right:0; }
.navbar.scrolled .nav-links a.active { color:var(--gold); }
.mobile-nav a.active { color:var(--gold); }

/* ---- subpage header banner (navy — keeps nav contrast on inner pages) ---- */
.page-header {
  background:linear-gradient(150deg, var(--navy-deep) 0%, #0f1f3d 45%, #162847 100%);
  padding:calc(var(--nav-h) + 72px) 0 70px;
  position:relative; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; left:50%; bottom:-300px; transform:translateX(-50%);
  width:1200px; height:460px; border-radius:50%;
  background:radial-gradient(ellipse at center,
    rgba(201,168,76,.22) 0%, rgba(201,168,76,.07) 40%, transparent 68%);
  filter:blur(14px); pointer-events:none;
}
.page-header::after {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:30px 30px; pointer-events:none; opacity:.5;
}
.page-header-inner { position:relative; z-index:1; max-width:760px; }
.page-header .section-label { color:var(--gold-lt); }
.page-header h1 { color:var(--white); font-size:clamp(1.9rem,4.4vw,3rem); }
.page-header p {
  color:rgba(255,255,255,.72); font-weight:300; font-size:1.05rem;
  max-width:62ch; margin-top:18px; line-height:1.75;
}
/* breadcrumb */
.crumbs { display:flex; align-items:center; gap:9px; margin-bottom:18px; font-size:.74rem; color:rgba(255,255,255,.5); }
.crumbs a { color:rgba(255,255,255,.62); transition:color .2s; }
.crumbs a:hover { color:var(--gold-lt); }
.crumbs .sep { color:rgba(255,255,255,.28); }

/* a subpage's first content section can hug the header a little tighter */
.page-header + .section { padding-top:80px; }

/* ---- inline section CTA (teaser → full page link) ---- */
.section-cta { text-align:center; margin-top:48px; }

/* ---- final CTA band (home) ---- */
.cta-band {
  background:linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding:80px 0; position:relative; overflow:hidden; text-align:center;
}
.cta-band::before {
  content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:760px; height:380px; border-radius:50%;
  background:radial-gradient(ellipse at center, rgba(201,168,76,.16), transparent 66%);
  pointer-events:none;
}
.cta-band-inner { position:relative; z-index:1; max-width:620px; margin:0 auto; }
.cta-band h2 { color:var(--white); margin-bottom:16px; }
.cta-band p { color:rgba(255,255,255,.7); font-weight:300; margin-bottom:32px; }

/* ---- about teaser (home): drop the sticky/sidebar layout, single column ---- */
.about-teaser .about-inner { grid-template-columns:1fr; gap:0; max-width:760px; margin:0 auto; }

/* =====================================================
   COOKIE CONSENT MODAL
   ===================================================== */
.cookie-overlay {
  position:fixed; inset:0; z-index:400;
  background:rgba(9,15,29,.72);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
}
.cookie-overlay.visible { opacity:1; visibility:visible; }
.cookie-modal {
  background:var(--navy);
  border:1px solid rgba(201,168,76,.28);
  border-radius:var(--radius-lg);
  box-shadow:0 24px 80px rgba(0,0,0,.55);
  padding:36px 32px 28px;
  max-width:480px; width:100%;
  transform:translateY(18px) scale(.97);
  transition:transform .38s cubic-bezier(.4,0,.2,1);
}
.cookie-overlay.visible .cookie-modal { transform:none; }
.cookie-modal-icon {
  width:44px; height:44px; margin-bottom:18px;
  background:rgba(201,168,76,.14);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.25rem;
}
.cookie-modal h3 {
  font-family:'Playfair Display',serif;
  font-size:1.15rem; font-weight:600;
  color:var(--white); margin-bottom:12px; line-height:1.3;
}
.cookie-modal p {
  font-size:.86rem; color:rgba(255,255,255,.65);
  line-height:1.7; margin-bottom:8px;
}
.cookie-modal a {
  color:var(--gold-lt); text-decoration:underline;
  text-underline-offset:3px;
}
.cookie-modal a:hover { color:var(--white); }
.cookie-modal-actions {
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:24px;
}
.btn-cookie-accept {
  flex:1; background:var(--gold); color:var(--navy);
  border:none; border-radius:var(--radius);
  padding:11px 20px; font-family:'Inter',sans-serif;
  font-size:.86rem; font-weight:700; cursor:pointer;
  transition:background .2s, transform .15s;
}
.btn-cookie-accept:hover { background:var(--gold-lt); transform:translateY(-1px); }
.btn-cookie-decline {
  flex:1; background:transparent; color:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.18); border-radius:var(--radius);
  padding:11px 20px; font-family:'Inter',sans-serif;
  font-size:.86rem; font-weight:500; cursor:pointer;
  transition:color .2s, border-color .2s;
}
.btn-cookie-decline:hover { color:var(--white); border-color:rgba(255,255,255,.5); }
@media (max-width:480px) {
  .cookie-modal { padding:28px 20px 22px; }
  .cookie-modal-actions { flex-direction:column; }
}
