/* =========================================
   SOGNAREYACHTS V2 — LEKKER-INSPIRED LIGHT
   Warm cream / navy / rounded photos
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600&family=Open+Sans:wght@300;400;500;600&display=swap');

/* === TOKENS === */
:root {
  --bg:          #F7F5F1;
  --bg-2:        #EFECE6;
  --bg-3:        #E7E3DB;
  --bg-card:     #DDD9D1;
  --gold:        #1A8FA0;
  --gold-light:  #2AAFBF;
  --gold-warm:   #D4AA74;
  --navy:        #16202B;
  --navy-mid:    #2B3A4A;
  --white:       #FFFFFF;
  --off-white:   #F7F5F1;
  --text:        #3E3830;
  --text-mid:    #6B6259;
  --text-dim:    #9A938D;
  --border:      rgba(22, 32, 43, 0.1);
  --border-sub:  rgba(22, 32, 43, 0.06);
  --radius:      18px;
  --radius-sm:   10px;

  --serif: 'Nunito', system-ui, sans-serif;
  --sans:  'Open Sans', system-ui, sans-serif;

  --pad:   clamp(24px, 5vw, 80px);
  --sec:   clamp(80px, 10vw, 140px);
  --nav-h: 96px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}
body.loaded { opacity: 1; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 6.5vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.4rem); }
h4 { font-size: clamp(1rem, 1.4vw, 1.25rem); }

.label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* === BUTTONS === */
.btn {
  position: relative;
  display: inline-block;
  padding: 17px 44px;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid rgba(22, 32, 43, 0.35);
  border-radius: 2px;
  overflow: hidden;
  transition: color 0.45s ease, border-color 0.45s ease;
  white-space: nowrap;
  vertical-align: middle;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.btn:hover {
  color: var(--white);
  border-color: var(--navy);
}
.btn:hover::before { clip-path: inset(0 0% 0 0); }
.btn:hover::after  { transform: scaleX(1); }

/* Light button variant (on dark backgrounds) */
.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-light::before {
  background: var(--white);
}
.btn-light:hover {
  color: var(--navy);
  border-color: var(--white);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 245, 241, 0.96);
  border-bottom-color: var(--border-sub);
  backdrop-filter: blur(16px);
}

.nav-logo img {
  height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.25s, filter 0.4s ease;
}
.nav-logo:hover img { opacity: 1; }

/* Once scrolled, switch logo back to dark */
.nav.scrolled .nav-logo img {
  filter: none;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  list-style: none;
}
/* Over hero: white links */
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  transition: color 0.25s;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
/* Once scrolled: dark navy links */
.nav.scrolled .nav-links a {
  color: rgba(22, 32, 43, 0.6);
  text-shadow: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--navy); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-lang span { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.nav.scrolled .nav-lang span { color: rgba(22, 32, 43, 0.2); }
.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 400;
  transition: color 0.25s;
}
.nav.scrolled .lang-btn { color: rgba(22, 32, 43, 0.35); }
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--white); }
.nav.scrolled .lang-btn:hover { color: var(--navy); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.04);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22,32,43,0.60) 0%,
    rgba(22,32,43,0.08) 50%,
    rgba(22,32,43,0.40) 80%,
    rgba(22,32,43,0.96) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 var(--pad) clamp(80px, 10vw, 120px);
  max-width: 720px;
}
.hero-content .label { margin-bottom: 24px; }
.hero-content h1 {
  color: var(--white);
  text-shadow: 0 4px 60px rgba(0,0,0,0.3);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-warm);
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(247, 245, 241, 0.72);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 48px;
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(168,131,78,0.6), transparent);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: translateY(0); }
  50%      { opacity: 0.8; transform: translateY(6px); }
}

/* === MARQUEE STRIP === */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 18px 0;
  background: var(--gold-warm);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 28px;
  font-weight: 600;
}
.marquee-track .dot {
  color: var(--navy);
  opacity: 0.35;
  padding: 0;
  letter-spacing: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === INTRO === */
.intro {
  padding: var(--sec) var(--pad);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text .label { margin-bottom: 18px; }
.intro-text h2 { margin-bottom: 28px; }
.intro-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 18px;
}
.intro-visual {
  position: relative;
}
.intro-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-card);
  border-radius: var(--radius);
  min-height: 280px;
}
.intro-visual::before {
  content: '';
  position: absolute;
  top: -16px; right: 16px;
  bottom: 16px; left: -16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: -1;
}

