/* ─────────────────────────────────────────────────────────────────
   Hair & Beauty Salon Template — KenWes
   ───────────────────────────────────────────────────────────────── */

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --color-primary:     #b5894a;
  --color-primary-dk:  #9a7138;
  --color-primary-lt:  #f5ead9;
  --color-surface:     #fdfaf6;
  --color-surface-alt: #f7f1e8;
  --color-dark:        #1c1713;
  --color-text:        #3d3530;
  --color-muted:       #7a6e66;
  --color-border:      #e6d9c8;
  --color-white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 72px;
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding-block: var(--space-xl);
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-intro {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--color-white);
}

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

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}

.site-header:not(.scrolled) .logo-name { color: var(--color-white); }

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-white);
  transition: background var(--transition), color var(--transition);
}

.site-header.scrolled .nav-link { color: var(--color-text); }

.nav-link:hover {
  background: rgba(255,255,255,.15);
}

.site-header.scrolled .nav-link:hover {
  background: var(--color-primary-lt);
  color: var(--color-primary-dk);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
}

.nav-cta:hover {
  background: var(--color-primary-dk) !important;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.scrolled .hamburger span { background: var(--color-dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(28,23,19,.55) 0%, rgba(28,23,19,.3) 60%, rgba(28,23,19,.65) 100%),
    /* Replace the url() below with your hero image */
    url('../images/hero.jpg') center/cover no-repeat;
  background-color: #2c2018; /* fallback */
  color: var(--color-white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(181,137,74,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-2xl) var(--space-xl);
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.hero-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  color: rgba(255,255,255,.7);
  font-size: 1.4rem;
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { translate: -50% 0; }
  50%       { translate: -50% 8px; }
}

/* ── Info Strip ─────────────────────────────────────────────────── */
.info-strip {
  background: var(--color-primary);
  color: var(--color-white);
  padding-block: 1rem;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.info-item a { color: inherit; }
.info-item a:hover { text-decoration: underline; }

.info-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.35);
}

/* ── Image Placeholder ──────────────────────────────────────────── */
.split-image {
  position: relative;
}

.image-placeholder {
  aspect-ratio: 4/5;
  background: var(--color-surface-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-muted);
  font-size: 0.85rem;
}

.image-placeholder i { font-size: 2.5rem; color: var(--color-primary); opacity: .5; }

.image-accent {
  position: absolute;
  inset-block-end: -1.5rem;
  inset-inline-end: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  background: var(--color-primary-lt);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ── Services ───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: box-shadow var(--transition), translate var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  translate: 0 -4px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.service-card h3 { margin-bottom: var(--space-xs); }
.service-card p  { color: var(--color-muted); font-size: 0.95rem; margin: 0; }

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: var(--radius-sm);
  background: var(--color-surface-alt);
}

.gallery-item--lg { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 23, 19, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-overlay i {
  color: var(--color-white);
  font-size: 1.6rem;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--transition), transform var(--transition);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

.gallery-item:hover .gallery-overlay { background: rgba(28, 23, 19, 0.38); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }

/* ── Lightbox ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.93);
  cursor: zoom-out;
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 1200px);
  max-height: 90svh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90svh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  display: block;
  transform: scale(0.88);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.28s ease;
}

.lightbox.is-open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-img.loading { opacity: 0; transform: scale(0.95); }

.lightbox-spinner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.lightbox-spinner.visible { opacity: 1; }

@keyframes spin { to { rotate: 360deg; } }

/* shared button base */
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  z-index: 2;
}

.lightbox-btn:hover { background: rgba(255,255,255,.22); }
.lightbox-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
.lightbox-btn:disabled { opacity: 0.25; pointer-events: none; }

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  translate: 0 -50%;
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  translate: -50% 0;
  color: rgba(255,255,255,.75);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  background: rgba(0,0,0,.45);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}

/* ── Reviews ────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}

.review-stars { color: var(--color-primary); margin-bottom: var(--space-sm); font-size: 0.85rem; }
.review-card p { color: var(--color-text); font-style: italic; margin-bottom: var(--space-sm); }
.review-card footer { font-size: 0.85rem; color: var(--color-muted); font-weight: 500; }

/* ── Contact ────────────────────────────────────────────────────── */
.contact-details {
  margin-block: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-details i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-details strong { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 2px; }
.contact-details a { color: var(--color-primary); }
.contact-details a:hover { text-decoration: underline; }

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
}

.availability-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.availability-badge--open    { background: #e6f4ea; color: #1e7b34; }
.availability-badge--beperkt { background: #fdf2e0; color: #a9622f; }
.availability-badge--vol     { background: #fbe9e7; color: #b3261e; }

/* ── Contact Form ───────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.form-group--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group label span { color: var(--color-primary); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(181,137,74,.15);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #d9534f;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-notice {
  font-size: 0.85rem;
  margin-top: var(--space-xs);
  min-height: 1.2em;
}

.form-notice.success { color: #3a7d44; }
.form-notice.error   { color: #d9534f; }

/* ── Map ────────────────────────────────────────────────────────── */
.map-wrapper {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe { display: block; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-xl);
}

.footer-brand .logo-name { color: var(--color-white); font-size: 1.8rem; }
.footer-brand p { margin-top: var(--space-sm); font-size: 0.9rem; line-height: 1.8; }
.footer-brand a { color: var(--color-primary); }
.footer-brand a:hover { text-decoration: underline; }

.footer-nav h4,
.footer-social h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

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

.social-links { display: flex; gap: var(--space-sm); margin-top: var(--space-xs); }

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--color-primary); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── Prijslijst ─────────────────────────────────────────────────── */
.price-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.price-category {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.price-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-primary-lt);
}

.price-cat-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  flex-shrink: 0;
}

.price-category-header h3 {
  font-size: 1.25rem;
  margin: 0;
  min-width: 0;
  overflow-wrap: break-word;
}

.price-list {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-item {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.price-item:last-child { border-bottom: none; }

.price-name {
  flex-shrink: 0;
  color: var(--color-text);
}

.price-dots {
  flex: 1;
  border-bottom: 2px dotted var(--color-border);
  margin-bottom: 4px;
  min-width: 24px;
}

.price-value {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--color-primary-dk);
  white-space: nowrap;
}

.price-disclaimer {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-disclaimer i { color: var(--color-primary); }

/* ── Scroll Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 0.55s ease var(--reveal-delay, 0ms), translate 0.55s ease var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  translate: 0 0;
}

/* ── Active nav link ────────────────────────────────────────────── */
.nav-link.active {
  color: var(--color-primary) !important;
  font-weight: 500;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .section-split {
    grid-template-columns: 1fr;
  }

  .split-image { order: -1; }

  .image-placeholder { aspect-ratio: 16/9; }

  .image-accent { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --space-xl: 3.5rem; }

  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    inset-block-start: var(--header-h);
    inset-inline: 0;
    background: var(--color-surface);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list { flex-direction: column; align-items: stretch; gap: var(--space-xs); }

  .nav-link { color: var(--color-text); padding: 0.6rem 1rem; }

  .price-categories {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item--lg { grid-row: span 1; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .info-divider { display: none; }

  .info-strip-inner { flex-direction: column; gap: var(--space-sm); }
}

@media (max-width: 480px) {
  .price-item {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .price-name {
    flex-basis: 100%;
  }

  .price-dots {
    display: none;
  }

  .price-value {
    margin-inline-start: auto;
  }
}
