/* ============================================================
   MIZU Sushi Ristorante — "鎏金夜色" (Gilded Night)
   Black high-gloss mirror ground · gilt gold calligraphy logo ·
   emerald velvet as the breathing accent.
   ============================================================ */

:root {
  --ink: #0a0a0c;
  --ink-soft: #141417;
  --ink-glass: rgba(255, 255, 255, 0.04);
  --gilt: #c79d73;
  --gilt-bright: #c79d73;
  --gilt-line: rgba(200, 167, 106, 0.35);
  --gilt-faint: rgba(200, 167, 106, 0.14);
  --emerald: #12594a;
  --emerald-bright: #1d7a63;
  --ivory: #f3ede3;
  --ivory-mid: rgba(243, 237, 227, 0.78);
  --ivory-dim: rgba(243, 237, 227, 0.55);

  --font-display: "Marcellus", "Times New Roman", serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --space: clamp(1rem, 2vw, 1.5rem);
  --radius: 14px;
  --hairline: 1px solid var(--gilt-line);

  /* Custom easings — strong ease-out for UI, in-out for on-screen movement */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-btn: 160ms;
  --dur-hover: 220ms;
  --dur-reveal: 700ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gilt); color: var(--ink);
  padding: 0.6rem 1rem; font-weight: 600; z-index: 200;
}
.skip:focus { left: 0; }

.model-badge {
  position: fixed;
  top: 0; left: 0;
  z-index: 150;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gilt-bright);
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid var(--gilt-faint);
  border-top: 0; border-left: 0;
  border-radius: 0 0 8px 0;
  padding: 0.28rem 0.7rem 0.32rem 0.6rem;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: background var(--dur-hover) var(--ease-out),
              color var(--dur-hover) var(--ease-out),
              transform var(--dur-btn) var(--ease-out),
              box-shadow var(--dur-hover) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(120deg, var(--gilt) 0%, var(--gilt-bright) 55%, var(--gilt) 100%);
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(200, 167, 106, 0.55);
}

.btn-ghost {
  border: 1px solid var(--gilt-line);
  color: var(--ivory);
  background: transparent;
}

.btn-ivory {
  background: var(--ivory);
  color: var(--emerald);
}

/* Hover states only for precise pointers — touch devices never hover */
@media (hover: hover) and (pointer: fine) {
  .btn-gold:hover {
    box-shadow: 0 16px 38px -12px rgba(230, 200, 132, 0.7);
    transform: translateY(-2px);
  }
  .btn-ghost:hover { border-color: var(--gilt); color: var(--gilt-bright); background: var(--ink-glass); }
  .btn-ivory:hover { background: #fff; transform: translateY(-2px); }
}

/* ---------- Section scaffolding ---------- */
.sec-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.sec-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 1.1rem;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.sec-sub {
  margin-top: 1rem;
  color: var(--ivory-mid);
  font-size: 1.05rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(10, 10, 12, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--gilt-faint);
}

.head-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { height: 78px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.75rem; }
.nav-list { display: flex; gap: 1.5rem; margin-inline-end: 1.75rem; }
.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ivory-mid);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-hover) var(--ease-out);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gilt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-hover) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav-list a:hover { color: var(--ivory); }
  .nav-list a:hover::after { transform: scaleX(1); }
}

.head-cta { padding: 0.6rem 1.25rem; font-size: 0.86rem; }

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 30px; height: 30px;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--dur-btn) var(--ease-out);
}
.nav-toggle:active { transform: scale(0.92); }
.nav-toggle span {
  position: absolute; left: 3px; right: 3px;
  height: 2px;
  background: var(--gilt);
  transition: transform var(--dur-hover) var(--ease-out), top var(--dur-hover) var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 14px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10, 10, 12, 0.97);
  border-bottom: 1px solid var(--gilt-faint);
  padding: 5rem 2rem 1.5rem;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    clip-path 320ms var(--ease-in-out),
    opacity 220ms var(--ease-out),
    transform 320ms var(--ease-in-out),
    visibility 0s linear 320ms;
}
.mobile-menu.open {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    clip-path 260ms var(--ease-in-out),
    opacity 160ms var(--ease-out),
    transform 260ms var(--ease-in-out),
    visibility 0s;
}
.mobile-menu .nav-list { flex-direction: column; gap: 0.2rem; margin-bottom: 1.2rem; margin-inline-end: 0; }
.mobile-menu .nav-list a { display: block; padding: 0.7rem 0; font-size: 1.05rem; }
.mobile-menu .btn { width: 100%; text-align: center; }
.mobile-menu .btn + .btn { margin-top: 0.7rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 14s linear forwards;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(78, 154, 119, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(12, 11, 9, 0.35) 0%, rgba(12, 11, 9, 0.6) 50%, rgba(12, 11, 9, 0.85) 100%);
  pointer-events: none;
}

