/* =========================================================
   Bakker voor Elkaar — stylesheet
   1. Tokens
   2. Basis & helpers
   3. Knoppen
   4. Header & navigatie
   5. Hero
   6. Secties (algemeen)
   7. Wie is Melvin
   8. Wat ik doe
   9. Projecten
   10. Waar ik voor sta
   11. Contact CTA
   12. Footer
   13. Animaties & responsive
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --navy:        #082554;
  --navy-soft:   #12386F;
  --blue:        #0A69F5;
  --blue-dark:   #0754C7;
  --blue-light:  #EEF7FF;
  --blue-tint:   #D8EAFF;
  --orange:      #FF9E1A;
  --orange-dark: #E88606;
  --cream:       #FFF8EF;
  --green:       #2B8A78;
  --green-light: #EAF6F3;
  --text:        #263A56;
  --muted:       #6B7B92;
  --white:       #FFFFFF;
  --line:        #E3ECF7;

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --hand: "Caveat", "Segoe Script", cursive;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(8, 37, 84, .05);
  --shadow-md: 0 12px 30px rgba(8, 37, 84, .08);
  --shadow-lg: 0 26px 60px rgba(8, 37, 84, .14);

  --wrap: 1180px;
  --gutter: 24px;
  --section-y: clamp(64px, 8vw, 112px);

  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- 2. Basis & helpers ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.022em;
  color: var(--navy);
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.15rem; letter-spacing: -.012em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.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;
}

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: var(--r-sm); text-decoration: none; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 .7em;
}

.hand {
  font-family: var(--hand);
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--navy-soft);
  margin: 0;
}

/* ---------- 3. Knoppen ---------- */
.btn {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: .55em;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 158, 26, .34);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 12px 26px rgba(255, 158, 26, .42); }

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-sm { padding: 11px 20px; font-size: .9rem; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- 4. Header & navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(227, 236, 247, .9);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(8, 37, 84, .07); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark { width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: grid; line-height: 1.05; }
.brand-name {
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--navy);
  letter-spacing: -.02em;
}
.brand-name em { font-style: normal; color: var(--blue); }
.brand-tag {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .02em;
  margin-top: 2px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: block;
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-list a:hover { color: var(--blue); background: var(--blue-light); }
.nav-list a.is-current { color: var(--blue); }

.nav-note {
  display: none;
  font-family: var(--hand);
  font-size: 1.3rem;
  color: var(--navy-soft);
  margin: 0;
  white-space: nowrap;
}

.nav-phone {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav-phone:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle-bars { display: grid; gap: 5px; }
.nav-toggle-bars i {
  display: block; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 76px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 78% 18%, rgba(10, 105, 245, .13) 0%, rgba(10, 105, 245, 0) 62%),
    radial-gradient(70% 60% at 8% 92%, rgba(255, 158, 26, .16) 0%, rgba(255, 158, 26, 0) 60%),
    linear-gradient(170deg, var(--blue-light) 0%, var(--cream) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy .lead {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 46ch;
  margin-bottom: 1.8em;
}
.hero-copy .lead strong { color: var(--navy); }

.mark { color: var(--orange); }
.squiggle {
  display: inline-block;
  width: clamp(58px, 7vw, 96px);
  height: auto;
  margin-left: .28em;
  vertical-align: baseline;
  overflow: visible;
}
.squiggle path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  animation: draw 1s .55s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.usps li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
}
.tick { width: 22px; height: 22px; flex: 0 0 22px; }
.tick circle { fill: var(--green); }
.tick path { fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* Hero visual */
.hero-visual {
  position: relative;
  padding: 0 0 32px;
}

.hero-stage { position: relative; }

.portrait {
  position: relative;
  margin: 0 auto 0 6%;
  width: 58%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-tint), var(--cream));
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
}
.portrait img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 22%; }

.hero-logocard {
  position: absolute;
  right: 0;
  top: 7%;
  width: 36%;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 16px;
  box-shadow: var(--shadow-md);
  transform: rotate(1.8deg);
}
.hero-logocard img { width: 100%; }

