/* ============================================================
   SKYLINE DIGITAL — page components (subpages)
   Builds on styles.css (variables, nav, footer, buttons, reveal)
   ============================================================ */

/* ---------- NAV dropdown ---------- */
.nav-drop { position: relative; }
.nav-drop-trigger { cursor: pointer; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(14px);
  background: rgba(8,9,13,0.97); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 10px; min-width: 230px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s; box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}
/* invisible hover bridge so the menu doesn't close when moving the cursor down */
.nav-drop-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -24px; height: 24px; }
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px); }
.nav-drop-menu a {
  padding: 11px 16px; border-radius: 9px; color: var(--on-dark) !important; font-size: 0.9rem;
  text-transform: none; letter-spacing: 0.01em; text-shadow: none !important; transition: background .2s, color .2s;
}
.nav-drop-menu a:hover { background: rgba(214,170,70,0.16); color: var(--gold) !important; }
.nav-links a[aria-current="page"] { color: var(--gold) !important; }

/* floating gold badge must sit above the image, not behind it */
.frow-media { position: relative; z-index: 1; }
.frow-media .badge-float { z-index: 5; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  position: relative; min-height: 78vh; display: grid; align-items: center;
  overflow: hidden; background: var(--dark); color: var(--on-dark);
  padding: 160px 44px 100px;
}
.page-hero.has-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,10,0.78) 0%, rgba(5,6,10,0.55) 40%, rgba(5,6,10,0.92) 100%);
  z-index: 1;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroPan 18s ease-in-out infinite alternate; }
@keyframes heroPan { from { transform: scale(1.05) translateY(0); } to { transform: scale(1.12) translateY(-12px); } }
.page-hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.page-hero.center { text-align: center; }
.page-hero.center .page-hero-inner { display: flex; flex-direction: column; align-items: center; }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 800; line-height: 1.02; color: var(--on-dark); max-width: 16ch; }
.page-hero.center h1 { max-width: 20ch; }
.page-hero .lead { color: rgba(244,241,233,0.86); margin-top: 24px; font-size: clamp(1.05rem,2vw,1.3rem); }
.page-hero .hero-actions { margin-top: 38px; }
.crumbs { font-family: "Sora", sans-serif; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.crumbs a { color: rgba(244,241,233,0.6); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

/* floating image card inside gradient hero */
.hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 50px 100px rgba(0,0,0,0.5); transform: rotate(-2deg); transition: transform .6s;
}
.hero-card:hover { transform: rotate(0); }
.hero-card img { width: 100%; display: block; }

/* ---------- SECTION BG HELPERS ---------- */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: #000; color: var(--on-dark); }
.bg-dark h2, .bg-dark h3 { color: var(--on-dark); }
.bg-dark .lead, .bg-dark p { color: var(--on-dark-dim); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 120px 44px; }
.wrap-sm { max-width: 900px; margin: 0 auto; padding: 110px 44px; }
.full { max-width: none; }
.full > .inner { max-width: var(--maxw); margin: 0 auto; }

/* gold divider */
.gold-rule { width: 60px; height: 2px; background: var(--gold-grad); margin: 0 0 26px; border-radius: 2px; }
.center .gold-rule { margin-left: auto; margin-right: auto; }

/* ---------- FEATURE ROW (alternating image/text) ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-bottom: 110px; }
.frow:last-child { margin-bottom: 0; }
.frow.flip .frow-media { order: 2; }
.frow-media { position: relative; }
.frow-media .media-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 90px rgba(20,20,30,0.18); }
.bg-dark .frow-media .media-frame { border-color: rgba(255,255,255,0.1); box-shadow: 0 40px 90px rgba(0,0,0,0.5); }
.frow-media img { width: 100%; display: block; transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.frow-media:hover img { transform: scale(1.05); }
.frow-media .badge-float {
  position: absolute; bottom: -20px; left: -20px; background: var(--gold-grad); color: #2a2008;
  font-family: "Sora", sans-serif; font-weight: 700; padding: 16px 22px; border-radius: 14px;
  box-shadow: 0 16px 40px var(--gold-soft-glow); font-size: 0.95rem;
}
.frow-copy h2 { margin-bottom: 18px; }
.frow-copy .lead { margin-bottom: 22px; }

/* ---------- ICON / FEATURE GRID ---------- */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fgrid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fgrid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.fcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s; position: relative; overflow: hidden;
}
.bg-white .fcard { background: var(--cream); }
.bg-dark .fcard { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.fcard:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(20,20,30,0.12); border-color: var(--line-gold); }
.bg-dark .fcard:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.fcard-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(247,227,161,0.18), rgba(214,162,63,0.1)); border: 1px solid var(--line-gold);
}
.fcard-ico svg { width: 28px; height: 28px; stroke: var(--gold-deep); fill: none; stroke-width: 1.6; }
.bg-dark .fcard-ico svg { stroke: var(--gold-hi); }
.fcard h3 { font-size: 1.25rem; margin-bottom: 10px; }
.fcard p { color: var(--ink-dim); font-size: 0.96rem; }
.bg-dark .fcard p { color: var(--on-dark-dim); }
.fcard-num { position: absolute; top: 20px; right: 24px; font-family: "Sora", sans-serif; font-weight: 800; font-size: 1rem; color: var(--line-gold); }

