/* ===========================================================
   LUIDER — DJ / Trouw & Event
   Standalone stylesheet (design + responsive)
   =========================================================== */

:root {
  --bg:        #100F0D;   /* near-black */
  --ink:       #F1EEE7;   /* cream text */
  --yellow:    #F5C518;   /* accent */
  --yellow-hi: #FFD83D;   /* accent hover */
  --cream-bg:  #F1EEE7;   /* light section bg */
  --dark-ink:  #100F0D;   /* text on light bg */
  --maxw:      1280px;
  --pad:       40px;
  --display:   'Archivo', system-ui, sans-serif;
  --body:      'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--bg); }

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

a { color: inherit; }

h1, h2, h3 { font-family: var(--display); margin: 0; }

/* ---------- Animations ---------- */
@keyframes lu-rise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lu-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lu-rise { animation: lu-rise 0.7s ease both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lu-rise { animation: none; }
  .marquee__track { animation: none; }
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  width: 100%;
}
.section { padding-top: 120px; padding-bottom: 120px; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 22px;
}
.eyebrow--dark { color: var(--dark-ink); }

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer; display: inline-block; text-decoration: none;
  font-family: var(--body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 18px 34px; border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--solid    { background: var(--yellow); color: var(--dark-ink); }
.btn--solid:hover    { background: var(--yellow-hi); }
.btn--dark     { background: var(--dark-ink); color: var(--ink); }
.btn--dark:hover     { background: #000; }
.btn--outline  { background: transparent; color: var(--ink); border-color: rgba(241,238,231,0.30); }
.btn--outline:hover  { border-color: var(--ink); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(16,15,13,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(241,238,231,0.10);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; cursor: pointer; }
.brand__name { font-family: var(--display); font-size: 27px; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.brand__dot  { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; transform: translateY(-2px); }

.nav__menu { display: flex; align-items: center; gap: 40px; }
.nav__link {
  position: relative; cursor: pointer; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(241,238,231,0.55); transition: color .2s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--ink); }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px;
  width: 0; background: var(--yellow); transition: width .28s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta {
  cursor: pointer; text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark-ink); background: var(--yellow); padding: 13px 26px;
  transition: background .2s ease;
}
.nav__cta:hover { background: var(--yellow-hi); }

/* hamburger */
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-right: -10px;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease; border-radius: 2px;
}
.nav__toggle span + span { margin-top: 6px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 94vh; display: flex; align-items: flex-end; overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.38;
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,15,13,0.45) 0%, rgba(16,15,13,0.30) 35%, rgba(16,15,13,0.95) 100%);
}
.hero__content { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) 80px; width: 100%; }
.tagrow { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.tagrow__bar { width: 34px; height: 2px; background: var(--yellow); }
.tagrow__txt { font-size: 12px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--yellow); }
.hero__title {
  font-weight: 900; font-size: clamp(60px, 11vw, 168px); line-height: 0.86;
  letter-spacing: -0.035em; text-transform: uppercase;
}
.hero__title .accent { color: var(--yellow); }
.hero__row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 32px; margin-top: 40px;
}
.hero__lede { font-size: 19px; line-height: 1.6; color: rgba(241,238,231,0.72); max-width: 460px; margin: 0; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--yellow); color: var(--dark-ink); padding: 22px 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; animation: lu-marquee 28s linear infinite; }
.marquee__track span {
  font-family: var(--display); font-weight: 800; font-size: 24px;
  letter-spacing: 0.02em; text-transform: uppercase;
}

/* =========================================================
   INTRO
   ========================================================= */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro__title { font-weight: 800; font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -0.025em; text-transform: uppercase; }
.intro__p1 { font-size: 20px; line-height: 1.65; color: rgba(241,238,231,0.80); margin: 0 0 24px; }
.intro__p2 { font-size: 17px; line-height: 1.7; color: rgba(241,238,231,0.58); margin: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 90px; border-top: 1px solid rgba(241,238,231,0.14); }
.stat { padding: 38px 36px 0; border-right: 1px solid rgba(241,238,231,0.14); }
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; border-right: 0; }
.stat__n { font-family: var(--display); font-weight: 900; font-size: 56px; letter-spacing: -0.03em; color: var(--yellow); }
.stat__l { font-size: 14px; color: rgba(241,238,231,0.62); margin-top: 6px; }

