/* ============================================================
   Ella's Nails — tokens
   ============================================================ */
:root {
  /* colour */
  --wine: #c8364c;
  --wine-dark: #a12a3c;
  --wine-deep: #46121d;
  --wine-deep-2: #350e17;
  --blush: #f7cfd0;
  --blush-soft: #fbe6e7;
  --cream: #fdf8f4;
  --ink: #2a1216;
  --ink-muted: #7a6468;
  --border: #f0dde0;
  --gold: #c9a35a;
  --white: #ffffff;

  /* type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --container-w: 1140px;
  --header-h: 76px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 32px;
  --shadow-card: 0 12px 30px -14px rgba(70, 18, 29, 0.28);
  --shadow-header: 0 8px 24px -16px rgba(70, 18, 29, 0.35);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
svg { display: block; }

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

section, footer { scroll-margin-top: var(--header-h); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--wine);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Typography helpers
   ============================================================ */
h1, h2, .footer-logotype { font-family: var(--font-display); }
h1 { font-weight: 600; }
h2 { font-weight: 600; }
em { font-style: italic; font-weight: 500; color: var(--blush); }
.about-content em, .services em { color: var(--wine); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--blush); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}
.section-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(200, 54, 76, 0.55);
}
.btn-primary:hover { background: var(--wine-dark); }

.btn-accent {
  background: var(--blush);
  color: var(--wine-deep);
  box-shadow: 0 10px 24px -10px rgba(200, 54, 76, 0.35);
}
.btn-accent:hover { background: var(--white); }

.btn-ghost {
  border: 1.5px solid rgba(247, 207, 208, 0.55);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--blush); background: rgba(247, 207, 208, 0.08); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-header); }

/* Achtergrond op een pseudo-element i.p.v. op .site-header zelf: backdrop-filter op de
   header maakt 'm een positioneringscontext voor position:fixed-kinderen (zoals het
   mobiele offcanvas-menu), waardoor dat menu tegen de header aan zou klappen i.p.v.
   het hele scherm te vullen. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(253, 248, 244, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 30px; }
.primary-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 2px;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--wine);
  transition: left .25s var(--ease), right .25s var(--ease);
}
.primary-nav a:hover::after { left: 0; right: 0; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Vine ornament (signature element)
   ============================================================ */
.vine-path {
  fill: none;
  stroke: var(--blush);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.vine-bud { fill: var(--gold); }
.vine-bud--sm { fill: var(--blush); }
.vine-leaf { fill: var(--blush); opacity: 0.85; }

.is-visible .vine-path,
.hero.is-loaded .vine-path { stroke-dashoffset: 0; }

.divider-vine {
  display: block;
  width: 100%;
  height: 40px;
  overflow: visible;
}
.divider-vine .vine-path { stroke: var(--border); stroke-width: 2; }
.divider-vine .vine-bud { fill: var(--wine); }
.divider-vine--dark .vine-path { stroke: rgba(247, 207, 208, 0.35); }
.divider-vine--dark .vine-bud { fill: var(--blush); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 160% at 15% 0%, var(--wine) 0%, var(--wine-deep) 46%, var(--wine-deep-2) 100%);
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(72px, 14vw, 140px) clamp(80px, 12vw, 128px);
}
.hero-vine {
  position: absolute;
  inset: 0;
  width: 45%;
  height: 100%;
  right: 0;
  left: auto;
  opacity: 0.9;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 640px; }

.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(253, 248, 244, 0.82);
  max-width: 46ch;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   About
   ============================================================ */
.about { padding-block: clamp(72px, 10vw, 120px); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.about-portrait { position: relative; justify-self: center; }
.about-portrait__ring {
  width: min(320px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--blush-soft), var(--blush) 70%);
  border: 1.5px dashed var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-portrait__initial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 6rem;
  color: var(--wine-deep);
}
.about-portrait__sprig {
  position: absolute;
  width: 70px;
  height: 70px;
  bottom: -10px;
  right: 4%;
}
.about-portrait__sprig .vine-path { stroke: var(--wine); stroke-width: 2; }
.about-portrait__sprig .vine-bud { fill: var(--gold); }

.about-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.about-content p { color: var(--ink-muted); margin-bottom: 16px; max-width: 56ch; }

.about-highlights {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 0.98rem;
}
.about-highlights svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--wine);
}

/* ============================================================
   Services
   ============================================================ */
.services { padding-block: clamp(72px, 10vw, 120px); background: var(--blush-soft); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(70, 18, 29, 0.4);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blush-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--wine);
}
.service-card__icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--ink-muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
}

.price {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--wine);
}
.price--placeholder {
  color: var(--wine-dark);
  opacity: 0.72;
  border-bottom: 2px dashed var(--wine);
  padding-bottom: 2px;
}

.services-note {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding-block: clamp(72px, 10vw, 120px); }

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

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-s);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 14px),
    linear-gradient(155deg, var(--wine) 0%, var(--blush) 100%);
  transition: transform .4s var(--ease);
}
.gallery-item:nth-child(2n) {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 14px),
    linear-gradient(155deg, var(--wine-deep) 0%, var(--wine) 100%);
}
.gallery-item:nth-child(3n) {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 14px),
    linear-gradient(155deg, var(--blush) 0%, var(--cream) 100%);
}
.gallery-item:hover { transform: scale(1.03); }