/* ---------- CHECK LIST ---------- */
.checks { list-style: none; display: grid; gap: 16px; margin: 28px 0; }
.checks li { position: relative; padding-left: 38px; color: var(--ink-soft); font-weight: 500; }
.bg-dark .checks li { color: var(--on-dark-dim); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-grad); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ---------- PROCESS TIMELINE ---------- */
.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 30px 0; border-top: 1px solid var(--line); }
.bg-dark .tl-item { border-color: rgba(255,255,255,0.1); }
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.bg-dark .tl-item:last-child { border-color: rgba(255,255,255,0.1); }
.tl-num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.4rem; color: transparent; -webkit-text-stroke: 1.3px var(--gold); }
.tl-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.tl-body p { color: var(--ink-dim); } .bg-dark .tl-body p { color: var(--on-dark-dim); }

/* ---------- PRICING ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 42px 36px;
  display: flex; flex-direction: column; transition: transform .4s, box-shadow .4s, border-color .4s; position: relative;
}
.bg-cream .price { background: var(--white); }
.price:hover { transform: translateY(-8px); box-shadow: 0 34px 70px rgba(20,20,30,0.14); }
.price.featured { border-color: var(--gold); box-shadow: 0 34px 80px var(--gold-soft-glow); }
.price.featured::before {
  content: "Populair"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #2a2008; font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; padding: 6px 18px; border-radius: 100px; box-shadow: 0 10px 24px var(--gold-soft-glow);
}
.price-name { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.2rem; }
.price-amt { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.8rem; margin: 14px 0 4px; }
.price-amt small { font-size: 0.95rem; font-weight: 500; color: var(--ink-dim); }
.price-desc { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 24px; }
.price ul { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.price li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 0.96rem; }
.price li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-deep); }
.price .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 4px 26px;
  transition: border-color .3s, box-shadow .3s;
}
.bg-cream .faq details { background: var(--white); }
.faq details[open] { border-color: var(--line-gold); box-shadow: 0 16px 40px rgba(20,20,30,0.08); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 0; font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.08rem;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.6rem; font-weight: 400; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-dim); padding: 0 0 24px; margin-top: -6px; line-height: 1.7; }

/* ---------- CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: 0 30px 70px rgba(20,20,30,0.08); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: "Sora", sans-serif; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream);
  font-family: "Manrope", sans-serif; font-size: 1rem; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft-glow); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-info { display: grid; gap: 24px; align-content: start; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-ico { width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto; display: grid; place-items: center; background: linear-gradient(135deg, rgba(247,227,161,0.2), rgba(214,162,63,0.1)); border: 1px solid var(--line-gold); }
.cinfo-ico svg { width: 22px; height: 22px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; }
.cinfo-item h4 { font-family: "Sora", sans-serif; font-size: 1.02rem; margin-bottom: 3px; }
.cinfo-item a, .cinfo-item p { color: var(--ink-dim); text-decoration: none; font-size: 0.96rem; }
.cinfo-item a:hover { color: var(--gold-deep); }

/* ---------- GALLERY ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gitem { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 50px rgba(20,20,30,0.1); position: relative; aspect-ratio: 4/3; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.gitem:hover img { transform: scale(1.07); }
.gitem .gcap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 24px 18px; color: #fff; font-family: "Sora", sans-serif; font-weight: 600; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75)); }
.gitem .gcap span { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-hi); font-weight: 600; margin-bottom: 3px; }

/* ---------- STAT BAND (reusable, dark or light) ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.statband .stat-num { font-size: clamp(2.2rem,4.5vw,3.4rem); }

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center; padding: 130px 44px;
  background: radial-gradient(70% 120% at 50% 0%, rgba(231,197,109,0.16), transparent 55%), #000;
  color: var(--on-dark);
}
.cta-band h2 { color: var(--on-dark); font-size: clamp(2rem,5vw,3.6rem); margin-bottom: 12px; }
.cta-band .lead { color: var(--on-dark-dim); margin: 0 auto 34px; }
.cta-band .inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

/* ---------- LOGO / TRUST STRIP ---------- */
.trust { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; opacity: 0.85; }
.trust span { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; color: var(--ink-dim); }