.hero-ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
}
.ripple-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 167, 106, 0.08);
  border-radius: 50%;
  animation: ripple 7s linear infinite;
}
.ripple-ring.r2 {
  animation-delay: -3.5s;
}

.enso.hero-enso {
  position: absolute;
  width: min(420px, 72vw);
  height: min(420px, 72vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(200, 167, 106, 0.10);
  pointer-events: none;
}
.enso path {
  stroke: currentColor;
  stroke-width: 0.5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  fill: none;
  animation: draw 2.6s var(--ease-in-out) 0.2s forwards;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gilt);
}

.hero-logo {
  margin: 28px auto 0;
  max-width: min(340px, 68vw);
}
.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.55));
}

.hero-title {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero-title em {
  font-style: normal;
  color: var(--gilt-bright);
}

.hero-sub {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ivory-mid);
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gilt);
  opacity: 0.48;
  animation: pulse 2.4s ease-in-out infinite;
}

/* Hero animations */
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes ripple {
  0%   { transform: scale(0.2); opacity: 0.5; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pulse { 0%,100% { opacity: 0.48; } 50% { opacity: 0.7; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Hero stagger entrance */
.hero-eyebrow,
.hero-logo,
.hero-title,
.hero-sub,
.hero-cta {
  opacity: 0;
  animation: rise 0.9s var(--ease-out) forwards;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero-logo    { animation-delay: 0.2s; }
.hero-title   { animation-delay: 0.35s; }
.hero-sub     { animation-delay: 0.5s; }
.hero-cta     { animation-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .ripple-ring, .enso path { animation: none; }
  .hero-bg { transform: none; }
  .hero-eyebrow, .hero-logo, .hero-title, .hero-sub, .hero-cta {
    opacity: 1; animation: none;
  }
  .hero-scroll { animation: none; }
}

/* ============================================================
   INTRO / ACQUA
   ============================================================ */
.intro {
  padding: clamp(5rem, 10vw, 8rem) 1.5rem;
  border-top: 1px solid var(--gilt-faint);
  text-align: center;
}
.intro-inner { max-width: 640px; margin: 0 auto; }

.seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border: 1px solid var(--gilt-line);
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.7rem;
  color: var(--gilt);
  margin-bottom: 1.8rem;
}

.intro-en {
  font-size: 0.86rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 1rem;
}
.intro-en em { font-style: normal; }

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}

.intro-body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ivory-mid);
}

/* ============================================================
   MENU / PREZZI
   ============================================================ */
.menu {
  padding: clamp(5rem, 10vw, 8rem) 1.5rem 6rem;
  border-top: 1px solid var(--gilt-faint);
}
.menu-inner { max-width: 980px; margin: 0 auto; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.price-card {
  position: relative;
  min-width: 0;
  background: linear-gradient(180deg, #101014 0%, #0d0d10 100%);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem 1.5rem;
  text-align: center;
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out),
              border-color var(--dur-hover) var(--ease-out),
              box-shadow var(--dur-hover) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .price-card:hover {
    border-color: var(--gilt);
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -24px rgba(200, 167, 106, 0.35);
    transition-delay: 0s;
    transition-duration: var(--dur-reveal), var(--dur-hover), var(--dur-hover), var(--dur-hover);
  }
}

.pc-featured {
  background: linear-gradient(180deg, #101014 0%, #0d0d10 100%);
}

.pc-when {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ivory);
}
.pc-day {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 1.1rem;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gilt-bright);
  letter-spacing: -0.01em;
}
.pc-note {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  margin-top: 0.5rem;
}
.pc-child {
  margin-top: 1.2rem;
  font-size: 1.7rem;
}

.menu-extra {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ivory-mid);
}
.menu-extra strong { color: var(--ivory); font-weight: 600; }

.menu-takeaway {
  margin-top: 2.4rem;
  text-align: center;
}
.menu-takeaway .btn { padding-inline: 2.4rem; }
.menu-takeaway-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--ivory-dim);
}

.dish-row {
  margin: 2.6rem auto 0;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.4rem;
  justify-content: center;
}
.dish-row li {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-mid);
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--gilt-faint);
  border-radius: 999px;
}

.menu-card {
  margin: 3.4rem auto 0;
  width: min(320px, 80%);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--hairline);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   GALLERIA
   ============================================================ */
.gallery {
  padding: clamp(5rem, 10vw, 8rem) 1.5rem 6rem;
  border-top: 1px solid var(--gilt-faint);
}

.gal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.9rem;
  max-width: 1180px;
  margin: 0 auto;
}
.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 167, 106, 0.12);
  background: var(--ink-soft);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-in-out), opacity 400ms var(--ease-out);
  opacity: 0.92;
}
@media (hover: hover) and (pointer: fine) {
  .gal-item:hover img { transform: scale(1.06); opacity: 1; }
}

