/* ==========================================================================
   Klima Dubrovnik — design tokens & system
   Palette logic: cool blues/cyan = brand & trust, warm terracotta = action.
   Mirrors the existing logo's own blue/red duality (cool air / expelled heat).
   ========================================================================== */

:root {
  --ink: #0E2A3D;
  --ink-soft: #1B3B52;
  --primary: #1C7EC4;
  --primary-dark: #145A8C;
  --primary-light: #E8F3FB;
  --cyan: #4FD1D9;
  --warm: #E8602F;
  --warm-dark: #C14A20;
  --warm-light: #FDEEE7;
  --stone: #F6F3ED;
  --white: #FFFFFF;
  --slate-700: #33454F;
  --slate-600: #4B5B66;
  --slate-400: #8296A1;
  --border: #E3E8EA;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14,42,61,.07), 0 1px 1px rgba(14,42,61,.04);
  --shadow-md: 0 8px 24px rgba(14,42,61,.10);
  --shadow-lg: 0 24px 56px rgba(14,42,61,.16);

  --container: 1200px;
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 var(--space-4); max-width: 68ch; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }
section { padding: var(--space-9) 0; }
@media (max-width: 640px) { section { padding: var(--space-7) 0; } }
.bg-stone { background: var(--stone); }
.bg-ink { background: var(--ink); color: #C9D6DC; }
.bg-ink h2, .bg-ink h3 { color: var(--white); }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
}
.section-eyebrow::before {
  content: ""; width: 20px; height: 2px; background: var(--warm); display: inline-block; border-radius: 2px;
}
.section-head { max-width: 720px; margin: 0 0 var(--space-7); }
.section-head p { color: var(--slate-600); font-size: 1.08rem; }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn-warm { background: var(--warm); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-warm:hover { background: var(--warm-dark); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: inherit; }
.btn-outline-ink { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: var(--white); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ink); color: #C9D6DC; box-shadow: 0 -8px 24px rgba(0,0,0,.15);
  transform: translateY(110%); transition: transform .3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner { max-width: var(--container); margin: 0 auto; padding: var(--space-5); display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.cookie-banner__inner p { margin: 0; font-size: 0.9rem; max-width: 60ch; color: #C9D6DC; }
.cookie-banner__inner a { color: var(--cyan); }
.cookie-banner__actions { display: flex; gap: var(--space-3); flex-shrink: 0; }
.cookie-banner .btn-outline-ink { border-color: rgba(255,255,255,.4); color: var(--white); }
.cookie-banner .btn-outline-ink:hover { background: rgba(255,255,255,.1); color: var(--white); }
@media (max-width: 640px) { .cookie-banner__inner { flex-direction: column; align-items: stretch; } .cookie-banner__actions .btn { flex: 1; } }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 12px var(--space-5); gap: var(--space-5); }
.site-header__logo img { width: 130px; height: auto; }
.main-nav__list { display: flex; align-items: center; gap: var(--space-6); }
.main-nav__link {
  font-family: var(--font-body); font-weight: 600; font-size: 0.96rem; color: var(--ink);
  background: none; border: none; cursor: pointer; padding: 8px 0; display: inline-flex; align-items: center; gap: 6px;
}
.main-nav__link:hover { color: var(--primary); }
.chevron { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; transition: transform .15s ease; }
.main-nav__item--dropdown[data-open="true"] .chevron { transform: rotate(-135deg); margin-top: 2px; }
.main-nav__item--dropdown { position: relative; }
.main-nav__submenu {
  position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px; min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease;
}
.main-nav__item--dropdown[data-open="true"] .main-nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav__submenu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--ink); font-weight: 500; font-size: 0.94rem; }
.main-nav__submenu a:hover { background: var(--primary-light); color: var(--primary-dark); }
.site-header__actions { display: flex; align-items: center; gap: var(--space-4); }

