/* ============================================================
   Celestino's Coffee & Kitchen — design system
   Palette: strict monochrome. The photography is the only color.
   Type: Times New Roman at extremes — huge italic display,
         small letterspaced caps for utility.
   ============================================================ */

:root {
  --ink: #0b0b0b;
  --ink-soft: #1a1a1a;
  --paper: #ffffff;
  --paper-warm: #f7f6f4;
  --stone: #8d8d8d;
  --hairline: rgba(11, 11, 11, 0.14);
  --hairline-light: rgba(255, 255, 255, 0.22);
  --glass-dark: rgba(10, 10, 10, 0.55);
  --glass-light: rgba(255, 255, 255, 0.08);
  --serif: "Times New Roman", Times, Georgia, serif;
  --tr-slow: 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  --tr-med: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 6px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.125rem);
  overflow-x: hidden;
}

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

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

::selection { background: var(--ink); color: var(--paper); }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

section { scroll-margin-top: 5rem; }

/* ---------- utility type ---------- */

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
}

.script {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-head {
  max-width: 40ch;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-head h2,
h2.section-head {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  margin-top: 0.9rem;
}

.section-head p {
  margin-top: 1.1rem;
  color: var(--stone);
  max-width: 52ch;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background var(--tr-med), color var(--tr-med),
    border-color var(--tr-med), transform var(--tr-med);
  white-space: nowrap;
}

.btn:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.btn-light:hover { background: transparent; color: var(--paper); }

.btn-ghost-light {
  background: transparent;
  border-color: var(--hairline-light);
  color: var(--paper);
}

.btn-ghost-light:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--tr-med), border-color var(--tr-med);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--glass-dark);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  color: var(--paper);
}

.nav-brand {
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

.nav-brand small {
  display: block;
  font-style: normal;
  font-size: 0.52rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity var(--tr-med);
}

.nav-links a:not(.btn):hover { opacity: 1; }

.nav-links .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle svg { display: block; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: heroZoom 2.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.55) 38%, rgba(5, 5, 5, 0.15) 70%),
    linear-gradient(to top, rgba(5, 5, 5, 0.75) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 8rem var(--gutter) 6rem;
  max-width: 46rem;
}

.hero-content .eyebrow { color: rgba(255, 255, 255, 0.72); }

.hero-title {
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 400;
  line-height: 0.95;
  margin: 1.4rem 0 0;
}

.hero-sub {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  margin-top: 1.6rem;
  font-size: clamp(0.72rem, 1.4vw, 0.95rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.hero-sub::after {
  content: "";
  flex: 0 1 7rem;
  height: 1px;
  background: var(--hairline-light);
}

.hero-tag {
  margin: 1.8rem auto 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.6rem;
}

.hero-meta {
  margin-top: 3.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-content > * {
  animation: riseIn 1.1s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-content > :nth-child(1) { animation-delay: 0.15s; }
.hero-content > :nth-child(2) { animation-delay: 0.28s; }
.hero-content > :nth-child(3) { animation-delay: 0.42s; }
.hero-content > :nth-child(4) { animation-delay: 0.56s; }
.hero-content > :nth-child(5) { animation-delay: 0.7s; }
.hero-content > :nth-child(6) { animation-delay: 0.84s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  animation: riseIn 1.1s 1.1s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 3.2rem;
  background: linear-gradient(var(--paper), transparent);
  animation: cueDrop 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes cueDrop {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- ticker strip ---------- */

.strip {
  border-bottom: 1px solid var(--hairline);
  padding: 1.4rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 0;
  background: var(--paper);
}

.strip span {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0 1.6rem;
}

.strip span + span { border-left: 1px solid var(--hairline); }

/* ---------- generic section shell ---------- */

.shell {
  padding: clamp(4.5rem, 10vw, 8.5rem) var(--gutter);
  max-width: 82rem;
  margin: 0 auto;
}

/* ---------- experience split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.split-media:hover img { transform: scale(1.04); }

.split-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--glass-dark);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius);
}

.split-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0.9rem;
}

.split-copy > p {
  margin-top: 1.3rem;
  color: var(--stone);
  max-width: 50ch;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.2rem;
}

.feature {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
}

.feature p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--stone);
}

/* ---------- menu (dark) ---------- */

.dark {
  background: var(--ink);
  color: var(--paper);
}

.dark .eyebrow { color: rgba(255, 255, 255, 0.55); }
.dark .section-head p { color: rgba(255, 255, 255, 0.6); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.dish {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.dish-media {
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}

.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity var(--tr-med);
}

.dish:hover .dish-media img { transform: scale(1.06); }

.dish-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.dish-body h3 {
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
}

.dish-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  flex: 1;
}

.menu-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
}

.menu-foot p {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  max-width: 46ch;
}

/* ---------- ambiance gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 11rem;
  gap: 1.1rem;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.tile:hover img { transform: scale(1.05); }

.tile figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--glass-dark);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius);
}

.tile-a { grid-column: span 7; grid-row: span 3; }
.tile-b { grid-column: span 5; grid-row: span 2; }
.tile-c { grid-column: span 5; grid-row: span 2; }
.tile-d { grid-column: span 7; grid-row: span 1; }

/* ---------- guests / social proof ---------- */

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: 2.6rem;
}

.rating-row strong {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 400;
  font-style: italic;
}

.rating-row .stars {
  letter-spacing: 0.35em;
  font-size: 1rem;
}

.rating-row span:last-child {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.quote {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--paper);
}

.quote p {
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
}

.quote p::before { content: "\201C"; }
.quote p::after { content: "\201D"; }

.quote footer {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: auto;
}

/* ---------- reservation ---------- */

.reserve {
  position: relative;
  overflow: hidden;
  color: var(--paper);
}

.reserve-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/ambiance-3.jpg");
  background-size: cover;
  background-position: center;
}

.reserve-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
}

.reserve-inner {
  position: relative;
  z-index: 1;
  max-width: 82rem;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8rem) var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.reserve-copy h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  margin-top: 0.9rem;
}

.reserve-copy .eyebrow { color: rgba(255, 255, 255, 0.6); }

.reserve-copy p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
}

