/* =========================================================
   Restaurant De Gezelligheid — style.css
   Modern, minimal, warm. Mobile-first.
   ---------------------------------------------------------
   1. Custom properties / tokens
   2. Reset & base
   3. Typography helpers
   4. Buttons
   5. Ratings (stars)
   6. Layout helpers (container, section, reveal)
   7. Announcement bar
   8. Navigation
   9. Hero
   10. About
   11. Services
   12. Gallery + Lightbox
   13. Testimonials
   14. Hours & Location
   15. Contact
   16. Footer
   17. Back-to-top
   18. Media queries
   19. Print
   ========================================================= */

/* ============ 1. TOKENS ============ */
:root {
  /* Colors */
  --color-ink:      #1a1714;   /* near-black warm charcoal */
  --color-ink-soft: #4a423b;
  --color-cream:    #f7f3ee;   /* off-white background */
  --color-sand:     #efe8df;   /* tint background */
  --color-white:    #ffffff;
  --color-accent:   #c9622e;   /* warm terracotta */
  --color-accent-d: #a94e21;
  --color-gold:     #d9a441;   /* star gold */
  --color-line:     #e2d9cd;

  /* Typography */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing scale (multiples of 8) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px; --sp-12: 96px;

  /* Misc */
  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(26, 23, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(26, 23, 20, 0.16);
  --ease:      0.3s ease;
  --maxw:      1200px;
  --nav-h:     72px;
}

/* ============ 2. RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ============ 3. TYPOGRAPHY ============ */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; margin: 0; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 var(--sp-2);
}
.eyebrow--light { color: var(--color-gold); }

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-ink-soft);
  max-width: 60ch;
}

/* ============ 4. BUTTONS ============ */
.btn {
  --btn-bg: var(--color-accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  min-height: 48px;
  padding: 0 var(--sp-4);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease), border-color var(--ease);
  background: var(--btn-bg);
  color: var(--btn-fg);
}
.btn--primary { background: var(--color-accent); box-shadow: 0 8px 22px rgba(201, 98, 46, 0.28); }
.btn--primary:hover { background: var(--color-accent-d); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201, 98, 46, 0.36); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn--sm { min-height: 44px; padding: 0 var(--sp-3); font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); }