/* =========================================================
   SERVICES (home) — light section
   ========================================================= */
.panel-light { background: var(--cream-bg); color: var(--dark-ink); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 64px; }
.sec-head__title { font-weight: 800; font-size: clamp(34px, 4.6vw, 64px); line-height: 0.98; letter-spacing: -0.025em; text-transform: uppercase; }
.linkline {
  cursor: pointer; text-decoration: none; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark-ink);
  border-bottom: 2px solid var(--dark-ink); padding-bottom: 4px; white-space: nowrap;
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  border: 1px solid rgba(16,15,13,0.16); padding: 40px 34px; background: #fff;
  min-height: 340px; display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--dark-ink); }
.card__num {
  font-family: var(--display); font-weight: 900; font-size: 13px; color: var(--dark-ink);
  background: var(--yellow); letter-spacing: 0.06em; display: inline-block; padding: 5px 11px; align-self: flex-start;
}
.card__title { font-weight: 800; font-size: 27px; line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; margin: 22px 0 16px; }
.card__body { font-size: 16px; line-height: 1.65; color: rgba(16,15,13,0.66); margin: 0; }
.card__tag { font-size: 13px; font-weight: 600; color: var(--dark-ink); margin-top: 28px; letter-spacing: 0.02em; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px;
}
.gallery__cell {
  position: relative; overflow: hidden; background: #1b1916;
  border: 1px solid rgba(241,238,231,0.10);
}
.gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery__cell:hover img { transform: scale(1.05); }
.gallery__cell.tall { grid-row: span 2; }
.gallery__cell.wide { grid-column: span 2; }
.gallery__ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  font-size: 13px; letter-spacing: 0.06em; color: rgba(241,238,231,0.38);
  background:
    repeating-linear-gradient(45deg, rgba(245,197,24,0.05) 0 12px, transparent 12px 24px),
    #16140f;
}

/* =========================================================
   MIXES
   ========================================================= */
