/*
Theme Name: Lach & Licht
Theme URI: https://lacheenlicht.nl
Author: Lach & Licht
Author URI: https://lacheenlicht.nl
Description: Een warm en elegant fotografiethema voor Lach & Licht. Professionele fotografie voor de mooiste herinneringen.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lach-en-licht
Tags: photography, portfolio, one-page, responsive, custom-colors
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --cream:       #FAF7F2;
  --beige:       #F0E5D4;
  --beige-dark:  #DDD0BB;
  --gold:        #C49A6C;
  --gold-dark:   #A07848;
  --brown:       #7A5C44;
  --dark:        #3D2B1F;
  --pink:        #E8B4A4;
  --pink-light:  #F7EBE4;
  --sage:        #8FA882;
  --sage-light:  #C8D9C1;
  --white:       #FFFFFF;
  --text:        #4A3728;
  --text-light:  #7A6355;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', -apple-system, sans-serif;

  --shadow:       0 4px 24px rgba(61, 43, 31, 0.08);
  --shadow-hover: 0 10px 40px rgba(61, 43, 31, 0.15);
  --radius:       3px;
  --transition:   all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

p { font-family: var(--font-body); font-weight: 300; color: var(--text-light); }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title { font-family: var(--font-heading); color: var(--dark); margin-bottom: 1rem; }
.section-subtitle { font-family: var(--font-body); font-weight: 300; color: var(--text-light); max-width: 560px; line-height: 1.85; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 110px 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background-color: var(--gold); color: var(--white); }
.btn-primary:hover { background-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,154,108,0.4); }
.btn-outline { background-color: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-light { background-color: var(--white); color: var(--dark); }
.btn-light:hover { background-color: var(--beige); transform: translateY(-2px); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.5rem 0;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background-color: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700;
  color: var(--dark);
  display: flex; align-items: center; gap: 0.4rem;
  letter-spacing: -0.01em;
}
.site-logo .logo-amp { color: var(--gold); font-style: italic; }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; }
.nav-menu a {
  font-family: var(--font-body); font-size: 0.84rem;
  font-weight: 400; letter-spacing: 0.04em; color: var(--text);
}
.nav-menu a:hover { color: var(--gold); }
.nav-cta { background-color: var(--gold) !important; color: var(--white) !important; padding: 9px 22px; border-radius: var(--radius); }
.nav-cta:hover { background-color: var(--gold-dark) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background-color: var(--dark); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background-color: var(--beige);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1531983412531-1f49a365ffed?w=1920&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
  z-index: 0; transform: scale(1.06); transition: transform 10s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,247,242,0.88) 0%, rgba(240,229,212,0.72) 45%, rgba(250,247,242,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; padding-top: 130px;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 36px; height: 1px; background-color: var(--gold); }
.hero h1 { color: var(--dark); margin-bottom: 1.25rem; font-weight: 600; max-width: 680px; }
.hero h1 em { font-style: italic; color: var(--brown); }
.hero-tagline {
  font-family: var(--font-heading); font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-style: italic; color: var(--brown); margin-bottom: 2.5rem; font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-light); font-size: 0.72rem; letter-spacing: 0.1em;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; stroke: var(--gold); }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip { background-color: var(--gold); padding: 22px 0; }
.intro-strip-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.intro-strip-item { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.intro-strip-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.intro-strip-item span { font-family: var(--font-body); font-size: 0.82rem; font-weight: 300; letter-spacing: 0.04em; }
.intro-strip-divider { width: 1px; height: 20px; background-color: rgba(255,255,255,0.3); }

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.section-intro { background-color: var(--cream); padding: 120px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Twee-foto layout */
.intro-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.intro-photo-main { position: relative; }
.intro-photo-main img { width: 100%; height: 520px; object-fit: cover; border-radius: 2px; display: block; }
.intro-photo-second { margin-top: 60px; }
.intro-photo-second img { width: 100%; height: 460px; object-fit: cover; border-radius: 2px; display: block; }

