/* ============================================================
   Maeve Event Styling — redesign stylesheet
   Palette: aubergine (logo), warm cream, brushed gold, charcoal
   Type:    Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --plum: #6c1548;
  --plum-deep: #4a0e32;
  --plum-soft: #f4e6ee;
  --cream: #faf6f1;
  --sand: #f1e9df;
  --sand-deep: #e4d8c9;
  --gold: #c4a265;
  --gold-deep: #a8853f;
  --coral: #e8663d;
  --ink: #26180a;
  --muted: #6e625b;
  --line: rgba(38, 24, 10, 0.12);
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Montserrat", system-ui, sans-serif;

  --radius: 6px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px -20px rgba(38, 24, 10, 0.35);
  --max: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
em.accent { font-style: italic; color: var(--plum); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .lead { margin-inline: auto; }

.wrap {
  width: min(var(--max), 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.section { padding-block: clamp(72px, 10vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--sand { background: var(--sand); }
.section--plum { background: var(--plum); color: var(--cream); }
.section--plum h2, .section--plum h3, .section--plum .eyebrow { color: var(--cream); }
.section--plum .lead { color: rgba(250, 246, 241, 0.8); }
.section--plum .eyebrow::before { background: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid var(--plum);
  background: var(--plum);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--plum-deep); border-color: var(--plum-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(108, 21, 72, 0.6); }
.btn--ghost { background: transparent; color: var(--plum); }
.btn--ghost:hover { background: var(--plum); color: var(--cream); }
.btn--light { background: var(--cream); border-color: var(--cream); color: var(--plum); }
.btn--light:hover { background: var(--white); border-color: var(--white); }
.btn--outline-light { background: transparent; border-color: rgba(250, 246, 241, 0.6); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--plum); border-color: var(--cream); }
.btn--whatsapp { background: #128c4a; border-color: #128c4a; color: #fff; }
.btn--whatsapp:hover { background: #0f7a40; border-color: #0f7a40; }
.btn svg { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--plum);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.link-arrow:hover { border-color: var(--plum); gap: 12px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--plum);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px var(--gutter);
}
.topbar strong { font-weight: 500; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.logo img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav a {
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--plum); border-color: var(--gold); }
.header .btn { padding: 12px 22px; font-size: 0.78rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; content: "";
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(38, 24, 10, 0.15) 0%, rgba(38, 24, 10, 0) 30%),
    linear-gradient(0deg, rgba(74, 14, 50, 0.92) 0%, rgba(74, 14, 50, 0.55) 40%, rgba(74, 14, 50, 0.1) 75%);
}
.hero__content { padding-block: clamp(64px, 9vw, 120px) clamp(56px, 7vw, 96px); max-width: 780px; }
.hero .eyebrow { color: var(--cream); text-shadow: 0 1px 12px rgba(38,24,10,.6); }
.hero h1, .hero p { text-shadow: 0 2px 24px rgba(38,24,10,.35); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: var(--cream); margin-bottom: 0.4em; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.15rem; max-width: 52ch; color: rgba(250, 246, 241, 0.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note {
  position: absolute; right: var(--gutter); bottom: 32px;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(250, 246, 241, 0.7);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Page hero (subpages) */
.page-hero {
  padding-block: clamp(64px, 9vw, 110px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 0.3em; }
.page-hero .lead { font-size: 1.2rem; }
.page-hero--split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.page-hero--split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--sand);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--plum);
}
.marquee__track span::after { content: "✦"; margin-left: 48px; color: var(--gold); font-style: normal; font-size: 0.8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Intro split ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__media--square img { aspect-ratio: 1; }
.split__badge {
  position: absolute; left: -18px; bottom: 36px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--plum);
  line-height: 1.2;
  max-width: 220px;
}
.split__badge small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 16px; height: 1px; background: var(--gold);
}

