/* ============================================
   DESIGN SYSTEM – ELISABETH RIEDER
   elisabethrieder.life
   ============================================ */

/* ── 1. Variables ── */
:root {
  --teal-900: #134E4A;
  --teal-800: #115E59;
  --teal-700: #0F766E;
  --teal-600: #0D9488;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  --teal-300: #5EEAD4;
  --teal-200: #99F6E4;
  --teal-100: #CCFBF1;
  --teal-50:  #F0FDFA;

  --warm-50:  #FFFBF5;
  --warm-100: #FEF3E2;
  --warm-200: #FDE8C8;

  --stone-900: #1C1917;
  --stone-800: #292524;
  --stone-700: #44403C;
  --stone-600: #57534E;
  --stone-500: #78716C;
  --stone-400: #A8A29E;
  --stone-300: #D6D3D1;
  --stone-200: #E7E5E4;
  --stone-100: #F5F5F4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-soft: 0 4px 30px rgba(19, 78, 74, 0.08);
  --shadow-medium: 0 10px 40px rgba(19, 78, 74, 0.12);
}

/* ── 2. Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--stone-700);
  background: var(--warm-50);
  overflow-x: hidden;
  max-width: 100vw;
  padding-top: 84px;
}

/* ── 3. Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; color: var(--stone-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { max-width: 65ch; }

/* ── 4. Container + Section ── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4rem 0; }

/* ── 5. Section Header + Label ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.75rem;
}
.section-header p { margin: 0.75rem auto 0; color: var(--stone-500); }

/* ── 6. Button System ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--teal-700);
  color: white;
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.3);
}
.btn-primary:hover {
  background: var(--teal-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(15, 118, 110, 0.4);
}
.btn-secondary {
  background: white;
  color: var(--teal-700);
  border: 2px solid var(--teal-200);
}
.btn-secondary:hover {
  border-color: var(--teal-500);
  background: var(--teal-50);
}
.btn-white {
  background: white;
  color: var(--teal-800);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--warm-100);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── 7. Hero Module ── */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--warm-50) 0%, var(--teal-50) 60%, var(--warm-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 800px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal-700);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero h1 { color: var(--teal-900); margin-bottom: 0.75rem; }
.hero h1 span {
  display: block;
  font-size: 0.45em;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--teal-600);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-text { font-size: 1.15rem; color: var(--stone-600); margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Dark Hero */
.hero--dark { background: linear-gradient(135deg, var(--stone-900) 0%, var(--teal-900) 100%); }
.hero--dark::before { background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 60%); }
.hero--dark h1 { color: white; }
.hero--dark h1 span { color: var(--teal-300); }
.hero--dark .hero-text { color: rgba(255, 255, 255, 0.75); }
.hero--dark .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--teal-300);
  box-shadow: none;
}
.hero--dark .hero-badge::before { display: none; }

/* Editorial Hero (with image) */
.hero--editorial .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 550px; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image-wrapper {
  width: 350px;
  height: 420px;
  border-radius: 175px 175px 30px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: linear-gradient(180deg, var(--teal-100) 0%, var(--warm-200) 100%);
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Compact Hero */
.hero--compact { min-height: auto; padding: 3rem 0; }

/* ── 8. Trust Row ── */
.trust-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-200);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--stone-500);
}
.trust-item svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; }

/* ── 9. Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: white;
  padding: 1.75rem;
  border-radius: 16px;
  border-left: 4px solid var(--teal-500);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.card:hover { transform: translateY(-3px); }
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--teal-800); }
.card p { font-size: 0.9rem; color: var(--stone-600); margin: 0; }
.card .icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.card--warm {
  background: var(--warm-50);
  border-left: none;
  box-shadow: none;
  border: 1px solid var(--stone-200);
}
.card--centered { text-align: center; border-left: none; }
.card--centered .icon { font-size: 2rem; margin-bottom: 1rem; }

.card-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--teal-700);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}
.card-link:hover { color: var(--teal-900); }

/* ── 10. Testimonials ── */
.testimonials {
  background: linear-gradient(135deg, var(--warm-100) 0%, var(--teal-50) 100%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--teal-100);
}
.testimonial-stars { color: var(--teal-500); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--stone-600);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal-200) 0%, var(--warm-200) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--teal-700);
}
.author-info .name { font-weight: 600; color: var(--stone-800); font-size: 0.9rem; }
.author-info .source { font-size: 0.8rem; color: var(--stone-400); }

/* ── 11. FAQ Accordion ── */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  background: var(--warm-50);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--stone-200);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--teal-200); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--stone-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal-600);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--stone-600);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ── 12. Process Timeline ── */
.process-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-500), var(--teal-700));
}
.process-step { position: relative; padding-left: 70px; padding-bottom: 2.5rem; }
.process-step:last-child { padding-bottom: 0; }
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--teal-700);
  border: 3px solid var(--teal-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.95rem; }

