/* ===========================
   KING WRAP — Premium Styles
   =========================== */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A8892E;
  --black: #080808;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8e8;
  --text-muted: #888;
  --white: #ffffff;
  --nav-h: 110px;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2rem); letter-spacing: 0.05em; }

em { font-style: normal; color: var(--gold); }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1.25rem; }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===========================
   LAYOUT
   =========================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===========================
   NAV
   =========================== */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }

.nav-logo {
  height: 96px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

/* Fallback text logo (unused but kept) */
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.08em; }
.logo-king { color: var(--white); }
.logo-wrap { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
  transition: color var(--transition), text-shadow var(--transition);
}
.nav-links a:hover { color: var(--white); }

/* Once scrolled: dark bg carries the nav, drop the heavy shadow */
#navbar.scrolled .nav-links a {
  color: var(--text-muted);
  text-shadow: none;
}
#navbar.scrolled .nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: 4px;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Strong band at the top so nav is always readable */
    linear-gradient(to bottom,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.55) 18%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.65) 68%,
      rgba(0,0,0,0.96) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #e0d0b0 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; }
}

/* ===========================
   DIAGONAL CUT — signature element
   References the squeegee/vinyl cutter used in wrapping.
   A single gold slash that bleeds full-width between sections.
   =========================== */

.cut-divider {
  position: relative;
  height: 64px;
  background: var(--dark);
  overflow: hidden;
}
.cut-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}
.cut-divider::after {
  content: '';
  position: absolute;
  /* The gold "blade" line */
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-light) 50%,
    var(--gold) 80%,
    transparent 100%
  );
  transform: rotate(-2.8deg) translateY(-50%);
  opacity: 0.7;
}

/* ===========================
   SERVICES
   =========================== */

.services { background: var(--dark); }

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

.service-card {
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.service-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.service-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.service-card.featured {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 40px rgba(201,168,76,0.06);
}

.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.service-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-wrap {
  margin-bottom: 1.25rem;
}
.service-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(42%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

.service-card h3 { margin-bottom: 0.75rem; color: var(--white); }
.service-card p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.92rem; flex: 1; }

.service-features { margin-bottom: 1.75rem; }
.service-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
  transition: color var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--gold-light); }

/* ===========================
   WHY US
   =========================== */

.why-us { background: var(--black); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-body {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.why-items { display: flex; flex-direction: column; gap: 1.75rem; }

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.why-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.why-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.why-photos {
  display: flex;
  align-items: stretch;
}

.why-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-photo {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transition: transform var(--transition);
}
.why-photo:hover { transform: scale(1.03); }

.why-photo.wp-tall {
  grid-row: span 2;
}

/* ===========================
   PORTFOLIO
   =========================== */

.portfolio { background: var(--dark); }

.portfolio-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
  margin-bottom: 3rem;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-item.large { grid-column: span 2; }

.portfolio-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  /* Always show a base state so labels are readable on mobile too */
  opacity: 0.6;
  transition: opacity 0.35s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* Labels always visible at base opacity, fully bright on hover */
.po-cat { opacity: 0; transition: opacity 0.35s ease; }
.portfolio-item:hover .po-cat { opacity: 1; }

.po-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.po-title {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.portfolio-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.portfolio-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ===========================
   ABOUT
   =========================== */

.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  display: flex;
  align-items: stretch;
}

.about-img-stack {
  position: relative;
  width: 100%;
  height: 500px;
}

.about-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--black);
  border-radius: 8px;
  border: 2px solid var(--border);
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.ab-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.ab-brands span {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   CONTACT
   =========================== */

.contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 620px;
  margin: 0 auto;
}

.contact-card {
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: var(--dark-3); }

.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.ci-icon svg { width: 20px; height: 20px; }
.whatsapp-icon { background: rgba(37,211,102,0.1); color: #25D366; }

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--dark-3);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136,136,136,0.6);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 90px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer-nav strong, .footer-contact strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(136,136,136,0.6);
}

/* ===========================
   ANIMATIONS
   =========================== */

[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim]:nth-child(2) { transition-delay: 0.1s; }
[data-anim]:nth-child(3) { transition-delay: 0.2s; }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 4rem; }
  .why-photo-grid { height: 360px; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-stack { height: 380px; }
  .about-img-accent { right: 16px; bottom: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.large { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 24px;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* De 'Scroll'-hint staat absoluut op bottom: 2rem en viel op mobiel precies
     over het label 'Jaar ervaring'. Op touch is de hint toch overbodig. */
  .hero-scroll-hint { display: none; }

  /* Labels mogen niet smaller worden dan hun tekst; ze wrappen liever. */
  .hero-stats { gap: 1.25rem 2rem; }
  .stat-divider { display: none; }
  .stat { flex: 0 0 auto; min-width: 0; }
  .stat-label { white-space: nowrap; letter-spacing: 0.06em; }

  .form-row { grid-template-columns: 1fr; }

  .why-photo-grid { grid-template-columns: 1fr; height: auto; }
  .why-photo { height: 200px; }
  .why-photo.wp-tall { grid-row: span 1; }

  .about-img-stack { height: 280px; }
  .about-img-accent { width: 130px; height: 72px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .portfolio-item.large { grid-column: span 2; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .about-actions { flex-direction: column; }

  .hero-stats { gap: 1rem 1.5rem; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.04em; }

  .btn { width: 100%; max-width: 280px; }
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
}
.lightbox-content {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: 85vh;
}
.lightbox-content img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2001;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--white);
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 4px;
}
.lightbox-nav:hover { background: rgba(0,0,0,0.8); color: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
