/* ============================================================
   Grandma's Secret — Light classic template
   A warm, editorial, centered layout. Theme tokens live in
   :root. To rebrand a restaurant, edit the variables below
   plus the content in index.html.
   ============================================================ */

:root {
  /* Brand color tokens (edit per restaurant) */
  --bg: #f3ede2;           /* warm bone page */
  --bg-alt: #eae0cf;       /* deeper sand band */
  --surface: #fbf8f2;      /* near-white warm card */
  --ink: #2a221b;          /* espresso text */
  --ink-dim: #5f5347;      /* secondary text */
  --muted: #948773;        /* tertiary / captions */
  --line: rgba(42, 34, 27, 0.14);
  --line-strong: rgba(42, 34, 27, 0.24);

  --accent: #7b2f3b;       /* claret / wine */
  --accent-2: #9a4150;     /* lighter claret */
  --accent-soft: rgba(123, 47, 59, 0.1);
  --accent-ink: #fff;      /* text on accent */
  --partner: #ee7520;      /* UzEats partner badge */

  /* Typography */
  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", system-ui, -apple-system, sans-serif;

  /* Shape & rhythm */
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  --shadow: 0 26px 60px -34px rgba(51, 33, 20, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ------------------------- Layout ------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.section__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .section__sub { margin-inline: auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--accent);
}
.section__head--center .eyebrow::after {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--accent);
}

.section__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  color: var(--ink);
  font-weight: 500;
}

.section__sub {
  margin-top: 1.1rem;
  color: var(--ink-dim);
  font-size: 1.08rem;
  max-width: 40rem;
}

/* ------------------------- Buttons ------------------------- */
.btn {
  --btn-pad-y: 0.9rem;
  --btn-pad-x: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 14px 30px -16px rgba(123, 47, 59, 0.8);
}
.btn--primary:hover { background: #642530; box-shadow: 0 20px 40px -16px rgba(123, 47, 59, 0.9); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ------------------------- Header ------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(243, 237, 226, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(51, 33, 20, 0.6);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
  color: var(--ink);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.nav__list {
  display: flex;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.2s var(--ease);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__list a:hover { color: var(--ink); }
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }
.nav__list a.is-active { color: var(--ink); }

.header__cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(243, 237, 226, 0.98);
  backdrop-filter: blur(14px);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem var(--gutter) 1.5rem;
}
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: block;
  padding: 1rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

/* ------------------------- Hero (centered + banner) ------------------------- */
.hero {
  padding-top: clamp(8rem, 16vw, 12rem);
}
.hero__inner {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.6rem;
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.75rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.04;
  max-width: 15ch;
}
.hero__lede {
  margin: 1.6rem auto 2.4rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink-dim);
  max-width: 40rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

.hero__banner {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  width: 100%;
  height: clamp(20rem, 52vw, 40rem);
  overflow: hidden;
}
.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroReveal 1.4s var(--ease) both;
}

@keyframes heroReveal { from { transform: scale(1.06); } to { transform: scale(1); } }

/* ------------------------- About ------------------------- */
.about__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}
.about__head { max-width: 40rem; margin-inline: auto; text-align: center; }
.about__head .eyebrow { justify-content: center; }
.about__head .eyebrow::after {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--accent);
}
.about__head .section__title { margin-bottom: 1.4rem; }
.about__text { color: var(--ink-dim); font-size: 1.12rem; }

.about__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line-strong);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.about__points li {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}
.about__points strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.3rem;
}
.about__points span { color: var(--muted); font-size: 0.98rem; }

/* ------------------------- Featured (zig-zag editorial) ------------------------- */
.featured { background: var(--bg-alt); }
.feature__list {
  display: grid;
  gap: clamp(3rem, 7vw, 5.5rem);
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.feature:hover .feature__media img { transform: scale(1.04); }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}
.feature__body h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; margin-bottom: 1rem; }
.feature__desc { color: var(--ink-dim); font-size: 1.05rem; margin: 0 0 1.4rem; }
.feature__price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 500;
}

/* ------------------------- Full menu (centered classic) ------------------------- */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2.5rem, 6vw, 5rem);
  row-gap: clamp(2.75rem, 5vw, 4rem);
  align-items: start;
}
.menu__cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  justify-content: center;
}
.menu__category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-body);
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.menu__category-title::before,
.menu__category-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}
.menu__category-title span { color: var(--accent); }

