/* ═══════════════════════════════════════════════════════
   JOUW LEVEN DOET ER TOE — Design System
   Palette: Gold #C8A96E · Cream #F5F0E8 · Brown #4A3728
            Tan #8B7355 · Near-black #2C2C2C
   Typography: Playfair Display (headings) · DM Sans (body)
═══════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:     #C8A96E;
  --gold-dk:  #A8894E;
  --cream:    #F5F0E8;
  --cream-dk: #EDE5D6;
  --brown:    #4A3728;
  --tan:      #8B7355;
  --dark:     #2C2C2C;
  --white:    #FDFAF5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(44,28,18,.10);
  --shadow-lg: 0 12px 48px rgba(44,28,18,.15);

  --max-w: 1200px;
  --section-py: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ─── CONTAINER ─── */
.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}

/* ─── TYPOGRAPHY SCALE ─── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 600; margin-bottom: .5rem; }

p { max-width: 65ch; }

.section-kicker {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--tan);
  margin-bottom: 3rem;
  max-width: 55ch;
}

.text-center { text-align: center; }
.text-center p, .text-center .section-intro { margin-inline: auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.btn-primary:hover {
  background: #3a2a1e;
  border-color: #3a2a1e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,55,40,.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,.5);
}
.btn-ghost:hover {
  background: rgba(245,240,232,.1);
  border-color: var(--cream);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,245,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,.15);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(44,28,18,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
}
.logo-leaf {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 400;
  color: var(--brown);
  opacity: .8;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-dk); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--brown) !important;
  opacity: 1 !important;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--gold-dk) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .25s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(44,28,18,.72) 0%,
    rgba(74,55,40,.5) 50%,
    rgba(74,55,40,.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 1.5rem 6rem;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

.hero-kicker {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-headline {
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(245,240,232,.88);
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.hero-badges li {
  font-size: .85rem;
  color: rgba(245,240,232,.8);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.badge-icon { color: var(--gold); font-size: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245,240,232,.6);
  animation: bounce 2s ease-in-out infinite;
  transition: color .2s;
}
.hero-scroll:hover { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--brown);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.intro-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--gold);
  max-width: 60ch;
  margin-inline: auto;
}

/* ─── ABOUT ─── */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-photo {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-credential {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--brown);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.cred-title {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: .2rem;
}
.cred-sub {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 1.25rem;
  max-width: 50ch;
}

.about-text p { margin-bottom: 1rem; color: #4a4a4a; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding: .75rem 1.25rem;
  margin: 1.75rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
  max-width: none;
}

/* ─── THEMES ─── */
.themes {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.theme-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}
.theme-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.theme-card--accent {
  background: var(--brown);
  border-top-color: var(--gold) !important;
}

.theme-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.theme-card--accent .theme-icon { background: rgba(245,240,232,.1); }

.theme-card h3 { color: var(--brown); margin-bottom: .5rem; }
.theme-card p  { font-size: .95rem; color: #555; line-height: 1.6; max-width: none; }

/* Accent card overrides — MUST come after .theme-card h3/.theme-card p to win cascade */
.theme-card.theme-card--accent h3 { color: var(--gold); }
.theme-card.theme-card--accent p  { color: rgba(245,240,232,.9) !important; }

.theme-card-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .5rem;
  border: 1px solid rgba(200,169,110,.4);
  border-radius: 50px;
  padding: .25rem .75rem;
}

.themes-cta { text-align: center; }

/* ─── WERKWIJZE ─── */
.werkwijze {
  position: relative;
  padding: var(--section-py) 0;
  color: var(--cream);
  overflow: hidden;
}

.werkwijze-bg {
  position: absolute;
  inset: 0;
}
.werkwijze-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.35) saturate(.7);
}

.werkwijze .container {
  position: relative;
  z-index: 2;
}

.werkwijze .section-kicker { color: var(--gold); }
.werkwijze h2 { color: var(--cream); margin-bottom: .5rem; }
.werkwijze .section-intro { color: rgba(245,240,232,.75); margin-bottom: 3.5rem; max-width: 50ch; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
}

.step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  background: rgba(245,240,232,.06);
  border: 1px solid rgba(200,169,110,.25);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(6px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: right;
}

.step-body h3 { color: var(--gold); font-size: 1.1rem; }
.step-body p  { color: rgba(245,240,232,.82); font-size: .95rem; max-width: none; }

.step-connector {
  width: 1px;
  height: 1.5rem;
  background: linear-gradient(to bottom, rgba(200,169,110,.4), transparent);
  margin-left: 3.5rem;
}

