/* ============================================================
   Umzüge EDDIE — Hagen
   Authentischer Nachbau (Webflow "Square UI"): minimal, luftig,
   Graustufen-Fotos, dünne, gesperrte Headlines.
   Palette: Dunkelbraun #393231 · Taupe #B1A798 · Hellgrau #F1F1F7.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:    #393231;
  --color-accent:     #B1A798;
  --color-accent-dk:  #8f8475;
  --color-section-bg: #F1F1F7;
  --color-taupe-bg:   #d6cfc4; /* heller Taupe-Sektionshintergrund */
  --color-text:       #393231;
  --color-text-alt:   #212127;
  --color-text-muted: #717177;
  --color-bg:         #FFFFFF;
  --color-on-dark:    #FFFFFF;
  --color-line:       #e4e2dd;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 2px 10px rgba(57,50,49,.07);
  --shadow-md: 0 10px 30px rgba(57,50,49,.12);
  --shadow-lg: 0 20px 55px rgba(57,50,49,.18);
  --transition: .3s ease;
  --max-w: 1240px;
  --nav-h: 96px;

  --font-base: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--transition); }
ul  { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── Typografie (dünn + gesperrt = der Webflow-Look) ── */
h1, h2, h3, h4 { font-family: var(--font-base); color: var(--color-primary); line-height: 1.22; }
h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); font-weight: 300; letter-spacing: .1em; text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 400; letter-spacing: .015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
.eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--color-accent-dk); margin-bottom: 16px;
}
.lead { color: var(--color-text-muted); font-size: 1.08rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-base); font-weight: 700; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all var(--transition); text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--dark    { background: var(--color-primary); color: #fff; }
.btn--dark:hover { background: #221d1c; transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn--taupe   { background: var(--color-accent); color: #fff; }
.btn--taupe:hover { background: var(--color-accent-dk); transform: translateY(-2px); color: #fff; }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ── Graustufen-Helfer ── */
.gray { filter: grayscale(100%); }

/* ── Navigation: nur Logo + Hamburger (wie Original) ── */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: #fff; border-bottom: 1px solid var(--color-line);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 14px 28px; min-height: var(--nav-h);
}
.nav-logo img { height: 64px; width: auto; }
.nav-toggle {
  background: none; border: none; cursor: pointer; width: 52px; height: 44px; position: relative;
}
.nav-toggle span {
  display: block; width: 34px; height: 3px; background: var(--color-primary);
  border-radius: 2px; position: absolute; left: 9px; transition: all .3s;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ── Overlay-Menü ── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 95; background: rgba(57,50,49,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; opacity: 0; visibility: hidden; transition: opacity .35s ease;
  padding: 90px 24px 40px; overflow-y: auto;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-overlay a {
  color: #fff; font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 300;
  letter-spacing: .14em; text-transform: uppercase; padding: 10px 16px;
}
.menu-overlay a:hover { color: var(--color-accent); }
.menu-overlay .menu-foot { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.menu-close {
  position: fixed; top: 26px; right: 32px; z-index: 96; background: none; border: none;
  color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; font-weight: 200;
  display: none;
}
.menu-overlay.open ~ .menu-close,
.menu-close.show { display: block; }

/* ── Fixe Float-Elemente (wie Original) ── */
.pe-widget {
  position: fixed; top: 132px; left: 0; z-index: 80;
  background: #fff; border: 1px solid var(--color-line); border-right: 3px solid var(--color-accent);
  box-shadow: var(--shadow-md); width: 168px; padding: 12px 14px 10px; font-size: .72rem;
  border-radius: 0 6px 6px 0;
}
.pe-widget .pe-name { font-weight: 700; font-size: .78rem; margin-bottom: 6px; }
.pe-widget .pe-brand { display: flex; align-items: center; gap: 5px; font-weight: 800; color: #2b2b2b; }
.pe-widget .pe-brand b { color: #1a8f6b; }
.pe-widget .pe-bar { background: #1a8f6b; color: #fff; font-size: .6rem; text-align: center; letter-spacing: .08em; padding: 2px 0; margin: 6px 0; text-transform: uppercase; }
.pe-widget .pe-stars { color: #d8d8d8; letter-spacing: 2px; font-size: .85rem; }
.pe-widget .pe-meta { color: var(--color-text-muted); line-height: 1.5; margin-top: 4px; }
.pe-widget .pe-date { color: #b3b3b3; font-size: .62rem; margin-top: 4px; }

.tel-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 80;
  background: var(--color-accent); color: #fff; font-weight: 700; letter-spacing: .08em;
  padding: 16px 26px; border-radius: 6px; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 10px; font-size: .95rem;
}
.tel-fab:hover { background: var(--color-accent-dk); color: #fff; }
.tel-fab svg { width: 18px; height: 18px; }

/* ── Hero (full-bleed Graustufen-Foto + Overlay-Text) ── */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 38%, rgba(255,255,255,.15) 70%, rgba(255,255,255,0) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 60px 28px; width: 100%; }
.hero-inner h1 { color: var(--color-primary); margin-bottom: 30px; max-width: 12em; }
.hero-inner .btn { margin-top: 6px; }

/* ── Sektionen ── */
.section { padding: 90px 0; }
.section--alt   { background: var(--color-section-bg); }
.section--taupe { background: var(--color-taupe-bg); }
.section--dark  { background: var(--color-primary); color: var(--color-on-dark); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section-header { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-header .sub { color: var(--color-text-muted); font-size: 1.06rem; margin-top: 14px; }
.section--dark .section-header .sub { color: rgba(255,255,255,.75); }
.divider { width: 90px; height: 2px; background: var(--color-accent); margin: 22px auto 0; }

/* ── Service-Mosaik (6 Graustufen-Kacheln, Hover-Overlay) ── */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); }
.tile { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: transform .5s ease, filter .4s ease; }
.tile:hover img { transform: scale(1.06); }
.tile-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 20px;
  background: rgba(57,50,49,.55); opacity: 0; transition: opacity var(--transition);
}
.tile:hover .tile-overlay { opacity: 1; }
.tile-kicker { color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; }
.tile-title { color: #fff; font-size: 1.5rem; font-weight: 400; letter-spacing: .02em; }

/* ── Prozess: Bild-Komposition links + Accordion rechts ── */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.process-visual { position: relative; }
.process-visual > img { width: 100%; border-radius: var(--radius-lg); filter: grayscale(100%); aspect-ratio: 4/3.4; object-fit: cover; }
.guarantee-card {
  position: absolute; left: -14px; bottom: -22px; width: 62%;
  background: #2c2625; color: #d9d4cc; border-radius: 8px; padding: 18px 18px 16px;
  box-shadow: var(--shadow-lg); font-size: .72rem;
}
.guarantee-card h4 { color: #fff; font-weight: 700; letter-spacing: .02em; margin-bottom: 8px; font-size: 1rem; }
.guarantee-card p { line-height: 1.5; color: #b6b0a6; margin-bottom: 12px; }
.guarantee-card .gc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.guarantee-card .gc-box { border: 1px solid #4a433f; border-radius: 4px; padding: 6px 8px; }
.guarantee-card .gc-box span { display: block; color: #8a847b; font-size: .6rem; margin-bottom: 3px; }
.process-mascot { position: absolute; right: -18px; bottom: -10px; width: 168px; z-index: 2; }
.process-mascot img { width: 100%; }

.process-text h2 { margin-bottom: 6px; }
.process-text .intro-h { font-size: 1.2rem; font-weight: 700; margin: 14px 0 10px; }
.process-text .intro-p { color: var(--color-text-muted); margin-bottom: 26px; }

/* Accordion */
.acc-item { border-bottom: 1px solid var(--color-line); }
.acc-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; font-family: var(--font-base); font-weight: 700; font-size: .98rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-primary);
}
.acc-q svg { width: 20px; height: 20px; flex: none; transition: transform var(--transition); color: var(--color-accent-dk); }
.acc-item.open .acc-q svg { transform: rotate(180deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-a-inner { padding: 0 4px 22px; color: var(--color-text-muted); font-size: .98rem; }

/* ── 4-Schritt mit Maskottchen ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.step-mascot { width: 120px; margin: 0 auto 14px; }
.step-mascot img { width: 100%; }
.step-no { font-size: 3rem; font-weight: 300; color: var(--color-primary); line-height: 1; margin-bottom: 10px; }
.step h3 { letter-spacing: .12em; text-transform: uppercase; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step p { color: var(--color-text-muted); font-size: .94rem; }

/* ── Experten (dunkle Sektion, Maskottchen-Karten) ── */
.experts { display: grid; grid-template-columns: minmax(0,340px); gap: 30px; justify-content: center; }
.expert-card { background: #fff; border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); }
.expert-mascot { width: 120px; margin: 0 auto 18px; }
.expert-mascot img { width: 100%; }
.expert-card h3 { color: var(--color-primary); font-weight: 700; margin-bottom: 14px; }
.expert-card .ec-divider { width: 70px; height: 2px; background: var(--color-accent); margin: 0 auto 14px; }
.expert-card .ec-role { color: var(--color-text-muted); font-weight: 400; }

/* ── Soziales Engagement ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-img img { border-radius: var(--radius-lg); filter: grayscale(100%); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-text h2 { margin-bottom: 16px; }
.split-text p { color: var(--color-text-muted); margin-bottom: 16px; }

/* ── Kontakt-Karte + Foto ── */
.contact-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; margin-bottom: 26px;
}
.contact-cell { padding: 34px 28px; text-align: center; border-right: 1px solid var(--color-line); }
.contact-cell:last-child { border-right: none; }
.contact-cell h4 { font-weight: 400; font-size: 1.15rem; margin-bottom: 16px; color: var(--color-primary); }
.contact-cell .cc-line { color: var(--color-accent-dk); font-weight: 700; line-height: 1.9; }
.contact-cell a:hover { color: var(--color-primary); }
.contact-photo img { width: 100%; border-radius: var(--radius-lg); filter: grayscale(100%); object-fit: cover; aspect-ratio: 21/9; }

/* ── Footer ── */
.footer { background: #2c2625; color: rgba(255,255,255,.7); padding: 66px 0 28px; font-size: .94rem; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--color-accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 42px; margin-bottom: 46px; }
.footer-logo img { height: 58px; margin-bottom: 18px; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-line svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .85rem;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

/* ── Scroll-Reveal ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.rv.vis { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .pe-widget { display: none; }
}

@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; gap: 70px; }
  .process-visual { max-width: 480px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-img { order: -1; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-cell { border-right: none; border-bottom: 1px solid var(--color-line); }
  .contact-cell:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .nav-inner { padding: 12px 18px; }
  .nav-logo img { height: 50px; }
  .hero { min-height: 70vh; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.85) 100%); }
  .mosaic { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 16/10; }
  .tile-overlay { opacity: 1; background: rgba(57,50,49,.42); justify-content: flex-end; align-items: flex-start; text-align: left; }
  .steps { grid-template-columns: 1fr; }
  .experts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tel-fab { bottom: 16px; right: 16px; padding: 13px 18px; font-size: .85rem; }
  .guarantee-card { position: static; width: 100%; margin-top: 18px; }
  .process-mascot { width: 120px; right: 0; }
}

/* ============================================================
   Subpages (Leistungen, Kontakt, Recht)
   ============================================================ */

.hero--page { min-height: 52vh; }
.hero--page .hero-inner { padding: 70px 28px; }
.hero-kicker {
  display: inline-block; color: var(--color-accent-dk); font-size: .76rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 16px;
}

/* Intro 2-spaltig (Text + Bild) */
.intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.intro-copy h2 { margin-bottom: 18px; }
.intro-copy p { color: var(--color-text-muted); margin-bottom: 16px; }
.intro-img img { width: 100%; border-radius: var(--radius-lg); filter: grayscale(100%); object-fit: cover; aspect-ratio: 5/4; box-shadow: var(--shadow-md); }

/* Leistungen-Raster */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: 26px 24px; display: flex; gap: 14px; align-items: flex-start;
}
.section--alt .feature { background: #fff; }
.feature-ico {
  width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--color-section-bg);
  display: flex; align-items: center; justify-content: center; color: var(--color-accent-dk);
  border: 1.5px solid var(--color-accent);
}
.feature-ico svg { width: 19px; height: 19px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { color: var(--color-text-muted); font-size: .94rem; }

/* Aufzählung mit Häkchen (Subpages) */
.check-list { display: grid; gap: 13px; margin: 6px 0 20px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--color-text-alt); font-size: 1rem; line-height: 1.6; }
.check-list li::before {
  content: ""; flex: none; width: 26px; height: 26px; margin-top: 2px; border-radius: 50%;
  background-color: var(--color-section-bg); border: 1.5px solid var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f8475' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
}
.intro-copy .lead-line { font-size: 1.18rem; font-weight: 700; color: var(--color-primary); margin-bottom: 18px; }

/* Nummerierte Schritte (Subpages) */
.step-list { counter-reset: stp; display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.step-list li { counter-increment: stp; display: flex; gap: 18px; align-items: flex-start; color: var(--color-text-alt); line-height: 1.6; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 18px 22px; }
.section--alt .step-list li { background: #fff; }
.step-list li::before {
  content: counter(stp); flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-accent); color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

/* CTA-Band */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 1.06rem; margin: 0 auto 28px; max-width: 36em; }
.cta-band .cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Adresskarten (Kontakt) */
.addr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }
.addr-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 26px; text-align: center; }
.addr-card svg { width: 22px; height: 22px; color: var(--color-accent-dk); margin-bottom: 12px; }
.addr-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.addr-card p { color: var(--color-text-muted); font-size: .95rem; line-height: 1.7; }

/* City-Links (Einzugsgebiet) */
.city-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.city-links a { display: inline-block; padding: 11px 20px; border: 1px solid var(--color-line); border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--color-primary); transition: background .2s, color .2s, border-color .2s; }
.city-links a:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* Recht (Impressum / Datenschutz) */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(1.7rem,3.4vw,2.4rem); margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; font-weight: 700; margin: 34px 0 12px; letter-spacing: 0; }
.legal h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--color-text-alt); margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal a { color: var(--color-accent-dk); text-decoration: underline; }
.legal .ph { background: #fff5d6; border: 1px dashed #d8c474; padding: 2px 7px; border-radius: 4px; font-size: .9em; }

@media (max-width: 820px) {
  .intro { grid-template-columns: 1fr; gap: 34px; }
  .intro-img { order: -1; max-width: 480px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .addr-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}