.bordered-y { border-top: 1px solid rgba(241,238,231,0.12); border-bottom: 1px solid rgba(241,238,231,0.12); }
.mixes { display: flex; flex-direction: column; }
.mix {
  cursor: pointer; text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 56px 1fr auto auto; align-items: center; gap: 28px;
  padding: 26px 8px; border-top: 1px solid rgba(241,238,231,0.12); transition: background .2s ease;
}
.mix:hover { background: rgba(241,238,231,0.03); }
.mix:last-of-type { border-bottom: 1px solid rgba(241,238,231,0.12); }
.mix__play {
  width: 48px; height: 48px; border: 1px solid rgba(241,238,231,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 13px;
}
.mix__title { font-family: var(--display); font-weight: 800; font-size: clamp(22px, 2.6vw, 34px); letter-spacing: -0.02em; text-transform: uppercase; }
.mix__genre { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(241,238,231,0.5); }
.mix__len   { font-size: 15px; font-variant-numeric: tabular-nums; color: rgba(241,238,231,0.5); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { border: 1px solid rgba(241,238,231,0.14); padding: 36px 32px; display: flex; flex-direction: column; }
.review__stars { color: var(--yellow); font-size: 15px; letter-spacing: 0.3em; margin-bottom: 22px; }
.review__quote { font-size: 17px; line-height: 1.6; color: rgba(241,238,231,0.86); margin: 0; flex: 1; }
.review__name { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 28px; color: rgba(241,238,231,0.6); }

/* =========================================================
   CTA band
   ========================================================= */
.cta { background: var(--yellow); color: var(--dark-ink); }
.cta__inner { max-width: var(--maxw); margin: 0 auto; padding: 110px var(--pad); text-align: center; }
.cta__title { font-weight: 900; font-size: clamp(44px, 7vw, 110px); line-height: 0.9; letter-spacing: -0.035em; text-transform: uppercase; }
.cta__p { font-size: 19px; line-height: 1.6; max-width: 480px; margin: 30px auto 40px; color: rgba(16,15,13,0.78); }

.cta-split {
  max-width: var(--maxw); margin: 0 auto; padding: 100px var(--pad);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px;
}
.cta-split h2 { font-weight: 900; font-size: clamp(34px, 4.6vw, 72px); line-height: 0.9; letter-spacing: -0.03em; text-transform: uppercase; }

/* =========================================================
   PAGE HEADERS (sub-pages)
   ========================================================= */
.pagehead { padding: 90px var(--pad) 40px; max-width: var(--maxw); margin: 0 auto; }
.pagehead__title { font-weight: 900; font-size: clamp(48px, 8vw, 128px); line-height: 0.88; letter-spacing: -0.035em; text-transform: uppercase; }
.pagehead__title .accent { color: var(--yellow); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; }
.about__photo { width: 100%; height: 540px; }
.about__lead { font-size: 22px; line-height: 1.55; color: rgba(241,238,231,0.9); margin: 0 0 26px; }
.about__p { font-size: 17px; line-height: 1.75; color: rgba(241,238,231,0.66); margin: 0 0 22px; }
.about__p:last-child { margin-bottom: 0; }
.about__p strong { color: var(--ink); font-weight: 600; }

.djs__title { font-weight: 800; font-size: clamp(32px, 4.6vw, 64px); letter-spacing: -0.03em; text-transform: uppercase; margin: 0 0 64px; line-height: 0.96; }
.dj { display: grid; gap: 56px; align-items: start; }
.dj--a { grid-template-columns: 0.8fr 1.2fr; padding-bottom: 64px; margin-bottom: 64px; border-bottom: 1px solid rgba(16,15,13,0.16); }
.dj--b { grid-template-columns: 1.2fr 0.8fr; }
.dj__photo { width: 100%; height: 420px; }
.dj__badge {
  font-family: var(--display); font-weight: 900; font-size: 13px; color: var(--dark-ink);
  background: var(--yellow); letter-spacing: 0.06em; display: inline-block; padding: 5px 11px; text-transform: uppercase;
}
.dj__name { font-weight: 800; font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -0.025em; text-transform: uppercase; margin: 20px 0 18px; line-height: 1; }
.dj__p { font-size: 17px; line-height: 1.7; color: rgba(16,15,13,0.72); margin: 0 0 18px; }
.dj__p:last-child { margin-bottom: 0; }

/* ---------- Services full ---------- */
.svc-row {
  display: grid; grid-template-columns: 120px 1.3fr 1fr; gap: 50px; align-items: start;
  padding: 56px 0; border-top: 1px solid rgba(241,238,231,0.14);
}
.svc-row__num { font-family: var(--display); font-weight: 900; font-size: 56px; color: var(--yellow); letter-spacing: -0.03em; line-height: 0.9; }
.svc-row__title { font-weight: 800; font-size: clamp(30px, 3.4vw, 46px); letter-spacing: -0.025em; text-transform: uppercase; margin: 0 0 18px; line-height: 1; }
.svc-row__body { font-size: 18px; line-height: 1.65; color: rgba(241,238,231,0.7); margin: 0; }
.svc-row__inc-h { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,238,231,0.45); margin-bottom: 16px; }
.svc-row__item {
  display: flex; align-items: center; gap: 12px; padding: 9px 0;
  border-bottom: 1px solid rgba(241,238,231,0.08); font-size: 15px; color: rgba(241,238,231,0.82);
}
.svc-row__item span { color: var(--yellow); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 70px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field > span { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241,238,231,0.55); }
.field input, .field select, .field textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(241,238,231,0.25);
  padding: 12px 0; font-family: inherit; font-size: 18px; color: var(--ink); outline: none;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--yellow); }
