/* ============================================================
   KLEINE-HOTELS.COM – Stylesheet
   Design: Refined editorial, nature-inspired warmth
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --ink:        #1a1814;
  --ink-mid:    #3d3830;
  --ink-light:  #6b6358;
  --sand:       #f5f0e8;
  --sand-deep:  #ede6d6;
  --sand-border:#d8d0c0;
  --white:      #fdfcfa;
  --accent:     #4a7c6f;      /* Teal-green: nature, lakes */
  --accent-warm:#c07d3a;      /* Warm amber: sun, warmth */
  --accent-light:#e8f2ef;
  --hero-from:  #1e3a34;
  --hero-to:    #0d2420;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-gap: clamp(4rem, 8vw, 8rem);
  --container:   1200px;
  --radius:      4px;
  --radius-lg:   12px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Layout ---- */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}
.container-narrow {
  width: min(760px, 100% - 2rem);
  margin-inline: auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; }

p { max-width: 65ch; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.btn-primary:hover {
  background: #3a6b5f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,124,111,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 36, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(13, 36, 32, 0.98);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
  padding-block: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.logo-icon { color: var(--accent); font-size: 0.8rem; }
.logo-dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--hero-from) 0%, var(--hero-to) 100%);
  overflow: hidden;
  padding: 6rem 1rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: #4a9e87;
  top: -200px; right: -100px;
  animation: float1 12s ease-in-out infinite alternate;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: #2a6e5c;
  bottom: -100px; left: -100px;
  animation: float2 15s ease-in-out infinite alternate;
}
.hero-shape-3 {
  width: 300px; height: 300px;
  background: #c07d3a;
  top: 40%; left: 40%;
  opacity: 0.08;
  animation: float1 18s ease-in-out infinite alternate-reverse;
}
@keyframes float1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.1); }
}
@keyframes float2 {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(-20px, 30px) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  animation: fadeUp 1s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  animation-delay: 0.1s;
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  padding-block: var(--section-gap);
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro-text h2 {
  margin-bottom: 1.2rem;
}
.intro-text p {
  color: var(--ink-mid);
  margin-bottom: 1rem;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--sand);
  border: 1px solid var(--sand-border);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-card:first-child {
  grid-column: 1 / -1;
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ============================================================
   CARD GRIDS
   ============================================================ */
.categories-section,
.lakes-section {
  padding-block: var(--section-gap);
  background: var(--sand);
}
.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid-5 { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* Destination Cards */
.destination-card {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,24,20,0.1);
}
.card-img-wrap { overflow: hidden; }
.card-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,
    hsl(var(--hue), 40%, 75%) 0%,
    hsl(var(--hue), 55%, 55%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s var(--ease);
}
.destination-card:hover .card-img-placeholder {
  transform: scale(1.05);
}
.card-body {
  padding: 1rem 1.2rem;
}
.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.card-body p {
  font-size: 0.8rem;
  color: var(--ink-light);
}

/* Lake Cards */
.lake-card {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  transition: all 0.25s var(--ease);
  display: block;
}
.lake-card:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74,124,111,0.25);
}
.lake-card:hover h3,
.lake-card:hover p { color: white; }
.lake-card h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.lake-card p { font-size: 0.8rem; color: var(--ink-light); }

/* ============================================================
   THEMES SECTION
   ============================================================ */
