/* ============================================================
   Sabine Eichinger-Winkler – Begleitung. Beratung. Stärkung.
   Warmes, weiches Design in Anlehnung an Flyer & Visitenkarten
   ============================================================ */

:root {
  /* Farbwelt der Flyer */
  --cream:       #faf5ee;
  --cream-deep:  #f4ece1;
  --sage:        #8a9a7b;
  --sage-dark:   #6d7d5f;
  --sage-light:  #dde5d3;
  --rose:        #c98a95;
  --rose-dark:   #b06f7c;
  --rose-light:  #f3dfe0;
  --rose-soft:   #f9ecec;
  --beige:       #cdb99a;
  --beige-light: #efe6d6;
  --earth:       #7a6a55;
  --ink:         #4c463d;
  --ink-soft:    #6e675c;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 30px rgba(122, 106, 85, 0.10);
  --shadow-card: 0 6px 22px rgba(122, 106, 85, 0.12);
  --shadow-hover: 0 14px 34px rgba(122, 106, 85, 0.16);

  --font-body: "Segoe UI", "Trebuchet MS", -apple-system, BlinkMacSystemFont,
               "Helvetica Neue", Arial, sans-serif;
  --font-script: "Segoe Script", "Bradley Hand", "Brush Script MT",
                 "Snell Roundhand", "Apple Chancery", cursive;
  --font-heading: Georgia, "Palatino Linotype", "Book Antiqua", serif;
}

/* ===== Basis ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--rose-dark); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--sage-dark); }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.script { font-family: var(--font-script); }

h1, h2, h3 { font-family: var(--font-heading); color: var(--ink); font-weight: 600; }

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  letter-spacing: .01em;
}

h2 .hl { color: var(--sage-dark); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 154, 123, 0.18);
  transition: box-shadow .3s ease;
}

.site-header.scrolled { box-shadow: 0 4px 20px rgba(122, 106, 85, 0.10); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .7rem;
}

.brand { display: flex; align-items: center; gap: .65rem; color: var(--ink); }

.brand-icon { width: 40px; height: 40px; color: var(--sage-dark); flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }

.brand-name {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--ink);
}

.brand-claim {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-size: .95rem;
  color: var(--ink-soft);
  transition: background .25s ease, color .25s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--rose);
  color: #fff;
  margin-left: .35rem;
}

.nav-cta:hover, .nav-cta.active { background: var(--rose-dark); color: #fff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(243, 223, 224, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 8% 85%, rgba(221, 229, 211, 0.6) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: .8;
}

.hero-deco-left { left: -20px; bottom: 0; width: 110px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--rose-dark);
  margin-bottom: .45rem;
}

.hero-eyebrow-secondary {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--sage-dark);
  letter-spacing: .18em;
}

.heart-accent { color: var(--rose); margin-right: .3rem; }

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: .8rem;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--sage-dark);
  margin-bottom: 1.4rem;
}

.hero-lead {
  max-width: 56ch;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

.hero-lead strong {
  color: var(--sage-dark);
  font-weight: 600;
}

.hero-focus {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}

.hero-focus-link {
  display: inline-block;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--sage-light);
  color: var(--sage-dark);
  font-size: .92rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(122, 106, 85, 0.07);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.hero-focus-link:hover {
  background: var(--sage-light);
  border-color: var(--sage);
  color: var(--sage-dark);
  transform: translateY(-1px);
}

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

.btn {
  display: inline-block;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 138, 149, 0.35);
}

.btn-primary:hover { background: var(--rose-dark); color: #fff; box-shadow: 0 10px 24px rgba(201, 138, 149, 0.4); }

.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}

.btn-secondary:hover { background: var(--sage-light); color: var(--sage-dark); }

.hero-portrait { text-align: center; }

.portrait-figure {
  margin: 0 auto;
  max-width: min(380px, 78vw);
}

.portrait-figure picture {
  display: block;
  position: relative;
}

.portrait-figure picture::before {
  content: "";
  position: absolute;
  inset: 8% -6% -4% -6%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(243, 223, 224, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 85%, rgba(221, 229, 211, 0.4) 0%, transparent 50%);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.portrait-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

.portrait-motto {
  margin-top: 1.4rem;
  color: var(--sage-dark);
  font-size: 1.15rem;
}

/* ===== Zitat ===== */
.quote-band {
  background: linear-gradient(120deg, var(--sage-light) 0%, var(--cream-deep) 55%, var(--rose-light) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.quote {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.quote-leaf {
  width: 58px;
  margin: 0 auto .8rem;
  display: block;
}

.quote blockquote {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--ink);
  line-height: 1.35;
}

.quote figcaption {
  margin-top: .8rem;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--rose-dark);
}

/* ===== Sektionen allgemein ===== */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.section-tinted { background: var(--cream-deep); }

.section-head { text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }

.section-eyebrow {
  color: var(--rose-dark);
  font-size: 1.25rem;
  margin-bottom: .4rem;
}

.head-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-top: 1rem;
}