/* Placeholder tweede foto */
.intro-photo-placeholder {
  width: 100%; height: 460px;
  background-color: var(--beige); border: 2px dashed #DDD0BB;
  border-radius: 2px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--brown); opacity: 0.65;
}
.intro-photo-placeholder svg { width: 42px; height: 42px; stroke: var(--gold); }
.intro-photo-placeholder p { font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; margin: 0; }

/* Badge op eerste foto */
.intro-image-badge {
  position: absolute; bottom: -20px; right: -16px;
  width: 108px; height: 108px; background-color: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center; box-shadow: var(--shadow-hover);
}
.intro-image-badge .years { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.intro-image-badge .label { font-family: var(--font-body); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.4; padding: 0 8px; }
.intro-content p { margin-bottom: 1.4rem; line-height: 1.95; }
.intro-signature { font-family: var(--font-heading); font-size: 1.9rem; font-style: italic; color: var(--brown); margin: 1.5rem 0 2rem; }

/* ============================================
   SERVICES
   ============================================ */
.services { background-color: var(--beige); padding: 120px 0; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.82) 0%, rgba(61,43,31,0.18) 55%, rgba(61,43,31,0) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; transition: var(--transition);
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(61,43,31,0.92) 0%, rgba(61,43,31,0.45) 60%, rgba(61,43,31,0) 100%); }
.service-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.4rem; }
.service-card-desc { color: rgba(255,255,255,0.72); font-size: 0.84rem; font-weight: 300; transform: translateY(12px); opacity: 0; transition: all 0.3s ease 0.08s; line-height: 1.6; }
.service-card:hover .service-card-desc { transform: translateY(0); opacity: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 0.85rem; transform: translateY(12px); opacity: 0;
  transition: all 0.3s ease 0.14s;
}
.service-card:hover .service-card-link { transform: translateY(0); opacity: 1; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio { background-color: var(--cream); padding: 120px 0; }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem; }
.portfolio-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; padding: 7px 18px;
  border: 1px solid var(--beige-dark); background: transparent;
  color: var(--text-light); border-radius: 100px; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background-color: var(--gold); border-color: var(--gold); color: var(--white); }
/* Vierkant 3-koloms grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  aspect-ratio: 1 / 1; /* altijd vierkant */
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover; /* bijsnijden tot vierkant */
  display: block;
  transition: transform 0.45s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item-overlay {
  position: absolute; inset: 0;
  background: rgba(61,43,31,0.48);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-lightbox { display: flex; align-items: center; justify-content: center; }
.portfolio-item-overlay svg { width: 36px; height: 36px; stroke: var(--white); }
.portfolio-item-cat {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); background: rgba(0,0,0,0.35);
  padding: 3px 10px; border-radius: 20px;
}
.portfolio-empty {
  grid-column: 1 / -1; text-align: center; padding: 4rem 0;
  font-family: var(--font-serif); font-style: italic; color: var(--brown); font-size: 1.1rem;
}
.portfolio-cta { text-align: center; margin-top: 3rem; }

/* ============================================
   PORTFOLIO LIGHTBOX CAROUSEL
   ============================================ */
.lel-no-scroll { overflow: hidden; }

#lel-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 8, 4, 0.96);
  flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 70px;
}
#lel-lightbox.lel-lb-open { display: flex; animation: lbFadeIn 0.25s ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Sluitknop */
#lel-lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  color: var(--gold); opacity: 0.8; transition: opacity 0.2s;
  padding: 6px; line-height: 0;
}
#lel-lb-close:hover { opacity: 1; }
#lel-lb-close svg { width: 28px; height: 28px; }

