/* =========================================================
   Nykos — v2 modern photo-driven design
   Brand: oranžová #EF4E22 + tmavá #323A42 (officiální)
   Font: Manrope (Good Times alternativa pro web)
   ========================================================= */

:root {
  /* official brand */
  --brand: #EF4E22;
  --brand-dark: #C13D17;
  --brand-darker: #8B2A0F;
  --brand-tint: #FFF1EC;
  --brand-tint-2: #FFE3D8;
  --ink: #323A42;
  --ink-2: #4F5862;
  --ink-soft: #7A848E;
  --line: #E6E8EC;
  --line-soft: #F1F3F5;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FB;
  --bg-dark: #1E252C;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 25, 35, .05);
  --shadow: 0 8px 32px rgba(20, 25, 35, .08);
  --shadow-lg: 0 24px 60px rgba(20, 25, 35, .18);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --t-fast: .15s;
  --t-med: .25s;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(1.85rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1em; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- accessibility: keyboard focus ---------- */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 3px;
}
/* nesahat na myš-klik, jen klávesnice (focus-visible to řeší) */

/* skip-link — pro klávesnici / čtečky, schovaný dokud nedostane focus */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 300;
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-revealed { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 1em 1.75em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.005em;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(239, 78, 34, .35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(239, 78, 34, .42);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
  color: #fff;
}
.btn-on-orange {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-on-orange:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 1em;
}
.eyebrow-on-dark { color: #FFB89B; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  z-index: 100;
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  height: 38px;
  width: auto;
  display: block;
  /* icon stays orange always */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.25));
  transition: filter var(--t-med) var(--ease);
}
.site-header.is-scrolled .logo-icon { filter: none; }

.logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  transition: color var(--t-med) var(--ease);
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.site-header.is-scrolled .logo-text {
  color: var(--ink);
  text-shadow: none;
}
.logo-wordmark {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
}
.logo-tagline {
  font-style: normal;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .01em;
  opacity: .85;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .logo-tagline { display: none; }
  .logo-icon { height: 38px; }
  .logo-wordmark { font-size: 1.35rem; }
}

.nav { margin-left: auto; }
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0; padding: 0;
}
.nav-list a {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .25em 0;
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width var(--t-fast), left var(--t-fast);
}
.nav-list a:hover { color: var(--brand); }
.nav-list a:hover::after { width: 100%; left: 0; }