.field select { background: var(--bg); }
.field select option { background: var(--bg); color: var(--ink); }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(241,238,231,0.30); }
/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__submit {
  cursor: pointer; align-self: flex-start; font-size: 14px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dark-ink); background: var(--yellow); border: none;
  padding: 19px 44px; font-family: inherit; margin-top: 12px; transition: background .2s ease;
}
.form__submit:hover { background: var(--yellow-hi); }
.form__submit:disabled { opacity: 0.6; cursor: progress; }
.form__error { color: #ff6b6b; font-size: 15px; margin: 0; min-height: 1px; }

.thanks { border: 1px solid var(--yellow); padding: 70px 50px; }
.thanks__h { font-family: var(--display); font-weight: 900; font-size: 42px; letter-spacing: -0.02em; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.thanks__p { font-size: 18px; line-height: 1.6; color: rgba(241,238,231,0.78); margin: 0; }

.contact__aside { border-left: 1px solid rgba(241,238,231,0.14); padding-left: 50px; }
.contact__block { margin-bottom: 40px; }
.contact__block:last-child { margin-bottom: 0; }
.contact__label { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,238,231,0.45); margin-bottom: 12px; }
.contact__email { font-family: var(--display); font-weight: 800; font-size: 24px; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.contact__email:hover { color: var(--yellow); }
.contact__link { font-size: 17px; color: rgba(241,238,231,0.8); text-decoration: none; border-bottom: 1px solid var(--yellow); padding-bottom: 2px; }
.contact__p { font-size: 17px; color: rgba(241,238,231,0.8); margin: 0; line-height: 1.5; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid rgba(241,238,231,0.12); background: var(--bg); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 70px var(--pad) 40px; }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer__brand { display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px; }
.footer__brand span:first-child { font-family: var(--display); font-size: 30px; font-weight: 900; letter-spacing: -0.02em; }
.footer__dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; }
.footer__tag { font-size: 15px; color: rgba(241,238,231,0.5); margin: 0; max-width: 280px; line-height: 1.5; }
.footer__cols { display: flex; gap: 50px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 14px; color: rgba(241,238,231,0.7); text-decoration: none; cursor: pointer; transition: color .2s ease; }
.footer__col a:hover { color: var(--ink); }
.footer__bar { margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(241,238,231,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bar span { font-size: 13px; color: rgba(241,238,231,0.4); }

/* =========================================================
   PAGE SWITCHING
   ========================================================= */
.page { display: none; }
.page.is-active { display: block; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .intro__grid { gap: 50px; }
  .about__grid { gap: 44px; }
  .dj--a, .dj--b { grid-template-columns: 1fr; gap: 32px; }
  .dj__photo { height: 360px; }
  .svc-row { grid-template-columns: 80px 1fr; }
  .svc-row > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --pad: 24px; }
  .section { padding-top: 80px; padding-bottom: 80px; }

  /* mobile nav */
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 80px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(16,15,13,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(241,238,231,0.10);
    padding: 8px var(--pad) 28px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.is-open .nav__menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { width: 100%; padding: 18px 0; font-size: 16px; border-bottom: 1px solid rgba(241,238,231,0.08); }
  .nav__link::after { display: none; }
  .nav__cta { width: 100%; text-align: center; margin-top: 18px; padding: 16px; }

  .intro__grid { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(241,238,231,0.14); }
  .stat:last-child { border-bottom: 0; }

  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }

  .reviews { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { height: 380px; }

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

  .mix { grid-template-columns: 40px 1fr; row-gap: 4px; }
  .mix__genre { grid-column: 2; }
  .mix__len { grid-column: 2; }

  .svc-row { grid-template-columns: 1fr; gap: 20px; }
  .svc-row__num { font-size: 40px; }

  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__aside { border-left: 0; border-top: 1px solid rgba(241,238,231,0.14); padding-left: 0; padding-top: 40px; }
  .thanks { padding: 44px 28px; }

  .hero { min-height: 86vh; }
  .hero__row { gap: 24px; }
  .hero__btns .btn { padding: 16px 24px; }

  .footer__top { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__btns { width: 100%; }
  .hero__btns .btn { flex: 1; text-align: center; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__cell.wide { grid-column: auto; }
}