.themes-section {
  padding-block: var(--section-gap);
  background: var(--white);
}
.theme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.theme-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  color: white;
  transition: transform 0.3s var(--ease);
}
.theme-card:hover { transform: scale(1.02); }
.theme-card-large {
  grid-column: span 2;
  min-height: 360px;
}
.theme-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s var(--ease);
}
.theme-card:hover .theme-bg { transform: scale(1.04); }
.theme-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.theme-bg-see    { background: linear-gradient(160deg, #1a4a5e 0%, #2d7a65 100%); }
.theme-bg-meer   { background: linear-gradient(160deg, #1a3a5e 0%, #2d5a9a 100%); }
.theme-bg-ski    { background: linear-gradient(160deg, #3a4a6e 0%, #6a7aae 100%); }
.theme-bg-familie{ background: linear-gradient(160deg, #5e3a2a 0%, #9a6a4a 100%); }
.theme-bg-winter { background: linear-gradient(160deg, #2a3a4e 0%, #4a6a8e 100%); }

.theme-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%;
}
.theme-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.theme-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.5rem;
}
.theme-content p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  max-width: 28ch;
}
.theme-cta {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0.9;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  padding-block: var(--section-gap);
  background: var(--hero-to);
  color: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.trust-item { text-align: center; }
.trust-icon {
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.trust-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: white;
}
.trust-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-inline: auto;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding-block: var(--section-gap);
  background: var(--sand);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--sand-border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  list-style: none;
  transition: background 0.2s;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-question { background: var(--sand); }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; max-width: 24ch; }
.site-footer h4 {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer a {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; max-width: 100%; }
.footer-disclaimer { color: rgba(255,255,255,0.35); font-size: 0.75rem !important; }

/* ============================================================
   LANDING PAGE TEMPLATE STYLES
   ============================================================ */

/* LP Hero */
.lp-hero {
  padding: 9rem 1rem 5rem;
  background: linear-gradient(160deg, var(--hero-from) 0%, var(--hero-to) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,124,111,0.2) 0%, transparent 60%);
}
.lp-hero-content { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.lp-hero h1 { margin-bottom: 1rem; }
.lp-hero p  { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin: 0 auto 2rem; max-width: 50ch; }

/* Breadcrumb */
.breadcrumb {
  background: var(--sand);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sand-border);
}
.breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  font-size: 0.8rem;
  color: var(--ink-light);
}
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.5rem; }
.breadcrumb a { color: var(--accent); }

/* LP Content */
.lp-content {
  padding-block: var(--section-gap);
  background: var(--white);
}
.lp-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.lp-text h2 { margin-bottom: 1rem; }
.lp-text p  { color: var(--ink-mid); margin-bottom: 1.2rem; }

/* Highlights */
.highlights-section {
  padding-block: var(--section-gap);
  background: var(--sand);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.highlight-item {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.highlight-item .hi-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
}
.highlight-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}
.highlight-item p { font-size: 0.85rem; color: var(--ink-mid); }

/* Sidebar CTA */
.lp-sidebar {
  position: sticky;
  top: 6rem;
}
.cta-box {
  background: var(--accent);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.cta-box h3 { font-size: 1.4rem; margin-bottom: 0.7rem; color: white; }
.cta-box p  { font-size: 0.85rem; opacity: 0.85; margin: 0 auto 1.5rem; }
.cta-box .btn {
  background: white;
  color: var(--accent);
  width: 100%;
  justify-content: center;
  font-weight: 500;
}
.cta-box .btn:hover { background: var(--sand); transform: translateY(-2px); }

/* Internal links box */
.internal-links {
  background: var(--sand);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.internal-links h4 { margin-bottom: 1rem; }
.internal-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.internal-links a {
  font-size: 0.85rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.internal-links a::before { content: '→'; }
.internal-links a:hover { gap: 0.8rem; }

/* ============================================================
   IMPRESSUM / DATENSCHUTZ / KONTAKT
   ============================================================ */
.legal-page {
  padding: 8rem 1rem 5rem;
}
.legal-content {
  max-width: 760px;
  margin-inline: auto;
}
.legal-content h1 { margin-bottom: 2rem; }
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.legal-content p, .legal-content address {
  color: var(--ink-mid);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-style: normal;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mid);
}
.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--sand-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-content-grid { grid-template-columns: 1fr; }
  .lp-sidebar { position: static; }
  .theme-grid {
    grid-template-columns: 1fr 1fr;
  }
  .theme-card-large { grid-column: span 1; }
  .theme-card { min-height: 220px; }
}

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .stat-card:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--hero-to);
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open li a { padding: 0.7rem 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: flex; }
  .theme-grid { grid-template-columns: 1fr; }
  .theme-card-large { min-height: 280px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