/* Pijlknoppen */
#lel-lb-prev,
#lel-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(196,154,108,0.12);
  border: 1px solid rgba(196,154,108,0.35);
  color: var(--gold); cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 0;
}
#lel-lb-prev { left: 14px; }
#lel-lb-next { right: 14px; }
#lel-lb-prev:hover,
#lel-lb-next:hover { background: rgba(196,154,108,0.28); border-color: rgba(196,154,108,0.7); }
#lel-lb-prev svg,
#lel-lb-next svg { width: 22px; height: 22px; }

/* Foto container — vaste hoogte, originele verhouding behouden */
#lel-lb-stage {
  width: 100%; max-width: 1100px;
  height: 72vh;
  display: flex; align-items: center; justify-content: center;
}
#lel-lb-img {
  max-width: 100%; max-height: 72vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 3px;
  transition: opacity 0.15s ease;
  box-shadow: 0 8px 48px rgba(0,0,0,0.55);
}

/* Footer: bijschrift + teller */
#lel-lb-footer {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 16px; min-height: 24px;
}
#lel-lb-caption {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(250,247,242,0.75); font-size: 0.9rem;
}
#lel-lb-counter {
  font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.1em; color: rgba(196,154,108,0.65);
}

@media (max-width: 768px) {
  #lel-lightbox { padding: 0 48px; }
  #lel-lb-prev { left: 6px; }
  #lel-lb-next { right: 6px; }
  #lel-lb-prev, #lel-lb-next { width: 40px; height: 40px; }
  #lel-lb-stage { height: 60vh; }
  #lel-lb-img { max-height: 60vh; }
}

/* ============================================
   PROCESS
   ============================================ */
.process { background-color: var(--pink-light); padding: 100px 0; }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-subtitle { margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 39px; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(to right, transparent, var(--beige-dark), transparent); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-number {
  width: 78px; height: 78px; border-radius: 50%;
  background-color: var(--white); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); font-weight: 600;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.65rem; color: var(--dark); }
.process-step p { font-size: 0.875rem; color: var(--text-light); font-weight: 300; line-height: 1.75; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background-color: var(--dark); padding: 100px 0; position: relative; overflow: hidden; }
.testimonials::before {
  content: '\201C'; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-heading); font-size: 360px; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-tag { color: var(--gold); }
.testimonials-header h2 { color: var(--white); }
.testimonials-slider { max-width: 780px; margin: 0 auto; position: relative; }
.testimonial-item { display: none; text-align: center; padding: 0 2rem; animation: fadeSlide 0.5s ease; }
.testimonial-item.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.5rem; }
.testimonial-stars svg { width: 19px; height: 19px; fill: var(--gold); }
.testimonial-text {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.85; margin-bottom: 1.75rem; font-weight: 400;
}
.testimonial-author { color: var(--gold); font-family: var(--font-body); font-size: 0.84rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial-role { color: rgba(255,255,255,0.38); font-size: 0.78rem; margin-top: 0.2rem; font-family: var(--font-body); font-weight: 300; }
.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2.5rem; }
.testimonials-dots button { width: 8px; height: 8px; border-radius: 50%; background-color: rgba(255,255,255,0.18); border: none; cursor: pointer; transition: var(--transition); }
.testimonials-dots button.active { background-color: var(--gold); width: 26px; border-radius: 4px; }

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: var(--white); padding: 120px 0; }
.blog-section .section-subtitle { max-width: 580px; margin: 0 auto; }

/* Flexibel raster — centreert automatisch bij 1 of 2 kaarten */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 3rem;
}

/* Kaart */
.blog-card {
  flex: 0 1 calc(33.333% - 1.1rem);
  min-width: 280px;
  background: var(--white);
  border: 1.5px solid rgba(61,43,31,0.13);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(61,43,31,0.12); }

