* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ed;
  --surface: #ffffff;
  --text: #1d2329;
  --muted: #65707a;
  --accent: #b58a49;
  --accent-dark: #8d6934;
  --dark: #111820;
  --line: #ded8ce;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 237, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 18px;
}

.brand-text small {
  color: var(--muted);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.nav-cta {
  border: 1px solid var(--dark);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-dark);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .98;
  margin-bottom: 28px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  margin-bottom: 24px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 700px;
  font-size: 20px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.primary {
  background: var(--dark);
  color: white;
}

.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.image-placeholder {
  min-height: 540px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(181,138,73,.24), rgba(17,24,32,.12)),
    #d8d2c8;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  overflow: hidden;
}

.image-placeholder span {
  display: block;
  font-weight: 800;
  font-size: 20px;
}

.image-placeholder small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.intro {
  padding: 90px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  font-size: 18px;
  color: var(--muted);
}

.services {
  padding: 100px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 45px;
}

.section-heading > p {
  color: var(--muted);
  max-width: 520px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 250px;
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.service-number {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 36px;
}

.service-card p {
  color: var(--muted);
}

.about {
  padding: 100px 0;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.portrait {
  min-height: 620px;
}

.about-copy p {
  color: var(--muted);
}

.quote-card {
  margin-top: 34px;
  padding: 26px;
  border-left: 4px solid var(--accent);
  background: var(--bg);
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card span {
  color: var(--muted);
  margin-top: 6px;
}

.showreel {
  background: var(--dark);
  color: white;
  padding: 90px 0;
}

.showreel-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.showreel-box p:not(.section-label) {
  color: #b8c0c8;
  max-width: 700px;
}

.light {
  color: #d8b77c;
}

.play-button {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.local,
.for-whom {
  padding: 100px 0;
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.local-grid p {
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.audience-grid div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.audience-grid strong,
.audience-grid span {
  display: block;
}

.audience-grid span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.contact {
  padding: 100px 0;
  background: var(--dark);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: center;
}

.contact-grid > div:first-child p:last-child {
  color: #b8c0c8;
  max-width: 660px;
}

.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px;
  border-radius: 18px;
}

.contact-card span,
.contact-card strong,
.contact-card a,
.contact-card small {
  display: block;
}

.contact-card strong {
  font-size: 24px;
  margin: 8px 0 12px;
}

.contact-card a {
  color: #e4c48d;
  margin-bottom: 12px;
}

.contact-card small {
  color: #8f9aa4;
}

footer {
  background: #0b1016;
  color: #8f9aa4;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-wrap {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .section-heading,
  .about-grid,
  .local-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 55px;
  }

  .image-placeholder,
  .portrait {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .service-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .showreel-box {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
    text-align: center;
  }
}


/* --- Versie 2: echte huisstijl, logo en foto's --- */

.brand {
  max-width: 260px;
}

.brand-logo {
  display: block;
  width: 220px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.hero-photo-wrap,
.about-photo-wrap {
  border-radius: 28px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}

.hero-photo {
  display: block;
  width: 100%;
  min-height: 540px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-photo {
  display: block;
  width: 100%;
  min-height: 620px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-card-image {
  padding: 0;
  overflow: hidden;
}

.service-photo {
  display: block;
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: center 28%;
  background: #000;
}

.service-card-content {
  padding: 24px 28px 28px;
}

.service-card-image .service-number {
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 185px;
  }

  .hero-photo,
  .about-photo {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 165px;
  }

  .hero-photo {
    min-height: 360px;
  }

  .about-photo {
    min-height: 400px;
  }
}

/* Portfolio V4 */
.portfolio{background:#10100f;color:#f7f3ea;padding:110px 0}
.portfolio-heading{max-width:820px;margin-bottom:48px}
.portfolio-heading h2{color:#fff;font-size:clamp(2.7rem,5vw,5rem);line-height:.98;letter-spacing:-.045em}
.portfolio-heading>p:last-child{color:#c9c4ba;max-width:700px}
.media-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:24px}
.media-card{background:#1a1917;border:1px solid rgba(255,255,255,.1);border-radius:26px;overflow:hidden}
.media-frame{aspect-ratio:16/9;background:#000}.media-frame video{width:100%;height:100%;object-fit:cover}
.media-copy{padding:28px}.media-copy span{font-size:.72rem;letter-spacing:.16em;color:#b4935d;font-weight:700}
.media-copy h3{font-size:2rem;color:#fff;margin:8px 0}.media-copy p{color:#c9c4ba}.media-copy audio{width:100%}
.audio-visual{min-height:280px;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at 50% 40%,#3a3124,#111 65%)}
.sound-mark{font-family:Georgia,serif;font-size:3.1rem;line-height:.8;text-align:center;color:#e8d4b0}
.mc-showcase{display:grid;grid-template-columns:.7fr 1.3fr;gap:44px;align-items:center;margin-top:80px;padding-top:70px;border-top:1px solid rgba(255,255,255,.12)}
.mc-intro h3{font-size:clamp(2.4rem,4vw,4.3rem);line-height:.98;color:#fff;margin:12px 0 22px}.mc-intro>p:last-child{color:#c9c4ba}
.mc-gallery{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:230px 230px;gap:12px}
.mc-shot{margin:0;border-radius:20px;overflow:hidden}.mc-shot-large{grid-row:1/3}.mc-shot img{width:100%;height:100%;object-fit:cover}
@media(max-width:900px){.media-grid,.mc-showcase{grid-template-columns:1fr}.mc-gallery{grid-template-rows:220px 220px}}
@media(max-width:600px){.mc-gallery{display:block}.mc-shot{height:240px;margin-bottom:12px}.portfolio{padding:80px 0}}

/* Portfolio fixed package */
.portfolio {
  background: #10100f;
  color: #f7f3ea;
  padding: 100px 0;
}
.portfolio-heading {
  max-width: 820px;
  margin-bottom: 48px;
}
.portfolio-heading h2 {
  color: #fff;
  margin-bottom: 20px;
}
.portfolio-heading > p:last-child {
  color: #c9c4ba;
  max-width: 720px;
  font-size: 17px;
}
.media-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px;
}
.media-card {
  background: #1a1917;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  overflow: hidden;
}
.media-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.media-copy {
  padding: 28px;
}
.media-copy > span {
  display: block;
  color: #d3ad70;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 800;
}
.media-copy h3 {
  color: #fff;
  font-size: 29px;
  margin: 6px 0 8px;
}
.media-copy p {
  color: #c9c4ba;
}
.media-copy audio {
  display: block;
  width: 100%;
  margin-top: 18px;
}
.audio-visual {
  min-height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, #473a28, #111 68%);
}
.sound-mark {
  font-family: "Playfair Display", serif;
  color: #ead4ad;
  font-size: 48px;
  line-height: .86;
  text-align: center;
}
.mc-showcase {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 44px;
  align-items: center;
  margin-top: 75px;
  padding-top: 65px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.mc-intro h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  margin: 12px 0 22px;
}
.mc-intro p:last-child {
  color: #c9c4ba;
}
.mc-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
}
.mc-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}
.mc-shot-large {
  grid-row: 1 / 3;
}
.mc-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .media-grid,
  .mc-showcase {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .mc-gallery {
    display: block;
  }
  .mc-shot {
    height: 240px;
    margin-bottom: 12px;
  }
}
