/* ==========================================================================
   Sayu Restaurant, stylesheet
   Palette sampled directly from the provided logo (see images/logo/):
   --color-washi and --color-sumi are exact pixel reads, not eyeballed.
   ========================================================================== */

:root {
  --color-washi: #FCF8EC;   /* sampled background pixel from sayu_logo.png */
  --color-sumi:  #000000;   /* sampled darkest ink-stroke pixel */
  --color-hanko: #A3312A;   /* hanko seal-ink red, CTAs, open/closed indicator */
  --color-sakura:#EBD6D3;   /* cherry-blossom pink, section fills */
  --color-bronze:#8C7A5E;   /* aged bronze, dividers, borders */

  --color-washi-dim: #F4EDDA;
  --color-sumi-soft: rgba(0, 0, 0, 0.72);
  --color-sumi-faint: rgba(0, 0, 0, 0.08);
  --color-open: #3F6B4C;

  --font-display: "Big Shoulders Display", "Archivo Black", sans-serif;
  --font-body: "Jost", "Poppins", sans-serif;

  --container-w: 1180px;
  --gutter: 1.5rem;
  --radius: 2px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background-color: var(--color-washi);
  /* A faint paper-fibre grain over the washi background, a nod to actual
     washi (rice paper) texture. Inline SVG turbulence, no image request,
     kept subtle enough to never interfere with text contrast. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.10 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  color: var(--color-sumi);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Focus states ---------- */
:focus-visible {
  outline: 3px solid var(--color-hanko);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--color-sumi);
  color: var(--color-washi);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
/* Keep anchor-linked sections clear of the sticky header when jumped to
   directly (nav links, menu/gallery teasers, footer, browser back/forward). */
#home, #trust, #menu-teaser, #gallery-teaser, #location,
#sushi-sashimi, #robata-grill, #izakaya-small-plates, #sides, #drinks {
  scroll-margin-top: 90px;
}
.section--sakura { background: var(--color-sakura); }
.section--sumi { background: var(--color-sumi); color: var(--color-washi); }
.section--sumi h2, .section--sumi h3 { color: var(--color-washi); }
.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-hanko);
  margin-bottom: 0.75rem;
}
.section--sumi .eyebrow { color: var(--color-sakura); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 60ch;
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.75em;
  border: 1.5px solid var(--color-sumi);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -14px rgba(0,0,0,0.4); }
.btn--primary {
  background: var(--color-hanko);
  border-color: var(--color-hanko);
  color: var(--color-washi);
}
.btn--primary:hover { background: #872822; border-color: #872822; box-shadow: 0 10px 24px -12px rgba(163, 49, 42, 0.45); }
.btn--ghost {
  background: transparent;
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--color-sumi-faint); }
.section--sumi .btn--ghost { border-color: var(--color-washi); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  border-bottom: 1.5px solid var(--color-hanko);
  padding-bottom: 0.1em;
  font-weight: 500;
}
.text-link:hover { color: var(--color-hanko); }

/* ---------- Sakura petal divider (repeated motif) ---------- */
.petal-divider {
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}
.petal-divider svg { width: 84px; height: auto; color: var(--color-bronze); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(252, 248, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(140, 122, 94, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}
.site-logo img {
  height: 52px;
  width: auto;
}
.site-nav {
  display: none;
}
.site-nav ul {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.site-nav a {
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.35rem 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--color-hanko);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-phone {
  display: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-phone::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-hanko);
  margin-right: 0.55em;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid var(--color-sumi);
  border-radius: var(--radius);
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-sumi);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1),
.mobile-nav-close span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2),
.mobile-nav-close span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3),
.mobile-nav-close span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-washi);
  z-index: 600;
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--gutter) 2rem;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.mobile-nav-top .site-logo img { height: 40px; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: lowercase;
}
.mobile-nav-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(140, 122, 94, 0.3);
}
.mobile-nav-footer a { font-weight: 500; font-size: 1.1rem; }
body.nav-open { overflow: hidden; }

@media (min-width: 900px) {
  .site-nav { display: block; }
  .header-phone { display: inline; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}
.hero-illustration {
  position: absolute;
  right: -12%;
  top: -8%;
  width: min(70vw, 760px);
  height: auto;
  color: var(--color-sumi);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 780px;
}
.hero-logo {
  width: min(90vw, 520px);
  height: auto;
  margin-bottom: 1.75rem;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: var(--color-sumi-soft);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ---------- Open/closed status widget ---------- */
.status-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--color-washi);
  border: 1.5px solid var(--color-bronze);
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  font-weight: 500;
}
.status-widget .status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-bronze);
}
.status-widget[data-state="open"] .status-dot {
  background: var(--color-hanko);
  box-shadow: 0 0 0 4px rgba(163, 49, 42, 0.15);
  animation: status-pulse 2.4s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(163, 49, 42, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(163, 49, 42, 0.06); }
}
@media (prefers-reduced-motion: reduce) {
  .status-widget[data-state="open"] .status-dot { animation: none; }
}
.status-widget[data-state="open"] .status-text { color: var(--color-hanko); }
.status-widget[data-state="closed"] .status-text { color: var(--color-sumi-soft); }
.status-widget .status-text { font-size: 1.05rem; }
.status-widget .status-note {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-sumi-soft);
  margin-top: 0.15rem;
}

/* ==========================================================================
   Story strip
   ========================================================================== */
.story-strip {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(140, 122, 94, 0.25);
  border-bottom: 1px solid rgba(140, 122, 94, 0.25);
}
.story-strip .container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .story-strip .container {
    grid-template-columns: 0.9fr 1.4fr;
    align-items: start;
  }
}
.story-strip p {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 300;
  color: var(--color-sumi-soft);
}
.story-strip strong { color: var(--color-sumi); font-weight: 500; }