.head-divider span {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage));
}

.head-divider span:last-child {
  background: linear-gradient(90deg, var(--sage), transparent);
}

.head-divider i {
  font-style: normal;
  color: var(--rose);
  font-size: .95rem;
}

.section-intro {
  max-width: 62ch;
  margin: 1.2rem auto 0;
  color: var(--ink-soft);
}

/* ===== Über Sabine ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-text p { margin-bottom: 1.15rem; color: var(--ink-soft); }

.about-text em { color: var(--sage-dark); font-style: italic; }

.haltung-title {
  margin: 1.6rem 0 .9rem;
  color: var(--rose-dark);
  font-size: 1.45rem;
  font-weight: 400;
}

.haltung-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.haltung-list li {
  background: #fff;
  border: 1px solid var(--sage-light);
  color: var(--sage-dark);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .92rem;
  box-shadow: 0 2px 8px rgba(122, 106, 85, 0.06);
}

.about-media { display: flex; flex-direction: column; gap: 1.4rem; }

.media-card {
  background: #fff;
  padding: 12px 12px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.media-card img { border-radius: calc(var(--radius-lg) - 8px); }

.media-card figcaption {
  text-align: center;
  margin-top: .8rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-badge {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(120deg, var(--rose-soft), var(--beige-light));
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.about-badge svg { width: 44px; height: 44px; color: var(--rose-dark); flex-shrink: 0; }

.about-badge p { font-size: .95rem; color: var(--ink-soft); }
.about-badge strong { color: var(--ink); }

/* ===== Angebote (Karten) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.6rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(205, 185, 154, 0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.card-priority {
  border-color: rgba(138, 154, 123, 0.35);
  background: linear-gradient(180deg, #fff 0%, rgba(221, 229, 211, 0.18) 100%);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.card-icon svg, .focus-icon svg { width: 32px; height: 32px; }

.icon-sage { background: var(--sage-light); color: var(--sage-dark); }
.icon-rose { background: var(--rose-light); color: var(--rose-dark); }
.icon-beige { background: var(--beige-light); color: var(--earth); }

.card h3 { font-size: 1.25rem; margin-bottom: .8rem; }

.card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: .9rem; }
.card p:last-child { margin-bottom: 0; }

.card-list-label { font-weight: 600; color: var(--ink); margin-bottom: .4rem !important; }

.card-list {
  list-style: none;
  columns: 2;
  gap: 1.2rem;
  font-size: .95rem;
  color: var(--ink-soft);
}

.card-list li { padding-left: 1.1rem; position: relative; margin-bottom: .3rem; break-inside: avoid; }

.card-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: .8rem;
}

/* ===== Schwerpunkte ===== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  gap: 1.5rem;
}

.focus-item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(205, 185, 154, 0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}

.focus-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.focus-item-soft {
  background: linear-gradient(130deg, #fff 60%, var(--rose-soft));
  border-style: dashed;
  border-color: var(--rose-light);
}

.focus-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.focus-item h3 { font-size: 1.2rem; margin-bottom: .6rem; }

.focus-item p { color: var(--ink-soft); font-size: .97rem; margin-bottom: .7rem; }
.focus-item p:last-child { margin-bottom: 0; }

.tag-soft {
  display: inline-block;
  vertical-align: middle;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .2rem .7rem;
  margin-left: .4rem;
}

/* ===== Kinderschutz / Vertrauen ===== */
.section-trust {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(221, 229, 211, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(243, 223, 224, 0.5) 0%, transparent 50%),
    var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.trust-text p { margin-bottom: 1.1rem; color: var(--ink-soft); }

.check-list {
  list-style: none;
  margin: .4rem 0 1.6rem;
  display: grid;
  gap: .55rem;
}

.check-list li {
  position: relative;
  padding: .65rem 1rem .65rem 2.7rem;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 10px rgba(122, 106, 85, 0.07);
  color: var(--ink);
  font-size: .98rem;
}

.check-list li::before {
  content: "❥";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose);
}

.trust-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(120deg, var(--sage-light), var(--beige-light));
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.trust-note svg { width: 42px; height: 42px; color: var(--sage-dark); flex-shrink: 0; margin-top: .2rem; }