.reserve-card {
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.reserve-card .eyebrow { color: rgba(255, 255, 255, 0.6); }

.reserve-phone {
  display: block;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-style: italic;
  margin: 0.9rem 0 1.6rem;
  transition: opacity var(--tr-med);
}

.reserve-phone:hover { opacity: 0.75; }

.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.reserve-actions .btn { flex: 1 1 10rem; }

.hours {
  list-style: none;
  margin-top: 2rem;
  border-top: 1px solid var(--hairline-light);
  padding-top: 1.5rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0;
}

.reserve-note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.visit-copy address {
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.5;
  margin-top: 1.4rem;
  max-width: 26ch;
}

.visit-copy .visit-city {
  margin-top: 0.8rem;
  color: var(--stone);
}

.visit-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter) 2.5rem;
}

.footer-inner { max-width: 82rem; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .wordmark {
  font-size: 2rem;
  font-style: italic;
}

.footer-brand .wordmark small {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.3rem;
}

.footer-brand p {
  margin-top: 1.3rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  transition: background var(--tr-med), color var(--tr-med), border-color var(--tr-med);
}

.social-row a:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.social-row svg { width: 1.05rem; height: 1.05rem; }

.footer h3 {
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.4rem;
}

.footer-col ul { list-style: none; }

.footer-col li + li { margin-top: 0.75rem; }

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: opacity var(--tr-med);
}

.footer-col a:hover { opacity: 0.6; }

.newsletter p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-light);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 0.95rem;
  padding: 0.95rem 1.1rem;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.45); }

.newsletter-form input:focus { outline: none; }

.newsletter-form button {
  border: none;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0 1.4rem;
  cursor: pointer;
  transition: opacity var(--tr-med);
}

.newsletter-form button:hover { opacity: 0.85; }

.newsletter-msg {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  min-height: 1.2em;
}

.lang {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lang select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 0.85rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.lang select option { color: var(--ink); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2.2rem;
}

.powered {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.powered img {
  height: 0.95rem;
  width: auto;
}

.powered span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.footer-bottom a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover { color: var(--paper); }

/* ---------- reveal on scroll ----------
   Hidden state only applies when JS is running (html.js),
   so content is always visible if the script fails to load. */

html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
  transition-delay: var(--d, 0s);
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- legal pages ---------- */

.legal {
  max-width: 46rem;
  margin: 0 auto;
  padding: 9rem var(--gutter) 6rem;
}

.legal h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0.9rem;
}

.legal h2 {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  margin: 2.6rem 0 0.8rem;
}

.legal p { margin-top: 0.9rem; color: #3d3d3d; }

.legal .btn { margin-top: 3rem; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split,
  .reserve-inner,
  .visit-grid { grid-template-columns: 1fr; }
  .visit-grid .split-media { order: -1; }
  .gallery { grid-auto-rows: 9rem; }
  .tile-a { grid-column: span 12; grid-row: span 3; }
  .tile-b, .tile-c { grid-column: span 6; grid-row: span 2; }
  .tile-d { grid-column: span 12; grid-row: span 2; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(8, 8, 8, 0.92);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a:not(.btn) { font-size: 0.95rem; }

  .nav-toggle { position: relative; z-index: 2; }

  .hero {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    padding: 7rem 1.4rem 7rem;
  }

  .hero-sub { justify-content: center; }
  .hero-sub::after { flex-basis: 3rem; }
  .hero-tag { margin: 1.8rem auto 0; }
  .hero-cta { justify-content: center; }
  .hero-cta .btn { flex: 1 1 100%; }

  .scroll-cue { display: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { gap: 0.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- reduced motion ---------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal { opacity: 1; transform: none; }
}