.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border: none; background: none; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav {
    display: block; max-height: 0; overflow: hidden; background: var(--white);
    border-top: 1px solid var(--border); transition: max-height .25s ease;
  }
  .mobile-nav.is-open { max-height: 80vh; overflow-y: auto; }
  .mobile-nav__list { padding: var(--space-4) var(--space-5) var(--space-6); }
  .mobile-nav__list > li { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .mobile-nav__list a { display: block; padding: 8px 0; font-weight: 600; color: var(--ink); }
  .mobile-nav__group-label { font-weight: 700; color: var(--primary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .05em; }
  .mobile-nav__list ul { padding-left: var(--space-3); }
  .mobile-nav__list ul a { font-weight: 500; }
}

/* Phone CTA (click-to-reveal) */
.phone-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  background: var(--warm); color: var(--white); border: none; border-radius: var(--radius-pill);
  padding: 10px 18px; cursor: pointer; white-space: nowrap;
  transition: background-color .15s ease, transform .15s ease;
}
.phone-cta:hover { background: var(--warm-dark); transform: translateY(-1px); }
.phone-cta__icon { flex-shrink: 0; }
.phone-cta.is-revealed { background: var(--ink); }
.phone-cta.is-revealed:hover { background: var(--primary-dark); }
.phone-cta--large { font-size: 1.05rem; padding: 16px 28px; }
footer .phone-cta { background: var(--primary); }
footer .phone-cta:hover { background: var(--cyan); color: var(--ink); }
footer .phone-cta.is-revealed:hover { color: var(--white); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: var(--space-8) 0 var(--space-9); background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 65%); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-8); align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); padding: 6px 14px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--primary-dark); box-shadow: var(--shadow-sm); margin-bottom: var(--space-5); }
.hero__eyebrow::before { content: "●"; color: #2AA84A; font-size: .6rem; }
.hero h1 { margin-bottom: var(--space-4); }
.hero__lead { font-size: 1.15rem; color: var(--slate-600); margin-bottom: var(--space-6); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-7); }
.hero__trustbar { display: flex; flex-wrap: wrap; gap: var(--space-6); }
.trust-chip { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.trust-chip__icon { width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__photo-frame img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* Signature element: temperature-drop gauge */
.temp-gauge {
  position: relative; margin-top: -48px; margin-left: var(--space-6); margin-right: var(--space-5);
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: var(--space-5); display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-4); align-items: center;
}
.temp-gauge__reading { text-align: center; }
.temp-gauge__value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.temp-gauge__reading--outside .temp-gauge__value { color: var(--warm); }
.temp-gauge__reading--inside .temp-gauge__value { color: var(--primary); }
.temp-gauge__label { display: block; font-size: 0.72rem; color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; margin-top: 2px; }
.temp-gauge__bar { position: relative; height: 8px; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--warm) 0%, var(--cyan) 55%, var(--primary) 100%); overflow: visible; }
.temp-gauge__marker {
  position: absolute; top: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 3px solid var(--primary);
  box-shadow: var(--shadow-sm); transform: translate(-50%, -50%);
  left: 8%; animation: gauge-slide 1.6s cubic-bezier(.2,.8,.2,1) 0.3s both;
}
@keyframes gauge-slide { from { left: 92%; } to { left: 8%; } }
@media (prefers-reduced-motion: reduce) { .temp-gauge__marker { animation: none; left: 8%; } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .temp-gauge { margin-left: 0; margin-top: var(--space-5); }
}

/* ==========================================================================
   Cards: services / brands / blog
   ========================================================================== */
.grid { display: grid; gap: var(--space-6); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__icon { width: 56px; height: 56px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-4); }
.card__icon img { width: 100%; height: 100%; object-fit: cover; }
.card h3 { margin-bottom: var(--space-3); }
.card p { color: var(--slate-600); font-size: 0.98rem; flex-grow: 1; }
.card__link { font-weight: 700; font-size: 0.92rem; margin-top: var(--space-4); display: inline-flex; align-items: center; gap: 6px; }
.card__link::after { content: "→"; transition: transform .15s ease; }
.card__link:hover::after { transform: translateX(3px); }

.brand-tile {
  display: flex; align-items: center; justify-content: center; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-5);
  filter: grayscale(15%); transition: filter .2s ease, box-shadow .2s ease;
}
.brand-tile:hover { filter: grayscale(0); box-shadow: var(--shadow-sm); }
.brand-tile img { max-height: 46px; width: auto; object-fit: contain; }

.blog-card__image { border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-4); aspect-ratio: 16/9; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__meta { font-size: 0.82rem; color: var(--slate-400); font-weight: 600; margin-bottom: var(--space-2); }
.blog-card h3 { font-size: 1.15rem; }

/* ==========================================================================
   Process steps (numbered — real sequential procedures)
   ========================================================================== */
