/* ===================================================================
   Jack de Voeger — Gevelspecialist
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink: #141414;
  --near-black: #0d0d0d;
  --panel: #171717;
  --paper: #f4f4f3;
  --white: #ffffff;
  --line: #e2e2df;
  --line-dark: rgba(255,255,255,.12);
  --muted: #6b6b6b;
  --faint: #9a9a9a;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --rust: #a8462b;
  --rust-dark: #7e3520;
  --whatsapp: #25d366;
  --font-display: 'Archivo', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max: 1240px;
  --ease: cubic-bezier(.22,.68,.18,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}

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

a:focus-visible, button:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- kicker / eyebrow with brick-course twist ---------- */
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.kicker::before{
  content: "";
  width: 28px; height: 2px;
  background: repeating-linear-gradient(90deg, currentColor 0 6px, transparent 6px 8px);
}
.kicker.on-dark{ color: #c9d7ff; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg{ width: 15px; height: 15px; transition: transform .25s var(--ease); flex-shrink: 0; }
.btn:hover svg{ transform: translateX(3px); }
.btn:hover{ transform: translateY(-2px); }

.btn-accent{ background: var(--accent); color: #fff; box-shadow: 0 0 0 rgba(37,99,235,0); }
.btn-accent:hover{ background: var(--accent-dark); box-shadow: 0 10px 24px -8px rgba(37,99,235,.55); }

.btn-outline-dark{ border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-dark:hover{ border-color: #fff; background: rgba(255,255,255,.06); }

.btn-outline-light{ border-color: rgba(20,20,20,.2); color: var(--ink); }
.btn-outline-light:hover{ border-color: var(--ink); background: rgba(20,20,20,.04); }

.btn-white{ background: #fff; color: var(--ink); }
.btn-white:hover{ background: #eee; }

/* ===================== NAV ===================== */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(244,244,243,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max); margin: 0 auto;
}
.nav-logo img{ height: 40px; width: auto; }
.nav-links{
  display: flex; align-items: center; gap: 34px;
}
.nav-links a{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width: 100%; }
.nav-links a.active{ color: var(--accent); }
.nav-actions{ display: flex; align-items: center; gap: 18px; }
.nav-cta{ display: inline-flex; }
.nav-burger{
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 3px;
  cursor: pointer;
}
.nav-burger span{ position: relative; width: 18px; height: 2px; background: var(--ink); display:block; }
.nav-burger span::before, .nav-burger span::after{
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-burger span::before{ top: -6px; }
.nav-burger span::after{ top: 6px; }
.nav-burger.open span{ background: transparent; }
.nav-burger.open span::before{ transform: translateY(6px) rotate(45deg); }
.nav-burger.open span::after{ transform: translateY(-6px) rotate(-45deg); }

.mobile-panel{
  position: fixed; inset: 73px 0 0 0; z-index: 490;
  background: var(--paper);
  padding: 30px 28px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.mobile-panel.open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear 0s;
}
.mobile-panel a{
  display: block; padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-panel.open a{ opacity: 1; transform: translateY(0); }
.mobile-panel.open a:nth-child(1){ transition-delay: .05s; }
.mobile-panel.open a:nth-child(2){ transition-delay: .09s; }
.mobile-panel.open a:nth-child(3){ transition-delay: .13s; }
.mobile-panel.open a:nth-child(4){ transition-delay: .17s; }
.mobile-panel.open a:nth-child(5){ transition-delay: .21s; }
.mobile-panel .btn{
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 26px; width: 100%;
  padding: 17px 26px;
  border-bottom: none;
  font-size: 13.5px;
}

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-actions .nav-cta{ display: none; }
  .nav-burger{ display: inline-flex; }
}

/* ===================== HERO (dark, photo, inner-page) ===================== */
.hero-photo{
  position: relative;
  min-height: 84vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--near-black);
}
.hero-photo img.bg{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .55;
}
.hero-photo::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.55) 0%, rgba(13,13,13,.35) 40%, rgba(13,13,13,.95) 100%);
}
.hero-ghost{
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  width: 46%; max-width: 620px; opacity: .07; pointer-events: none;
}
.hero-inner{
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  padding: 60px 28px 76px;
  width: 100%;
}
.hero-inner h1{
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 820px;
}
.hero-inner p.lead{
  color: rgba(255,255,255,.72);
  font-size: 18px;
  max-width: 560px;
  margin: 20px 0 34px;
}
.hero-cta-row{ display: flex; gap: 16px; flex-wrap: wrap; }

/* page-title band (shorter, no photo) for inner pages */
.page-hero{
  background: var(--near-black);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.page-hero .grain{ position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.page-hero .wrap{ position: relative; z-index: 2; text-align: center; }
.page-hero .kicker{ justify-content: center; }
.page-hero h1{ color: #fff; font-size: clamp(2.2rem, 5.4vw, 3.6rem); }
.page-hero p.lead{ color: rgba(255,255,255,.65); max-width: 560px; margin: 18px auto 0; font-size: 17px; }
.page-hero .hero-cta-row{ justify-content: center; margin-top: 30px; }

/* ===================== SECTIONS ===================== */
section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-dark{ background: var(--near-black); color: #fff; }
.section-panel{ background: var(--panel); color: #fff; }

.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-dark .section-head h2, .section-panel .section-head h2{ color: #fff; }
.section-head p{ color: var(--muted); font-size: 17px; margin-top: 16px; }
.section-dark .section-head p, .section-panel .section-head p{ color: rgba(255,255,255,.6); }

/* ===================== USP GRID ===================== */
.usp-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.usp-card{
  background: var(--paper);
  padding: 34px 28px;
  transition: background .25s;
}
.usp-card:hover{ background: #fff; }
.usp-icon{
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; border-radius: 3px;
  margin-bottom: 20px;
}
.usp-icon svg{ width: 22px; height: 22px; }
.usp-card h3{ font-size: 15px; margin-bottom: 10px; }
.usp-card p{ color: var(--muted); font-size: 14.5px; margin: 0; }

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

/* ===================== SERVICE TEASER CARDS ===================== */
.service-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.service-card img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%) brightness(.75);
  transform: scale(1.02);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.service-card:hover img{ filter: grayscale(0%) brightness(.55); transform: scale(1.08); }
.service-card::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0) 40%, rgba(13,13,13,.9) 100%);
  z-index: 1;
}
.service-num{
  position: absolute; top: 18px; right: 18px; z-index: 2;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
}
.service-body{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 24px;
  color: #fff;
}
.service-body h3{ font-size: 19px; margin-bottom: 8px; }
.service-body p{ color: rgba(255,255,255,.7); font-size: 14px; margin: 0 0 12px; }
.service-body .link-arrow{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: #fff;
}
.service-body .link-arrow svg{ width: 13px; height: 13px; transition: transform .25s var(--ease); }
.service-card:hover .link-arrow svg{ transform: translateX(4px); }

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

/* ===================== PROCESS STEPS ===================== */
.steps-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line-dark); }
.section-dark .steps-grid, .section-panel .steps-grid{ background: var(--line-dark); }
.step-card{ background: var(--near-black); padding: 36px 26px; }
.step-num{
  font-family: var(--font-display); font-weight: 900; font-size: 15px;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.step-num::after{ content:""; flex:1; height:1px; background: var(--line-dark); }
.step-card h3{ color: #fff; font-size: 16.5px; margin-bottom: 10px; }
.step-card p{ color: rgba(255,255,255,.55); font-size: 14.5px; margin: 0; }

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

/* ===================== CTA BAND ===================== */
.cta-band{
  background: var(--accent);
  color: #fff;
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2{ font-size: clamp(1.7rem, 4vw, 2.4rem); color: #fff; margin-bottom: 14px; }
.cta-band p{ color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 30px; font-size: 16.5px; }

/* ===================== FOOTER ===================== */
.site-footer{ background: var(--near-black); color: rgba(255,255,255,.6); padding: 64px 0 28px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer-logo img{ height: 38px; margin-bottom: 18px; }
.footer-grid p{ font-size: 14.5px; line-height: 1.7; max-width: 280px; }
.footer-col h4{ font-family: var(--font-display); font-size: 12px; letter-spacing: .1em; color: #fff; margin-bottom: 18px; text-transform: uppercase; }
.footer-col a{ display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover{ color: #fff; }
.footer-social{ display: flex; gap: 12px; margin-top: 6px; }
.footer-social a{
  width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 0;
}
.footer-social svg{ width: 16px; height: 16px; }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 10px; }

@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ===================== WHATSAPP BUBBLE ===================== */
.wa-bubble{
  position: fixed; right: 26px; bottom: 26px; z-index: 600;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,.6);
  transition: transform .25s var(--ease);
}
.wa-bubble:hover{ transform: scale(1.08); }
.wa-bubble svg{ width: 26px; height: 26px; }

/* ===================== SCROLL REVEAL ===================== */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in{ opacity: 1; transform: none; }

/* ===================== UTILS ===================== */
.brick-rule{
  display: flex; gap: 3px; height: 6px; margin: 0 0 20px;
}
.brick-rule span{ flex: 1; background: var(--line); }
.section-dark .brick-rule span, .section-panel .brick-rule span{ background: var(--line-dark); }

.check-list{ display: flex; flex-direction: column; gap: 14px; margin: 26px 0 0; }
.check-list li{ display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink); }
.check-list li svg{ width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.on-dark .check-list li{ color: rgba(255,255,255,.85); }

.eyebrow-line{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.eyebrow-line span{ font-family: var(--font-display); font-weight:700; font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--faint); }
.eyebrow-line::before{ content:""; width:22px; height:1px; background:var(--faint); }

.text-accent{ color: var(--accent); }

/* ===================== DIENSTEN DETAIL BLOCKS ===================== */
.dienst-block{ padding: 88px 0; border-bottom: 1px solid var(--line); }
.dienst-block:last-of-type{ border-bottom: none; }
.dienst-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dienst-block.reverse .dienst-grid{ direction: rtl; }
.dienst-block.reverse .dienst-grid > *{ direction: ltr; }
.dienst-media{ position: relative; }
.dienst-media img{ width: 100%; border-radius: 6px; aspect-ratio: 4/3; object-fit: cover; }
.dienst-media .num-ghost{
  position: absolute; right: -18px; bottom: -30px;
  font-family: var(--font-display); font-weight: 900; font-size: 7rem;
  color: transparent; -webkit-text-stroke: 1.5px var(--line);
  line-height: 1; pointer-events: none;
}
.dienst-icon{
  width: 50px; height: 50px; border-radius: 3px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.dienst-icon svg{ width: 24px; height: 24px; }
.dienst-tag{ font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; display: block; }
.dienst-body h2{ font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.dienst-body .lead{ font-size: 17px; font-weight: 600; margin-bottom: 14px; }
.dienst-body .desc{ color: var(--muted); font-size: 15.5px; line-height: 1.75; }

@media (max-width: 860px){
  .dienst-grid{ grid-template-columns: 1fr; gap: 30px; }
  .dienst-block.reverse .dienst-grid{ direction: ltr; }
  .dienst-block{ padding: 56px 0; }
}

/* ===================== PROJECTEN ===================== */
.filter-bar{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-bar button{
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: transparent; font-family: var(--font-display); font-weight: 600;
  font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.filter-bar button:hover{ border-color: var(--ink); }
.filter-bar button.active{ background: var(--ink); color: #fff; border-color: var(--ink); }

.cat-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cat-card{ display: block; border-radius: 6px; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.cat-card .thumb{ position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cat-card .thumb img{ width: 100%; height: 100%; object-fit: cover; filter: grayscale(85%); transition: filter .45s var(--ease), transform .5s var(--ease); }
.cat-card:hover .thumb img{ filter: grayscale(0%); transform: scale(1.05); }
.cat-card .cat-body{ padding: 22px 24px 26px; }
.cat-card .dienst-tag{ margin-bottom: 8px; }
.cat-card h3{ font-size: 18px; margin-bottom: 8px; }
.cat-card p{ color: var(--muted); font-size: 14.5px; margin: 0; }

.gallery-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid a{ display: block; border-radius: 5px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid img{ width: 100%; height: 100%; object-fit: cover; object-position: center 62%; transition: transform .5s var(--ease), filter .4s; filter: grayscale(20%); }
.gallery-grid a:hover img{ transform: scale(1.06); filter: grayscale(0%); }

.projecten-section{ padding: 56px 0; border-bottom: 1px solid var(--line); }
.projecten-section:last-of-type{ border-bottom: none; }
.projecten-section .cat-head{ margin-bottom: 28px; }
.projecten-section .cat-head h2{ font-size: clamp(1.5rem, 3vw, 2rem); }
.projecten-section .cat-head p{ color: var(--muted); font-size: 15px; max-width: 440px; margin: 12px 0 0; }

@media (max-width: 900px){ .cat-grid{ grid-template-columns: repeat(2,1fr); } .gallery-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .cat-grid{ grid-template-columns: 1fr; } .gallery-grid{ grid-template-columns: repeat(2,1fr); } }

/* ===================== LIGHTBOX ===================== */
.lightbox-overlay{
  position: fixed; inset: 0; z-index: 900;
  background: rgba(10,10,10,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
.lightbox-overlay.open{ opacity: 1; pointer-events: auto; }
.lightbox-overlay img{ max-width: 100%; max-height: 88vh; border-radius: 4px; object-fit: contain; }
.lightbox-close{
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25);
  font-size: 24px; line-height: 1; cursor: pointer;
}

/* ===================== OVER ONS ===================== */
.story-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-media{ position: relative; }
.story-media img{ width: 100%; border-radius: 6px; aspect-ratio: 4/5; object-fit: cover; }
.story-media .badge{
  position: absolute; left: -24px; bottom: -24px;
  background: var(--ink); color: #fff; padding: 18px 22px; border-radius: 6px;
  font-family: var(--font-display);
}
.story-media .badge strong{ display: block; font-size: 22px; }
.story-media .badge span{ font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.story-body h2{ font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 20px; }
.story-body p{ color: var(--muted); font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.story-body p:last-of-type{ margin-bottom: 0; }
.pull-quote{
  border-left: 3px solid var(--accent); padding-left: 22px; margin: 28px 0 0;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; font-style: normal;
  text-transform: none; letter-spacing: 0; line-height: 1.5;
}
.pull-quote footer{ margin-top: 10px; font-family: var(--font-body); font-weight: 600; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); }

@media (max-width: 860px){
  .story-grid{ grid-template-columns: 1fr; gap: 40px; }
  .story-media .badge{ left: 16px; bottom: 16px; }
}

/* ===================== CONTACT ===================== */
.contact-grid{ display: grid; grid-template-columns: .85fr 1.15fr; }
.contact-info{ background: var(--near-black); color: #fff; padding: 64px 52px; }
.contact-info h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.contact-info > p{ color: rgba(255,255,255,.6); font-size: 15.5px; margin-bottom: 40px; line-height: 1.7; }
.contact-row{ display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line-dark); }
.contact-row:last-child{ border-bottom: 1px solid var(--line-dark); }
.contact-row .ic{
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row .ic svg{ width: 18px; height: 18px; }
.contact-row .label{ font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.contact-row .value{ font-size: 15.5px; }
.contact-row a.value:hover{ color: var(--accent); }

.contact-form-wrap{ background: #fff; padding: 64px 56px; }
.contact-form-wrap h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 34px; }
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea{
  border: 1px solid var(--line); border-radius: 4px; padding: 13px 15px;
  font-family: var(--font-body); font-size: 15px; background: var(--paper);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--accent); background: #fff; }
.field-file{
  border: 1px dashed var(--line); border-radius: 4px; padding: 18px 15px;
  font-size: 14px; color: var(--muted); background: var(--paper); cursor: pointer;
}
.form-note{ font-size: 12.5px; color: var(--faint); margin-top: 18px; line-height: 1.6; }
.form-status{ display: none; margin-top: 18px; padding: 14px 16px; background: #eaf3ea; color: #1c6b30; border-radius: 4px; font-size: 14.5px; }
.form-status.show{ display: block; }

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap{ padding: 48px 26px; }
}
@media (max-width: 560px){
  .form-grid{ grid-template-columns: 1fr; }
}
