/* ============================================================
   HEITKAMP SIERBESTRATING + ADVIES — Main Stylesheet
   Design: 1440px desktop, Novecento sans wide
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #141a1e;
  --bg-darker:  #0e1318;
  --bg-band:    #6a5744;
  --gold:       #a6967d;
  --gold-light: #c4b49c;
  --white:      #ffffff;
  --white-dim:  rgba(255,255,255,0.75);
  --font:       'Novecento sans wide', sans-serif;
  --max-w:      1440px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-weight: 300;
  letter-spacing: 0.03em;
  min-width: 1440px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

/* ── Utility ──────────────────────────────────────────────── */
.service-label {
  display: block;
  font-size: 1.875rem;   /* 30px */
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: lowercase;
  margin-bottom: 0.4rem;
}
.service-label--light {
  color: rgba(255,255,255,0.9);
  font-size: 2rem;
  letter-spacing: 0.08em;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  background: rgba(14, 19, 24, 0.85);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img { height: 42px; width: auto; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-cta {
  display: inline-block;
  padding: 10px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── MENU OVERLAY ─────────────────────────────────────────── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-darker);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 120px;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}
.menu-overlay.is-open { transform: translateX(0); }

.menu-close {
  position: absolute;
  top: 28px; right: 48px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  width: 40px; height: 40px;
}
.menu-close svg { width: 100%; height: 100%; }

.menu-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-nav a {
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1.15;
  transition: color 0.2s;
  text-transform: lowercase;
}
.menu-nav a:hover { color: var(--white); }
.menu-nav .menu-contact {
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
}

.menu-contact-info {
  margin-top: auto;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.8;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Hero photos */
.hero-photo--main {
  background: url('img_0_y-412.jpg') center 35% / cover no-repeat;
}
.hero-photo--person {
  display: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,26,30,0.88) 0%,
    rgba(20,26,30,0.55) 35%,
    rgba(20,26,30,0.15) 65%,
    transparent 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 120px;
  left: 96px;
  max-width: 760px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--white);
  text-transform: lowercase;
  margin-bottom: 1.2rem;
}
.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-block;
  padding: 12px 40px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  transition: background 0.2s;
}
.btn-hero:hover { background: var(--gold-light); }

/* ── SERVICE SECTIONS ─────────────────────────────────────── */
.service-section {
  display: grid;
  grid-template-columns: 758px 1fr;
  min-height: 520px;
  position: relative;
}

.service-image-wrap {
  position: relative;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

/* Service section photos */
.service-image--showtuin {
  background: url('img_1_y602.jpg') center center / cover no-repeat;
}
.service-image--tuinontwerp {
  background: url('img_2_y2205.jpg') center center / cover no-repeat;
}
.service-image--tuinverlichting {
  background: url('img_3_y3609.jpg') center center / cover no-repeat;
}
.service-image--beplanting {
  background: url('img_5_y4712.jpg') center center / cover no-repeat;
}
.service-image--hovenier {
  background: url('img_4_y5511.jpg') center center / cover no-repeat;
}

/* Ornamental frame overlay */
.ornament-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ornament-frame--left::before,
.ornament-frame--left::after {
  content: '';
  position: absolute;
  border: 1.5px solid rgba(166,150,125,0.35);
}
.ornament-frame--left::before {
  top: 24px; left: 24px;
  right: 24px; bottom: 24px;
  clip-path: polygon(
    22px 0%, calc(100% - 22px) 0%,
    100% 22px, 100% calc(100% - 22px),
    calc(100% - 22px) 100%, 22px 100%,
    0% calc(100% - 22px), 0% 22px
  );
}

.service-text {
  padding: 60px 72px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-transform: lowercase;
}
.service-title span { color: var(--gold); font-weight: 600; }

.service-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.btn-more {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: lowercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.btn-more:hover { color: var(--gold-light); border-color: var(--gold-light); }
.btn-more--light { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.5); }
.btn-more--light:hover { color: var(--white); border-color: var(--white); }

/* ── BAND SECTIONS (Sierbestrating / Tuinadvies) ─────────── */
.band-section {
  background: var(--bg-band);
  padding: 0;
  position: relative;
}

.band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
}

