/* ============================================
   HAIR DESIGN — Hazerswoude-Dorp
   Premium kapsalon demo
   Palette: #0a0a0a, #ffffff, #c9a96e, #f5f5f3
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-dark: #a8843c;
  --gold-light: #e0c98a;
  --off-white: #f5f5f3;
  --gray-100: #1a1a1a;
  --gray-200: #2a2a2a;
  --gray-300: #444;
  --gray-text: #888;
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.25);
  --transition: 0.25s ease;
  --header-h: 72px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

/* ---------- IMAGE FILL UTILITY ---------- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img,
.img-fill > img,
figure.photo > img,
.gallery-img-wrap > img,
.card > img,
.hero__img,
.over-ons__img-wrap > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg { padding: 18px 36px; font-size: 14px; }

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

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

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  margin-top: 20px;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #1fbc5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- SECTION HELPERS ---------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow--gold { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-header--light h2 { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--gold); }

.section-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 20px;
  font-weight: 400;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.desktop-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 20px; font-size: 12px; flex-shrink: 0; }

/* ---------- HAMBURGER ---------- */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU (fullscreen overlay)
   ============================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] {
  pointer-events: none;
}

.mobile-menu__backdrop {
  display: none;
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100dvh;
  padding: 0 24px 40px;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.mobile-menu__logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0;
}

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 auto;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 400;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: -0.01em;
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 8px; }

.mobile-menu__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 18px;
  font-size: 14px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================
   OVER ONS
   ============================================ */
.over-ons {
  background: var(--off-white);
  padding: 100px 0;
}

.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.over-ons__text { color: var(--black); }
.over-ons__text .section-eyebrow { color: var(--gold-dark); }
.over-ons__text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--black);
  margin-bottom: 24px;
}
.over-ons__text p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 16px;
  line-height: 1.8;
}
.over-ons__text strong { color: var(--black); font-weight: 600; }
.over-ons__text .btn-gold { margin-top: 12px; color: var(--black); }

.over-ons__image { position: relative; }

.over-ons__img-wrap {
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.over-ons__img-wrap > img { width: 100%; height: 100%; object-fit: cover; display: block; }

.over-ons__badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--black);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: var(--shadow);
}
.over-ons__badge svg { color: var(--gold); flex-shrink: 0; }

/* ============================================
   DIENSTEN
   ============================================ */
.diensten {
  background: var(--black);
  padding: 100px 0;
}

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

.card {
  background: var(--gray-100);
  padding: 40px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  background: var(--gray-200);
  transform: translateY(-4px);
  z-index: 1;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.card__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.card__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.card__cta:hover { gap: 12px; color: var(--gold-light); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--gold);
  padding: 72px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  margin-bottom: 8px;
}
.cta-band__text p {
  font-size: 16px;
  color: rgba(10,10,10,0.65);
}

.cta-band .btn-gold {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  flex-shrink: 0;
}
.cta-band .btn-gold:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================
   GALERIJ
   ============================================ */
.galerij {
  background: var(--off-white);
  padding: 100px 0 60px;
}
.galerij .section-header h2 { color: var(--black); }
.galerij .section-eyebrow { color: var(--gold-dark); }
.galerij .section-intro { color: rgba(10,10,10,0.6); }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-img-wrap {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.gallery-img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img-wrap > img {
  transform: scale(1.06);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 24px 12px 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-label { opacity: 1; }

.gallery-footer {
  margin-top: 40px;
  text-align: center;
}
.gallery-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #444;
  font-family: var(--font-body);
}
.gallery-instagram strong {
  color: var(--black);
  font-weight: 700;
}
.gallery-instagram svg { color: var(--gold-dark); flex-shrink: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--black);
  padding: 100px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section-eyebrow { margin-bottom: 8px; }
.contact__info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 32px;
}

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.contact__details a { color: rgba(255,255,255,0.8); }
.contact__details a:hover { color: var(--gold); }

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Opening hours */
.opening-hours { margin-bottom: 28px; }
.opening-hours h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
}
.hours-table td:first-child { width: 50%; color: rgba(255,255,255,0.5); }
.hours-table td:last-child { text-align: right; }
.hours-closed { color: var(--gray-text) !important; font-style: italic; }

/* Contact Form */
.contact__form-wrap {
  background: var(--gray-100);
  padding: 48px 40px;
  border-radius: 2px;
}
.contact__form-wrap h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.contact__form-wrap > p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group textarea {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: -8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-kit {
  background: #050505;
  border-top: 1px solid rgba(201,169,110,0.2);
}

.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 72px 24px 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-kit__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-address {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.35) !important;
}

.footer-kit__nav h4,
.footer-kit__contact h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-kit__nav ul,
.footer-kit__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-kit__nav a,
.footer-kit__contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-kit__nav a:hover,
.footer-kit__contact a:hover { color: var(--white); }
.footer-kit__contact li {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}
.footer-kit__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-kit__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-kvk { font-size: 12px; color: rgba(255,255,255,0.2) !important; }

/* ============================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================ */
@media (max-width: 1023px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--stylist { display: none; }

  .over-ons__inner { gap: 48px; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-kit__brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
  :root { --header-h: 64px; }

  /* Header */
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero { min-height: 100dvh; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .hero__sub { font-size: 15px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Over ons */
  .over-ons { padding: 72px 0; }
  .over-ons__inner { grid-template-columns: 1fr; gap: 48px; }
  .over-ons__image { order: -1; }
  .over-ons__img-wrap { aspect-ratio: 16/9; }
  .over-ons__badge { left: 12px; bottom: 12px; font-size: 12px; padding: 12px 14px; }

  /* Diensten */
  .diensten { padding: 72px 0; }
  .card-grid { grid-template-columns: 1fr; gap: 2px; }
  .card { padding: 36px 28px; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-band__inner .btn { width: 100%; justify-content: center; }

  /* Galerij */
  .galerij { padding: 72px 0 40px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .gallery-item:nth-child(n+5) { display: none; }

  /* Contact */
  .contact { padding: 72px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-wrap { padding: 32px 24px; }

  /* Footer */
  .footer-kit__inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px; }
  .footer-kit__bottom-inner { flex-direction: column; text-align: center; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2rem, 12vw, 2.8rem); }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(n+3) { display: none; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) { display: block; }

  /* Show 4 items on wider mobile */
}

@media (min-width: 481px) and (max-width: 767px) {
  .gallery-item:nth-child(n+5) { display: none; }
  .gallery-item { display: block; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