/* === PHOTO STRIP === */
.photo-strip {
  padding: 0 var(--pad) var(--sec);
}
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photo-strip-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--bg-card);
  display: block;
  border-radius: var(--radius);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 4px 24px rgba(22, 32, 43, 0.08);
}
.photo-strip-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22, 32, 43, 0.16);
}

/* === FEATURED MODEL === */
.featured {
  background: var(--bg-2);
  padding: var(--sec) 0;
}
.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.featured-header .label { margin-bottom: 12px; }
.featured-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-card);
  border-radius: var(--radius);
  min-height: 300px;
  margin-bottom: 16px;
  box-shadow: 0 8px 40px rgba(22, 32, 43, 0.1);
}
.featured-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.spec-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.spec-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.spec-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.featured-desc { margin-top: 4px; }
.featured-desc p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 680px;
}

/* === CO-BUILD / OPEN REKENING === */
.cobuild-section {
  background: var(--navy);
  padding: var(--sec) var(--pad);
  overflow: hidden;
  position: relative;
}
.cobuild-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.cobuild-text .label {
  margin-bottom: 18px;
  color: var(--gold-light);
}
.cobuild-text h2 {
  margin-bottom: 28px;
  color: var(--white);
}
.cobuild-text p {
  color: rgba(247, 245, 241, 0.65);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 18px;
  max-width: 560px;
}
.cobuild-text .btn {
  margin-top: 20px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.cobuild-text .btn::before { background: var(--white); }
.cobuild-text .btn:hover { color: var(--navy); border-color: var(--white); }
.cobuild-percent {
  font-family: var(--serif);
  font-size: clamp(7rem, 16vw, 14rem);
  color: rgba(168, 131, 78, 0.12);
  line-height: 1;
  text-align: right;
  user-select: none;
  position: relative;
}
.cobuild-percent span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: right;
  margin-top: -20px;
  font-family: var(--sans);
}

/* === USP === */
.usp-section {
  padding: var(--sec) var(--pad);
  max-width: 1400px;
  margin: 0 auto;
}
.usp-header {
  text-align: center;
  margin-bottom: 72px;
}
.usp-header .label { margin-bottom: 16px; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.usp-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.usp-item:hover {
  box-shadow: 0 12px 40px rgba(22, 32, 43, 0.1);
  transform: translateY(-4px);
}
.usp-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: rgba(168, 131, 78, 0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.usp-item h4 {
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.usp-item p {
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.85;
}

/* === PROEFVAART SECTION === */
.proefvaart-section {
  position: relative;
  height: clamp(480px, 60vw, 700px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0 var(--pad) var(--sec);
  border-radius: calc(var(--radius) * 1.5);
}
.proefvaart-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.03);
  border-radius: calc(var(--radius) * 1.5);
}
.proefvaart-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22,32,43,0.88) 0%,
    rgba(22,32,43,0.55) 45%,
    rgba(22,32,43,0.15) 100%
  );
  border-radius: calc(var(--radius) * 1.5);
}
.proefvaart-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(32px, 5vw, 72px);
  max-width: 640px;
}
.proefvaart-content .label {
  margin-bottom: 22px;
  color: var(--gold-light);
}
.proefvaart-content h2 {
  margin-bottom: 24px;
  color: var(--white);
}
.proefvaart-content p {
  color: rgba(247, 245, 241, 0.7);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 40px;
  max-width: 480px;
}
.proefvaart-content .btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.proefvaart-content .btn::before { background: var(--white); }
.proefvaart-content .btn:hover { color: var(--navy); border-color: var(--white); }

/* === PORTOFINO TEASER === */
.portofino-teaser {
  background: var(--navy);
  padding: clamp(80px, 10vw, 130px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.portofino-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,143,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.portofino-teaser-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.portofino-teaser .label {
  display: block;
  margin-bottom: 20px;
}
.portofino-dev-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 36px;
}
.portofino-teaser h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.portofino-teaser h2 em {
  font-style: italic;
  color: var(--gold-warm);
}
.portofino-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin: 0 0 56px;
}
.portofino-photo {
  position: relative;
  margin: 0 auto 52px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}