.hero-badge {
  position: absolute;
  left: -5%;
  bottom: 8%;
  max-width: 216px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--blue);
}
.hero-badge p {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.hand-quote {
  max-width: 26ch;
  margin: 0 0 18px 2%;
  font-size: 1.6rem;
}
.hand-sign {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 1.35rem;
}

/* ---------- 6. Secties (algemeen) ---------- */
.section { padding-block: var(--section-y); }

.section-lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 2.4em;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2.2em;
  flex-wrap: wrap;
}
.section-head h2 { margin-bottom: 0; }

.link-more {
  font-weight: 700;
  font-size: .95rem;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid var(--blue-tint);
  padding-bottom: 3px;
  transition: border-color .2s var(--ease);
}
.link-more:hover { border-color: var(--blue); }

.cards { display: grid; gap: 22px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.cards-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-5 > :first-child { grid-column: span 2; }

/* ---------- 7. Wie is Melvin ---------- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.about-text p { max-width: 62ch; color: var(--text); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.chips li {
  background: var(--blue-light);
  color: var(--navy);
  border: 1px solid var(--blue-tint);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: .87rem;
  font-weight: 600;
}

.quote-card {
  position: relative;
  background: linear-gradient(160deg, var(--cream), #FFFDF9);
  border: 1px solid #F2E4D0;
  border-radius: var(--r-lg);
  padding: 34px 32px 30px;
  box-shadow: var(--shadow-sm);
}
.quote-glyph { width: 40px; height: 30px; fill: var(--orange); margin-bottom: 14px; }
.quote-card blockquote { margin: 0; }
.quote-card blockquote p {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -.015em;
}
.quote-by { margin: 16px 0 0; font-size: .92rem; font-weight: 600; color: var(--muted); }

/* ---------- 8. Wat ik doe ---------- */
.doing { background: var(--white); padding-top: 0; }

.card {
  border-radius: var(--r-lg);
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .55em; }
.card p { font-size: .95rem; color: var(--muted); }

.card-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.card-icon svg {
  width: 27px; height: 27px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-dark { background: var(--navy); border-color: var(--navy); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: #B9CBE4; }
.card-dark .card-icon { background: rgba(255, 255, 255, .1); }
.card-dark .card-icon svg { stroke: var(--white); }

.card-blue { background: var(--blue-light); border-color: var(--blue-tint); }
.card-blue .card-icon { background: #fff; }
.card-blue .card-icon svg { stroke: var(--blue); }

.card-orange { background: var(--cream); border-color: #F6E3C7; }
.card-orange .card-icon { background: #fff; }
.card-orange .card-icon svg { stroke: var(--orange-dark); }

.card-cream { background: #FFF3E2; border-color: #F3DEC2; }
.card-cream .card-icon { background: #fff; }
.card-cream .card-icon svg { stroke: none; fill: var(--orange-dark); }

.card-green { background: var(--green-light); border-color: #CFE7E1; }
.card-green .card-icon { background: #fff; }
.card-green .card-icon svg { stroke: var(--green); }

/* ---------- 9. Projecten ---------- */
.projects { background: var(--white); padding-top: 0; }

.project {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-tint); }

.project-media { aspect-ratio: 40 / 26; overflow: hidden; background: var(--navy); }
.project-media img,
.project-media svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.project-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.project-body h3 { margin-bottom: .5em; }
.project-body p { font-size: .93rem; color: var(--muted); margin-bottom: 0; }
.project-body p + p { margin-top: .95em; }

/* ---------- 10. Waar ik voor sta ---------- */
.values {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 42%, var(--cream) 100%);
}
.values h2 { margin-bottom: 1.4em; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 900px;
}
.value { display: flex; align-items: flex-start; gap: 18px; }
.value h3 { margin-bottom: .25em; }
.value p { font-size: .95rem; color: var(--muted); }

.value-icon {
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
}
.value-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: #fff;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}
.icon-blue { background: var(--blue); box-shadow: 0 8px 18px rgba(10, 105, 245, .28); }
.icon-orange { background: var(--orange); box-shadow: 0 8px 18px rgba(255, 158, 26, .32); }
.icon-green { background: var(--green); box-shadow: 0 8px 18px rgba(43, 138, 120, .26); }

.hand-values {
  position: absolute;
  right: max(24px, calc(50% - var(--wrap) / 2 + 24px));
  bottom: calc(var(--section-y) - 8px);
  text-align: left;
  font-size: 1.5rem;
  color: var(--navy-soft);
  transform: rotate(-3deg);
}

/* ---------- 11. Contact CTA ---------- */
.cta {
  position: relative;
  background:
    radial-gradient(80% 130% at 88% 20%, rgba(10, 105, 245, .5) 0%, rgba(10, 105, 245, 0) 60%),
    linear-gradient(120deg, var(--navy) 0%, #0B2F6B 100%);
  color: #fff;
  padding-block: clamp(44px, 6vw, 68px);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.cta-copy p { max-width: 56ch; }
.cta-copy { max-width: 620px; }
.cta-copy h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: .5em; }
.cta-copy p { color: #C6D8F2; margin: 0; }

.hand-cta { color: #FFD79A; font-size: 1.45rem; max-width: 230px; flex: 0 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
a.contact-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.contact-card-static { opacity: .82; }

.contact-icon {
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange);
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--navy); stroke: var(--navy); }
.contact-icon svg[fill="none"] { fill: none; }

.contact-text { display: grid; gap: 2px; min-width: 0; }
.contact-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9EBBE2;
}
.contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  overflow-wrap: anywhere;
}

/* ---------- 12. Footer ---------- */
.site-footer { background: var(--navy); color: #B9CBE4; padding-top: 42px; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-name em { color: var(--orange); }
.brand-footer .brand-tag { color: #8FA6C6; }
.brand-footer .brand-mark {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}

.footer-claim { margin: 0; font-weight: 600; color: #DCE7F6; }

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}
.footer-contact > a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
.footer-contact > a:hover { color: var(--orange); }

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.footer-links a {
  color: #B9CBE4;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s var(--ease);
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .86rem;
}
.footer-bottom p { margin: 0; color: #8FA6C6; }
.to-top { color: #B9CBE4; text-decoration: none; font-weight: 600; }
.to-top:hover { color: var(--orange); }

/* ---------- 13. Animaties & responsive ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  .nav-toggle { display: grid; }

  .nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    margin-left: 0;
    display: none;
  }
  .nav.is-open { display: flex; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { padding: 12px 14px; font-size: 1rem; }
  .nav-note { display: block; text-align: center; }
  .nav-phone { text-align: center; font-size: 1.05rem; padding: 6px 0; }
  .nav .btn { justify-content: center; }
}

@media (max-width: 1080px) {
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hand-values { position: static; transform: none; margin-top: 40px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; padding-top: 24px; max-width: 540px; }
  .hero-badge { left: 0; }
  .portrait { width: 56%; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


@media (max-width: 720px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 92px; }

  .hero-visual { padding-top: 8px; }
  .hand-quote {
    position: static;
    max-width: none;
    margin-bottom: 18px;
    font-size: 1.5rem;
  }
  .hero-stage { display: flex; flex-direction: column; }
  .portrait { width: 100%; max-width: 320px; margin: 0 auto; transform: none; }
  .hero-logocard {
    position: static;
    width: 100%;
    max-width: 300px;
    margin: 18px auto 0;
    transform: none;
  }
  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .usps { flex-direction: column; gap: 10px; }

  .cards-4, .cards-3, .cards-2, .cards-5 { grid-template-columns: 1fr; }
  .cards-5 > :first-child { grid-column: auto; }
  .quote-card { padding: 26px 24px; }
  .quote-card blockquote p { font-size: 1.15rem; }

  .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { justify-items: start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .underline path { stroke-dashoffset: 0; }
}

@media print {
  .site-header, .nav, .cta-action, .to-top { display: none !important; }
  body { color: #000; }
}