/* ─── VISUAL BREAK ─── */
/* Split layout: left = CSS background photo (no img elements = no seams),
   right = cream text panel. Flush with no gap possible. */
.visual-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}

.vb-photo {
  background-image: url('images/coaching-session.webp');
  background-size: cover;
  background-position: center center;
  min-height: 480px;
}

.vb-text {
  padding: 3.5rem 3rem 3.5rem 3rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vb-text h2 { margin-bottom: .75rem; }
.vb-text p  { font-size: .97rem; color: #555; margin-bottom: 1.5rem; max-width: none; }

.practice-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.practice-list li {
  font-size: .9rem;
  color: var(--brown);
  padding-left: 1.25rem;
  position: relative;
}
.practice-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .7rem;
  top: .15em;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .2s;
}
.testimonial-card:hover { transform: translateY(-3px); }

.testimonial-card--featured {
  background: var(--brown);
  grid-row: span 1;
  padding: 2.5rem;
}
.testimonial-card--featured .testimonial-quote { color: rgba(245,240,232,.9); }
.testimonial-card--featured .stars { color: var(--gold); }
.testimonial-card--featured .testimonial-author strong { color: var(--gold); }
.testimonial-card--featured .testimonial-author span { color: rgba(245,240,232,.6); }

.stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brown);
  max-width: none;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--brown); font-size: .95rem; }
.testimonial-author span  { font-size: .82rem; color: var(--tan); }

/* ─── FAQ ─── */
.faq {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-intro h2 { margin-bottom: .75rem; }
.faq-intro p  { font-size: .97rem; color: #555; margin-bottom: 2rem; max-width: 35ch; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  font-size: .97rem;
  color: var(--brown);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  font-weight: 300;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: .93rem;
  color: #555;
  line-height: 1.7;
  max-width: none;
}

/* ─── CONTACT ─── */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-intro h2 { margin-bottom: .75rem; }
.contact-intro > p { font-size: 1rem; color: #555; margin-bottom: 2rem; max-width: 40ch; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--dark);
}
.contact-details li svg { flex-shrink: 0; margin-top: .1rem; }
.contact-details a { color: var(--brown); transition: color .2s; }
.contact-details a:hover { color: var(--gold-dk); }

.contact-note {
  font-size: .8rem;
  color: var(--tan);
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dk);
}
.contact-note p { max-width: none; }

/* ─── FORM ─── */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: .4rem;
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--white);
  border: 1.5px solid rgba(139,115,85,.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-privacy {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--tan);
  text-align: center;
  max-width: none;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--brown);
  color: rgba(245,240,232,.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,169,110,.2);
}

.footer-logo { color: var(--gold); }
.footer-logo .logo-leaf { color: var(--gold); }
.footer-logo .logo-text { color: var(--cream); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-top: .75rem;
  max-width: none;
}

.footer-cert {
  font-size: .8rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: rgba(245,240,232,.55);
  max-width: none;
}

.footer-nav h3,
.footer-contact h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-nav a {
  font-size: .9rem;
  color: rgba(245,240,232,.7);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact p {
  font-size: .9rem;
  margin-bottom: .5rem;
  max-width: none;
  color: rgba(245,240,232,.7);
}
.footer-contact a { color: rgba(245,240,232,.7); transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(245,240,232,.45);
  text-align: center;
  max-width: none;
}
.footer-bottom a { color: rgba(245,240,232,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-break {
    grid-template-columns: 1fr 1fr;
  }
  .vb-text { padding: 2.5rem 2rem; }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card--featured { grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* NAV MOBILE */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 24px rgba(44,28,18,.1);
    border-top: 1px solid var(--cream-dk);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--cream-dk);
    opacity: 1;
  }
  .nav-cta {
    background: none !important;
    border-radius: 0 !important;
    color: var(--gold-dk) !important;
  }

  /* HERO */
  .hero-content { padding: 7rem 1.25rem 5rem; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { text-align: center; }
  .about-photo {
    max-width: 100%;
    height: 380px;
  }
  .about-credential { right: 0; bottom: -1.25rem; }

  /* THEMES */
  .themes-grid { grid-template-columns: 1fr; }

  /* STEPS */
  .step { flex-direction: column; gap: .75rem; }
  .step-num { text-align: left; }
  .step-connector { margin-left: 1.5rem; }

  /* VISUAL BREAK */
  .visual-break {
    grid-template-columns: 1fr;
  }
  .vb-photo  { min-height: 280px; }
  .vb-text   { padding: 2rem 1.5rem; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: 1; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-intro p { max-width: none; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* FORM */
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .contact-form-wrap { padding: 1.75rem 1.25rem; }
}
