/* ============================================================
   Casanomada Digital — global styles (light "Elite" theme)
   Palette: cream #f9f8f6 · ink #0d0d0d · taupe #9c9789 · beige #cbc7bd
   Fonts:  Cormorant Garamond (display) · Poppins (body)
   ============================================================ */

:root {
  --bg:        #f9f8f6;
  --bg-soft:   #f3f1ed;
  --bg-card:   #ffffff;
  --bg-dark:   #0d0d0d;
  --bg-dark-2: #1a1a1a;
  --line:      rgba(13,13,13,0.12);
  --line-soft: rgba(13,13,13,0.07);
  --line-dark: rgba(247,245,243,0.14);
  --text:      #0d0d0d;
  --text-inv:  #f7f5f3;
  --muted:     #666666;
  --muted-2:   #9c9789;
  --taupe:     #9c9789;
  --beige:     #cbc7bd;
  --grad:      linear-gradient(120deg, #b8b3a6 0%, #9c9789 55%, #807b6e 100%);
  --maxw:      1200px;
  --r:         18px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --serif:     "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:      "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- ambient glow (subtle, light) ---------- */
.glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(50% 40% at 80% 8%, rgba(156,151,137,0.10), transparent 70%),
    radial-gradient(45% 45% at 5% 92%, rgba(203,199,189,0.12), transparent 70%);
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500; font-family: var(--sans);
}
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.accent {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

h1,h2,h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: 0; }

.section { padding: 130px 0; position: relative; }
.section-sm { padding: 80px 0; }
.center { text-align: center; }

/* dark section helper */
.dark { background: var(--bg-dark); color: var(--text-inv); }
.dark .eyebrow { color: var(--beige); }
.dark .head p, .dark p { color: rgba(247,245,243,0.65); }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* default = over dark hero → light text */
.nav .brand, .nav-links a { color: var(--text-inv); }
.nav.scrolled {
  background: rgba(249,248,246,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 15px 40px;
}
.nav.scrolled .brand, .nav.scrolled .nav-links a { color: var(--text); }
.brand { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: .01em; }
.brand .dot { color: var(--taupe); }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-size: 13px; letter-spacing: .03em; opacity: .85; transition: opacity .25s, color .25s; font-weight: 400; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  border: 1px solid currentColor; padding: 10px 20px; border-radius: 100px;
  font-size: 12px; letter-spacing: .05em; opacity: 1 !important;
  transition: all .3s var(--ease);
}
.nav.scrolled .nav-cta:hover { background: var(--text); color: var(--bg) !important; }
.nav:not(.scrolled) .nav-cta:hover { background: var(--text-inv); color: var(--bg-dark) !important; }
.nav-toggle { display: none; background: none; border: 0; color: inherit; cursor: pointer; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 100px; font-size: 13px; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer; border: 1px solid transparent;
  transition: all .3s var(--ease); font-family: var(--sans);
}
.btn-primary { background: var(--text); color: var(--text-inv); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(13,13,13,0.18); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); background: rgba(13,13,13,0.03); }
.dark .btn-primary { background: var(--text-inv); color: var(--bg-dark); }
.dark .btn-ghost { border-color: var(--line-dark); color: var(--text-inv); }
.dark .btn-ghost:hover { border-color: var(--text-inv); background: rgba(247,245,243,0.06); }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- hero (dark) ---------- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; padding: 140px 28px 90px;
  background: radial-gradient(120% 80% at 50% 0%, #161210 0%, #0d0d0d 60%);
  color: var(--text-inv); overflow: hidden;
}
.hero .eyebrow { margin-bottom: 28px; color: var(--beige); }
.hero h1 { font-size: clamp(50px, 9vw, 120px); margin-bottom: 26px; font-weight: 400; line-height: 1.0; }
.hero p { color: rgba(247,245,243,0.6); font-size: clamp(15px,2vw,19px); max-width: 600px; margin: 0 auto 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .35em; color: rgba(247,245,243,0.4); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .line { width: 1px; height: 42px; background: linear-gradient(var(--beige), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* hero secondary (light pages) */
.hero.light {
  background: var(--bg); color: var(--text); min-height: 78vh;
}
.hero.light .eyebrow { color: var(--muted-2); }
.hero.light p { color: var(--muted); }

/* section progress dots (hero side nav) */
.side-nav {
  position: fixed; right: 36px; top: 50%; transform: translateY(-50%); z-index: 40;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-end;
  transition: opacity .4s var(--ease);
}
.side-nav.hidden { opacity: 0; pointer-events: none; }
.side-nav a { display: flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: .22em; color: rgba(247,245,243,0.4); text-transform: uppercase; }
.side-nav a .num { opacity: .6; }
.side-nav a .pip { width: 6px; height: 6px; border-radius: 50%; border: 1px solid rgba(247,245,243,0.4); transition: all .3s; }
.side-nav a.active { color: var(--text-inv); }
.side-nav a.active .pip { background: var(--beige); border-color: var(--beige); box-shadow: 0 0 12px var(--beige); }

/* ---------- section heading ---------- */
.head { max-width: 780px; margin: 0 auto 72px; }
.head.left { margin-left: 0; text-align: left; }
.head .eyebrow { display: block; margin-bottom: 20px; }
.head h2 { font-size: clamp(36px, 6vw, 68px); margin-bottom: 22px; font-weight: 400; }
.head p { color: var(--muted); font-size: 18px; font-weight: 300; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.stat { text-align: center; padding: 40px 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-card); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.stat:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(13,13,13,0.07); }
.stat .n { font-family: var(--serif); font-size: clamp(44px,6vw,72px); font-weight: 500; color: var(--text); line-height: 1; }
.stat .l { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 12px; font-weight: 400; }
.dark .stat { background: var(--bg-dark-2); border-color: var(--line-dark); }
.dark .stat .n { color: var(--text-inv); }
.dark .stat .l { color: rgba(247,245,243,0.55); }

/* ---------- cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  border: 1px solid var(--line-soft); border-radius: var(--r); padding: 36px;
  background: var(--bg-card);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { border-color: var(--line); box-shadow: 0 24px 60px rgba(13,13,13,0.08); }
.card .idx { font-family: var(--serif); font-size: 18px; color: var(--taupe); margin-bottom: 24px; display: block; font-weight: 500; }
.card h3 { font-size: 26px; margin-bottom: 12px; font-weight: 500; }
.card p { color: var(--muted); font-size: 15px; font-weight: 300; }

/* ---------- service rows ---------- */
.svc { border-top: 1px solid var(--line); padding: 46px 0; display: grid; grid-template-columns: 0.9fr 1.4fr 1fr; gap: 40px; align-items: start; transition: padding .3s; }
.svc:hover { padding-left: 12px; }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc .tag { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); font-weight: 500; }
.svc h3 { font-size: 36px; margin-top: 14px; font-weight: 400; }
.svc .desc { color: var(--muted); font-size: 16px; font-weight: 300; }
.svc ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.svc ul li { font-size: 14.5px; color: var(--text); display: flex; align-items: center; gap: 12px; font-weight: 300; }
.svc ul li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--taupe); flex: 0 0 auto; }

