/* =====================================================================
   SIBO ESTATE — Praha 6 / Areál Hvězda — single property landing
   Brand system extracted from sibo-estate.com
   ===================================================================== */

:root {
  --bg:      #18181a;
  --bg2:     #222226;
  --bg3:     #2c2c30;
  --cream:   #f0ece3;
  --cream2:  #a8a098;
  --gold:    #c9a020;
  --gold2:   #9a7c18;
  --border:  rgba(201, 160, 32, 0.18);
  --border2: rgba(240, 236, 227, 0.10);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 2px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; line-height: 1.1; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 0.6rem;
}
.section-lead {
  color: var(--cream2);
  font-size: 1.02rem;
  max-width: 56ch;
  margin-top: 1.2rem;
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 6vw; }
section { padding-block: clamp(2.5rem, 4.5vw, 4.25rem); position: relative; }
.section-head { margin-bottom: clamp(1.6rem, 3vw, 2.5rem); }

/* fading divider between blocks */
section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, 86vw); height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--border) 22%, var(--border) 78%, transparent);
}
.pdf-strip::before { display: none; }

.divider {
  width: 56px; height: 1px; background: var(--gold);
  margin: 1.4rem 0; opacity: 0.7;
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid transparent;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: #d9b236; transform: translateX(4px); }
.btn-outline { background: none; color: var(--cream); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  height: 72px; padding-inline: 6vw;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(24, 24, 26, 0.82);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.nav-logo { display: inline-flex; align-items: center; gap: 11px; }
.nav-logo .mark { width: 26px; height: 26px; flex: none; }
.nav-logo .word {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--cream); line-height: 1;
}
.nav-logo .word b { font-weight: 500; color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1.1rem; min-width: 0; }
.nav-contact { display: flex; align-items: center; gap: 1.1rem; }
.nav-contact a {
  font-size: 0.8rem; color: var(--cream2); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s;
}
.nav-contact a:hover { color: var(--gold); }
.nav-contact svg { width: 15px; height: 15px; opacity: 0.85; }

/* language switcher (dropdown) */
.lang { position: relative; flex: none; }
.lang-current {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1px solid var(--border); border-radius: 2px;
  color: var(--cream); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  padding: 7px 11px; transition: all 0.2s;
}
.lang-current:hover { border-color: var(--gold); color: var(--gold); }
.lang-current svg { transition: transform 0.25s var(--ease); opacity: 0.8; }
.lang.open .lang-current { border-color: var(--gold); color: var(--gold); }
.lang.open .lang-current svg { transform: rotate(180deg); }
.lang-list {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; z-index: 120;
  background: rgba(28,28,30,0.97); border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding: 6px; opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.lang.open .lang-list { opacity: 1; transform: none; pointer-events: auto; }
.lang-list li { list-style: none; }
.lang-list button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: none; border: none; color: var(--cream2);
  font-family: var(--font-body); font-size: 0.84rem; letter-spacing: 0.02em;
  padding: 9px 11px; transition: all 0.18s;
}
.lang-list button .code {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold);
  width: 2.2em; flex: none;
}
.lang-list button:hover { background: var(--bg3); color: var(--cream); }
.lang-list button[aria-selected="true"] { color: var(--gold); }
.lang-list button[aria-selected="true"] .code { color: var(--cream); }

.nav-cta { font-size: 0.72rem; padding: 12px 22px; }

/* mobile nav toggle */
.nav-burger { display: none; background: none; border: none; color: var(--cream); padding: 8px; }
.nav-burger svg { width: 24px; height: 24px; }

@media (max-width: 1240px) {
  .nav-contact { display: none; }
}
@media (max-width: 760px) {
  .nav { height: 64px; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-logo .word { font-size: 1.2rem; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(18, 18, 20, 0.97);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer a { font-family: var(--font-head); font-size: 1.8rem; color: var(--cream); }
.drawer a:hover { color: var(--gold); }
.drawer .btn { margin-top: 1rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; min-height: 100svh; display: grid; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,20,0.55) 0%, rgba(18,18,20,0.05) 26%, rgba(18,18,20,0.25) 55%, rgba(18,18,20,0.92) 100%);
}
.hero-inner {
  align-self: end; width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: calc(72px + 4.5vh) 6vw 7vh;
}
.hero .eyebrow { display: block; margin-bottom: 1rem; color: #fff; text-shadow: 0 1px 16px rgba(0,0,0,0.55); }
.hero h1 {
  font-size: clamp(2.15rem, 5.6vw, 4.6rem);
  font-weight: 400; letter-spacing: 0.005em; max-width: 20ch;
  text-wrap: balance; overflow-wrap: break-word;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-facts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.4rem;
  margin-top: 1.4rem; font-size: 0.92rem; letter-spacing: 0.04em; color: var(--cream);
}
.hero-facts span { display: inline-flex; align-items: center; gap: 1.4rem; }
.hero-facts .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; align-items: center; }
.hero-price {
  margin-top: 1.6rem; display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap;
}
.hero-price .label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream2); }
.hero-price .value { font-family: var(--font-head); font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--cream); letter-spacing: 0.01em; }
.hero-price .price-eur { font-family: var(--font-body); font-size: 0.46em; font-weight: 400; color: var(--cream2); letter-spacing: 0.02em; margin-left: 0.5em; white-space: nowrap; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream2);
}
.scroll-cue .line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* =====================================================================
   INTRO / EDITORIAL
   ===================================================================== */