.band-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.band-ornament {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.band-text-wrap {
  position: relative;
  z-index: 2;
  padding: 0 120px;
  max-width: 900px;
}

.band-tagline {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-transform: lowercase;
  line-height: 1.2;
}

.band-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
}

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-section {
  background: var(--bg);
  padding: 80px 96px 96px;
}

.reviews-header {
  margin-bottom: 40px;
}
.reviews-label {
  display: block;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}
.reviews-subtitle {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  line-height: 1.3;
  text-transform: lowercase;
}
.reviews-subtitle strong { color: var(--gold); font-weight: 600; }

.reviews-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.review-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 120px 0 0;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-stars span {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.review-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  max-width: 820px;
}
.review-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: lowercase;
}

.reviews-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.review-prev, .review-next {
  background: rgba(166,150,125,0.15);
  border: 1px solid rgba(166,150,125,0.3);
  color: var(--white);
  width: 44px; height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.review-prev svg, .review-next svg { width: 20px; height: 20px; }
.review-prev:hover, .review-next:hover { background: rgba(166,150,125,0.35); }

/* ── SOCIALS ──────────────────────────────────────────────── */
.socials-section {
  background: var(--bg-darker);
  padding: 80px 96px;
  text-align: center;
}

.socials-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: lowercase;
  margin-bottom: 64px;
}

.socials-phones {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 60px;
}

.phone-mockup { width: 390px; }

.phone-frame {
  background: #1a1a1a;
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 0 0 2px rgba(166,150,125,0.3), inset 0 0 0 1px rgba(255,255,255,0.05);
  aspect-ratio: 9/19.5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.phone-content {
  width: 100%;
  height: 100%;
}
.phone-content--insta {
  background: url('img_8_y6241.jpg') center top / cover no-repeat;
}
.phone-content--tiktok {
  background: url('img_6_y6248.jpg') center top / cover no-repeat;
}

.socials-links {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color 0.2s;
}
.social-link:hover { color: var(--gold-light); }
.social-icon { width: 24px; height: 24px; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 800px;
  background: var(--bg);
}

.contact-info {
  background: var(--bg-darker);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: lowercase;
  margin-bottom: 40px;
}

.contact-item {
  margin-bottom: 28px;
}
.contact-item-label {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: lowercase;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.5;
  text-decoration-color: transparent;
  transition: color 0.2s;
}
a.contact-item-value--link { text-decoration: underline; text-underline-offset: 3px; }
a.contact-item-value:hover { color: var(--gold-light); }

/* CONTACT FORM */
.contact-form-wrap {
  padding: 80px 96px 80px 80px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.form-field {
  border-bottom: 1px solid rgba(166,150,125,0.25);
  padding: 32px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field--full {
  grid-column: span 2;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: lowercase;
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-submit {
  grid-column: span 2;
  display: flex;
  justify-content: flex-end;
  padding: 40px 24px 0;
}

.btn-submit {
  padding: 16px 64px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold-light); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-darker);
  padding: 64px 96px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-top: 1px solid rgba(166,150,125,0.15);
}

.footer-logo { display: flex; align-items: center; }
.footer-logo .logo-icon { width: 28px; height: 36px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 60px;
}

.footer-contact-item {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1.9;
}

.footer-col--nav,
.footer-col--social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.2s;
  text-transform: lowercase;
  line-height: 1.8;
}
.footer-link:hover { color: var(--white); }

/* ── Section dividers ─────────────────────────────────────── */
.service-section + .service-section,
.band-section + .service-section,
.service-section + .band-section {
  border-top: 1px solid rgba(166,150,125,0.08);
}