/* Categorie-balk (euhost-stijl: donker blok bovenaan) */
.blog-card-cat {
  background: var(--dark);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  text-align: center;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Afbeelding */
.blog-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.blog-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-placeholder svg { width: 48px; height: 48px; stroke: var(--gold); opacity: 0.55; }

/* Inhoud */
.blog-card-body { padding: 1.4rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.78rem; color: var(--gold); font-weight: 500; display: block; margin-bottom: 0.5rem; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--dark); line-height: 1.42; margin-bottom: 0.7rem; font-weight: 700; }
.blog-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; font-weight: 300; flex: 1; }
.blog-card-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 600; color: var(--gold); text-decoration: none; margin-top: 1.1rem; letter-spacing: 0.03em; transition: gap 0.2s; }
.blog-card-link:hover { gap: 0.6rem; }

/* CTA onder het grid */
.blog-cta { text-align: center; margin-top: 3rem; }

/* ======= VOLLEDIGE BLOGPAGINA (home.php) ======= */
.blog-page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #f0e4d7 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.blog-page-hero .section-tag { display: inline-block; margin-bottom: 1rem; }
.blog-page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--dark); margin-bottom: 1rem; }
.blog-page-hero p { font-size: 1.05rem; color: var(--text-light); max-width: 540px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

.blog-page-body { background: var(--white); padding: 80px 0 120px; }
.blog-page-body .blog-grid { margin-top: 0; }

/* Paginering */
.blog-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 4rem; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 0.85rem; font-weight: 500; color: var(--dark);
  border: 1.5px solid rgba(61,43,31,0.15);
  text-decoration: none; transition: var(--transition);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.blog-pagination .page-numbers.dots { border: none; cursor: default; width: auto; padding: 0 .3rem; }

/* Responsive blog */
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================
   CONTACT
   ============================================ */
.contact { background-color: var(--cream); padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-light); font-weight: 300; line-height: 1.95; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; color: var(--text); }
.contact-detail-icon { width: 44px; height: 44px; background-color: var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }
.contact-detail-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; color: var(--dark); text-transform: uppercase; margin-bottom: 1px; font-family: var(--font-body); }
.contact-detail-text { font-size: 0.9rem; color: var(--text-light); font-family: var(--font-body); font-weight: 300; }
.contact-form { background-color: var(--white); padding: 3rem; border-radius: 2px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; color: var(--text);
  background-color: var(--cream); border: 1px solid var(--beige-dark);
  border-radius: var(--radius); transition: var(--transition); -webkit-appearance: none; appearance: none; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background-color: var(--white); box-shadow: 0 0 0 3px rgba(196,154,108,0.12); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; font-size: 0.84rem; }
.form-notice { margin-top: 1rem; padding: 12px 16px; border-radius: var(--radius); font-size: 0.875rem; font-family: var(--font-body); display: none; }
.form-notice.success { background: #d4edda; color: #155724; }
.form-notice.error { background: #f8d7da; color: #721c24; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background-color: var(--dark); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .site-logo { color: var(--white); margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.875rem; font-weight: 300; line-height: 1.85; max-width: 280px; margin-bottom: 1.75rem; }
.social-links { display: flex; gap: 0.7rem; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 15px; height: 15px; }
.footer-col h4 { font-family: var(--font-heading); color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; font-weight: 500; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.875rem; font-weight: 300; transition: var(--transition); font-family: var(--font-body); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.78rem; font-weight: 300; font-family: var(--font-body); }
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.78rem; font-family: var(--font-body); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-sep { color: rgba(255,255,255,0.18); margin: 0 0.75rem; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background-color: var(--cream); flex-direction: column; justify-content: center;
    align-items: flex-start; padding: 2rem; gap: 1.5rem;
    transition: right 0.35s ease; box-shadow: -8px 0 40px rgba(0,0,0,0.1); z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-photos { grid-template-columns: 1fr 1fr; }
  .intro-photo-main img, .intro-photo-second img, .intro-photo-placeholder { height: 280px; }
  .intro-photo-second { margin-top: 30px; }
  .intro-image-badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .intro-strip-divider { display: none; }
  .intro-strip-inner { gap: 1.25rem; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