.intro { background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.intro-grid .lead-col h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 400; }
.intro-body p { color: var(--cream2); margin-bottom: 1.2rem; font-size: 1.02rem; }
.intro-body p:first-child { color: var(--cream); font-size: 1.12rem; }
.intro-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; margin-top: 2.4rem; }
.intro-highlights .item .k { font-family: var(--font-head); font-size: 2rem; color: var(--gold); line-height: 1; }
.intro-highlights .item .v { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream2); margin-top: 0.5rem; }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 11.5vw; gap: 14px;
}
.gallery-grid figure {
  position: relative; overflow: hidden; cursor: pointer; background: var(--bg2);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18,18,20,0.55));
  opacity: 0; transition: opacity 0.4s;
}
.gallery-grid figure figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--cream);
  opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }

/* span helpers for editorial mosaic */
.g-wide { grid-column: span 4; grid-row: span 2; }
.g-tall { grid-column: span 2; grid-row: span 2; }
.g-sq   { grid-column: span 2; grid-row: span 2; }
.g-2    { grid-column: span 2; grid-row: span 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 22vw; }
  .g-wide { grid-column: span 4; }
  .g-tall, .g-sq, .g-2 { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; gap: 8px; }
  .g-wide, .g-tall, .g-sq, .g-2 { grid-column: span 2; grid-row: span 1; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(12, 12, 13, 0.96);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-btn {
  position: absolute; background: none; border: 1px solid var(--border2); color: var(--cream);
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  transition: all 0.25s; backdrop-filter: blur(4px);
}
.lb-btn:hover { border-color: var(--gold); color: var(--gold); }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-close { top: 3vh; right: 3vw; }
.lb-count { position: absolute; bottom: 4vh; left: 50%; transform: translateX(-50%); font-size: 0.8rem; letter-spacing: 0.15em; color: var(--cream2); }
.lb-btn svg { width: 20px; height: 20px; }
@media (max-width: 560px) { .lb-prev { left: 2vw; } .lb-next { right: 2vw; } .lb-btn { width: 44px; height: 44px; } }

/* =====================================================================
   FLOOR PLAN
   ===================================================================== */
.floorplan { background: var(--bg2); }
.fp-plan { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.fp-plan figure { position: relative; border: 1px solid var(--border); background: #ebe7de; overflow: hidden; }
.fp-plan img { width: 100%; height: auto; display: block; transition: transform 0.8s var(--ease); }
.fp-plan figure:hover img { transform: scale(1.015); }
.fp-plan figcaption {
  position: absolute; left: 0; bottom: 0; padding: 12px 18px;
  background: linear-gradient(transparent, rgba(18,18,20,0.8)); color: var(--cream);
  font-size: 0.82rem; letter-spacing: 0.06em; width: 100%;
}
.fp-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.fp-rooms { display: flex; flex-direction: column; gap: 2px; }
.fp-room {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; border-bottom: 1px solid var(--border2);
  color: var(--cream2); text-align: left; padding: 16px 4px; width: 100%;
  font-size: 1.05rem; letter-spacing: 0.02em; transition: all 0.3s var(--ease);
}
.fp-room .meta { font-size: 0.8rem; color: var(--cream2); opacity: 0.7; }
.fp-room:hover, .fp-room.active { color: var(--cream); padding-left: 14px; }
.fp-room.active { border-color: var(--gold); }
.fp-room.active .idx, .fp-room:hover .idx { color: var(--gold); }
.fp-room .idx { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream2); width: 2ch; }
.fp-stage { position: relative; aspect-ratio: 4 / 3; background: var(--bg3); overflow: hidden; }
.fp-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s var(--ease); }
.fp-stage img.show { opacity: 1; }
.fp-stage .fp-caption {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 14px 18px;
  background: linear-gradient(transparent, rgba(18,18,20,0.85)); width: 100%;
  font-size: 0.82rem; letter-spacing: 0.06em; color: var(--cream);
}
.fp-placeholder {
  margin-top: 2.5rem; border: 1px dashed var(--border); padding: 1.4rem 1.6rem;
  font-size: 0.82rem; color: var(--cream2); display: flex; gap: 0.8rem; align-items: flex-start;
}
.fp-placeholder svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 2px; }
@media (max-width: 860px) { .fp-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   PARAMETERS TABLE
   ===================================================================== */
.params { background: var(--bg); }
.params-table { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 6vw, 5rem); }
.params-table dl { display: contents; }
.param-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 18px 0; border-bottom: 1px solid var(--border2);
}
.param-row dt { color: var(--cream2); font-size: 0.92rem; letter-spacing: 0.02em; }
.param-row dd { color: var(--cream); font-size: 1.0rem; text-align: right; font-weight: 400; }
.param-row dd .penb { display: inline-flex; align-items: center; gap: 8px; }
.penb-badge {
  display: inline-grid; place-items: center; width: 26px; height: 26px;
  font-size: 0.8rem; font-weight: 600; color: var(--bg); background: var(--gold);
  font-family: var(--font-body); border-radius: 2px;
}
@media (max-width: 720px) { .params-table { grid-template-columns: 1fr; } }