.menu__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.menu-item { padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-item__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.menu-item__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
}
.menu-item__price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--accent);
  white-space: nowrap;
}
.menu-item__desc {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  max-width: 32rem;
}

/* ------------------------- Gallery (uniform grid) ------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}
.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(30, 18, 12, 0.72));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery__caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }
.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption { opacity: 1; transform: none; }

/* ------------------------- Visit ------------------------- */
.visit { background: var(--bg-alt); }
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.visit__block { margin-top: 2rem; }
.visit__block h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 0.9rem; color: var(--ink); }
.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; max-width: 26rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
}
.hours li span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; font-weight: 600; }
address { font-style: normal; color: var(--ink-dim); line-height: 1.7; }
.visit__contact { margin-top: 0.9rem; }
.visit__contact a { color: var(--accent); font-weight: 600; }
.visit__contact a:hover { text-decoration: underline; }

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 400px;
  box-shadow: var(--shadow);
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: sepia(0.15) contrast(1.02);
}

/* ------------------------- Reviews (quote cards) ------------------------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.review {
  position: relative;
  margin: 0;
  padding: 2.75rem 1.9rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1.2rem;
  box-shadow: var(--shadow);
}
.review__mark {
  position: absolute;
  top: 0.6rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}
.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}
.review figcaption {
  display: grid;
  gap: 0.5rem;
  color: var(--ink-dim);
  font-weight: 700;
  font-size: 0.9rem;
}
.review__stars { color: var(--accent); letter-spacing: 0.2em; font-size: 0.9rem; }

/* ------------------------- Contact ------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__intro p { color: var(--ink-dim); font-size: 1.08rem; }
.contact__details {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.contact__details li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.contact__details li span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}
.contact__details a:hover { color: var(--accent); }

.contact__form {
  display: grid;
  gap: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-dim); }
.field .req { color: var(--accent); margin-left: 0.15rem; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.9; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field.has-error input, .field.has-error textarea { border-color: #c0392b; }
.field__error { color: #b23a2c; font-size: 0.8rem; min-height: 1rem; }
.contact__form .btn { justify-self: start; }
.contact__success { margin: 0; color: var(--accent); font-weight: 700; }

/* ------------------------- Footer ------------------------- */
.footer {
  background: var(--ink);
  color: #e7ddce;
  padding-block: clamp(2.75rem, 5vw, 4rem);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.footer__brand .brand__name { font-size: 1.5rem; color: #fff; }
.footer__brand p { margin-top: 0.6rem; color: rgba(231, 221, 206, 0.6); max-width: 22rem; }
.footer__label {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.footer__nav { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.footer__nav a {
  color: rgba(231, 221, 206, 0.75);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__nav a:hover { color: var(--accent-2); }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; color: rgba(231, 221, 206, 0.7); font-size: 0.92rem; }
.footer__contact address { font-style: normal; line-height: 1.6; }
.footer__contact a { color: rgba(231, 221, 206, 0.85); transition: color 0.25s var(--ease); }
.footer__contact a:hover { color: var(--accent-2); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231, 221, 206, 0.18);
  color: rgba(231, 221, 206, 0.55);
  font-size: 0.9rem;
}
.footer__bottom p { margin: 0; }
.powered {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(231, 221, 206, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(231, 221, 206, 0.8);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.powered strong { color: var(--partner); font-weight: 700; }
.powered:hover { border-color: var(--partner); color: #fff; }

/* ------------------------- Lightbox ------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(30, 20, 14, 0.86);
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeIn 0.25s var(--ease) forwards;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.lightbox__close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  width: 48px; height: 48px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.24); }

@keyframes fadeIn { to { opacity: 1; } }

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

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__banner img { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .brand { margin-right: 0; margin-inline: auto; }
  .header__inner { position: relative; }
  .nav-toggle { position: absolute; left: var(--gutter); }

  .about__points { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .about__points li { text-align: center; }

  .feature { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature:nth-child(even) .feature__media { order: -1; }
  .feature__media { order: -1; max-width: 40rem; }

  .visit__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { grid-template-columns: 1fr; }
}
