/* 바다쌈밥 — refined coastal Korean restaurant */
:root {
  --sea: #0a3344;
  --sea-deep: #061f2b;
  --sea-mid: #1a5f75;
  --sea-soft: #2a7a92;
  --foam: #f3f7f6;
  --mist: #fafcfb;
  --leaf: #2a6b52;
  --leaf-soft: #3f8a68;
  --sun: #d4af5a;
  --sun-deep: #b8923f;
  --champagne: #e8d5a3;
  --ink: #121c22;
  --muted: #667780;
  --title: #083042;
  --eyebrow: #9a7b2f;
  --line: rgba(8, 48, 66, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 20px 60px rgba(6, 31, 43, 0.08);
  --shadow-soft: 0 8px 28px rgba(6, 31, 43, 0.06);
  --radius: 0;
  --font-display: "Song Myung", "Batang", serif;
  --font-latin: "Cormorant Garamond", "Song Myung", serif;
  --font-body: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, p, figure, dl {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sea);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 11vw, 8rem) 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-latin);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eyebrow);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
}

.eyebrow.light {
  color: var(--champagne);
}

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-head h2,
.story-copy h2,
.visit-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.15rem, 4.8vw, 3.15rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--title);
}

.section-lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 252, 251, 0.9);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  transition: color 0.3s var(--ease);
}

.site-header.is-scrolled .logo,
.site-header.menu-open .logo {
  color: var(--title);
}

.logo-mark {
  width: 2rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  color: var(--sun);
}

.site-header.is-scrolled .logo-mark,
.site-header.menu-open .logo-mark {
  color: var(--sea-mid);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.85rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color 0.25s var(--ease);
}

.site-header.is-scrolled .nav a,
.site-header.menu-open .nav a {
  color: var(--ink);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(232, 213, 163, 0.55);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled .header-cta,
.site-header.menu-open .header-cta {
  border-color: var(--sea);
  color: var(--sea);
}

.header-cta:hover {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--sea-deep);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  gap: 0.35rem;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: #fff;
  transition: background 0.25s, transform 0.25s;
}

.site-header.is-scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span {
  background: var(--title);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1.25rem;
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  padding: 0.85rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.mobile-cta {
  color: var(--eyebrow) !important;
  font-weight: 700 !important;
  border-bottom: 0 !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: hero-ken 22s var(--ease) forwards;
  filter: saturate(1.08) contrast(1.02) brightness(1.06);
}

@keyframes hero-ken {
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 62, 0.28) 0%, rgba(10, 55, 78, 0.12) 38%, rgba(6, 28, 44, 0.55) 100%),
    linear-gradient(90deg, rgba(6, 30, 48, 0.22) 0%, transparent 45%, rgba(6, 30, 48, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.25rem) 0 4.5rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.1em;
  margin-bottom: 1.15rem;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  animation: rise 1s var(--ease) 0.1s forwards;
}

.hero-dish {
  width: min(560px, 88vw);
  margin: 0 0 1.2rem;
  position: relative;
  opacity: 0;
  animation: rise 1s var(--ease) 0.22s forwards;
}

.hero-dish::before {
  content: "";
  position: absolute;
  inset: 12% 8% -2%;
  background: radial-gradient(ellipse at center, rgba(4, 40, 60, 0.22), transparent 72%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

.hero-dish img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 0;
  box-shadow: none;
  /* soft blend into ocean */
  -webkit-mask-image:
    radial-gradient(
      ellipse 72% 68% at 50% 48%,
      #000 42%,
      rgba(0, 0, 0, 0.88) 58%,
      rgba(0, 0, 0, 0.45) 74%,
      transparent 100%
    );
  mask-image:
    radial-gradient(
      ellipse 72% 68% at 50% 48%,
      #000 42%,
      rgba(0, 0, 0, 0.88) 58%,
      rgba(0, 0, 0, 0.45) 74%,
      transparent 100%
    );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  filter: saturate(1.06) contrast(1.02);
}

.hero-dish::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 78% 72% at 50% 48%,
      transparent 38%,
      rgba(70, 160, 195, 0.18) 68%,
      rgba(55, 145, 185, 0.42) 100%
    );
  -webkit-mask-image:
    radial-gradient(
      ellipse 72% 68% at 50% 48%,
      #000 42%,
      rgba(0, 0, 0, 0.7) 62%,
      transparent 100%
    );
  mask-image:
    radial-gradient(
      ellipse 72% 68% at 50% 48%,
      #000 42%,
      rgba(0, 0, 0, 0.7) 62%,
      transparent 100%
    );
  mix-blend-mode: soft-light;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: rise 1s var(--ease) 0.34s forwards;
}

.hero-lead {
  max-width: 28rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  animation: rise 1s var(--ease) 0.44s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.54s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: 1.75rem;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  opacity: 0;
  animation: rise 0.9s var(--ease) 1s forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.7rem 1.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: var(--sea-deep);
  box-shadow: 0 10px 28px rgba(184, 146, 63, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(184, 146, 63, 0.38);
  color: #fff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(6, 30, 48, 0.22);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(6, 30, 48, 0.38);
  border-color: #fff;
}

.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Story */
.story {
  background:
    radial-gradient(ellipse 70% 55% at 0% 20%, rgba(212, 175, 90, 0.07), transparent 55%),
    var(--foam);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 4.75rem);
  align-items: center;
}

.story-copy h2 {
  margin-bottom: 1.35rem;
  color: var(--title);
}