/* =====================================================================
   LOCATION
   ===================================================================== */
.location { background: var(--bg2); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.loc-map { position: relative; min-height: 420px; border: 1px solid var(--border); overflow: hidden; }
.loc-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(0.95) brightness(0.92); }
.loc-map .map-note {
  position: absolute; left: 14px; bottom: 14px; z-index: 2; background: rgba(18,18,20,0.85);
  padding: 8px 14px; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--cream2);
  border: 1px solid var(--border);
}
.loc-points { display: flex; flex-direction: column; gap: 1.6rem; }
.loc-point { display: flex; gap: 1.1rem; }
.loc-point .ic { width: 42px; height: 42px; flex: none; border: 1px solid var(--border); display: grid; place-items: center; color: var(--gold); }
.loc-point .ic svg { width: 20px; height: 20px; }
.loc-point h4 { font-size: 1.3rem; font-weight: 500; }
.loc-point p { color: var(--cream2); font-size: 0.92rem; margin-top: 0.2rem; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } .loc-map { min-height: 320px; } }

/* =====================================================================
   AGENT CARD
   ===================================================================== */
.agent { background: var(--bg); }
.agent-card {
  display: grid; grid-template-columns: 240px 1fr; gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center; background: var(--bg2); border: 1px solid var(--border); padding: clamp(1.6rem, 4vw, 3rem);
}
.agent-photo {
  aspect-ratio: 3 / 4; background: var(--bg3); position: relative; overflow: hidden;
  border: 1px solid var(--border2);
}
.agent-photo img { width: 100%; height: 100%; object-fit: cover; }
.agent-photo .ph {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  color: var(--cream2); font-size: 0.72rem; letter-spacing: 0.1em; padding: 1rem;
}
.agent-info .role { color: var(--gold); }
.agent-info h3 { font-size: 2.2rem; font-weight: 400; margin: 0.3rem 0 0.2rem; }
.agent-info .firm { color: var(--cream2); font-size: 0.95rem; }
.agent-contact { display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; margin-top: 1.6rem; }
.agent-contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); font-size: 0.98rem; transition: color 0.2s; }
.agent-contact a:hover { color: var(--gold); }
.agent-contact svg { width: 18px; height: 18px; color: var(--gold); }
.agent-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 620px) { .agent-card { grid-template-columns: 1fr; } .agent-photo { max-width: 220px; } }

/* =====================================================================
   LEAD FORM
   ===================================================================== */
.contact { background: var(--bg2); }
.form-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.form-aside h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.form-aside .section-lead { margin-top: 1rem; }
.form-aside .aside-contact { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.form-aside .aside-contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); }
.form-aside .aside-contact svg { width: 17px; height: 17px; color: var(--gold); }

form.lead { display: grid; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream2); }
.field label .req { color: var(--gold); }
.field input, .field textarea {
  background: var(--bg); border: 1px solid var(--border); color: var(--cream);
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 300;
  padding: 14px 16px; transition: border-color 0.25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(168,160,152,0.55); }

.consent { display: flex; gap: 12px; align-items: flex-start; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); flex: none; }
.consent label { font-size: 0.82rem; color: var(--cream2); letter-spacing: 0; text-transform: none; line-height: 1.6; }
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

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

form.lead .btn-primary { justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--cream2); }

.form-success {
  display: none; text-align: center; padding: 3rem 1.5rem;
  border: 1px solid var(--border); background: var(--bg);
}
.form-success.show { display: block; }
.form-success .tick { width: 56px; height: 56px; margin: 0 auto 1.4rem; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; color: var(--gold); }
.form-success .tick svg { width: 26px; height: 26px; }
.form-success h3 { font-size: 2rem; font-weight: 400; }
.form-success p { color: var(--cream2); margin-top: 0.7rem; }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* =====================================================================
   PDF STRIP
   ===================================================================== */
.pdf-strip { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pdf-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 3rem; flex-wrap: wrap; }
.pdf-strip h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; }
.pdf-strip p { color: var(--cream2); font-size: 0.9rem; margin-top: 0.4rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 6vw 40px; }
.footer-grid { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--cream2); font-size: 0.85rem; line-height: 1.8; max-width: 320px; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--cream2); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--maxw); margin: 44px auto 0; padding-top: 24px; border-top: 1px solid var(--border2);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.76rem; color: var(--cream2); letter-spacing: 0.02em;
}
.footer-bottom a { color: var(--cream2); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* utility */
[hidden] { display: none !important; }