/* Process in dark context */
.section--dark .process-step h3 { color: white; }
.section--dark .process-step p { color: var(--teal-200); }

/* ── 13. Final CTA ── */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  text-align: center;
  color: white;
}
.final-cta h2 { color: white; margin-bottom: 1rem; }
.final-cta > .container > p { color: var(--teal-200); margin: 0 auto 2rem; font-size: 1.1rem; }
.final-cta .btn-primary {
  background: white;
  color: var(--teal-800);
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}
.final-cta .btn-primary:hover {
  background: var(--warm-100);
  transform: translateY(-3px);
}
.contact-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-row a { color: var(--teal-200); text-decoration: none; transition: color 0.3s; }
.contact-row a:hover { color: white; }

/* ── 14. Dark Section ── */
.section--dark { background: var(--teal-900); color: white; }
.section--dark .section-label { color: var(--teal-400); }
.section--dark .section-header h2 { color: white; }
.section--dark .section-header p { color: var(--teal-200); }
.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.dark-card:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--teal-400); }
.dark-card h3 {
  color: var(--teal-400);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.dark-card h4 { color: white; font-size: 1.1rem; margin-bottom: 0.75rem; }
.dark-card p { color: var(--stone-400); font-size: 0.9rem; }
.dark-card a { color: var(--teal-400); text-decoration: none; font-size: 0.85rem; display: inline-block; margin-top: 0.75rem; }
.dark-card a:hover { color: white; }

/* ── 15. Split Grid ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.split-grid--wide { grid-template-columns: 1.3fr 1fr; }
.split-grid--reverse { grid-template-columns: 1fr 1.5fr; }

/* ── 16. Info Card / Sidebar Card ── */
.info-card { background: white; border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-soft); }
.info-card h3 { color: var(--teal-700); font-size: 1.1rem; margin-bottom: 1.25rem; }
.detail-row { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--stone-200); }
.detail-row:last-child { border-bottom: none; }
.detail-row .label { font-size: 0.8rem; font-weight: 600; color: var(--stone-500); text-transform: uppercase; letter-spacing: 0.05em; min-width: 80px; }
.detail-row .value { font-size: 0.9rem; color: var(--stone-700); }

/* ── 17. Highlight Box + Check List ── */
.highlight-box {
  background: var(--teal-50);
  border-radius: 20px;
  padding: 2rem;
  border-left: 4px solid var(--teal-500);
}
.highlight-box h3 { color: var(--teal-700); font-size: 1.1rem; margin-bottom: 1rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--stone-600);
}
.check-list li::before {
  content: '\2713';
  color: var(--teal-500);
  font-weight: bold;
  flex-shrink: 0;
}

/* ── 18. Chips ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-200);
}
.chip--status { background: var(--warm-100); color: var(--stone-700); border-color: var(--warm-200); }
.chip--price { background: white; color: var(--teal-800); border-color: var(--teal-200); font-weight: 600; }
.info-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.75rem 0; }

/* ── 19. Legal Prose ── */
.page-prose { max-width: 780px; margin: 2rem auto; padding: 0 1.5rem; }
.page-prose h1 { margin-bottom: 1.5rem; }
.page-prose h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 2.5rem 0 1rem; }
.page-prose h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin: 2rem 0 0.75rem; }
.page-prose p { color: var(--stone-600); margin-bottom: 1rem; }
.page-prose ul, .page-prose ol { margin: 0.75rem 0 1.25rem 1.5rem; color: var(--stone-600); }
.page-prose li { margin-bottom: 0.4rem; }
.page-prose a { color: var(--teal-700); text-decoration: underline; }
.page-prose a:hover { color: var(--teal-900); }

/* ── 20. Shell: Header ── */
.site-shell-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  background: color-mix(in srgb, var(--warm-50) 94%, white);
  border-bottom: 1px solid var(--stone-200);
  backdrop-filter: blur(10px);
}
.site-shell-nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-shell-brand {
  color: var(--teal-900);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  font-size: 1.2rem;
}
.site-shell-menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--stone-300);
  border-radius: 10px;
  background: white;
  padding: 0.45rem 0.7rem;
  color: var(--stone-700);
  font-size: 0.95rem;
}
.site-shell-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}
.site-shell-links a,
.site-shell-dropdown > summary {
  color: var(--stone-700);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
}
.site-shell-links a:hover,
.site-shell-dropdown > summary:hover {
  color: var(--teal-700);
}
.site-shell-links a.is-active {
  color: var(--teal-700);
  font-weight: 600;
}
.site-shell-dropdown { position: relative; }
.site-shell-dropdown > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-shell-dropdown > summary::-webkit-details-marker { display: none; }
.site-shell-dropdown-panel {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 0.45rem);
  min-width: 260px;
  padding: 0.5rem;
  border: 1px solid var(--stone-200);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.site-shell-dropdown[open] .site-shell-dropdown-panel { display: grid; gap: 0.2rem; }