/* ---------- stagger ---------- */
.fgrid > .reveal:nth-child(2), .price-grid > .reveal:nth-child(2), .gallery > .reveal:nth-child(2) { transition-delay: .08s; }
.fgrid > .reveal:nth-child(3), .price-grid > .reveal:nth-child(3), .gallery > .reveal:nth-child(3) { transition-delay: .16s; }
.fgrid > .reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-split, .frow, .frow.flip, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .frow.flip .frow-media { order: 0; }
  .fgrid, .fgrid.cols-2, .fgrid.cols-4, .price-grid, .gallery, .gallery.cols-2, .statband { grid-template-columns: 1fr; }
  .statband { grid-template-columns: repeat(2,1fr); gap: 34px 20px; }
  .wrap, .wrap-sm { padding: 80px 22px; }
  .page-hero { padding: 130px 22px 80px; min-height: 64vh; }
}

/* ============================================================
   CREATIVE LAYER — organic shapes, motion, detail (site-wide)
   ============================================================ */

/* subtle film grain over everything */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* organic gradient blobs behind sections (sit above bg, under content) */
.bg-cream, .bg-white, .bg-dark, .cta-band,
section.over, section.diensten, section.portfolio, section.reviews, section.cta, section.section-dark, section.stats {
  position: relative; isolation: isolate; overflow: hidden;
}
.bg-cream::before, .bg-white::before, .bg-dark::before, .cta-band::before,
section.over::before, section.diensten::before, section.portfolio::before, section.reviews::before, section.cta::before, section.section-dark::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 560px; height: 560px; right: -200px; top: -160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,197,109,0.14), transparent 64%);
}
.bg-cream::after, .bg-white::after, .bg-dark::after, .cta-band::after,
section.over::after, section.diensten::after, section.portfolio::after, section.reviews::after, section.cta::after, section.section-dark::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 460px; height: 460px; left: -190px; bottom: -150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,162,63,0.10), transparent 66%);
}
.bg-dark::before, section.section-dark::before { background: radial-gradient(circle, rgba(231,197,109,0.18), transparent 62%); }

/* flowing gold seam between sections */
.bg-dark, .cta-band, .footer, .section-dark { box-shadow: inset 0 1px 0 var(--line-gold); }

/* organic asymmetric corners on media */
.media-frame, .hero-card, .gitem, .work-img { border-radius: 8px 42px 42px 42px !important; }
.frow.flip .media-frame { border-radius: 42px 8px 42px 42px !important; }

/* gold duotone wash on framed images, clears on hover */
.media-frame, .hero-card { position: relative; }
.media-frame::after, .hero-card::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(135deg, rgba(214,162,63,0.30), transparent 58%);
  mix-blend-mode: overlay; opacity: 0.85; transition: opacity 0.7s cubic-bezier(.2,.8,.2,1);
}
.frow-media:hover .media-frame::after, .over-media:hover .media-frame::after, .hero-card:hover::after { opacity: 0.12; }

/* feature-card top accent line + lift */
.fcard { position: relative; overflow: hidden; }
.fcard::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--gold-grad); transition: width 0.45s cubic-bezier(.2,.8,.2,1);
}
.fcard:hover::after { width: 100%; }

/* animated gold underline under section headings */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  height: 3px; width: 0; background: var(--gold-grad); border-radius: 3px;
  transition: width 0.8s cubic-bezier(.2,.8,.2,1) 0.25s;
}
.section-head.in h2::after { width: 64px; }

/* bento-style vertical stagger (desktop) */
@media (min-width: 941px) {
  .fgrid > *:nth-child(3n+2) { margin-top: 36px; }
  .fgrid.cols-4 > *:nth-child(2) { margin-top: 28px; }
  .fgrid.cols-4 > *:nth-child(4) { margin-top: 28px; }
  .gallery > *:nth-child(2) { margin-top: 44px; }
  .svc-grid > *:nth-child(even) { margin-top: 34px; }
  .quote-grid > *:nth-child(even) { margin-top: 30px; }
}

/* MARQUEE band */
.marquee {
  position: relative; z-index: 2; overflow: hidden; background: #000;
  border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); padding: 20px 0;
}
.marquee-track { display: flex; width: max-content; animation: marq 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; }
.marquee-group span {
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.35rem; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px var(--gold); padding: 0 36px;
  display: inline-flex; align-items: center; letter-spacing: 0.01em;
}
.marquee-group span::after { content: "✦"; color: var(--gold); -webkit-text-stroke: 0; margin-left: 36px; font-size: 0.9rem; }
@keyframes marq { to { transform: translateX(-50%); } }

@media (max-width: 940px) {
  .fgrid > *, .fgrid.cols-4 > *, .gallery > *, .svc-grid > *, .quote-grid > * { margin-top: 0 !important; }
  .marquee-group span { font-size: 1.1rem; padding: 0 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .page-hero-bg img { animation: none; }
}

