/* ============================================================
   BEETKOMPASS – STYLE.CSS  |  Mobile First, Semantic, No Libraries
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --green-dark:  #3D5336;
  --green-muted: #7A8F72;
  --green-sage:  #B8C5AE;
  --cream:       #E7E3DA;
  --rose:        #C89A8A;
  --text-dark:   #263020;
  --bg-light:    #F7F4EE;
  --offwhite:    #FBFAF6;

  --font-serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;

  --shadow-card: 0 1px 3px rgba(38,48,32,0.06), 0 4px 16px rgba(38,48,32,0.04);
  --shadow-lift: 0 4px 24px rgba(38,48,32,0.10);

  --trans:       0.25s ease;
  --header-h:    72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-up { opacity: 1 !important; transform: none !important; }
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  transition: background var(--trans), color var(--trans), border-color var(--trans),
              transform var(--trans), box-shadow var(--trans);
}
.btn:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }

.btn-primary {
  background: var(--green-dark);
  color: var(--offwhite);
  border: 2px solid var(--green-dark);
}
.btn-primary:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-ghost {
  background: transparent;
  color: var(--offwhite);
  border: 2px solid rgba(251,250,246,0.55);
}
.btn-ghost:hover {
  background: rgba(251,250,246,0.15);
  border-color: var(--offwhite);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--offwhite);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-sm  { padding: 0.625rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* === SECTIONS === */
.section { padding: 5rem 0; }
@media (min-width: 768px)  { .section { padding: 7rem 0; } }
@media (min-width: 1024px) { .section { padding: 9rem 0; } }

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-muted);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.text-body p {
  margin-bottom: 1.25rem;
  color: #3d4a38;
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 62ch;
}
.text-body p:last-child { margin-bottom: 0; }

/* === SCROLL REVEAL === */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-visible { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--trans), backdrop-filter var(--trans),
              box-shadow var(--trans), height var(--trans);
}
.site-header.scrolled {
  background: rgba(247,244,238,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(38,48,32,0.08);
  height: 60px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) { .header-inner { padding: 0 2rem; } }

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  transition: opacity var(--trans);
  flex-shrink: 0;
}
.logo:hover { opacity: 0.75; }
.logo-mark   { color: var(--offwhite); transition: color var(--trans); }
.logo-accent { color: var(--offwhite); transition: color var(--trans); }
.site-header.scrolled .logo-mark   { color: var(--text-dark); }
.site-header.scrolled .logo-accent { color: var(--green-muted); }

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 900px) { .main-nav { display: flex; } }

.nav-list { display: flex; gap: 1.75rem; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--trans);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green-dark);
  transition: width var(--trans);
}
.nav-link:hover { color: var(--green-dark); }
.nav-link:hover::after { width: 100%; }

/* Hamburger Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--trans);
}
.mobile-menu-btn:hover { background: rgba(61,83,54,0.08); }
.mobile-menu-btn:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 2px; }
@media (min-width: 900px) { .mobile-menu-btn { display: none; } }

.hamburger-line {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans), background var(--trans);
  transform-origin: center;
}
.site-header.scrolled .hamburger-line {
  background: var(--text-dark);
}
.mobile-menu-btn.is-open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.is-open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.mobile-nav.is-open { opacity: 1; pointer-events: all; }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  transition: color var(--trans);
}
.mobile-nav-link:hover { color: var(--green-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-image.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(38,48,32,0.78) 0%,
    rgba(38,48,32,0.35) 50%,
    rgba(38,48,32,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  color: var(--offwhite);
}
@media (min-width: 640px)  { .hero-content { padding: 0 2rem; } }
@media (min-width: 1024px) { .hero-content { padding: 0 3rem; } }

.hero-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,250,246,0.65);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--offwhite);
  max-width: 14ch;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.65;
  max-width: 52ch;
  color: rgba(251,250,246,0.88);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.section-problem { background: var(--offwhite); }

.problem-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px)  { .problem-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: 55fr 45fr; gap: 6rem; } }

.problem-highlight {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-dark) !important;
  font-style: italic;
}

.problem-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.problem-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) {
  .problem-image-wrap:hover .problem-image { transform: scale(1.04); }
}

/* ============================================================
   ANGEBOT SECTION
   ============================================================ */
.section-angebot { background: var(--bg-light); }

.cards-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

.offer-card { height: 100%; }

@media (min-width: 768px) {
  .offer-card-center { transform: translateY(-16px); }
}

.offer-card-inner {
  height: 100%;
  padding: 2.25rem 2rem;
  background: var(--offwhite);
  border: 1px solid rgba(184,197,174,0.45);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.offer-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--green-sage);
}

.offer-card-featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.offer-card-featured:hover { background: #344628; border-color: #344628; }
.offer-card-featured .offer-number       { color: rgba(184,197,174,0.6); }
.offer-card-featured .offer-title        { color: var(--offwhite); }
.offer-card-featured .offer-intro-text   { color: rgba(184,197,174,0.9); }
.offer-card-featured .offer-desc         { color: rgba(251,250,246,0.8); }
.offer-card-featured .offer-ideal        { color: rgba(184,197,174,0.85); border-color: rgba(184,197,174,0.2); }
.offer-card-featured .offer-ideal strong { color: rgba(184,197,174,1); }

.offer-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green-sage);
  line-height: 1;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
}

.offer-intro-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--green-muted);
  line-height: 1.55;
}

.offer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5a42;
  flex: 1;
}

.offer-ideal {
  font-size: 0.875rem;
  color: var(--green-muted);
  line-height: 1.55;
  border-top: 1px solid rgba(184,197,174,0.3);
  padding-top: 1rem;
}

.offer-card-inner > .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   BILDWELT SECTION
   ============================================================ */
.section-bildwelt { background: var(--cream); }

