/* ============================================
   NOS-DESIGN — design tokens
   Warm sunset palette, refers to Natalia's eigen
   fotografie/kunstwerk in de hero.
   ============================================ */
:root {
  --ink: #1c1712;
  --paper: #f6f3ef;
  --card: #ffffff;
  --muted: #6b6259;

  --sunset-dark: #170805;
  --sunset-mid: #7c2c0e;
  --sunset-bright: #e8730f;
  --sunset-glow: #f2a341;

  --header-bg: #0a0908;

  --accent: #c9591c;
  --accent-deep: #8c3a1f;

  --blue: #135e85;
  --blue-deep: #0b3f59;
  --blue-light: #e7f2f6;

  --icon-blue: #1478a8;
  --icon-orange: #e0842a;
  --icon-teal: #2b9b7f;
  --icon-purple: #7757b0;

  --radius: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, Segoe UI, Roboto, sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.section-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: .3em;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.5em;
  font-size: .95rem;
}

/* ============ Header / Nav ============ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  background: transparent;
  color: #fff;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-tag { text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.main-nav a { text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 56px;
  width: auto;
}
.header-tag {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .9;
  flex: 1;
}
.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .85;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.has-dropdown { position: relative; }
.chevron { font-size: .7em; }
.dropdown { display: none; }
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink);
  min-width: 200px;
  padding: 8px 0;
  border-radius: 6px;
  list-style: none;
  margin-top: 0;
}
.dropdown li a { display: block; padding: 8px 16px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.dropdown li a:hover { background: rgba(255,255,255,.08); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-fallback {
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--sunset-dark) 0%, var(--sunset-mid) 45%, var(--sunset-bright) 75%, var(--sunset-glow) 100%);
  background-size: 200% 200%;
  animation: drift 18s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { background-position: 0% 30%; }
  50% { background-position: 100% 70%; }
}
.hero-video {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 24px 36px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  margin: 0 0 .3em;
  opacity: .9;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.hero-content h1 {
  font-size: 2.6rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.rule {
  width: 60px; height: 2px;
  background: var(--sunset-glow);
  margin: 20px auto 24px;
}
.hero-text {
  font-size: .95rem;
  line-height: 1.6;
  opacity: .92;
  margin: 0 0 1em;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-top: 10px;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-light { background: #fff; color: var(--accent-deep); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }

/* ============ Contact band ============ */
.contact-band {
  background: linear-gradient(135deg, var(--sunset-mid), var(--accent) 65%, var(--sunset-glow));
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}
.contact-band h2 { font-size: 1.9rem; }
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.contact-sub { font-size: .85rem; opacity: .85; line-height: 1.6; }

/* ============ Services ============ */
.services { padding: 70px 24px 40px; }
.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.service-icon svg { width: 22px; height: 22px; }
.icon-blue { background: var(--icon-blue); }
.icon-orange { background: var(--icon-orange); }
.icon-teal { background: var(--icon-teal); }
.icon-purple { background: var(--icon-purple); }
.service-card h3 { font-size: 1rem; margin-bottom: .4em; }
.service-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ============ AI-SEO ============ */
.ai-seo { padding: 50px 24px; }
.ai-seo-inner { max-width: 760px; margin: 0 auto; }
.ai-seo h2 { text-align: center; margin-bottom: 1.2em; }
.ai-seo-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.ai-seo-card p { line-height: 1.7; font-size: .95rem; }
.ai-seo-result-label { font-weight: 700; margin-top: 1.2em; }
.check-list { list-style: none; padding: 0; margin: .5em 0 1.5em; }
.check-list li { padding: 4px 0; font-size: .9rem; }
.check-list li::before { content: "\2713  "; color: var(--icon-teal); font-weight: 700; }

