/* ==========================================================================
   Nécapturing — Visual Real Estate Media
   Shared stylesheet (multi-page)
   ========================================================================== */

/* ── RESET & VARS ────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --cream:      #F5F0E8;
  --cream-dark: #EDE8DE;
  --cream-mid:  #E8E2D6;
  --card-bg:    #EEEAE0;
  --warm-stone: #C8BFA8;
  --sage:       #5C6650;
  --sage-hover: #4A5240;
  --sage-light: #8FAF7A;
  --charcoal:   #1E1E1A;
  --muted:      #7A7468;
  --white:      #FDFAF5;
  --gold:       #B8A070;

  --nav-h: 72px;
  --maxw: 1200px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Focus visibility for keyboard users (accessibility) */
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

/* ── UTIL ────────────────────────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card-bg); color: var(--muted);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11.5px; letter-spacing: .06em;
}
.pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
}
.pill--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.75); }
.pill--light::before { background: var(--sage-light); }
.pill--dark { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.pill--dark::before { background: var(--sage-light); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.up { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; }
}

.eyebrow-italic { font-style: italic; font-weight: 300; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 100px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; cursor: pointer; transition: all .22s;
  text-decoration: none; border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-sm  { padding: 9px 20px;  font-size: 12.5px; }
.btn-md  { padding: 12px 26px; font-size: 13.5px; }
.btn-lg  { padding: 15px 34px; font-size: 14.5px; }
.btn-sage { background: var(--sage); color: #fff; border-color: var(--sage); }
.btn-sage:hover { background: var(--sage-hover); border-color: var(--sage-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: rgba(30,30,26,.22); }
.btn-ghost:hover { background: var(--charcoal); color: #fff; }
.btn-white { background: #fff; color: var(--sage); border-color: #fff; }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(245,240,232,.93); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,191,168,.25);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 40px; height: var(--nav-h);
  transition: height .3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: var(--charcoal); text-decoration: none;
  white-space: nowrap; line-height: 1;
}
.nav-logo sub {
  display: block; font-size: 8.5px; letter-spacing: .2em;
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-weight: 300; margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; list-style: none; flex: 1; }
.nav-links a {
  font-size: 13.5px; color: rgba(30,30,26,.55);
  text-decoration: none; transition: color .2s; position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--sage); border-radius: 2px;
}
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* hamburger */
.hamburger {
  display: none; width: 40px; height: 40px;
  border: 1.5px solid rgba(30,30,26,.18); border-radius: 50%;
  background: transparent; flex-direction: column; align-items: center;
  justify-content: center; gap: 4.5px; cursor: pointer; margin-left: auto;
}
.hamburger span { display: block; width: 15px; height: 1.5px; background: var(--charcoal); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(245,240,232,.98); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 32px; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400;
  color: var(--charcoal); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid rgba(200,191,168,.35);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 24px; font-family: 'DM Sans', sans-serif; align-self: flex-start; }

/* ── HERO (home) ─────────────────────────────────────────────────────────── */
.hero {
  height: 100vh; min-height: 680px;
  position: relative; display: flex; align-items: flex-start; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1800&q=85') center/cover no-repeat;
  transform: scale(1.05); animation: kZoom 10s ease forwards;
}
@keyframes kZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,13,10,.78) 0%, rgba(15,13,10,.38) 52%, rgba(15,13,10,.08) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--maxw); margin: 0 auto; padding: 120px 28px 56px;
  animation: fadeUp .9s .2s both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85);
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage-light); flex-shrink: 0; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6.5vw, 82px); font-weight: 400;
  color: #fff; line-height: 1.07; letter-spacing: -.015em;
  margin-bottom: 16px; max-width: 680px;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 16.5px; line-height: 1.6; max-width: 420px; margin-bottom: 26px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.65); font-size: 13px; }
.trust-item::before { content: '✓'; color: var(--sage-light); font-size: 12px; font-weight: 700; }