.site-shell-dropdown-panel a { border-radius: 8px; padding: 0.45rem 0.5rem; }
.site-shell-dropdown-panel a:hover { background: var(--teal-50); }
.site-shell-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.62rem 1.12rem;
  background: var(--teal-700);
  color: white !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 0.35rem;
}
.site-shell-cta:hover { background: var(--teal-800); }

/* ── 21. Shell: Footer ── */
.site-shell-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--stone-200);
  background: white;
}
.site-shell-footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 1.6rem 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.2rem;
}
.site-shell-footer-col h3 {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone-500);
}
.site-shell-footer-col a,
.site-shell-footer-col p {
  display: block;
  margin: 0.38rem 0;
  color: var(--stone-600);
  text-decoration: none;
  font-size: 0.93rem;
}
.site-shell-footer-col a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}
.site-shell-footer-col a.social-link svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--stone-500);
}
.site-shell-footer-col a.social-link:hover svg { color: var(--teal-700); }
.site-shell-footer-col a:hover { color: var(--teal-700); }
.site-shell-footer-copy {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  border-top: 1px solid var(--stone-200);
  padding-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--stone-500);
}
.site-shell-footer-logos {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.4rem;
}
.site-shell-footer-logos img {
  width: 92px;
  height: 118px;
  object-fit: contain;
  border-radius: 10px;
  background: white;
}

/* ── 22. Shell: Page Defaults (template pages) ── */
.page-shell-main { max-width: 1020px; margin: 0 auto; padding: 0 1.25rem; }
.page-shell-hero {
  margin-top: 1.4rem;
  border-radius: 20px;
  padding: 2.2rem 1.4rem;
  background: linear-gradient(135deg, var(--warm-50) 0%, var(--teal-50) 70%, var(--warm-100) 100%);
  border: 1px solid var(--stone-200);
}
.page-shell-label {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.page-shell-hero h1 { margin: 0 0 0.8rem; color: var(--stone-900); line-height: 1.2; font-size: clamp(1.85rem, 4vw, 2.75rem); }
.page-shell-hero p { margin: 0; max-width: 72ch; color: var(--stone-600); }
.page-shell-section {
  margin-top: 1.3rem;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  padding: 1.25rem;
}
.page-shell-section h2 { margin: 0 0 0.65rem; color: var(--stone-900); font-size: clamp(1.25rem, 2.8vw, 1.7rem); }
.page-shell-section p { color: var(--stone-600); }
.page-shell-bullets { margin: 0.65rem 0 0; padding-left: 1.15rem; }
.page-shell-bullets li { margin: 0.35rem 0; color: var(--stone-600); }
.page-shell-cta-row { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.page-shell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1.2rem;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
}
.page-shell-btn-primary { background: var(--teal-700); color: white; }
.page-shell-btn-primary:hover { background: var(--teal-800); }
.page-shell-btn-secondary { background: white; color: var(--teal-700); border-color: var(--stone-300); }
.page-shell-btn-secondary:hover { border-color: var(--teal-600); color: var(--teal-800); }

/* ── 23. Responsive ── */
@media (max-width: 1080px) {
  .site-shell-footer-inner { grid-template-columns: 1fr 1fr; }
  .site-shell-footer-logos { justify-content: center; }
}

@media (max-width: 920px) {
  body { padding-top: 72px; }
  .site-shell-nav { flex-wrap: wrap; }
  .site-shell-menu-toggle { display: inline-flex; }
  .site-shell-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-top: 0.35rem;
  }
  .site-shell-header.is-open .site-shell-links { display: flex; }
  .site-shell-dropdown { position: static; }
  .site-shell-dropdown-panel { position: static; margin-top: 0.35rem; min-width: unset; box-shadow: none; }
  .site-shell-cta { margin-left: 0; width: 100%; }
}

@media (max-width: 900px) {
  .split-grid,
  .split-grid--wide,
  .split-grid--reverse { grid-template-columns: 1fr; }
  .hero--editorial .container { grid-template-columns: 1fr; text-align: center; }
  .hero--editorial .hero-content { max-width: 100%; }
  .hero--editorial .hero-ctas { justify-content: center; }
  .hero--editorial .trust-row { justify-content: center; }
  .hero--editorial .hero-image { margin-top: 2rem; }
  .hero--editorial .hero-image-wrapper { width: 200px; height: 240px; border-radius: 100px 100px 20px 20px; }
}

@media (max-width: 700px) {
  .site-shell-footer-inner { grid-template-columns: 1fr; }
  .page-shell-main { padding: 0 1rem; }
  .page-shell-hero { padding: 1.6rem 1rem; }
  .page-shell-section { padding: 1rem; }
}

@media (max-width: 600px) {
  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); word-wrap: break-word; overflow-wrap: break-word; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; max-width: 320px; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-row { flex-direction: column; gap: 1rem; }
  .page-prose { padding: 0 1rem; }
}