/* ============ Trust ============ */
.trust { padding: 50px 24px 70px; }
.trust-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.trust-icon { font-size: 1.3rem; margin-bottom: .5em; }
.trust-item h3 { font-size: .95rem; margin-bottom: .5em; }
.trust-item p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ============ Portfolio ============ */
.portfolio { padding: 40px 24px 80px; }
.portfolio-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.portfolio-thumb {
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}
.thumb-1 { background: linear-gradient(135deg, #241a12, #6b4324); }
.thumb-2 { background: linear-gradient(135deg, #16324a, #1478a8); }
.thumb-3 { background: linear-gradient(135deg, #7a1010, #d94f1c); }
.thumb-4 { background: linear-gradient(135deg, #14361f, #2b9b7f); }
.thumb-5 { background: linear-gradient(135deg, #2c1a4a, #7757b0); }
.thumb-6 { background: linear-gradient(135deg, #111, #444); }
.portfolio-card h3 { font-size: .9rem; padding: 16px 16px 4px; margin: 0; }
.portfolio-card a { display: block; font-size: .78rem; color: var(--accent); padding: 0 16px 18px; }
.portfolio-card a:hover { text-decoration: underline; }

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 22px;
  font-size: .8rem;
}
.footer-links { margin-top: 6px; }
.footer-links a { color: rgba(255,255,255,.6); }
.footer-links a:hover { color: #fff; }

/* ============ Page hero (sub-pages) ============ */
.page-hero {
  position: relative;
  min-height: clamp(210px, 28vw, 420px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 90px 24px 30px;
}
.page-hero-content h1 { font-size: 2.2rem; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.page-hero .rule { margin: 18px 0 0; }

/* ============ FAQ ============ */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}
.section-title-left {
  font-size: 1.2rem;
  margin-bottom: 1.2em;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--blue-deep);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform .2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 20px 20px 64px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
}

/* ============ Contact ============ */
.contact-section { padding: 60px 24px 90px; }
.contact-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.contact-intro h2 { font-size: 1.7rem; margin-bottom: .5em; }
.contact-intro p { color: var(--muted); line-height: 1.7; font-size: .95rem; }
.contact-direct a { color: var(--accent); font-weight: 600; }

.contact-form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .82rem; font-weight: 700; color: var(--ink); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: .92rem;
  padding: 11px 13px;
  border: 1px solid #ddd8d1;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form-row textarea { resize: vertical; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-form .btn { border: none; cursor: pointer; font-family: var(--font-body); }

.form-message { border-radius: 8px; padding: 16px 18px; margin-bottom: 20px; font-size: .9rem; line-height: 1.6; }
.form-success { background: #e5f5ef; color: #1f6b4a; }
.form-error { background: #fbe9e6; color: #8c2f1c; }
.form-error ul { margin: 0; padding-left: 18px; }

/* ============ About ============ */
.about-intro { padding: 70px 24px; }
.about-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-text { max-width: 100%; overflow: auto; }
.about-text p { max-width: none; }
.eyebrow-dark {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 .4em;
}
.about-text h2 { font-size: 1.6rem; margin-bottom: .5em; }
.about-text p { color: var(--muted); line-height: 1.7; font-size: .95rem; max-width: 480px; }
.about-photo-float {
  float: right;
  width: 150px; height: 183px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 4px 0 16px 28px;
  shape-outside: margin-box;
}

.clients-section { padding: 20px 24px 70px; }
.clients-inner { max-width: var(--max-width); margin: 0 auto; }
.clients-sub { text-align: center; color: var(--muted); font-size: .9rem; margin: -0.5em 0 2em; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.client-logo-placeholder {
  background: var(--card);
  border-radius: var(--radius);
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.info-block {
  position: relative;
  overflow: hidden;
  background: #2a2a2a;
  padding: 70px 24px;
}
.info-block-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #1c1c1c, #3a3a3a);
}
.info-block-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.info-block-image { position: relative; min-height: 260px; }
.info-block-image video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.info-block-card {
  background: var(--card);
  padding: 34px;
}
.info-block-card h3 { font-size: 1.2rem; margin-bottom: .8em; }
.info-list { list-style: none; margin: 0 0 1.5em; padding: 0; }
.info-list li { font-size: .88rem; color: var(--muted); margin-bottom: .5em; line-height: 1.5; }
.info-list a { color: var(--accent); font-weight: 600; }
.info-block-card .btn { border: none; cursor: pointer; }

/* ============ Legal pages ============ */
.legal-section { padding: 60px 24px 40px; }
.legal-inner { max-width: 780px; margin: 0 auto; }
.legal-inner h2 { font-size: 1.15rem; margin: 1.6em 0 .5em; }
.legal-inner p { color: var(--muted); line-height: 1.7; font-size: .92rem; margin: 0 0 1em; }
.legal-inner ul { margin: 0 0 1em; padding-left: 20px; }
.legal-inner li { color: var(--muted); line-height: 1.7; font-size: .92rem; margin-bottom: .3em; }
.legal-inner a { color: var(--accent); }
.legal-copyright { margin-top: 2em; font-size: .85rem; color: var(--muted); text-align: center; }

/* ============ Share buttons ============ */
.share-buttons {
  display: flex;
  max-width: 780px;
  margin: 30px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.share-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}
.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-btn:hover { opacity: .9; }

/* ============ Download page (Algemene voorwaarden) ============ */
.download-section { padding: 80px 24px; text-align: center; }
.download-inner { max-width: 600px; margin: 0 auto; }
.download-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  color: var(--icon-blue);
}
.download-icon svg { width: 100%; height: 100%; }
.download-section p { color: var(--muted); font-size: 1rem; margin-bottom: 1em; }
.download-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-link:hover { color: var(--accent-deep); }
.download-section .share-buttons { margin-top: 40px; }

/* ============ Gallery pages ============ */
.gallery-section { max-width: var(--max-width); margin: 0 auto; padding: 60px 24px 90px; }
.gallery-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.gallery-intro p { color: var(--muted); line-height: 1.7; font-size: .95rem; }
.gallery-order-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.gallery-order-card h3 { font-size: 1.05rem; margin-bottom: .5em; }
.gallery-order-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

.gallery-overzicht-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}
.gallery-heading { text-align: center; margin-top: .3em; margin-bottom: 1.5em; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb-placeholder {
  background: repeating-linear-gradient(45deg, #e5e0d8, #e5e0d8 10px, #ded8ce 10px, #ded8ce 20px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .78rem;
}

/* ============ Lightbox ============ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,8,6,.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 75vh; border-radius: 6px; display: block; margin: 0 auto; }
.lightbox-title { color: #fff; margin-top: 16px; font-size: .95rem; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background .15s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============ Watermark ============ */
.gallery-thumb { position: relative; }
.gallery-thumb::after,
.lightbox-image-wrap::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><text x='40' y='140' font-family='Manrope, sans-serif' font-size='30' font-weight='700' fill='white' fill-opacity='0.10' transform='rotate(-30 200 140)' text-anchor='middle'>NOS-DESIGN</text><text x='40' y='300' font-family='Manrope, sans-serif' font-size='30' font-weight='700' fill='white' fill-opacity='0.10' transform='rotate(-30 200 300)' text-anchor='middle'>NOS-DESIGN</text></svg>");
  background-size: cover;
  background-position: center;
}
.lightbox-image-wrap { position: relative; display: inline-block; }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .info-block-inner { grid-template-columns: 1fr; }
  .info-block-image { min-height: 180px; }
  .gallery-top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; justify-content: space-between; }
  .logo { order: 1; }
  .nav-toggle { order: 2; display: block; margin-left: 0; }
  .header-tag { order: 3; width: 100%; }
  .main-nav { display: none; width: 100%; order: 4; }
  .main-nav.open {
    display: block;
    background: var(--ink);
    border-radius: 8px;
    padding: 4px 16px;
  }
  .main-nav > ul { flex-direction: column; gap: 0; padding: 12px 0; }
  .main-nav a { display: block; padding: 10px 0; text-shadow: none; }
  .has-dropdown.open .dropdown,
  .has-dropdown:hover .dropdown {
    position: static;
    margin-top: 0;
    border-radius: 4px;
    background: rgba(0,0,0,.2);
  }
  .hero-content h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .portfolio-card:nth-child(1) { order: 1; } /* Online Mediteren */
  .portfolio-card:nth-child(4) { order: 2; } /* Offline Mediteren */
  .portfolio-card:nth-child(2) { order: 3; } /* Word AI-geletterd */
  .portfolio-card:nth-child(5) { order: 4; } /* AI-Tools & Coaching */
  .portfolio-card:nth-child(3) { order: 5; } /* Infraroodkleding */
  .portfolio-card:nth-child(6) { order: 6; } /* Kunst-Apart */
  .contact-buttons { flex-direction: column; align-items: center; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-fallback { animation: none; }
}
