/* ============================================
   Isaacbouw — warm portfolio theme v2
   Palette: rich terracotta + warm parchment.
   ============================================ */

:root {
  --cream:        #F4ECD8;
  --cream-2:      #EADFC4;
  --paper:        #FFFAF0;
  --ink:          #2A1E14;
  --ink-soft:     #5C4030;
  --muted:        #8A7560;
  --wood:         #B85B2C;
  --wood-dark:    #8E3C18;
  --wood-light:   #D87B45;
  --sand:         #DAB87A;
  --line:         #DCC9A2;
  --shadow:       0 10px 30px rgba(42, 30, 20, 0.10);
  --shadow-lg:    0 25px 60px rgba(42, 30, 20, 0.22);
  --radius:       6px;
  --radius-lg:    14px;
  --max-w:        1180px;
  --serif:        'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--wood); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--wood-dark); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--wood);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow { display: inline-block; }
.section-lede { color: var(--ink-soft); font-size: 1.05rem; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--wood); color: var(--paper); }
.btn-primary:hover {
  background: var(--wood-dark);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--paper);
  border-color: var(--paper);
}
.btn-block { width: 100%; }
.btn .icon { width: 18px; height: 18px; }

/* ============================================
   SVG icons
   ============================================ */
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(244, 236, 216, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(42,30,20,0.08);
  padding: 10px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 4px;
  mix-blend-mode: multiply;
  transition: height .25s ease;
}
.site-header.scrolled .brand-logo { height: 48px; }
.site-header:not(.scrolled) .brand-logo {
  mix-blend-mode: normal;
  filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--paper);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--paper); background: rgba(255,255,255,0.15); }
.site-header.scrolled .nav a { color: var(--ink); text-shadow: none; }
.site-header.scrolled .nav a:hover { background: var(--cream-2); color: var(--wood); }

.nav-cta {
  background: var(--wood);
  color: var(--paper) !important;
  padding: 10px 20px !important;
  text-shadow: none !important;
}
.nav-cta:hover { background: var(--wood-dark) !important; }
.site-header.scrolled .nav-cta { color: var(--paper) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--paper);
  margin: 6px 0;
  transition: transform .3s ease, opacity .2s ease, background .2s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   Hero — sunset silhouette
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-image {
  position: absolute; inset: 0;
  background: url('assets/projects/sunset-silhouette.jpg') center 30%/cover no-repeat;
  filter: brightness(0.85) saturate(1.1);
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(42,30,20,0.78) 0%, rgba(42,30,20,0.50) 45%, rgba(42,30,20,0.25) 100%),
    linear-gradient(180deg, rgba(42,30,20,0.20) 0%, rgba(42,30,20,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero .eyebrow { color: var(--sand); border-color: var(--sand); }
.hero h1 { color: var(--paper); margin-bottom: 1.2rem; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.lede {
  font-size: 1.18rem;
  color: rgba(255,250,240,0.94);
  max-width: 560px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px; height: 8px;
  background: var(--paper);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 12px); }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 96px 0; position: relative; }

/* ============================================
   Over mij (with photo background + overlay)
   ============================================ */
.over {
  position: relative;
  overflow: hidden;
  color: var(--paper);
}
.over::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/projects/zagen-op-dak.jpg') center 25%/cover no-repeat;
  filter: brightness(0.45) saturate(0.85);
  z-index: 0;
}
.over::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,30,20,0.85) 0%, rgba(42,30,20,0.72) 100%);
  z-index: 1;
}
.over .container { position: relative; z-index: 2; }
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.over-image { position: relative; }
.over-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
}
.over-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--wood);
  color: var(--paper);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}
.over .eyebrow { color: var(--sand); border-color: var(--sand); }
.over h2 { color: var(--paper); }
.over-text p { color: rgba(255,250,240,0.88); font-size: 1.05rem; }
.over-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
}
.over-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,250,240,0.88);
  display: flex;
  gap: 14px;
  align-items: center;
}
.over-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.18); }
.over-list strong { color: var(--paper); }
.over-list .icon { color: var(--sand); flex-shrink: 0; width: 22px; height: 22px; stroke-width: 2.5; }

/* ============================================
   Diensten
   ============================================ */
.diensten { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--wood-light);
}
.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0.4) sepia(1) saturate(2.4) hue-rotate(355deg);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ============================================
   Projecten gallery
   ============================================ */
.projecten { background: var(--paper); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,30,20,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  color: var(--paper);
  transition: background .3s ease;
}
.gallery-item:hover figcaption {
  background: linear-gradient(180deg, rgba(42,30,20,0.2) 0%, rgba(42,30,20,0.9) 100%);
}
.cap-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}
.cap-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