.portofino-photo img {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: transform 0.7s ease;
}
.portofino-photo:hover img { transform: scale(1.025); }
.portofino-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(11,31,58,0.55) 100%);
  pointer-events: none;
  border-radius: 6px;
}
.portofino-desc {
  max-width: 580px;
  margin: 0 auto 44px;
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  line-height: 1.85;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(80px, 10vw, 120px) var(--pad);
  text-align: center;
}
.cta-banner .label { margin-bottom: 20px; }
.cta-banner h2 { margin-bottom: 20px; }
.cta-banner p {
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
}

/* === FOOTER === */
footer {
  background: var(--navy);
  padding: 72px var(--pad) 40px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(247, 245, 241, 0.4);
  font-size: 0.82rem;
  line-height: 1.85;
  max-width: 240px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a,
.footer-col span {
  color: rgba(247, 245, 241, 0.4);
  font-size: 0.85rem;
  font-family: var(--sans);
  font-weight: 300;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(247, 245, 241, 0.3);
  font-size: 0.75rem;
}

/* === MODELS PAGE === */
.model-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  background: var(--navy);
}
.model-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  opacity: 0.65;
  min-height: 100%;
}
.model-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,32,43,0.8) 0%, rgba(22,32,43,0.3) 50%, rgba(22,32,43,0.05) 100%);
}
.model-hero-content { position: relative; max-width: 800px; }
.model-hero-content .label { margin-bottom: 16px; }
.model-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.model-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: rgba(247, 245, 241, 0.7);
  font-style: italic;
}

.model-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--sec) var(--pad);
}
.model-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: var(--sec);
  align-items: start;
}
.model-intro-text .label { margin-bottom: 18px; }
.model-intro-text h2 { margin-bottom: 24px; }
.model-intro-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.specs-table {
  width: 100%;
  border: 1px solid var(--border);
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 14px 22px;
  font-size: 0.875rem;
}
.specs-table td:first-child {
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
  width: 45%;
  background: var(--bg-2);
}
.specs-table td:last-child { color: var(--text); }

/* Gallery */
.gallery-section {
  padding: 0 var(--pad) var(--sec);
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-section .label { margin-bottom: 18px; }
.gallery-section h2 { margin-bottom: 44px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-card);
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 180px;
  box-shadow: 0 4px 20px rgba(22, 32, 43, 0.07);
}
.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 32, 43, 0.14);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(22, 32, 43, 0.97);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 32px;
  color: rgba(255,255,255,0.5);
  font-size: 2rem;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.25s;
}
.lightbox-close:hover { color: var(--white); }

/* Options */
.options-section {
  background: var(--bg-2);
  padding: var(--sec) var(--pad);
}
.options-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.options-inner .label { margin-bottom: 18px; }
.options-inner h2 { margin-bottom: 60px; }
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.option-item {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.option-item:hover {
  box-shadow: 0 8px 32px rgba(22, 32, 43, 0.1);
}
.option-bar {
  width: 36px; height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
  border-radius: 2px;
}
.option-item h4 { color: var(--navy); margin-bottom: 14px; font-weight: 400; }
.option-item p { color: var(--text-mid); font-size: 0.875rem; line-height: 1.85; }

/* === ABOUT PAGE === */
.about-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  background: var(--navy);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.65;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,32,43,0.85) 0%, rgba(22,32,43,0.3) 55%, rgba(22,32,43,0.05) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.about-hero-content .label { margin-bottom: 16px; }
.about-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.about-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: rgba(247, 245, 241, 0.65);
  font-style: italic;
}
.about-hero-logo {
  display: block;
  height: clamp(120px, 22vw, 360px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin: 0 auto;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--sec) var(--pad);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: var(--sec);
  align-items: center;
}
.story-text .label { margin-bottom: 18px; }
.story-text h2 { margin-bottom: 28px; }
.story-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 20px;
}
.story-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--bg-card);
  border-radius: var(--radius);
  min-height: 360px;
  box-shadow: 0 12px 48px rgba(22, 32, 43, 0.1);
}

/* === ARAGOSTA SECTION === */
.aragosta-section {
  background: var(--bg);
  padding: var(--sec) var(--pad);
}
.aragosta-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.aragosta-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(22, 32, 43, 0.12);
}
.aragosta-text .label { margin-bottom: 18px; }
.aragosta-text h2 {
  margin-bottom: 28px;
  line-height: 1.2;
}
.aragosta-text h2 em {
  font-style: italic;
  color: var(--gold-warm);
}
.aragosta-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 20px;
}