/* ---------- Service cards ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.service__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.service__body h3 { margin-bottom: 0.4em; }
.service__body p { color: var(--muted); flex: 1; }
.service__num {
  position: absolute; top: 18px; left: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 246, 241, 0.92);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: grid; place-items: center;
}

/* ---------- Theme grid ---------- */
.themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.theme {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: var(--cream);
  isolation: isolate;
}
.theme img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; z-index: -2; }
.theme::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(38, 24, 10, 0.85) 0%, rgba(38, 24, 10, 0.05) 55%); }
.theme:hover img { transform: scale(1.05); }
.theme__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; }
.theme__body h3 { color: var(--cream); margin-bottom: 4px; }
.theme__body p { font-size: 0.92rem; margin: 0; color: rgba(250, 246, 241, 0.8); }
.theme__tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(250, 246, 241, 0.9); color: var(--plum);
}
.theme--custom {
  background: var(--plum);
  display: grid; place-items: center; text-align: center; padding: 32px;
}
.theme--custom::after { display: none; }
.theme--custom h3 { color: var(--cream); }
.theme--custom p { color: rgba(250, 246, 241, 0.8); }
.theme--custom .sun { width: 84px; opacity: 0.9; margin-bottom: 16px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--gold); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.35rem; }
.step p { color: var(--muted); font-size: 0.98rem; }
.section--plum .step p { color: rgba(250, 246, 241, 0.78); }
.section--plum .step { border-color: rgba(196, 162, 101, 0.6); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ---------- Quote / testimonial ---------- */
.quote {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.quote blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--plum);
}
.quote cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.review .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.review p { font-size: 1rem; color: var(--ink); }
.review footer { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Instagram strip ---------- */
.insta { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.insta img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta a:hover img { transform: scale(1.06); }
.insta a::after { content: ""; position: absolute; inset: 0; background: rgba(108, 21, 72, 0); transition: background 0.3s ease; }
.insta a:hover::after { background: rgba(108, 21, 72, 0.25); }

/* ---------- Price list ---------- */
.price-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px; }
.price-group h3 { font-size: 1.45rem; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--gold); display: flex; justify-content: space-between; align-items: baseline; }
.price-group h3 small { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.98rem; }
.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: var(--ink); }
.price-row span:last-child { color: var(--plum); font-weight: 500; white-space: nowrap; }
.price-row .var { color: var(--muted); font-size: 0.85rem; }
.rental-visual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.rental-visual figure { margin: 0; }
.rental-visual img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg); background: var(--white); }
.rental-visual figcaption { margin-top: 10px; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.notice {
  background: var(--plum-soft);
  border-left: 3px solid var(--plum);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.98rem;
  color: var(--ink);
}

/* ---------- Print / drukwerk list ---------- */
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.feature h3 { font-size: 1.35rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.feature .glyph { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; transition: transform 0.3s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 22px; margin: 0; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--plum);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(250, 246, 241, 0.82); max-width: 50ch; }
.cta-band .sunburst {
  position: absolute; right: -80px; top: -120px; width: 480px; opacity: 0.12; pointer-events: none;
}
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (min-width: 900px) { .cta-band__actions { align-items: flex-end; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 88px); }
.contact-card { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-card:first-of-type { border-top: 1px solid var(--line); }
.contact-card .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--plum-soft); color: var(--plum); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .icon svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.contact-card a { color: var(--plum); font-weight: 400; }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(108, 21, 72, 0.12); }
.form textarea { min-height: 140px; resize: vertical; }
.form .fine { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--plum-deep);
  color: rgba(250, 246, 241, 0.8);
  padding: clamp(56px, 7vw, 88px) 0 32px;
  font-size: 0.95rem;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer__brand img { height: 74px; margin-bottom: 18px; }
.footer__brand p { max-width: 36ch; }
.footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(250, 246, 241, 0.15);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.8rem;
  color: rgba(250, 246, 241, 0.55);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(250, 246, 241, 0.25);
  display: grid; place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.socials a:hover { background: var(--plum); border-color: var(--plum); color: var(--cream); }
.socials svg { width: 16px; height: 16px; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #128c4a; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services, .themes, .reviews, .feature-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .insta { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 860px) {
  .nav, .header .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .header.is-open .nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 20px var(--gutter) 28px;
  }
  .header.is-open .nav a { font-size: 1.05rem; padding: 10px 0; }
  .split, .split--reverse, .page-hero--split, .contact-grid, .cta-band, .price-groups { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .split__badge { left: 12px; }
  .hero__note { display: none; }
  .form { grid-template-columns: 1fr; }
  .rental-visual { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cta-band .sunburst { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services, .themes, .reviews, .feature-list, .steps { grid-template-columns: 1fr; }
  .insta { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; }
  .logo img { height: 48px; }
  .header__inner { height: 72px; }
}