/* ── PAGE HEADER (interior pages) ────────────────────────────────────────── */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 88px) 0 88px;
  overflow: hidden; color: #fff;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,13,10,.82) 0%, rgba(15,13,10,.55) 60%, rgba(15,13,10,.35) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400; color: #fff;
  font-size: clamp(40px, 5.5vw, 68px); line-height: 1.08; letter-spacing: -.015em; max-width: 760px;
}
.page-hero h1 em { font-style: italic; font-weight: 300; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 16.5px; line-height: 1.65; max-width: 480px; margin-top: 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ── STATS ───────────────────────────────────────────────────────────────── */
.stats-section { background: var(--charcoal); padding: 52px 0; }
.stats-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item { text-align: center; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 12.5px; color: rgba(255,255,255,.42); line-height: 1.4; }

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
section { padding: 100px 0; }
.section-head { margin-bottom: 56px; }
.section-head .pill { margin-bottom: 18px; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 400; line-height: 1.12;
  letter-spacing: -.01em;
}
.section-head h2 em { font-style: italic; font-weight: 300; }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 500px; margin-top: 14px; }
.section-head.center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }

.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }

/* ── ABOUT (2-col) ───────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,50px); font-weight: 400; line-height: 1.12; margin-top: 18px; }
.about-copy h2 em { font-style: italic; font-weight: 300; }
.about-copy > p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-top: 14px; }
.about-bullets { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.about-bullet { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; background: var(--white); padding: 28px 26px; border-radius: 16px; border: 1px solid rgba(200,191,168,.4); box-shadow: 0 6px 18px rgba(30,30,26,.05); transition: transform .22s, box-shadow .22s; }
.about-bullet:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(30,30,26,.10); }
.ab-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--sage); }
.ab-icon svg { width: 20px; height: 20px; }
.about-bullet .ab-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--cream); }
.about-bullet .ab-icon svg { width: 32px; height: 32px; }
.ab-body strong { display: block; font-size: 14.5px; font-weight: 500; margin-bottom: 3px; }
.ab-body p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.about-bullet .ab-body strong { font-size: 17.5px; margin-bottom: 6px; }
.about-bullet .ab-body p { font-size: 14px; line-height: 1.55; }
.about-right { display: flex; flex-direction: column; gap: 3px; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: 20px; overflow: hidden; }
.astat { background: var(--card-bg); padding: 36px 28px; text-align: center; transition: background .2s; }
.astat:hover { background: var(--cream-mid); }
.astat-num { font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 300; line-height: 1; margin-bottom: 6px; }
.astat-lbl { font-size: 12px; color: var(--muted); line-height: 1.45; }
.about-img { border-radius: 18px; overflow: hidden; height: 200px; margin-top: 3px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.about-img:hover img { transform: scale(1.04); }
.about-img.tall { height: 380px; }

/* ── SERVICES GRID ───────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; border-radius: 22px; overflow: hidden; }
.svc { background: var(--card-bg); overflow: hidden; position: relative; transition: transform .28s; text-decoration: none; color: inherit; display: block; }
.svc:hover { transform: translateY(-5px); z-index: 2; box-shadow: 0 20px 52px rgba(30,30,26,.11); }
.svc-img { height: 220px; background-size: cover; background-position: center; transition: transform .5s; }
.svc:hover .svc-img { transform: scale(1.05); }
.svc-tag { position: absolute; top: 14px; left: 14px; background: rgba(245,240,232,.88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 4px 12px; border-radius: 100px; font-size: 10.5px; color: var(--muted); letter-spacing: .06em; }
.svc-body { padding: 24px 22px 28px; }
.svc-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.svc-body p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Services — detail (3-col / 2-col on service page) */
.services-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.services-grid.cols-2 { grid-template-columns: repeat(2,1fr); }