/* ---------- method / timeline ---------- */
.method { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { border: 1px solid var(--line-soft); border-radius: var(--r); padding: 30px 24px; background: var(--bg-card); transition: transform .35s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step .s-n { font-family: var(--serif); font-size: 38px; color: var(--taupe); font-weight: 500; }
.step h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 16px 0 10px; font-weight: 500; }
.step p { font-size: 13.5px; color: var(--muted); font-weight: 300; }

/* ---------- reviews ---------- */
.quote { max-width: 860px; margin: 0 auto; text-align: center; }
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(26px,3.6vw,40px); line-height: 1.36; color: var(--text); font-weight: 400; }
.quote .by { margin-top: 30px; font-size: 13px; letter-spacing: .05em; color: var(--muted); text-transform: uppercase; }
.quote .by b { color: var(--text); font-weight: 600; }

/* logos marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 32s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 26px; color: var(--muted-2); white-space: nowrap; font-style: italic; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- big CTA (dark) ---------- */
.cta { text-align: center; border-radius: 28px; padding: 96px 30px; background: var(--bg-dark); color: var(--text-inv); position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 120% at 50% 0%, rgba(156,151,137,0.18), transparent 70%); pointer-events:none; }
.cta .eyebrow { color: var(--beige); position: relative; }
.cta h2 { font-size: clamp(38px,6.5vw,80px); margin-bottom: 24px; font-weight: 400; position: relative; }
.cta p { color: rgba(247,245,243,0.62); max-width: 520px; margin: 0 auto 38px; position: relative; font-weight: 300; }
.cta .btn-primary { background: var(--text-inv); color: var(--bg-dark); position: relative; }
.cta small { display: block; margin-top: 24px; color: rgba(247,245,243,0.4); font-size: 12px; letter-spacing: .05em; position: relative; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; background: var(--bg-card); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.member:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(13,13,13,0.08); }
.member .ph { aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 60px; color: var(--beige); background: linear-gradient(160deg, #efece6, #e3ded4); font-weight: 500; overflow: hidden; }
.member .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member .info { padding: 20px 22px; }
.member .info b { font-size: 17px; font-weight: 500; }
.member .info span { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

/* ---------- values ---------- */
.value h3 { font-size: 26px; margin-bottom: 10px; font-weight: 500; }
.value p { color: var(--muted); font-size: 15px; font-weight: 300; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px; font-size: 12px; color: var(--muted); letter-spacing: .04em; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(38px,5.5vw,66px); margin-bottom: 24px; font-weight: 400; }
.contact-info p.lead { color: var(--muted); margin-bottom: 42px; max-width: 420px; font-weight: 300; }
.info-block { padding: 24px 0; border-top: 1px solid var(--line); }
.info-block .k { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; font-weight: 500; }
.info-block .v { font-size: 18px; }
form { border: 1px solid var(--line); border-radius: var(--r); padding: 40px; background: var(--bg-card); }
form h3 { font-family: var(--serif); font-size: 30px; margin-bottom: 6px; font-weight: 500; }
form .sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; font-weight: 300; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 15px; transition: border-color .25s; font-weight: 300;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--taupe); }
.field textarea { resize: vertical; min-height: 110px; }
form .disclaimer { font-size: 12px; color: var(--muted-2); margin-top: 16px; line-height: 1.5; font-weight: 300; }
.form-note { margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: rgba(156,151,137,0.12); border: 1px solid var(--line); color: #6f6a5d; font-size: 14px; display: none; }
.form-note.show { display: block; }

/* ============================================================
   3D PHONE MOCKUP + tilt
   ============================================================ */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.showcase .copy h2 { font-size: clamp(34px,5vw,58px); font-weight: 400; margin: 18px 0 18px; }
.showcase .copy p { color: var(--muted); font-weight: 300; margin-bottom: 28px; max-width: 440px; }
.dark .showcase .copy p { color: rgba(247,245,243,0.65); }

.phone-stage { perspective: 1500px; display: flex; justify-content: center; padding: 30px 0; }
.phone3d-wrap { position: relative; width: 300px; height: 600px; transform-style: preserve-3d; }
.phone3d {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-22deg);
  cursor: grab; touch-action: none; will-change: transform;
  filter: drop-shadow(0 50px 60px rgba(13,13,13,0.35));
}
.phone3d.grabbing { cursor: grabbing; }
.face { position: absolute; top: 50%; left: 50%; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.f-front, .f-back { width: 300px; height: 600px; border-radius: 44px; overflow: hidden; }
.f-front { transform: translate(-50%,-50%) translateZ(23px); background: #050505; }
.f-back  { transform: translate(-50%,-50%) rotateY(180deg) translateZ(23px); background: linear-gradient(155deg, #232323, #050505); display: flex; align-items: center; justify-content: center; }
.f-back .logo { font-family: var(--serif); font-size: 70px; font-weight: 600; color: rgba(203,199,189,0.5); }
.f-right { width: 46px; height: 600px; transform: translate(-50%,-50%) rotateY(90deg) translateZ(150px); background: linear-gradient(180deg, #3a3a3a, #0c0c0c); border-radius: 6px; }
.f-left  { width: 46px; height: 600px; transform: translate(-50%,-50%) rotateY(-90deg) translateZ(150px); background: linear-gradient(180deg, #0c0c0c, #3a3a3a); border-radius: 6px; }
.f-top    { width: 300px; height: 46px; transform: translate(-50%,-50%) rotateX(90deg) translateZ(300px); background: linear-gradient(90deg, #2a2a2a, #111); border-radius: 6px; }
.f-bottom { width: 300px; height: 46px; transform: translate(-50%,-50%) rotateX(-90deg) translateZ(300px); background: linear-gradient(90deg, #111, #2a2a2a); border-radius: 6px; }
.notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #050505; border-radius: 0 0 16px 16px; z-index: 6; }
.phone-screen { position:absolute; inset: 10px; border-radius: 36px; overflow: hidden; background: #fff; display:flex; flex-direction:column; }
.phone3d-wrap .badge { position: absolute; transform: translateZ(90px); }
.drag-hint { position: absolute; bottom: -42px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,245,243,0.45); white-space: nowrap; transition: opacity .4s; }
.drag-hint.gone { opacity: 0; }
/* ----- Instagram dark-mode screen ----- */
.phone-screen.ig-dark { background:#000; color:#fff; font-family:var(--sans); font-weight:400; }
.ig-status { display:flex; justify-content:space-between; align-items:center; padding:13px 20px 3px; font-size:12px; font-weight:600; }
.ig-status-r { display:flex; gap:6px; align-items:flex-end; }
.ig-status-r i { display:inline-block; }
.ig-status-r .bars { width:18px; height:11px; background:
  linear-gradient(#fff,#fff) 0 100%/3px 4px no-repeat,
  linear-gradient(#fff,#fff) 5px 100%/3px 6px no-repeat,
  linear-gradient(#fff,#fff) 10px 100%/3px 9px no-repeat,
  linear-gradient(#fff,#fff) 15px 100%/3px 11px no-repeat; }
.ig-status-r .wifi { width:14px; height:10px; background:#fff; clip-path:polygon(50% 0,100% 38%,50% 100%,0 38%); }
.ig-status-r .batt { width:22px; height:11px; border:1.4px solid #fff; border-radius:3px; position:relative; }
.ig-status-r .batt::after { content:""; position:absolute; inset:1.5px 4px 1.5px 1.5px; background:#fff; border-radius:1px; }
.ig-status-r .batt::before { content:""; position:absolute; right:-3px; top:3px; bottom:3px; width:2px; background:#fff; border-radius:2px; }
.ig-bar { display:flex; align-items:center; gap:5px; padding:6px 16px 8px; }
.ig-bar b { font-size:16px; font-weight:600; }
.ig-bar .verif { width:13px; height:13px; flex:0 0 auto; }
.ig-bar .ig-bar-r { margin-left:auto; display:flex; gap:16px; }
.ig-bar .ig-bar-r svg { width:21px; height:21px; }
.ig-head { display:flex; align-items:center; gap:20px; padding:4px 18px 10px; }
.ig-head .avatar { width:66px; height:66px; border-radius:50%; background:linear-gradient(155deg,#5a463a,#241c16); border:2px solid #2c2c2c; color:#cbb9a6; font-family:var(--serif); font-weight:600; font-size:17px; display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.ig-nums { flex:1; display:flex; justify-content:space-around; }
.ig-nums div { text-align:center; }
.ig-nums b { display:block; font-size:16px; font-weight:600; }
.ig-nums span { font-size:12px; color:#a8a8a8; }
.ig-name { padding:0 18px; font-size:13px; font-weight:600; }
.ig-cat { padding:1px 18px 0; font-size:12px; color:#aaa; }
.ig-bio2 { padding:3px 18px 0; font-size:11.5px; line-height:1.45; color:#e8e8e8; }
.ig-link { padding:4px 18px 0; font-size:12px; color:#7aa7e0; display:flex; align-items:center; gap:5px; font-weight:500; }
.ig-link svg { width:13px; height:13px; flex:0 0 auto; }
.ig-btns { display:flex; gap:6px; padding:12px 16px 12px; }
.ig-follow { flex:1; text-align:center; background:#fff; color:#000; font-size:13px; font-weight:600; padding:7px 0; border-radius:9px; }
.ig-msg { flex:1; text-align:center; background:#2b2b2b; color:#fff; font-size:13px; font-weight:600; padding:7px 0; border-radius:9px; }
.ig-add { width:40px; background:#2b2b2b; border-radius:9px; display:flex; align-items:center; justify-content:center; }
.ig-add svg { width:17px; height:17px; }
.ig-highlights { display:flex; gap:14px; padding:2px 18px 14px; overflow:hidden; }
.ig-highlights .hl { text-align:center; flex:0 0 auto; }
.ig-highlights .ring { display:block; width:56px; height:56px; border-radius:50%; background:linear-gradient(155deg,#4a3a2e,#221a14); border:1.5px solid #3a3a3a; }
.ig-highlights small { display:block; font-size:10px; color:#cfcfcf; margin-top:6px; }
.ig-tabs { display:flex; justify-content:space-around; border-top:1px solid #262626; padding:9px 0; }
.ig-tabs svg { width:22px; height:22px; }
.ig-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.ig-grid img { width:100%; aspect-ratio:1; object-fit:cover; display:block; }
/* ----- floating dark glass badges ----- */
.phone3d-wrap .badge {
  display:flex; align-items:center; gap:11px;
  background:rgba(18,16,14,0.74); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  border:1px solid rgba(203,199,189,0.18); border-radius:16px;
  padding:12px 16px; box-shadow:0 22px 50px rgba(0,0,0,0.45); z-index:8;
}
.phone3d-wrap .badge .ic { width:34px; height:34px; border-radius:50%; border:1px solid rgba(203,199,189,0.28); display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.phone3d-wrap .badge .ic svg { width:17px; height:17px; }
.phone3d-wrap .badge .lbl { font-size:9px; letter-spacing:.18em; text-transform:uppercase; color:var(--beige); }
.phone3d-wrap .badge .big { font-family:var(--serif); font-size:24px; font-weight:600; color:#fff; line-height:1.1; }
.phone3d-wrap .badge.b1 { top:60px; left:-70px; transform: translateZ(95px); }
.phone3d-wrap .badge.b2 { top:250px; right:-64px; transform: translateZ(95px); }
.phone3d-wrap .badge.b3 { bottom:48px; right:-40px; transform: translateZ(70px); }

/* 3D hover tilt utility for cards */
.tilt { transform-style: preserve-3d; transition: transform .2s var(--ease); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 70px 0 42px; background: var(--bg-soft); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.footer .brand { font-size: 30px; margin-bottom: 14px; color: var(--text); }
.footer .tag { color: var(--muted); max-width: 320px; font-size: 15px; font-weight: 300; }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-col h5 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; font-weight: 500; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 11px; transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13px; flex-wrap: wrap; gap: 12px; font-weight: 300; }

/* ---------- klanten ---------- */
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.client-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-card); padding: 30px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; min-height: 150px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.client-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(13,13,13,0.07); }
.client-card .c-logo { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(155deg,#efece6,#e3ded4); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; color: var(--taupe); font-size: 18px; }
.client-card b { font-size: 15px; font-weight: 500; }
.client-card span { font-size: 12px; color: var(--muted); }
.clients-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 26px; }

/* ---------- reviews ---------- */
.reviews-top { text-align: center; margin-bottom: 54px; }
.reviews-top .eyebrow { display: block; margin-bottom: 16px; }
.reviews-top h2 { font-size: clamp(32px, 5vw, 56px); }
.reviews-rating { display: inline-flex; align-items: center; gap: 14px; margin-top: 22px; padding: 12px 22px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg-card); }
.reviews-rating .score { font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1; }
.stars { color: #C8A24A; letter-spacing: 2px; font-size: 16px; line-height: 1; }
.reviews-rating small { color: var(--muted); font-size: 12.5px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { border: 1px solid var(--line-soft); border-radius: var(--r); background: var(--bg-card); padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(13,13,13,0.07); }
.review-card .stars { font-size: 15px; }
.review-card p { color: var(--text); font-size: 15px; line-height: 1.72; font-weight: 300; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid var(--line-soft); margin-top: 2px; }
.review-author .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(155deg,#efece6,#e3ded4); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; color: var(--taupe); font-size: 15px; flex: 0 0 auto; margin-top: 14px; }
.review-author .who { margin-top: 14px; }
.review-author b { font-size: 14px; font-weight: 500; display: block; }
.review-author span { font-size: 12px; color: var(--muted); }
.review-src { margin-left: auto; margin-top: 14px; font-size: 11px; color: var(--muted-2); display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.review-src svg { width: 13px; height: 13px; }

/* ---------- social media band (illustrated) ---------- */
.sb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sb-copy h2 { font-size: clamp(32px, 5vw, 56px); margin: 18px 0 18px; }
.sb-copy p { color: var(--muted); font-weight: 300; margin-bottom: 28px; max-width: 440px; }
.sb-copy .chips { margin-top: 6px; }
.collage { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 16px; }
.ptile { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 16px 40px rgba(13,13,13,0.07); }
.ptile svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ptile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ptile.video { background: #0d0d0d; }
.ptile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ptile .play-badge { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,0.25); pointer-events: none; }
.ptile .play-badge svg { width: 18px; height: 18px; margin-left: 2px; }

/* ---------- content calendar mockup ---------- */
.cal { background: var(--bg-dark); color: var(--text-inv); border-radius: 20px; padding: 26px 26px 22px; box-shadow: 0 34px 80px rgba(13,13,13,0.28); }
.cal-top { display: flex; justify-content: space-between; align-items: baseline; }
.cal-top b { font-family: var(--serif); font-weight: 500; font-size: 22px; }
.cal-ey { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--beige); }
.cal-sub { display: flex; justify-content: space-between; align-items: flex-end; margin: 20px 0 16px; }
.cal-sub .k { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 5px; }
.cal-sub .v { font-family: var(--serif); font-size: 19px; }
.cal-sub .v em { font-style: italic; color: var(--beige); }
.cal-week { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; text-align: center; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 7px; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.cal-day { aspect-ratio: 1; border: 1px solid rgba(247,245,243,0.08); border-radius: 8px; padding: 5px 6px; font-size: 11px; color: #8d8278; position: relative; }
.cal-day .lbl { position: absolute; left: 5px; bottom: 4px; font-size: 7.5px; letter-spacing: .03em; color: var(--beige); }
.cal-day.live { background: rgba(201,162,122,0.16); border-color: rgba(203,199,189,0.35); color: var(--text-inv); }
.cal-day.live .lbl { color: #fff; }
.cal-day.concept { border-style: dashed; border-color: rgba(203,199,189,0.3); }
.cal-day.empty { border-color: transparent; }
.cal-legend { display: flex; gap: 18px; margin: 16px 0 0; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.cal-legend span { display: flex; align-items: center; gap: 6px; }
.cal-legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
.cal-legend .l-live { background: rgba(201,162,122,0.7); }
.cal-legend .l-plan { border: 1px solid rgba(203,199,189,0.4); }
.cal-legend .l-con { border: 1px dashed rgba(203,199,189,0.4); }
.cal-months { display: flex; justify-content: space-between; border-top: 1px solid rgba(247,245,243,0.08); margin-top: 18px; padding-top: 14px; font-size: 11px; letter-spacing: .12em; color: var(--muted-2); }
.cal-months span { cursor: pointer; transition: color .2s; }
.cal-months span:hover { color: #fff; }
.cal-months .on { color: #fff; }
.cal-foot { display: flex; justify-content: space-between; margin-top: 14px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.ptile .cap { position: absolute; left: 12px; bottom: 12px; z-index: 2; background: rgba(13,13,13,0.55); color: #fff; font-size: 11px; letter-spacing: .04em; padding: 5px 11px; border-radius: 100px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.ptile .heart { position: absolute; right: 12px; top: 12px; z-index: 2; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; }
.ptile .heart svg { position: static; width: 15px; height: 15px; }
.ptile.accent { background: var(--bg-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 22px; }
.ptile.accent .ic-row { display: flex; gap: 14px; }
.ptile.accent .ic-row span { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(203,199,189,0.3); display: flex; align-items: center; justify-content: center; }
.ptile.accent .ic-row span svg { position: static; width: 18px; height: 18px; }
.ptile.accent .big { font-family: var(--serif); font-size: 34px; color: #fff; line-height: 1; }
.ptile.accent .lbl { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--beige); }

/* ---------- WhatsApp floating button ---------- */
.wa-fab { position: fixed; right: 24px; bottom: 24px; z-index: 300; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(37,211,102,0.4); transition: transform .3s var(--ease), box-shadow .3s; }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 38px rgba(37,211,102,0.5); }
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }
.wa-fab .wa-tip { position: absolute; right: 72px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 400; padding: 9px 14px; border-radius: 10px; white-space: nowrap; opacity: 0; transform: translateX(6px); pointer-events: none; transition: opacity .3s, transform .3s; box-shadow: 0 8px 20px rgba(13,13,13,0.18); }
.wa-fab:hover .wa-tip { opacity: 1; transform: none; }
.wa-fab .wa-tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--ink); border-radius: 2px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4, .method, .team-grid, .clients-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .showcase, .sb-grid { grid-template-columns: 1fr; gap: 48px; }
  .showcase .phone-stage { order: -1; }
  .svc { grid-template-columns: 1fr; gap: 16px; }
  .side-nav { display: none; }
}
@media (max-width: 720px) {
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 13px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: rgba(249,248,246,0.98); backdrop-filter: blur(20px); justify-content: center;
    align-items: center; gap: 30px; z-index: 99;
  }
  .nav-links.open a { color: var(--text) !important; font-size: 26px; font-family: var(--serif); }
  .nav-toggle { display: block; z-index: 101; }
  .nav:not(.scrolled) .nav-toggle { color: var(--text-inv); }
  .section { padding: 84px 0; }
  .stats, .grid-2, .grid-3, .grid-4, .team-grid, .method { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .footer-top { flex-direction: column; }
  .phone-stage { transform: scale(.82); }
  .clients-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .review-grid { grid-template-columns: 1fr; }
  .client-card { min-height: 130px; padding: 22px 14px; }
  .wa-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-fab .wa-tip { display: none; }
}