.bildwelt-header { max-width: 680px; margin-bottom: 3.5rem; }

.bildwelt-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4a5a42;
  margin-bottom: 1rem;
  max-width: 60ch;
}
.bildwelt-text:last-child { margin-bottom: 0; }

.bildwelt-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) {
  .bildwelt-grid { grid-template-columns: 3fr 2fr; align-items: start; }
}
.bildwelt-side { display: grid; gap: 1rem; }

.bild-wrap { border-radius: var(--radius-md); overflow: hidden; }
.bildwelt-main .bild-wrap { aspect-ratio: 4 / 5; }
.bildwelt-side .bild-wrap  { aspect-ratio: 4 / 3; }

.bild-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) { .bild-wrap:hover .bild-img { transform: scale(1.04); } }

/* ============================================================
   ABLAUF SECTION
   ============================================================ */
.section-ablauf { background: var(--offwhite); }

.ablauf-steps { display: flex; flex-direction: column; max-width: 700px; }

.ablauf-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.15rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
  min-width: 48px;
  text-align: center;
}

.step-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--green-sage), transparent);
  margin-top: 0.75rem;
}

.step-content { padding-bottom: 3rem; }
.ablauf-step:last-child .step-content { padding-bottom: 0; }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  margin-top: 0.15rem;
}

.step-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5a42;
  max-width: 52ch;
}

/* ============================================================
   ÜBER ANNE SECTION
   ============================================================ */
.section-anne { background: var(--bg-light); }

.anne-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px)  { .anne-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
@media (min-width: 1024px) { .anne-grid { grid-template-columns: 45fr 55fr; gap: 6rem; } }

.anne-image-wrap { position: relative; }

.anne-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

.anne-image-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: rgba(184,197,174,0.22);
  z-index: -1;
  pointer-events: none;
}

.anne-headline {
  font-size: clamp(1.55rem, 3vw, 2.25rem) !important;
  line-height: 1.25 !important;
  margin-bottom: 1.75rem !important;
}

.anne-text-col .text-body { margin-bottom: 2rem; }

/* ============================================================
   KONTAKT SECTION
   ============================================================ */
.section-kontakt { background: var(--cream); }

.kontakt-grid { display: grid; gap: 3.5rem; }
@media (min-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}

/* Kontakt-Bild (rechte Seite) */
.kontakt-rechts { display: flex; align-items: stretch; }

.kontakt-image-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.kontakt-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) {
  .kontakt-image-wrap:hover .kontakt-image { transform: scale(1.04); }
}

.kontakt-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4a5a42;
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.kontakt-region {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--green-muted);
  margin-bottom: 2rem;
}

.kontakt-channels { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid rgba(122,143,114,0.4);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-dark);
  transition: background var(--trans), border-color var(--trans),
              color var(--trans), transform var(--trans);
}
.channel-link:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--offwhite);
  transform: translateY(-2px);
}
.channel-link:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 3px; }

/* Form */
.kontakt-form-wrap {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(184,197,174,0.4);
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .kontakt-form-wrap { padding: 2.5rem; } }

.kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label { font-size: 0.875rem; font-weight: 500; color: var(--text-dark); }
.required { color: var(--rose); }

.form-input {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1.5px solid rgba(184,197,174,0.55);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: #9eaa97; }
.form-input:focus {
  border-color: var(--green-muted);
  box-shadow: 0 0 0 3px rgba(122,143,114,0.18);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.form-success-inner { text-align: center; padding: 2rem; }
.form-success svg { margin: 0 auto 1.25rem; color: var(--green-dark); }

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-success-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5a42;
  max-width: 38ch;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(251,250,246,0.65);
  padding: 3.5rem 0;
}

.footer-inner { display: grid; gap: 2.5rem; }
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr auto; align-items: end; }
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-logo .logo-mark   { color: var(--offwhite); }
.footer-logo .logo-accent { color: var(--green-sage); }

.footer-tagline { font-size: 0.875rem; margin-bottom: 0.35rem; color: rgba(184,197,174,0.65); }

.footer-claim {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(184,197,174,0.8);
}

.footer-meta { text-align: left; }
@media (min-width: 640px) { .footer-meta { text-align: right; } }

.footer-links { display: flex; gap: 1.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
@media (min-width: 640px) { .footer-links { justify-content: flex-end; } }

.footer-link {
  font-size: 0.85rem;
  color: rgba(251,250,246,0.5);
  transition: color var(--trans);
}
.footer-link:hover { color: rgba(251,250,246,0.9); }

.footer-disclaimer {
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  color: rgba(184,197,174,0.45);
  letter-spacing: 0.02em;
}

.footer-copy { font-size: 0.8rem; color: rgba(251,250,246,0.3); }

/* ============================================================
   MAIN – Push content below fixed header
   ============================================================ */
main > .hero {
  /* Hero fills viewport incl. header area – intentional */
  margin-top: 0;
}

/* ============================================================
   UTILITIES & FIXES
   ============================================================ */

/* Prevent horizontal overflow on any element */
html, body { max-width: 100%; }

/* Anne image overflow protection on small screens */
@media (max-width: 767px) {
  .anne-image-deco { display: none; }
}

/* Offer card hover should not apply on touch devices */
@media (hover: none) {
  .offer-card-inner:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-ghost:hover {
    transform: none;
  }
}

/* Ensure cards grid does not overflow on very small screens */
@media (max-width: 360px) {
  .cards-grid { gap: 1rem; }
  .offer-card-inner { padding: 1.5rem 1.25rem; }
  .hero-headline { font-size: 2.25rem; }
  .section-headline { font-size: 1.75rem; }
}

/* Nav CTA always visible on desktop, hidden via nav collapse on mobile */
.nav-cta { flex-shrink: 0; }