/* 360° tour badge (Matterport) */
.svc-img { position: relative; }
.svc-360 { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.svc-360-btn { width: 54px; height: 54px; border-radius: 50%; background: rgba(92,102,80,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,.28); }
.svc-360-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.svc-360-lbl { font-size: 11px; letter-spacing: .07em; color: #fff; background: rgba(30,30,26,.5); padding: 4px 12px; border-radius: 100px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* Floor-plan tile (Plattegronden) */
.svc-plan { height: 220px; background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 20px; }
.svc-plan svg { width: 100%; height: 100%; }

/* ── HOW IT WORKS ────────────────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; border-radius: 22px; overflow: hidden; }
.how-card { background: var(--card-bg); padding: 44px 36px; transition: transform .25s; }
.how-card:hover { transform: translateY(-5px); z-index: 1; position: relative; box-shadow: 0 18px 48px rgba(30,30,26,.09); }
.how-num { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300; color: var(--warm-stone); line-height: 1; margin-bottom: 20px; display: block; }
.how-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.how-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.how-card a { color: var(--sage); text-decoration: underline; text-decoration-color: var(--warm-stone); }

/* ── PORTFOLIO ───────────────────────────────────────────────────────────── */
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 260px 260px; gap: 3px; border-radius: 22px; overflow: hidden; }
.port-item { position: relative; overflow: hidden; cursor: pointer; }
.port-item.feature { grid-column: 1 / 3; grid-row: 1; }
.port-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.port-item:hover img { transform: scale(1.06); }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,.65) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 22px; }
.port-item:hover .port-overlay { opacity: 1; }
.port-overlay span { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; }
.port-cta { text-align: center; margin-top: 40px; }

/* Portfolio page — uniform gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; border-radius: 22px; overflow: hidden; }
.gallery-grid .port-item { height: 300px; }

/* Filter bar */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-chip { padding: 8px 18px; border-radius: 100px; border: 1.5px solid rgba(30,30,26,.16); background: transparent; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--muted); cursor: pointer; transition: all .2s; }
.filter-chip:hover { border-color: var(--sage); color: var(--charcoal); }
.filter-chip.active { background: var(--sage); border-color: var(--sage); color: #fff; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; border-radius: 22px; overflow: hidden; }
.test-card { background: var(--card-bg); padding: 40px 32px; transition: transform .25s; display: flex; flex-direction: column; }
.test-card:hover { transform: translateY(-4px); z-index: 1; position: relative; box-shadow: 0 16px 44px rgba(30,30,26,.08); }
.test-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.test-quote { font-family: 'Cormorant Garamond', serif; font-size: 18.5px; font-style: italic; font-weight: 400; color: rgba(30,30,26,.65); line-height: 1.7; margin-bottom: 24px; }
.test-avatar { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.test-avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cream-dark); }
.test-avatar .avatar-init { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; letter-spacing: .03em; flex-shrink: 0; }
.test-avatar-info strong { display: block; font-size: 14px; font-weight: 500; }
.test-avatar-info span { display: block; font-size: 12px; color: var(--muted); }

/* ── PRICE ───────────────────────────────────────────────────────────────── */
.price-section { background: var(--sage); padding: 100px 0; }
.price-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.price-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,50px); font-weight: 400; color: #fff; line-height: 1.12; margin: 22px 0 16px; }
.price-left h2 em { font-style: italic; font-weight: 300; }
.price-left p { color: rgba(255,255,255,.65); font-size: 15.5px; line-height: 1.65; margin-bottom: 36px; }
.price-left .btn { margin-right: 10px; margin-bottom: 10px; }
.price-right { display: flex; flex-direction: column; gap: 3px; }
.price-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; padding: 26px 28px; transition: background .2s; }
.price-card:hover { background: rgba(255,255,255,.16); }
.price-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.price-card h3 svg { width: 20px; height: 20px; opacity: .85; }
.price-card p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; }
.price-card .price-tag { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: #fff; font-weight: 300; margin-top: 12px; }
.price-card .price-tag sub { font-size: 14px; color: rgba(255,255,255,.55); font-family: 'DM Sans',sans-serif; }

/* Price — cards side by side (home) */
.price-head { text-align: center; max-width: 620px; margin: 0 auto 46px; }
.price-head .pill { margin-bottom: 18px; }
.price-head h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,50px); font-weight: 400; color: #fff; line-height: 1.12; margin-bottom: 14px; }
.price-head h2 em { font-style: italic; font-weight: 300; }
.price-head p { color: rgba(255,255,255,.65); font-size: 15.5px; line-height: 1.65; }
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-row .price-card { display: flex; flex-direction: column; }
.price-row .price-card .price-tag { margin-top: auto; padding-top: 8px; }
.price-cta { display: flex; justify-content: center; gap: 12px; margin-top: 38px; flex-wrap: wrap; }