.process { counter-reset: step; }
.process__step { display: grid; grid-template-columns: 64px 1fr; gap: var(--space-5); position: relative; padding-bottom: var(--space-7); }
.process__step:last-child { padding-bottom: 0; }
.process__step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--white);
  background: var(--primary); width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.process__step:not(:last-child)::after {
  content: ""; position: absolute; left: 26px; top: 52px; bottom: 0; width: 2px;
  background: repeating-linear-gradient(180deg, var(--border) 0 6px, transparent 6px 12px);
}
.process__step h3 { margin-bottom: var(--space-2); }
.process__step p { color: var(--slate-600); margin-bottom: 0; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: var(--space-5) var(--space-2);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 400; transition: transform .2s ease; }
.faq-item[open] summary .faq-plus { transform: rotate(45deg); }
.faq-item__body { padding: 0 var(--space-2) var(--space-5); color: var(--slate-600); }
.faq-item__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Locations (map + list)
   ========================================================================== */
.locations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
@media (max-width: 900px) { .locations__grid { grid-template-columns: 1fr; } }
.location-list { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.location-list__item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.location-list__item .pin { color: var(--warm); flex-shrink: 0; }
.location-note { background: var(--stone); border-radius: var(--radius-md); padding: var(--space-5); font-size: 0.95rem; color: var(--slate-600); }

/* ==========================================================================
   Contact / form
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: var(--space-7); }
.contact-info-card h3 { color: var(--white); }
.contact-info-card .plain-list { display: flex; flex-direction: column; gap: var(--space-4); margin: var(--space-6) 0; }
.contact-info-card .plain-list a { color: var(--white); font-weight: 600; }
.contact-info-note { font-size: 0.88rem; color: #9FB3BD; border-top: 1px solid rgba(255,255,255,.15); padding-top: var(--space-5); margin-top: var(--space-5); }

.form-field { margin-bottom: var(--space-5); }
.form-field label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--white); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); outline: none; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field.has-error input, .form-field.has-error textarea { border-color: var(--warm); }
.form-field__error { color: var(--warm-dark); font-size: 0.84rem; margin-top: 6px; display: none; }
.form-field.has-error .form-field__error { display: block; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: var(--space-4); padding: var(--space-4); border-radius: var(--radius-sm); font-weight: 600; display: none; }
.form-status.is-visible { display: block; }
.form-status--success { background: #E7F6EC; color: #1E7A3C; }
.form-status--error { background: var(--warm-light); color: var(--warm-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #A9BAC3; padding-top: var(--space-9); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-7); padding-bottom: var(--space-8); }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__brand p { color: #93A6B1; font-size: 0.92rem; margin: var(--space-4) 0; }
.site-footer__social { display: inline-flex; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); align-items: center; justify-content: center; color: #C9D6DC; }
.site-footer__social:hover { background: var(--primary); color: var(--white); }
.site-footer h3 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: var(--space-4); }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: #A9BAC3; font-size: 0.94rem; }
.site-footer__col a:hover { color: var(--cyan); }
.site-footer__legal-links { margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: var(--space-5) 0; }
.site-footer__bottom p { margin: 0; font-size: 0.85rem; color: #7E93A0; }
.site-footer__bottom a { color: #A9BAC3; font-weight: 600; }

/* ==========================================================================
   Misc: page hero (service/blog pages), breadcrumb, prose
   ========================================================================== */
.page-hero { background: var(--stone); padding: var(--space-8) 0 var(--space-7); }
.breadcrumb { font-size: 0.86rem; color: var(--slate-400); margin-bottom: var(--space-4); }
.breadcrumb a { color: var(--slate-400); }
.breadcrumb a:hover { color: var(--primary); }
.page-hero h1 { margin-bottom: var(--space-3); }
.page-hero__lead { font-size: 1.1rem; color: var(--slate-600); max-width: 62ch; }

.prose h2 { margin-top: var(--space-8); }
.prose h3 { margin-top: var(--space-6); }
.prose ul, .prose ol { margin: 0 0 var(--space-5); padding-left: 1.3em; max-width: 68ch; }
.prose li { margin-bottom: var(--space-2); }
.prose p { color: var(--slate-700); }
.prose blockquote { border-left: 3px solid var(--warm); margin: var(--space-6) 0; padding: var(--space-2) 0 var(--space-2) var(--space-5); font-style: italic; color: var(--slate-600); }

.cta-banner { background: var(--primary); border-radius: var(--radius-lg); padding: var(--space-7); text-align: center; color: var(--white); }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #DCEEFA; margin: 0 auto var(--space-6); }
.cta-banner__actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

.author-byline { display: flex; align-items: center; gap: var(--space-3); font-size: 0.88rem; color: var(--slate-400); margin-bottom: var(--space-6); }
.author-byline strong { color: var(--ink); }
.author-byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-400); }

@media (max-width: 640px) {
  .hero__ctas .btn { width: 100%; }
  .cta-banner__actions .btn { width: 100%; }
}