.trust-note p { margin: 0; color: var(--ink); font-size: .98rem; }

.trust-media { text-align: center; }

.media-card-round {
  border-radius: 50%;
  padding: 14px;
  display: inline-block;
}

.media-card-round img {
  border-radius: 50%;
  width: min(400px, 78vw);
  aspect-ratio: 1;
  object-fit: cover;
}

.trust-caption {
  margin-top: 1.2rem;
  font-size: 1.25rem;
  color: var(--rose-dark);
}

/* ===== Zertifikate ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.cert-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 10px 0;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}

.cert-card:hover { transform: translateY(-4px) rotate(-.6deg); box-shadow: var(--shadow-hover); }

.cert-img {
  position: relative;
  border-radius: calc(var(--radius-md) - 6px);
  overflow: hidden;
}

.cert-img img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.95);
}

.cert-ribbon {
  position: absolute;
  top: 12px;
  right: -34px;
  transform: rotate(38deg);
  background: var(--rose);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem 2.6rem;
}

.cert-card figcaption {
  text-align: center;
  padding: .9rem .5rem 1rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}

.cert-card-more { display: flex; flex-direction: column; }

.cert-more {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 1.5px dashed var(--rose-light);
  border-radius: calc(var(--radius-md) - 6px);
  background: var(--rose-soft);
  color: var(--rose-dark);
  padding: 2rem 1rem;
  text-align: center;
  min-height: 160px;
}

.cert-more svg { width: 40px; height: 40px; }

.cert-more p { font-weight: 600; font-size: .95rem; }

/* ===== Kontakt ===== */
.section-contact {
  background:
    radial-gradient(ellipse at 12% 20%, rgba(243, 223, 224, 0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 90%, rgba(221, 229, 211, 0.55) 0%, transparent 50%),
    var(--cream);
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid rgba(205, 185, 154, 0.2);
}

.contact-person { text-align: center; }

.contact-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid var(--sage-light);
  box-shadow: var(--shadow-card);
}

.contact-avatar img { width: 100%; height: 100%; object-fit: cover; }

.contact-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; }

.contact-role { color: var(--rose-dark); font-size: 1.05rem; }

.contact-list { list-style: none; display: grid; gap: 1.1rem; }

.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-list strong { color: var(--ink); font-size: .92rem; letter-spacing: .04em; }

.contact-list a { word-break: break-all; }

.contact-outro {
  text-align: center;
  margin-top: 2.2rem;
  font-size: 1.35rem;
  color: var(--rose-dark);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--sage);
  color: #fdfbf7;
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner { display: grid; gap: .9rem; }

.footer-motto { font-size: 1.4rem; }

.footer-nav { font-size: .95rem; color: rgba(253, 251, 247, 0.75); }

.footer-nav a { color: #fdfbf7; margin-inline: .4rem; }

.footer-nav a:hover { color: var(--rose-light); text-decoration: underline; }

.footer-copy { font-size: .85rem; color: rgba(253, 251, 247, 0.7); }

/* ===== Unterseiten (Impressum / Datenschutz) ===== */
.legal-main { padding: clamp(3rem, 7vw, 5rem) 0; }

.legal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(205, 185, 154, 0.2);
  padding: clamp(1.8rem, 5vw, 3.5rem);
  max-width: 820px;
  margin-inline: auto;
}

.legal-card h1 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
  margin-bottom: .4rem;
}

.legal-lead { color: var(--ink-soft); margin-bottom: 2rem; }

.legal-card h2 {
  font-size: 1.25rem;
  margin: 1.8rem 0 .6rem;
  color: var(--sage-dark);
}

.legal-card p, .legal-card address { color: var(--ink-soft); margin-bottom: .9rem; font-style: normal; }

.legal-hint {
  margin-top: 2rem;
  background: var(--rose-soft);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: .95rem;
  color: var(--ink-soft);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.6rem;
  color: var(--sage-dark);
  font-weight: 600;
  font-size: .95rem;
}

/* ===== Scroll-Animationen ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .15s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-focus { justify-content: center; }
  .hero-actions { justify-content: center; }
  .about-grid, .trust-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(138, 154, 123, 0.2);
    box-shadow: 0 14px 28px rgba(122, 106, 85, 0.14);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }

  .main-nav.open { max-height: 480px; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: 1rem 4%;
  }

  .nav-link { display: block; text-align: center; padding: .8rem; }

  .nav-cta { margin-left: 0; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .brand-claim { display: none; }
  .card-list { columns: 1; }
  .focus-item { flex-direction: column; }
  .contact-card { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