/* Pricing page — full table cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan { background: var(--card-bg); border: 1px solid rgba(200,191,168,.4); border-radius: 22px; padding: 40px 34px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.plan:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(30,30,26,.10); }
.plan.featured { background: var(--sage); border-color: var(--sage); color: #fff; }
.plan.featured .plan-sub, .plan.featured .plan-feat li { color: rgba(255,255,255,.75); }
.plan.featured .plan-feat li::before { color: var(--sage-light); }
.plan-badge { align-self: flex-start; background: rgba(255,255,255,.18); color: #fff; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; }
.plan h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; margin-bottom: 6px; }
.plan-sub { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; min-height: 42px; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; line-height: 1; margin-bottom: 4px; }
.plan-price sub { font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--muted); }
.plan.featured .plan-price sub { color: rgba(255,255,255,.6); }
.plan-feat { list-style: none; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.plan-feat li { position: relative; padding-left: 26px; font-size: 13.5px; line-height: 1.5; color: var(--charcoal); }
.plan-feat li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.plan .btn { margin-top: auto; width: 100%; }

/* Add-ons row */
.addon-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; border-radius: 20px; overflow: hidden; margin-top: 3px; }
.addon { background: var(--card-bg); padding: 26px 24px; }
.addon h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; margin-bottom: 4px; }
.addon span { font-size: 13.5px; color: var(--sage); font-weight: 500; }

/* ── FINAL CTA ───────────────────────────────────────────────────────────── */
.cta-section { background: var(--charcoal); padding: 110px 0; text-align: center; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,5vw,60px); font-weight: 400; color: #fff; line-height: 1.1; margin: 24px 0 18px; }
.cta-section h2 em { font-style: italic; font-weight: 300; }
.cta-section p { color: rgba(255,255,255,.45); font-size: 16px; line-height: 1.65; max-width: 460px; margin: 0 auto 44px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 12.5px; color: rgba(255,255,255,.25); }
.cta-note span { color: var(--sage-light); }

/* ── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3.5vw,44px); font-weight: 400; line-height: 1.14; margin: 16px 0 14px; }
.contact-info h2 em { font-style: italic; font-weight: 300; }
.contact-info > p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 34px; max-width: 420px; }
.contact-list { display: flex; flex-direction: column; gap: 3px; border-radius: 18px; overflow: hidden; }
.contact-row { display: flex; gap: 16px; align-items: center; background: var(--card-bg); padding: 20px 22px; text-decoration: none; color: inherit; transition: transform .2s, background .2s; }
.contact-row:hover { transform: translateX(4px); background: var(--cream-mid); }
.contact-row .ab-icon { background: var(--cream); }
.contact-row .ab-icon svg { width: 20px; height: 20px; color: var(--sage); }
.contact-row strong { display: block; font-size: 14px; font-weight: 500; }
.contact-row span { font-size: 13px; color: var(--muted); }

/* Form */
.contact-form { background: var(--card-bg); border-radius: 22px; padding: 40px 36px; }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 6px; }
.contact-form > p { font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 500; letter-spacing: .02em; margin-bottom: 7px; }
.field label .req { color: var(--sage); }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 13px 15px; border: 1.5px solid rgba(200,191,168,.55);
  border-radius: 12px; background: var(--white); color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(92,102,80,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: #a13d2d; font-size: 12px; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #a13d2d; }
.field.invalid .form-error { display: block; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.5; }
.form-success { display: none; background: rgba(92,102,80,.12); border: 1px solid rgba(92,102,80,.3); border-radius: 12px; padding: 16px 18px; font-size: 13.5px; color: var(--sage-hover); margin-top: 18px; }
.form-success.show { display: block; }

/* Map placeholder */
.map-embed { border-radius: 22px; overflow: hidden; height: 320px; margin-top: 3px; border: 1px solid rgba(200,191,168,.4); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 3px; border-radius: 18px; overflow: hidden; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--card-bg); }
.faq-q { width: 100%; text-align: left; background: transparent; border: none; cursor: pointer; padding: 24px 26px; font-family: 'DM Sans', sans-serif; font-size: 15.5px; font-weight: 500; color: var(--charcoal); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q .faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .3s; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ''; position: absolute; background: var(--sage); border-radius: 2px; }
.faq-q .faq-icon::before { top: 50%; left: 3px; right: 3px; height: 2px; transform: translateY(-50%); }
.faq-q .faq-icon::after { left: 50%; top: 3px; bottom: 3px; width: 2px; transform: translateX(-50%); transition: opacity .3s; }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 26px 24px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── APP / PLATFORM SHOWCASE ─────────────────────────────────────────────── */
.app-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); overflow: hidden; padding: 100px 0 0; position: relative; }
.app-section::after { content: ''; position: absolute; right: -160px; top: 50%; transform: translateY(-50%); width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(92,102,80,.10) 0%, transparent 68%); pointer-events: none; }
.app-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.app-copy { padding-bottom: 100px; }
.app-copy h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,50px); font-weight: 400; color: var(--charcoal); line-height: 1.12; margin: 20px 0 16px; }
.app-copy h2 em { font-style: italic; font-weight: 300; }
.app-copy > p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 26px; max-width: 440px; }
.app-feat { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.app-feat li { position: relative; padding-left: 30px; color: var(--charcoal); font-size: 14.5px; line-height: 1.5; }
.app-feat li::before { content: ''; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: rgba(92,102,80,.14); }
.app-feat li::after { content: '✓'; position: absolute; left: 6px; top: 1px; color: var(--sage); font-size: 11px; font-weight: 700; }

.app-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; align-self: stretch; min-height: 520px; }