/* Specific object-position tweaks so important subjects don't crop */
.gallery-item[data-pos="top"]    img { object-position: center 18%; }
.gallery-item[data-pos="bottom"] img { object-position: center 78%; }
.gallery-item[data-pos="left"]   img { object-position: 28% center; }
.gallery-item[data-pos="right"]  img { object-position: 72% center; }

/* ============================================
   Contact (with team photo background)
   ============================================ */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--paper);
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/projects/dakopbouw-team.jpg') center 40%/cover no-repeat;
  filter: brightness(0.6) saturate(0.95);
  z-index: 0;
}
.contact::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,30,20,0.80) 0%, rgba(42,30,20,0.60) 100%);
  z-index: 1;
}
.contact .container { position: relative; z-index: 2; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact .eyebrow { color: var(--sand); border-color: var(--sand); }
.contact-info h2 { color: var(--paper); margin-bottom: 1rem; }
.contact-info p { color: rgba(255,250,240,0.90); }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.contact-list li {
  border-top: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,250,240,0.92);
}
.contact-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.20); }

/* Clickable contact rows */
.contact-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 6px;
  color: rgba(255,250,240,0.92);
  border-radius: var(--radius);
  transition: background .2s ease, transform .15s ease, padding .2s ease;
}
.contact-row:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
  color: var(--paper);
  padding-left: 12px;
}
.contact-row:hover .icon-wrap { background: var(--wood-light); }
.contact-row:hover .contact-chevron { opacity: 1; transform: translateX(2px); }

.contact-list .icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wood);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: background .2s ease;
}
.contact-list .icon-wrap .icon { width: 20px; height: 20px; }
.contact-list .contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.contact-list .contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
}
.contact-list .contact-value {
  color: var(--paper);
  font-weight: 500;
  word-break: break-word;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-list a.contact-value { color: var(--paper); }
.contact-list a.contact-value:hover { color: var(--wood-light); }

.contact-chevron {
  width: 18px; height: 18px;
  color: var(--sand);
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity .2s ease, transform .2s ease;
}

/* Inline NL flag chip next to Werkgebied */
.nl-flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.25);
  vertical-align: middle;
}

/* Phone row with two action buttons */
.phone-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 6px;
  flex-wrap: wrap;
}
.phone-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.phone-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--paper);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.phone-action .icon { width: 16px; height: 16px; }
.phone-action--call {
  background: var(--wood);
}
.phone-action--call:hover {
  background: var(--wood-dark);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.phone-action--whatsapp {
  background: #25D366;
}
.phone-action--whatsapp:hover {
  background: #1FB755;
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Honeypot — invisible to humans, visible to bots that auto-fill forms */
.hp-row {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.recaptcha-row {
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .phone-row { gap: 14px; }
  .phone-actions { width: 100%; }
  .phone-action { flex: 1; justify-content: center; }
}

.contact-form {
  background: var(--paper);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--wood);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(184,91,44,0.16);
}
.form-row textarea { resize: vertical; min-height: 110px; }

.form-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.form-note.success { background: #EEF7E8; color: #355C26; border: 1px solid #C8E0B6; }
.form-note.error   { background: #FBEAE4; color: #7C2D17; border: 1px solid #F2C7B7; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  border-radius: 6px;
}
.footer-brand p { margin: 0; color: var(--sand); font-size: 0.95rem; }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-contact a {
  color: var(--cream-2);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--wood-light); }
.footer-contact .icon { width: 16px; height: 16px; color: var(--sand); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 14, 10, 0.94);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox[hidden] { display: none; }
.lightbox figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox figcaption {
  margin-top: 16px;
  color: var(--cream-2);
  font-family: var(--serif);
  font-size: 1.05rem;
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  border: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/* ============================================
   Reveal-on-scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .over-grid { grid-template-columns: 1fr; gap: 56px; }
  .over-image img { aspect-ratio: 5 / 4; }
  .over-image-badge { bottom: -20px; right: 16px; padding: 16px 20px; }
  .badge-num { font-size: 1.6rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    color: var(--ink) !important;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
    text-shadow: none !important;
  }
  .nav a:hover { background: var(--cream-2); }
  .nav-cta { margin-top: 12px; text-align: center; }

  .hero { padding: 100px 0 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item--tall, .gallery-item--wide { grid-row: span 1; grid-column: span 1; }

  .contact-form { padding: 24px; }

  .lightbox { padding: 20px 12px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .brand-logo { height: 48px; }
  .site-header.scrolled .brand-logo { height: 40px; }
}

.footer-credit a {
  color: var(--wood-light);
  font-weight: 500;
}
.footer-credit a:hover { color: var(--sand); }