/* === BOUWPROCES SECTION === */
.build-section {
  background: var(--navy);
  padding: var(--sec) var(--pad);
}
.build-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.build-inner .label {
  color: var(--gold);
  margin-bottom: 18px;
}
.build-inner h2 {
  color: var(--white);
  margin-bottom: 60px;
}
.build-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.build-step {
  background: var(--navy-mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.build-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.build-step-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.build-step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
/* Design drawing has white bg — keep it contained */
.build-step-photo img[src*="ontwerp"] {
  object-fit: contain;
  background: #e8e4dc;
  padding: 12px;
}
.build-step:hover .build-step-photo img {
  transform: scale(1.05);
}
.build-step-body {
  padding: 28px 24px 32px;
  flex: 1;
}
.build-num {
  display: block;
  font-family: var(--serif);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.build-step h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}
.build-step p {
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
  line-height: 1.85;
  margin: 0;
}

/* Build process final milestone */
.build-final {
  margin-top: clamp(40px, 6vw, 72px);
}
.build-final-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius);
  padding: 32px 40px;
  max-width: 760px;
  margin: 0 auto;
}
.build-final-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  opacity: 0.85;
}
.build-final-inner h3 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin: 0 0 8px;
}
.build-final-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

/* === TEAM SECTION === */
.team-section {
  background: var(--bg);
  padding: var(--sec) var(--pad);
}
.team-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.team-inner .label { color: var(--gold); }
.team-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin: 8px 0 0;
}
.team-intro {
  max-width: 640px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 20px 0 clamp(36px, 5vw, 60px);
}
.spec-grid {
  max-width: 820px;
  margin: 0 0 clamp(36px, 5vw, 60px);
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 48px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.spec-row:first-child { border-top: 1px solid var(--border); }
.spec-grid dt {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 3px;
}
.spec-grid dd {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 600px) {
  .spec-row {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}
.team-delivery {
  margin-top: clamp(36px, 5vw, 56px);
}
.team-delivery-inner {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 40px;
  max-width: 640px;
}
.delivery-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  margin-bottom: 6px;
  flex-shrink: 0;
}
.team-delivery-inner .label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}
.team-delivery-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 500px) {
  .build-final-inner { flex-direction: column; text-align: center; }
}

.values-section {
  background: var(--bg-2);
  padding: var(--sec) var(--pad);
}
.values-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.values-inner .label { margin-bottom: 18px; }
.values-inner h2 { margin-bottom: 60px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
}
.value-num {
  display: block;
  font-family: var(--serif);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.value-item h4 { color: var(--navy); margin-bottom: 12px; font-weight: 400; }
.value-item p { color: var(--text-mid); font-size: 0.875rem; line-height: 1.85; }

/* === CONTACT PAGE === */
.contact-wrap {
  padding: calc(var(--nav-h) + 80px) var(--pad) var(--sec);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info .label { margin-bottom: 20px; }
.contact-info h1 { margin-bottom: 28px; }
.contact-info > p {
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 52px;
  max-width: 380px;
}
.contact-detail {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.contact-detail span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-detail a,
.contact-detail p {
  color: var(--navy);
  font-size: 0.92rem;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  transition: color 0.25s;
}
.contact-detail a:hover { color: var(--gold); }

.form-header .label { margin-bottom: 16px; }
.form-header h2 { margin-bottom: 44px; font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(22, 32, 43, 0.2);
  color: var(--navy);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: none; min-height: 110px; line-height: 1.7; }
.form-group select option { background: var(--white); color: var(--navy); }
.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 20px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-success h3 { color: var(--gold); margin-bottom: 12px; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 48px; }
  .model-intro { grid-template-columns: 1fr; gap: 48px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .aragosta-inner { grid-template-columns: 1fr; gap: 48px; }
  .build-steps { grid-template-columns: repeat(2, 1fr); }
  .cobuild-percent { text-align: left; font-size: clamp(5rem, 20vw, 10rem); }
  .featured-specs { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 64px; }
  .proefvaart-section { margin: 0 16px var(--sec); border-radius: var(--radius); }
  .proefvaart-bg { border-radius: var(--radius); }
  .proefvaart-overlay { border-radius: var(--radius); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-lang {
    margin-left: auto;
    margin-right: 10px;
    gap: 2px;
  }
  .lang-btn {
    padding: 4px 5px;
    font-size: 0.65rem;
  }
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .build-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .photo-strip-grid { grid-template-columns: 1fr; }
  .featured-specs { grid-template-columns: repeat(2, 1fr); }
}