/* iPhone mockup */
.app-phone {
  position: relative;
  width: 300px; flex-shrink: 0; background: #0c0c0a;
  border-radius: 44px; padding: 12px; margin-bottom: -70px;
  box-shadow: 0 30px 70px rgba(30,30,26,.26), inset 0 0 0 2px rgba(255,255,255,.06);
}
.app-phone-island { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #0c0c0a; border-radius: 100px; z-index: 3; }
.app-screen { background: var(--cream); border-radius: 33px; overflow: hidden; height: 600px; display: flex; flex-direction: column; font-size: 12px; position: relative; }
.app-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px 8px; font-weight: 500; font-size: 12px; color: var(--charcoal); }
.app-statusbar .app-sb-dots { letter-spacing: 1px; opacity: .7; }
.app-topbar { display: flex; justify-content: space-between; align-items: center; padding: 6px 20px 14px; }
.app-hi { font-size: 11px; color: var(--muted); }
.app-uname { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--charcoal); line-height: 1.1; }
.app-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; letter-spacing: .04em; }
.app-body { padding: 0 16px 16px; overflow: hidden; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.app-card { background: #fff; border-radius: 16px; padding: 14px 15px; box-shadow: 0 4px 14px rgba(30,30,26,.05); }
.app-card--primary { background: var(--sage); color: #fff; box-shadow: 0 10px 24px rgba(92,102,80,.35); }
.app-card-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 5px; }
.app-card-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.app-card-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.app-date { font-size: 11.5px; color: rgba(255,255,255,.82); }
.app-status { font-size: 10px; padding: 3px 9px; border-radius: 100px; background: rgba(255,255,255,.2); color: #fff; }
.app-status--ok { background: rgba(143,175,122,.9); color: #14200f; font-weight: 600; }
.app-steps { display: flex; gap: 5px; margin-bottom: 6px; }
.app-steps span { height: 4px; flex: 1; border-radius: 100px; background: rgba(255,255,255,.25); }
.app-steps span.done { background: var(--sage-light); }
.app-steps span.cur { background: #fff; }
.app-steps-lbl { display: flex; justify-content: space-between; font-size: 8px; color: rgba(255,255,255,.6); }

.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-stat { background: #fff; border-radius: 14px; padding: 12px 14px; box-shadow: 0 4px 14px rgba(30,30,26,.05); }
.app-stat b { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--sage); display: block; line-height: 1; }
.app-stat small { font-size: 10px; color: var(--muted); }

.app-list-head { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 4px 2px 0; }
.app-file { display: flex; align-items: center; gap: 11px; background: #fff; border-radius: 14px; padding: 9px 12px; box-shadow: 0 4px 14px rgba(30,30,26,.05); }
.app-thumb { width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0; background-size: cover; background-position: center; }
.app-thumb--1 { background-image: url('../img/portfolio/shot-19-md.webp'); }
.app-thumb--2 { background-image: url('../img/portfolio/shot-20-md.webp'); }
.app-file-info { flex: 1; }
.app-file-info b { font-size: 12.5px; font-weight: 500; color: var(--charcoal); display: block; }
.app-file-info small { font-size: 10px; color: var(--muted); }
.app-dl { width: 26px; height: 26px; border-radius: 8px; background: var(--cream-dark); color: var(--sage); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.app-fab { margin-top: auto; background: var(--charcoal); color: #fff; text-align: center; padding: 12px; border-radius: 14px; font-size: 12.5px; font-weight: 500; }

/* ── WERKGEBIED / KAART ──────────────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.area-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,4vw,48px); font-weight: 400; line-height: 1.14; margin: 16px 0 14px; }
.area-h2 em { font-style: italic; font-weight: 300; }
.area-p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 24px; max-width: 440px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.area-chips span { background: var(--white); border: 1px solid rgba(200,191,168,.5); color: var(--charcoal); font-size: 13px; padding: 7px 15px; border-radius: 100px; }
.area-map-wrap { background: var(--white); border: 1px solid rgba(200,191,168,.4); border-radius: 20px; padding: 22px; box-shadow: 0 8px 26px rgba(30,30,26,.05); }
.area-map { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ── WHATSAPP FLOATING BUTTON ────────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(92,102,80,.42);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.wa-fab::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--sage); z-index: -1; animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.7); opacity: 0; } }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); background: var(--sage-hover); box-shadow: 0 12px 32px rgba(92,102,80,.55); }
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }
@media (prefers-reduced-motion: reduce) { .wa-fab::before { animation: none; } }
@media (max-width: 540px) { .wa-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; } .wa-fab svg { width: 30px; height: 30px; } }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.06); padding: 64px 0 44px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 56px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 21px; letter-spacing: .13em; text-transform: uppercase; color: #fff; font-weight: 500; text-decoration: none; display: inline-block; }
.footer-logo-sub { font-size: 8.5px; letter-spacing: .22em; color: rgba(255,255,255,.28); display: block; margin-top: 2px; margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.7; }
.footer-col h4 { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; font-weight: 400; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.52); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { max-width: var(--maxw); margin: 48px auto 0; padding: 24px 28px 0; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-cta { margin-left: auto; }
  .hamburger { display: flex; }
  .nav-inner { gap: 0; }

  .hero h1 { font-size: clamp(36px,10vw,52px); }
  .hero-content { padding: 96px 24px 56px; }

  .page-hero { padding: calc(var(--nav-h) + 60px) 0 60px; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  section { padding: 72px 0; }
  .about-grid, .price-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img.tall { height: 240px; }
  .app-section { padding: 72px 0 0; }
  .app-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .app-copy { padding-bottom: 0; }
  .app-copy > p { margin-left: auto; margin-right: auto; }
  .app-feat { max-width: 320px; margin-left: auto; margin-right: auto; text-align: left; }
  .app-visual { min-height: 0; margin-top: 10px; }
  .app-phone { transform: rotate(0); margin-bottom: -60px; width: 280px; }
  .app-phone-island { transform: translateX(-50%); }
  .app-section::after { display: none; }
  .services-grid, .services-grid.cols-3, .services-grid.cols-2, .how-grid, .test-grid, .gallery-grid { grid-template-columns: 1fr 1fr; border-radius: 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 210px 210px 210px; border-radius: 18px; }
  .port-item.feature { grid-column: 1 / 3; grid-row: auto; height: 240px; }
  .gallery-grid .port-item { height: 220px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .price-section { padding: 72px 0; }
  .cta-section { padding: 80px 0; }
}

@media (max-width: 540px) {
  .nav-logo { font-size: 22px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-grid, .services-grid.cols-3, .services-grid.cols-2, .how-grid, .test-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .port-item { height: 240px; }
  .port-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .port-item { height: 240px; }
  .addon-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
  .contact-form { padding: 30px 24px; }
}