/* ============ 5. RATING STARS ============ */
.rating { display: inline-flex; align-items: center; gap: var(--sp-1); }
.rating__stars {
  --pct: 82%;
  display: inline-block;
  width: 120px; height: 22px;
  background: linear-gradient(90deg, var(--color-gold) var(--pct), rgba(255,255,255,0.28) var(--pct));
  -webkit-mask: repeat-x left center/24px 22px
     url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.1 6.6.8-4.9 4.6 1.3 6.5L12 17.8 6.1 20.6l1.3-6.5L2.5 8.9l6.6-.8z'/></svg>");
          mask: repeat-x left center/24px 22px
     url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.1 6.6.8-4.9 4.6 1.3 6.5L12 17.8 6.1 20.6l1.3-6.5L2.5 8.9l6.6-.8z'/></svg>");
}
.rating__value { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.rating__source { font-size: 0.9rem; opacity: 0.85; }
.rating--footer .rating__stars { width: 100px; height: 18px; }

/* ============ 6. LAYOUT HELPERS ============ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-3); }

.section { padding: var(--sp-10) 0; }
.section--tint { background: var(--color-sand); }
.section--dark { background: var(--color-ink); color: var(--color-cream); }
.section--dark .section__lead { color: #cfc6ba; }
.section--dark .section__title { color: #fff; }

.section__head { max-width: 720px; margin: 0 auto var(--sp-8); text-align: center; }
.section__head .section__lead { margin-inline: auto; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); 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; }
  html { scroll-behavior: auto; }
}

/* ============ 7. ANNOUNCEMENT BAR ============ */
.announcement {
  background: var(--color-ink);
  color: #e9e2d8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 8px var(--sp-3);
  position: relative;
  z-index: 60;
}
.announcement__text { margin: 0; font-size: 0.78rem; letter-spacing: 0.01em; text-align: center; }
.announcement__close {
  position: absolute; right: 12px;
  background: none; border: 0; color: #cabfb1;
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  padding: 4px 8px; border-radius: 6px; transition: color var(--ease);
}
.announcement__close:hover { color: #fff; }
.announcement.is-hidden { display: none; }

/* ============ 8. NAVIGATION ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
  background: transparent;
}
.nav__inner {
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 var(--sp-3);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; }
.nav__brand-mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--color-accent); color: #fff; font-size: 0.95rem; letter-spacing: 0.02em;
}
.nav__brand-text { font-size: 1.1rem; color: #fff; transition: color var(--ease); letter-spacing: -0.01em; }

.nav__links { display: none; align-items: center; gap: var(--sp-1); }
.nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: #fff; padding: 10px 14px; border-radius: 999px;
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover { background: rgba(255,255,255,0.14); }
.nav__cta {
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  background: var(--color-accent); color: #fff;
  padding: 11px 20px; border-radius: 999px; margin-left: var(--sp-1);
  transition: background var(--ease), transform var(--ease);
}
.nav__cta:hover { background: var(--color-accent-d); transform: translateY(-1px); }

/* Scrolled state */
.nav.is-scrolled { background: rgba(247, 243, 238, 0.92); backdrop-filter: blur(10px); box-shadow: 0 2px 18px rgba(26,23,20,0.08); }
.nav.is-scrolled .nav__brand-text { color: var(--color-ink); }
.nav.is-scrolled .nav__link { color: var(--color-ink); }
.nav.is-scrolled .nav__link:hover { background: rgba(26,23,20,0.06); }
.nav.is-scrolled .nav__toggle span { background: var(--color-ink); }

/* Hamburger */
.nav__toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { display: block; height: 2px; width: 24px; background: #fff; border-radius: 2px; transition: transform var(--ease), opacity var(--ease), background var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in panel */
.nav__overlay {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(26,23,20,0.5); opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.nav__overlay.is-open { opacity: 1; pointer-events: auto; }

/* ============ 9. HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: calc(-1 * var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("../images/photo-2.jpg") center/cover no-repeat;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,23,20,0.55) 0%, rgba(26,23,20,0.35) 40%, rgba(26,23,20,0.72) 100%),
    linear-gradient(90deg, rgba(26,23,20,0.55) 0%, rgba(26,23,20,0.1) 60%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: calc(var(--nav-h) + var(--sp-6)) var(--sp-3) var(--sp-8);
  color: #fff;
}
.hero__eyebrow {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.8rem; font-weight: 600;
  color: var(--color-gold); margin: 0 0 var(--sp-2);
}
.hero__title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: -0.03em; margin-bottom: var(--sp-3);
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 46ch; color: #ece5db; margin: 0 0 var(--sp-4);
}
.hero .rating { color: #fff; margin-bottom: var(--sp-5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; width: 40px; height: 40px; display: grid; place-items: center;
}
.hero__scroll-chevron {
  width: 16px; height: 16px; border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg); animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(45deg); opacity: 0.7; } 50% { transform: translateY(7px) rotate(45deg); opacity: 1; } }

/* Reveal delays inside hero */
.hero__title { transition-delay: 0.08s; }
.hero__subtitle { transition-delay: 0.16s; }
.hero .rating { transition-delay: 0.24s; }
.hero__actions { transition-delay: 0.32s; }

/* ============ 10. ABOUT ============ */
.about__grid { display: grid; gap: var(--sp-6); }
.about__text p { color: var(--color-ink-soft); margin: 0 0 var(--sp-2); }
.about__features { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
.about__feature { display: flex; gap: var(--sp-2); align-items: flex-start; }
.about__icon {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--color-sand); color: var(--color-accent);
}
.about__icon svg { width: 26px; height: 26px; }
.about__feature h3 { font-size: 1.05rem; margin-bottom: 2px; }
.about__feature p { margin: 0; font-size: 0.95rem; }

.about__media { position: relative; }
.about__media > img:first-child {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.about__media-inset {
  position: absolute; right: -8px; bottom: -24px;
  width: 52%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); border: 6px solid var(--color-cream);
  box-shadow: var(--shadow);
}

/* ============ 11. SERVICES ============ */
.services__grid { display: grid; gap: var(--sp-3); }
.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: var(--sp-4);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); }
.card__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #f7ede4, #f2e2d4);
  color: var(--color-accent); margin-bottom: var(--sp-3);
}
.card__icon svg { width: 30px; height: 30px; }
.card__title { font-size: 1.25rem; margin-bottom: var(--sp-1); }
.card__text { margin: 0; color: var(--color-ink-soft); font-size: 0.97rem; }

/* ============ 12. GALLERY + LIGHTBOX ============ */
.gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.gallery__item {
  position: relative; padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; background: var(--color-sand);
  aspect-ratio: 1/1;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,23,20,0.35));
  opacity: 0; transition: opacity var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 16/9; }

.lightbox {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,15,13,0.92);
  padding: var(--sp-3);
  opacity: 0; pointer-events: none; transition: opacity var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__figure { margin: 0; max-width: 960px; text-align: center; }