/* ==========================================================================
   Trust section
   ========================================================================== */
.trust-rating {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.trust-rating .rating-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
}
.trust-rating .rating-meta {
  font-size: 1rem;
  color: var(--color-sumi-soft);
}
.trust-stars {
  color: var(--color-hanko);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
}
.trust-quotes {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 700px) {
  .trust-quotes { grid-template-columns: 1fr 1fr; }
}
.trust-quote {
  background: var(--color-washi);
  border-left: 3px solid var(--color-hanko);
  padding: 1.5rem 1.75rem;
  font-style: italic;
  font-size: 1.05rem;
}
.trust-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--color-sumi-soft);
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.chip {
  background: var(--color-washi);
  border: 1px solid var(--color-bronze);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   Menu / Gallery teasers
   ========================================================================== */
.teaser-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .teaser-grid--menu { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 700px) {
  .teaser-grid--gallery { grid-template-columns: repeat(4, 1fr); }
}
.menu-card {
  border: 1px solid rgba(140, 122, 94, 0.35);
  padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px -18px rgba(0,0,0,0.25);
}
.menu-card h3 { margin-bottom: 0.5rem; }
.menu-card p { color: var(--color-sumi-soft); font-size: 0.95rem; margin-bottom: 1.25rem; }

.gallery-teaser-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}
.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-teaser-item:hover img { transform: scale(1.06); }
.gallery-teaser-item:first-child { grid-row: span 2; }
@media (min-width: 700px) {
  .gallery-teaser-item:first-child { aspect-ratio: auto; }
}

.section-footer-link {
  margin-top: 2.5rem;
}

/* ==========================================================================
   Location & hours
   ========================================================================== */
.location-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.location-details address {
  font-style: normal;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.location-details a.tel {
  font-weight: 500;
  color: var(--color-hanko);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.hours-table th {
  text-align: left;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sumi-soft);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(140, 122, 94, 0.35);
}
.hours-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(140, 122, 94, 0.2);
  font-size: 0.98rem;
}
.hours-table td:last-child, .hours-table th:last-child { text-align: right; }
.hours-table tr[data-today] td {
  font-weight: 500;
  color: var(--color-hanko);
}
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(140, 122, 94, 0.35);
  overflow: hidden;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-sumi);
  color: var(--color-washi);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-logo img { height: 44px; margin-bottom: 1rem; }
.footer-grid h2 {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--color-sakura);
  margin-bottom: 1rem;
}
.footer-grid address { font-style: normal; }
.footer-grid p, .footer-grid address { color: rgba(252, 248, 236, 0.75); }
.footer-grid a:hover { color: var(--color-sakura); }
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(252, 248, 236, 0.35);
  border-radius: 50%;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.social-icons a:hover {
  background: rgba(252, 248, 236, 0.1);
  border-color: var(--color-sakura);
}
.social-icons svg { width: 18px; height: 18px; }
.header-actions .social-icons a {
  width: 36px;
  height: 36px;
  border-color: rgba(0, 0, 0, 0.25);
}
.header-actions .social-icons a:hover {
  background: var(--color-sumi-faint);
  border-color: var(--color-sumi);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(252, 248, 236, 0.15);
  font-size: 0.8rem;
  color: rgba(252, 248, 236, 0.6);
}
.footer-flag {
  font-size: 0.75rem;
  color: rgba(252, 248, 236, 0.5);
}

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}
.menu-category {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(140, 122, 94, 0.25);
}
.menu-category:last-of-type { border-bottom: none; }
.menu-category-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.menu-category-head p {
  margin: 0;
  color: var(--color-sumi-soft);
  max-width: 46ch;
}
.menu-placeholder {
  border: 1.5px dashed var(--color-bronze);
  padding: 1.75rem 2rem;
  background: rgba(140, 122, 94, 0.06);
  color: var(--color-sumi-soft);
  font-size: 0.95rem;
}
.menu-placeholder strong { color: var(--color-sumi); display: block; margin-bottom: 0.4rem; font-weight: 500; }

/* ==========================================================================
   Gallery page
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
}
.gallery-item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img,
.gallery-item button:focus-visible img { transform: scale(1.07); }
.gallery-item-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 0.8rem;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-item-caption,
.gallery-item button:focus-visible + .gallery-item-caption,
.gallery-item button:focus-visible ~ .gallery-item-caption { opacity: 1; transform: translateY(0); }
.gallery-item button:focus-visible ~ .gallery-item-caption,
.gallery-item:focus-within .gallery-item-caption { opacity: 1; transform: translateY(0); }

.gallery-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(252, 248, 236, 0.9);
  color: var(--color-sumi);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  text-align: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  margin-inline: auto;
}
.lightbox-caption {
  color: var(--color-washi);
  margin-top: 1rem;
  font-size: 0.9rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(252, 248, 236, 0.12);
  border: 1px solid rgba(252, 248, 236, 0.4);
  color: var(--color-washi);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(252, 248, 236, 0.22);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Progressive enhancement: .reveal content is visible by default, with no
   dependency on JS at all. Only once main.js runs does it opt an element
   into the hidden starting state (the "reveal-armed" class) and animate it
   in on scroll, so a JS error anywhere else on the page can never leave
   this content permanently invisible. */
.reveal.reveal-armed {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.reveal-armed.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Page hero (menu/gallery)
   ========================================================================== */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 1rem;
  border-bottom: 1px solid rgba(140, 122, 94, 0.25);
}
.page-hero .eyebrow { margin-bottom: 1rem; }

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