.story-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.story-points {
  margin-top: 1.85rem;
  display: grid;
  gap: 0.8rem;
}

.story-points li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 500;
  color: var(--sea);
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 3px rgba(212, 175, 90, 0.2);
}

.story-visual {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  position: relative;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}

.story-visual:hover img {
  transform: scale(1.04);
}

/* Rooms */
.rooms {
  background:
    linear-gradient(180deg, #fff 0%, #f6f9f8 100%);
}

.rooms-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 42rem;
}

.rooms-stat {
  padding: 1.25rem 1.1rem 1.15rem;
  border-top: 1.5px solid var(--sun);
  background: linear-gradient(180deg, rgba(8, 48, 66, 0.035), transparent);
}

.rooms-stat strong {
  display: block;
  font-family: var(--font-latin);
  font-size: clamp(2.15rem, 4.2vw, 2.9rem);
  font-weight: 500;
  line-height: 1;
  color: var(--title);
  margin-bottom: 0.4rem;
}

.rooms-stat span {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.rooms-card {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: #d7e3de;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.rooms-card.wide {
  grid-column: span 8;
}

.rooms-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.rooms-card.wide img {
  aspect-ratio: 16 / 10;
  min-height: 100%;
}

.rooms-card:hover img {
  transform: scale(1.05);
}

.rooms-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.15rem 1.1rem;
  background: linear-gradient(transparent, rgba(6, 31, 43, 0.9));
  color: #fff;
  display: grid;
  gap: 0.25rem;
}

.rooms-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.rooms-card figcaption span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.76);
}

.rooms-note {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Menu */
.menu {
  background:
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(42, 122, 146, 0.07), transparent 55%),
    var(--mist);
}

.menu-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.menu-dish {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(8, 48, 66, 0.04);
}

.menu-dish img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.menu-dish:hover img {
  transform: scale(1.04);
}

.menu-dish-body {
  padding: 1.25rem 1.3rem 1.45rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.menu-dish-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--title);
}

.menu-dish-body p {
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-dish-body strong {
  margin-top: 0.4rem;
  font-size: 1.18rem;
  font-variant-numeric: tabular-nums;
  color: var(--sea-mid);
  letter-spacing: 0.02em;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.menu-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.menu-tab {
  min-height: 2.65rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(8, 48, 66, 0.14);
  color: var(--sea);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.menu-tab:hover {
  border-color: var(--sea-mid);
  color: var(--sea-deep);
}

.menu-tab.is-active {
  background: linear-gradient(135deg, var(--sea) 0%, var(--sea-mid) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(8, 48, 66, 0.18);
}

.menu-group[hidden] {
  display: none;
}

.menu-group-note {
  font-size: 0.84rem;
  color: var(--eyebrow);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.menu-group li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(8, 48, 66, 0.08);
}

.menu-group li:last-child {
  border-bottom: 0;
}

.menu-group li em {
  font-style: normal;
  font-size: 0.85em;
  color: var(--muted);
  font-weight: 500;
}

.menu-group li span {
  font-weight: 500;
}

.menu-group li strong {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--sea-mid);
  letter-spacing: 0.01em;
}

.menu-board {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 48, 66, 0.04);
}

.menu-board img {
  width: 100%;
}

/* Gallery */
.gallery {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(212, 175, 90, 0.05), transparent 60%),
    var(--foam);
}

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

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d7e3de;
  box-shadow: var(--shadow-soft);
}

.gallery-item.tall {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-item.wide {
  grid-column: span 7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.4s var(--ease);
  filter: saturate(1.02);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

/* Visit */
.visit {
  position: relative;
  color: #fff;
  background: linear-gradient(160deg, #061f2b 0%, #0a3344 55%, #0d4054 100%);
  overflow: hidden;
}

.visit-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 122, 146, 0.28), transparent 48%),
    radial-gradient(circle at 18% 82%, rgba(212, 175, 90, 0.14), transparent 38%);
  pointer-events: none;
}

.visit-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

.visit-copy h2 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.visit-address {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.visit-address span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 400;
}

.visit-meta {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.visit-meta div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visit-meta dt {
  color: rgba(232, 213, 163, 0.75);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.visit-meta dd {
  margin: 0;
  font-weight: 500;
}

.visit-meta a:hover {
  color: var(--sun);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit-map {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 380px;
}

.visit-map iframe {
  width: 100%;
  flex: 1;
  min-height: 380px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.map-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.map-note a {
  color: var(--champagne);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  background: #04151d;
  color: rgba(255, 255, 255, 0.68);
  padding: 2.75rem 0 2.1rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(212, 175, 90, 0.12);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.footer-info a:hover {
  color: var(--sun);
}

.copyright {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-header.menu-open .mobile-nav {
    display: flex;
  }

  .site-header.menu-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .story-grid,
  .menu-layout,
  .visit-grid,
  .menu-featured {
    grid-template-columns: 1fr;
  }

  .story-visual {
    aspect-ratio: 16 / 11;
    order: -1;
  }

  .menu-board {
    position: static;
  }

  .menu-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rooms-stats {
    max-width: none;
  }

  .rooms-card,
  .rooms-card.wide,
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 12;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .rooms-card.wide img {
    aspect-ratio: 4 / 3;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-dish {
    width: min(420px, 90vw);
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .visit-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .visit-actions .btn {
    flex: 1 1 auto;
  }

  .visit-meta div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .rooms-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img,
  .reveal,
  .hero-brand,
  .hero-dish,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .hero-scroll {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