.site-header.is-scrolled .nav-list a {
  color: var(--ink);
  text-shadow: none;
}
.site-header.is-scrolled .nav-list a:hover { color: var(--brand); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  color: #fff;
  font-weight: 700;
  padding: .65em 1.1em;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  font-size: .9rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.header-phone:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.site-header.is-scrolled .header-phone {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  text-shadow: none;
}
.site-header.is-scrolled .header-phone:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.4);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.site-header.is-scrolled .nav-toggle {
  background: #fff;
  border-color: var(--line);
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav { order: 99; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med) var(--ease);
  }
  .nav-list.is-open { max-height: 400px; }
  .nav-list li { width: 100%; }
  .nav-list a {
    color: var(--ink) !important;
    text-shadow: none !important;
    display: block;
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
  }
  .nav-list a::after { display: none; }
  .nav-list a:hover {
    background: var(--brand-tint);
    border-left-color: var(--brand);
    color: var(--brand) !important;
  }
  .header-phone span { display: none; }
  .header-phone { padding: .6em; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  min-height: 62svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding-top: 80px;
}
@media (max-width: 700px) {
  .hero { min-height: 78vh; min-height: 78svh; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,25,35,.4) 0%, rgba(20,25,35,.65) 60%, rgba(20,25,35,.95) 100%),
    radial-gradient(circle at 80% 20%, rgba(239,78,34,.25), transparent 50%);
}
.hero-content {
  padding-top: clamp(32px, 4.5vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
  max-width: 780px;
}
.hero-title {
  color: #fff;
  font-size: clamp(1.85rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 800;
}
.hero-title em {
  font-style: normal;
  color: rgba(255,255,255,.5);
  font-weight: 700;
}
.hero-title .brand-accent {
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.hero-lead {
  font-size: clamp(.98rem, 1.2vw, 1.15rem);
  color: rgba(255,255,255,.9);
  max-width: 38em;
  margin: 0 0 1.75em;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  pointer-events: none;
}
.hero-scroll-hint span {
  display: block;
  width: 4px;
  height: 10px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  animation: scrollHint 1.6s var(--ease) infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50% { transform: translateY(12px); opacity: 0; }
}

/* ---------- VALUE PROPS STRIP ---------- */
.props-strip {
  background: var(--ink);
  color: #fff;
  padding: clamp(28px, 3.5vw, 44px) 0;
  position: relative;
  z-index: 2;
}
.props-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.props-list li {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.props-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(8px, 1.2vw, 16px));
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.prop-icon {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(239,78,34,.18);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.prop-icon svg { width: 20px; height: 20px; }
.prop-title {
  font-size: clamp(.98rem, 1.25vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.prop-lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
  font-weight: 500;
}
@media (max-width: 820px) {
  .props-list { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .props-list li::after { display: none; }
}
@media (max-width: 480px) {
  .props-list { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- sections ---------- */
.section {
  padding: clamp(56px, 7vw, 96px) 0;
  scroll-margin-top: 70px;
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
}
.section-dark h2, .section-dark h3, .section-dark strong { color: #fff; }

.section-head {
  text-align: center;
  max-width: 38em;
  margin: 0 auto clamp(36px, 4.5vw, 56px);
}
.section-head h2 { margin: 0 0 .5em; }
.section-head-dark h2 { color: #fff; }
.section-lead {
  color: var(--ink-soft);
  font-size: 1rem;
}
.section-dark .section-lead { color: rgba(255,255,255,.7); }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-text .lead {
  font-size: 1.05rem;
  color: var(--ink-2);
}
.about-text h2 { margin-bottom: 1rem; }


.about-visual {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- BRANDS ---------- */
.brands {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.brands-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.brands-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 56px;
  justify-content: center;
  align-items: center;
}
.brands-list li {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-2);
  opacity: .6;
  letter-spacing: -.01em;
  transition: opacity var(--t-fast);
}
.brands-list li:hover { opacity: 1; }
.brands-more {
  font-size: .9rem !important;
  font-weight: 500 !important;
  font-style: italic;
  opacity: .5 !important;
}

/* ---------- SORTIMENT ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cat-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.cat-card:hover .cat-img img {
  transform: scale(1.06);
}
.cat-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-body h3 {
  margin-bottom: .75rem;
  font-size: 1.2rem;
}
.cat-body ul {
  list-style: none;
  margin: 0 0 .75rem; padding: 0;
}
.cat-body li {
  padding: .4em 0;
  color: var(--ink-2);
  font-size: .9rem;
  border-top: 1px solid var(--line-soft);
}
.cat-body li:first-child { border-top: 0; padding-top: 0; }
.cat-more {
  margin: auto 0 0;
  padding-top: .75em;
  font-size: .85rem;
  color: var(--brand);
  font-weight: 600;
  font-style: italic;
}

.cat-card-cta {
  background: var(--brand);
  color: #fff;
}
.cat-card-cta:hover { background: var(--brand-dark); }
.cat-card-cta .cat-body { gap: .85rem; padding: 1.75rem; }
.cat-cta-icon {
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: .25rem;
}
.cat-cta-icon svg { width: 26px; height: 26px; }
.cat-card-cta h3 { color: #fff; font-size: 1.35rem; }
.cat-card-cta p { color: rgba(255,255,255,.92); margin-bottom: .75rem; font-size: .95rem; }
.cat-card-cta .btn { margin-top: auto; align-self: flex-start; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }

.contact-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 1rem;
}
.contact-address address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.contact-address strong { display: block; margin-bottom: .25em; font-size: 1.05em; }
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.contact-links a {
  font-size: .9rem;
  font-weight: 600;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}
.hours th, .hours td {
  text-align: left;
  padding: 10px 0;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.hours th { font-weight: 500; color: var(--ink-soft); width: 55%; font-size: .9rem; }
.hours td { color: var(--ink); font-weight: 600; font-size: .95rem; }
.hours .closed { color: var(--ink-soft); font-weight: 500; font-style: italic; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; padding-bottom: 0; }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list li:first-child { padding-top: 0; }
.contact-list .lbl {
  display: block;
  font-size: .75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-list a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.contact-list a:hover { color: var(--brand); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.map-embed iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

/* ---------- REVIEWS ---------- */
.reviews { background: var(--bg-alt); }
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.review-card { flex: 1 1 300px; max-width: 370px; }
@media (max-width: 680px) { .review-card { flex-basis: 100%; max-width: 460px; } }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--brand);
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.review-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.review-card figcaption {
  display: flex;
  align-items: baseline;
  gap: .6em;
  padding-top: .5rem;
  border-top: 1px solid var(--line-soft);
}
.review-name { font-weight: 700; color: var(--ink); }
.review-src {
  font-size: .78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.reviews-foot {
  text-align: center;
  margin: 2.5rem 0 0;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.reviews-foot a { font-weight: 600; }

/* ---------- CONTACT CTA (místo formuláře) ---------- */
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 48px);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact-cta-text {
  flex: 1 1 320px;
}
.contact-cta-text h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0 0 .5em;
  line-height: 1.2;
}
.contact-cta-text p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 46ch;
}
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .contact-cta-actions { width: 100%; }
  .contact-cta-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #B0B9C2;
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-logo {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p { margin: 0; font-size: .95rem; line-height: 1.5; }
.footer-heading {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: #B0B9C2;
  font-size: .95rem;
}
.footer-col a:hover { color: var(--brand); }
.footer-copy p {
  font-size: .82rem;
  color: #6E7984;
  margin: 0;
  line-height: 1.55;
}

/* ---------- LEGAL PAGE ---------- */
.page-legal { padding-top: 80px; }
.legal-section { padding: clamp(48px, 6vw, 80px) 0; }
.legal-container { max-width: 760px; }
.legal-section h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: .25em 0 1em;
}
.legal-section h2 {
  margin-top: 2.5em;
  font-size: 1.4rem;
}
.legal-section h3 {
  margin-top: 1.5em;
  font-size: 1.1rem;
}
.legal-section .legal-lead {
  font-size: 1.15rem;
  color: var(--ink-2);
  margin-bottom: 2em;
}
.legal-section ul { padding-left: 1.25em; margin: 0 0 1em; }
.legal-section li { margin: .35em 0; color: var(--ink-2); }
.legal-section code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .9em;
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
}
.legal-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal-back a { font-weight: 600; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  width: calc(100% - 40px);
  max-width: 420px;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  font-size: .9rem;
  line-height: 1.5;
  transform: translateY(150%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-title {
  margin: 0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.cookie-text {
  margin: 0;
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-link:hover { color: var(--brand); }
@media (max-width: 500px) {
  .cookie-banner {
    bottom: 12px;
    right: 12px;
    width: calc(100% - 24px);
    padding: 16px 18px;
  }
}

.footer-legal {
  margin-top: 8px !important;
}
.footer-legal a {
  color: #8993A1 !important;
  font-size: .82rem !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal a:hover { color: #fff !important; }

/* ---------- print ---------- */
@media print {
  .site-header, .nav, .hero-cta, .map-embed, .nav-toggle, .site-footer, .hero-scroll-hint { display: none !important; }
  .hero { min-height: auto; color: #000; padding-top: 24px; }
  .hero-bg { display: none; }
  .hero-title, .hero-lead { color: #000; }
  body { color: #000; }
}