.gallery-item span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  background: rgba(70, 18, 29, 0.28);
  padding: 5px 10px;
  border-radius: 999px;
}
.gallery-item:nth-child(3n) span { color: var(--wine-deep); background: rgba(255,255,255,0.55); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--wine-deep-2);
  color: rgba(253, 248, 244, 0.85);
  padding-bottom: 28px;
}
.divider-vine--dark { background: var(--wine-deep-2); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: 20px 48px;
}

.footer-logotype {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-brand p:last-child { color: rgba(253, 248, 244, 0.65); font-size: 0.92rem; }

.footer-heading {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 16px;
}

.footer-contact ul, .footer-hours ul { display: grid; gap: 10px; font-size: 0.95rem; }
.footer-contact a:hover { color: var(--blush); }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; max-width: 220px; }

.footer-social__icons { display: flex; gap: 14px; }
.footer-social__icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 207, 208, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.footer-social__icons a:hover { border-color: var(--blush); transform: translateY(-3px); }
.footer-social__icons svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(247, 207, 208, 0.16);
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(253, 248, 244, 0.55);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: clamp(72px, 10vw, 120px); }

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-m);
  padding: 6px 24px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item:hover { border-color: var(--blush); }
.faq-item[open] { border-color: var(--blush); box-shadow: var(--shadow-card); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--wine), var(--wine)) center / 100% 2px no-repeat,
    linear-gradient(var(--wine), var(--wine)) center / 2px 100% no-repeat;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq-item[open] summary::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background: var(--wine);
}

.faq-item summary:focus-visible { outline: 3px solid var(--wine); outline-offset: 4px; border-radius: 4px; }

.faq-item p {
  color: var(--ink-muted);
  padding-bottom: 20px;
  padding-right: 20px;
  max-width: 60ch;
}

/* ============================================================
   WhatsApp knop (zwevend)
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px -8px rgba(42, 18, 22, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-fab:hover, .whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px -8px rgba(42, 18, 22, 0.48);
}
.whatsapp-fab svg { width: 34px; height: 34px; }

@media (max-width: 639px) {
  .whatsapp-fab { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 30px; height: 30px; }
}

/* ============================================================
   Booking CTA band
   ============================================================ */
.booking-band { padding-block: clamp(64px, 9vw, 100px); }

.booking-card {
  background: linear-gradient(150deg, var(--blush-soft), var(--cream) 70%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 64px) clamp(24px, 6vw, 56px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.booking-card h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 22ch; }
.booking-card p { color: var(--ink-muted); max-width: 46ch; }
.booking-card .btn { margin-top: 8px; }
.booking-card__note { font-size: 0.85rem; }
.booking-card__note a { color: var(--wine); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   Booking popup (cal.com-achtige stijl)
   ============================================================ */
body.booking-open { overflow: hidden; }

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(42, 18, 22, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility 0s linear .25s;
}
.booking-overlay[hidden] { display: none; }
.booking-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s var(--ease);
}

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 36px 30px 30px;
  box-shadow: 0 30px 80px -20px rgba(42, 18, 22, 0.5);
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.booking-overlay.is-open .booking-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.booking-close:hover { background: var(--blush-soft); color: var(--wine); }
.booking-close svg { width: 18px; height: 18px; }

.booking-header { margin-bottom: 24px; padding-right: 30px; }
.booking-header h2 { font-size: 1.6rem; margin-bottom: 8px; }
.booking-sub { color: var(--ink-muted); font-size: 0.92rem; }

.booking-fields { display: grid; gap: 18px; }

.field-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 480px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field { display: grid; gap: 6px; }
.field span { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.field input[type="text"],
.field input[type="date"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 11px 14px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 56px; }

.field--slots { border: 0; padding: 0; margin: 0; }
.field--slots legend { font-size: 0.8rem; font-weight: 700; color: var(--ink); padding: 0; margin-bottom: 8px; }

.slot-group { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-group input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.slot-group label {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.slot-group label:hover { border-color: var(--wine); }
.slot-group input:checked + label { background: var(--wine); border-color: var(--wine); color: var(--white); }
.slot-group input:focus-visible + label { outline: 3px solid var(--wine); outline-offset: 2px; }

.field-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  left: -9999px;
}

.booking-error {
  color: var(--wine-dark);
  background: var(--blush-soft);
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-s);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-submit { width: 100%; justify-content: center; margin-top: 4px; padding: 14px; font-size: 1rem; }
.booking-submit:disabled { opacity: 0.7; cursor: progress; }

.booking-success[hidden],
.booking-fields[hidden] { display: none; }

.booking-success {
  text-align: center;
  padding: 16px 4px 8px;
  display: grid;
  justify-items: center;
  gap: 14px;
}
.booking-success svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--wine);
}
.booking-success p { color: var(--ink-muted); max-width: 34ch; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .vine-path { stroke-dashoffset: 0; transition: none; }
  .btn:hover, .service-card:hover, .gallery-item:hover, .footer-social__icons a:hover, .whatsapp-fab:hover { transform: none; }
  .booking-modal { transition: opacity .15s linear; transform: none; }
  .booking-overlay.is-open .booking-modal { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 899px) {
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    padding: 40px 32px;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; gap: 8px; }
  .primary-nav a {
    display: block;
    font-size: 1.3rem;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }
  .header-inner { gap: 12px; }
  .header-cta {
    margin-left: auto;
    padding: 10px 16px;
    font-size: 0.82rem;
  }
  .nav-toggle { display: flex; width: 36px; height: 36px; }

  .hero-vine { width: 60%; opacity: 0.5; }
}

body.nav-open { overflow: hidden; }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.8fr 1fr; gap: 80px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1140px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