.lightbox__figure img { max-width: 100%; max-height: 78vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__figure figcaption { color: #e9e2d8; margin-top: var(--sp-2); font-size: 0.95rem; }
.lightbox__close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1;
  cursor: pointer; padding: 4px 12px; border-radius: 8px; transition: opacity var(--ease);
}
.lightbox__close:hover { opacity: 0.7; }

/* ============ 13. TESTIMONIALS ============ */
.testimonials__grid { display: grid; gap: var(--sp-3); }
.quote {
  margin: 0; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: var(--sp-4);
}
.quote__stars { width: 110px; height: 20px; margin-bottom: var(--sp-2); }
.quote blockquote { margin: 0 0 var(--sp-3); font-size: 1.05rem; color: #f2ece2; line-height: 1.6; }
.quote figcaption { display: flex; flex-direction: column; }
.quote__name { font-family: var(--font-head); font-weight: 600; color: #fff; }
.quote__meta { font-size: 0.85rem; color: var(--color-gold); }

/* ============ 14. HOURS & LOCATION ============ */
.hours__grid { display: grid; gap: var(--sp-6); }
.hours__list { margin: var(--sp-2) 0 var(--sp-3); border-top: 1px solid var(--color-line); }
.hours__list li {
  display: flex; justify-content: space-between; gap: var(--sp-2);
  padding: 12px 0; border-bottom: 1px solid var(--color-line);
  font-size: 0.98rem;
}
.hours__list span:first-child { font-family: var(--font-head); font-weight: 500; }
.hours__closed { color: var(--color-accent); font-weight: 500; }
.hours__note { font-size: 0.9rem; color: var(--color-ink-soft); }
.hours__address { font-style: normal; margin: var(--sp-2) 0 var(--sp-3); color: var(--color-ink-soft); }
.hours__address a:hover { color: var(--color-accent); text-decoration: underline; }
.hours__map { margin-top: var(--sp-3); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hours__map iframe { display: block; }

/* ============ 15. CONTACT ============ */
.contact__grid { display: grid; gap: var(--sp-6); }
.contact__lead { color: #cfc6ba; max-width: 46ch; }
.contact__details { margin: var(--sp-4) 0; display: grid; gap: var(--sp-2); }
.contact__details li { display: flex; flex-direction: column; }
.contact__label { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); }
.contact__details a { color: #fff; font-size: 1.05rem; }
.contact__details a:hover { color: var(--color-gold); }
.contact__claim {
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius);
  padding: var(--sp-3); background: rgba(255,255,255,0.04); margin-top: var(--sp-4);
}
.contact__claim p { margin: 0 0 var(--sp-2); color: #e6ded3; font-size: 0.95rem; }

.contact__form {
  background: var(--color-cream); color: var(--color-ink);
  border-radius: var(--radius); padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: var(--sp-3); }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 12px 14px; border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm); background: #fff; color: var(--color-ink);
  transition: border-color var(--ease), box-shadow var(--ease); resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201,98,46,0.16);
}
.field__error { display: none; color: var(--color-accent-d); font-size: 0.85rem; margin-top: 5px; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--color-accent-d); }
.field.is-invalid .field__error { display: block; }
.contact__success { margin: var(--sp-2) 0 0; color: #2f7d4f; font-weight: 500; text-align: center; }

/* ============ 16. FOOTER ============ */
.footer { background: #14110f; color: #cabfb1; padding: var(--sp-10) 0 var(--sp-4); }
.footer__grid { display: grid; gap: var(--sp-5); }
.footer__logo { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #fff; display: block; margin-bottom: var(--sp-2); }
.footer__brand p { margin: 0 0 var(--sp-3); font-size: 0.95rem; max-width: 34ch; }
.footer__col h3 { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--sp-2); }
.footer__col li { margin-bottom: 10px; }
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__col address { font-style: normal; font-size: 0.95rem; line-height: 1.7; }
.footer__claim { color: var(--color-gold); font-weight: 600; }
.footer__bar {
  max-width: var(--maxw); margin: var(--sp-8) auto 0; padding: var(--sp-3) var(--sp-3) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  font-size: 0.85rem; text-align: center;
}
.footer__credit strong { color: #fff; }

/* ============ 17. BACK TO TOP ============ */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-accent); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--color-accent-d); }

/* ============ 18. MEDIA QUERIES ============ */

/* Mobile nav panel (below tablet) */
@media (max-width: 899px) {
  .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 0; right: 0; z-index: 55;
    width: min(80vw, 320px); height: 100vh;
    padding: calc(var(--nav-h) + var(--sp-2)) var(--sp-3) var(--sp-3);
    background: var(--color-cream);
    box-shadow: -14px 0 40px rgba(26,23,20,0.2);
    transform: translateX(100%); transition: transform var(--ease);
    gap: 4px;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links .nav__link { color: var(--color-ink); padding: 14px 12px; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .nav__links .nav__link:hover { background: var(--color-sand); }
  .nav__cta { margin: var(--sp-2) 0 0; text-align: center; padding: 14px; }
}

/* Tablet+ */
@media (min-width: 768px) {
  .section { padding: var(--sp-12) 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .hours__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bar { flex-direction: row; justify-content: space-between; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .gallery__item { aspect-ratio: auto; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

/* Desktop+ */
@media (min-width: 900px) {
  .nav__toggle { display: none; }
  .nav__links { display: flex; }
}

@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .about__media { padding-bottom: var(--sp-3); padding-right: var(--sp-3); }
}

/* Wide */
@media (min-width: 1280px) {
  .container { padding: 0 var(--sp-4); }
}

/* ============ 19. PRINT ============ */
@media print {
  .announcement, .nav, .nav__overlay, .to-top, .hero__scroll, .lightbox,
  .contact__form, .hours__map { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; margin-top: 0; }
  .hero__overlay, .hero__bg { position: static; }
  .section--dark { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