/* ============================================================
   FAMIGLIE
   ============================================================ */
.famiglie {
  padding: clamp(5rem, 10vw, 8rem) 1.5rem;
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(29, 122, 99, 0.28) 0%, transparent 60%),
    linear-gradient(180deg, var(--emerald) 0%, #0c4034 100%);
  border-top: 1px solid var(--gilt-faint);
}
.fam-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fam-copy .sec-title { color: #f8f4ec; }
.fam-copy .sec-label { color: var(--gilt-bright); }

.fam-body {
  margin-top: 1.2rem;
  color: rgba(248, 244, 236, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
}

.fam-list {
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.fam-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(248, 244, 236, 0.92);
  font-size: 0.98rem;
}
.fam-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gilt-bright);
  font-size: 0.7rem;
  top: 0.35em;
}

.fam-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fam-imgs-single { grid-template-columns: 1fr; }
.fam-imgs-single img:first-child { transform: none; }
.fam-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 167, 106, 0.18);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.fam-imgs img:first-child { transform: translateY(1.2rem); }
.seguici .fam-imgs img { object-fit: contain; height: auto; }
.seguici .fam-imgs img:first-child { transform: none; }

.fam-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================================
   SEGUICI — follow us block
   ============================================================ */
.seguici {
  padding: clamp(5rem, 10vw, 8rem) 1.5rem;
  border-top: 1px solid var(--gilt-faint);
  background:
    radial-gradient(90% 70% at 20% 0%, rgba(200, 167, 106, 0.08) 0%, transparent 60%),
    var(--ink);
}

/* ============================================================
   CONTATTI
   ============================================================ */
.contatti {
  padding: clamp(5rem, 10vw, 8rem) 1.5rem 6rem;
  border-top: 1px solid var(--gilt-faint);
  background: radial-gradient(100% 80% at 50% 100%, rgba(200, 167, 106, 0.07) 0%, transparent 60%);
}
.contatti-inner { max-width: 980px; margin: 0 auto; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.info-block {
  border-left: 1px solid var(--gilt-faint);
  padding-left: 1.6rem;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gilt);
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}
.info-block p {
  color: var(--ivory-mid);
  line-height: 1.75;
  margin-bottom: 0.7rem;
}
.info-block p strong { color: var(--ivory); font-weight: 600; }
.info-note { color: var(--gilt) !important; }

.tlink {
  display: inline-block;
  color: var(--ivory);
  font-weight: 600;
  border-bottom: 1px solid var(--gilt-line);
  padding-bottom: 2px;
  transition: color var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .tlink:hover { color: var(--gilt-bright); border-color: var(--gilt); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  border-top: 1px solid var(--gilt-faint);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  background: #08080a;
}
.site-foot img { margin: 0 auto 1.2rem; opacity: 0.9; }
.site-foot p { color: var(--ivory-mid); font-size: 0.98rem; }
.foot-small { color: var(--ivory-dim) !important; font-size: 0.85rem; margin-top: 0.5rem; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
:where(.reveal) {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
  will-change: opacity, transform;
}
:where(.reveal).is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger grouped reveals so they cascade instead of appearing together.
   Scoped with :not(:hover) so the delay never lags interactive hover states. */
:where(.reveal):nth-child(2):not(:hover) { transition-delay: 70ms; }
:where(.reveal):nth-child(3):not(:hover) { transition-delay: 140ms; }
:where(.reveal):nth-child(4):not(:hover) { transition-delay: 210ms; }
:where(.reveal):nth-child(5):not(:hover) { transition-delay: 280ms; }
:where(.reveal):nth-child(6):not(:hover) { transition-delay: 350ms; }
:where(.reveal):nth-child(7):not(:hover) { transition-delay: 420ms; }
:where(.reveal):nth-child(8):not(:hover) { transition-delay: 490ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gal-item img, .btn, .price-card, .btn-gold:hover, .btn-ivory:hover, .mobile-menu { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gal { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .fam-inner { grid-template-columns: 1fr; }
  .fam-imgs { max-width: 560px; }
  .fam-imgs img:first-child { transform: none; }
  .info-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .info-block { border-left: 0; border-top: 1px solid var(--gilt-faint); padding: 1.2rem 0 0; }
}

@media (max-width: 720px) {
  .nav-list, .head-cta { display: none; }
  .nav-toggle { display: block; }
  .brand img { height: 60px; }
  .hero-logo { max-width: min(170px, 46vw); }

  .gal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 6px; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: min(320px, 88%); justify-content: center; }

  .fam-list { grid-template-columns: 1fr 1fr; }
  .menu-card { width: min(300px, 82%); }
  .price-card { padding: 1.5rem 0.9rem 1.3rem; }
  .pc-price { font-size: 2.1rem; }
  .pc-child { font-size: 1.45rem; }
  .pc-day { font-size: 0.72rem; letter-spacing: 0.1em; }
}
