@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap");

/* ───────────────────────────── DESIGN TOKENS ───────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --bg-dark: #1a1a1a;
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-light: #999999;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.6);
  --accent: #c9a96e;
  --border: #e8e6e1;
  --border-light: #f0eeea;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ───────────────────────────── COMING SOON OVERLAY ───────────────────────────── */
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.coming-soon-content {
  max-width: 520px;
}

.coming-soon-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 48px;
  filter: drop-shadow(0 4px 24px rgba(201, 169, 110, 0.3));
}

.coming-soon-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
}

.coming-soon-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.coming-soon-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.coming-soon-contact {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.coming-soon-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.coming-soon-contact a:hover {
  color: var(--accent);
}

.coming-soon-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.coming-soon-social:hover {
  color: var(--accent);
}

.coming-soon-social svg {
  flex-shrink: 0;
}

[data-theme="dark"] .coming-soon-logo {
  filter: none;
}

/* ───────────────────────────── DARK MODE ───────────────────────────── */
[data-theme="dark"] {
  --bg: #141414;
  --bg-alt: #1e1e1e;
  --bg-dark: #0a0a0a;
  --text: #e8e6e1;
  --text-secondary: #a0a0a0;
  --text-light: #707070;
  --text-on-dark: #e8e6e1;
  --text-on-dark-muted: rgba(255, 255, 255, 0.5);
  --accent: #d4b87a;
  --border: #2a2a2a;
  --border-light: #222222;
}

[data-theme="dark"] .site-header {
  background: rgba(20, 20, 20, 0.95);
}

[data-theme="dark"] .site-header.scrolled {
  background: rgba(20, 20, 20, 0.98);
  box-shadow: 0 1px 0 #2a2a2a;
}

[data-theme="dark"] .btn-primary {
  background: #e8e6e1;
  color: #141414;
}

[data-theme="dark"] .btn-primary:hover {
  background: #d4d2cd;
}

[data-theme="dark"] .btn-light {
  background: #1e1e1e;
  color: #e8e6e1;
}

[data-theme="dark"] .btn-light:hover {
  background: #2a2a2a;
}

[data-theme="dark"] .btn-secondary {
  color: #e8e6e1;
  border-color: #e8e6e1;
}

[data-theme="dark"] .btn-secondary:hover {
  background: #e8e6e1;
  color: #141414;
}

[data-theme="dark"] .banner-section {
  background: #0a0a0a;
}

[data-theme="dark"] .weather-ribbon {
  background: #0a0a0a;
}

[data-theme="dark"] .nav-toggle span {
  background: #e8e6e1;
}

[data-theme="dark"] .logo {
  filter: none;
}

/* ───────────────────────────── THEME TOGGLE ───────────────────────────── */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.3s;
  min-width: 44px;
  min-height: 44px;
}

.theme-toggle:hover {
  color: var(--text);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: block; }

[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }

/* ───────────────────────────── RESET ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ───────────────────────────── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.2;
}

p {
  margin: 0;
}

/* ───────────────────────────── UTILITY ───────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
  display: block;
}

.lead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 540px;
}

.muted {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.small {
  font-size: 0.8rem;
}

/* ───────────────────────────── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 38px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.btn-primary:hover {
  background: #333;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

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

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-light {
  background: var(--bg);
  color: var(--text);
}

.btn-light:hover {
  background: var(--bg-alt);
}

.text-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.text-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ───────────────────────────── WEATHER RIBBON ───────────────────────────── */
.weather-ribbon {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}

.weather-ribbon-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.weather-icon {
  font-style: normal;
  font-size: 0.85rem;
}

/* ───────────────────────────── HEADER / NAV ───────────────────────────── */
.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: transform 0.4s var(--ease), background 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.logo {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ───────────────────────────── HERO ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 104px;
  background: var(--bg-alt);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}

.hero-content {
  padding: clamp(40px, 6vw, 80px) 0;
}

.hero-content h1 {
  margin-bottom: 28px;
}

.hero-content .lead {
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-social {
  margin-bottom: 60px;
}

.hero-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.hero-social .social-link:hover {
  color: var(--accent);
}

.hero-social .social-link svg {
  flex-shrink: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-image-block {
  position: relative;
  height: 100%;
  background:
    linear-gradient(135deg, #d4c5a9 0%, #b8a88a 50%, #8c7b5e 100%);
  overflow: hidden;
}

.hero-image-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.15), transparent 40%);
}

.hero-image-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: var(--text-on-dark);
  z-index: 2;
}

.hero-image-caption .eyebrow {
  color: var(--text-on-dark-muted);
}

.hero-image-caption h3 {
  color: var(--text-on-dark);
  margin-bottom: 6px;
}

.hero-image-caption p {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
}

/* ───────────────────────────── PAGE HERO ───────────────────────────── */
.page-hero {
  padding: calc(104px + var(--section-pad)) 0 var(--section-pad);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero-aside {
  padding: 32px;
  border-left: 1px solid var(--border);
}

.page-hero-aside .label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.page-hero-aside h3 {
  margin-bottom: 8px;
}

/* ───────────────────────────── SECTIONS ───────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-dark .eyebrow,
.section-dark .muted,
.section-dark .lead,
.section-dark .text-link,
.section-dark .stat-label {
  color: var(--text-on-dark-muted);
}

.section-dark .text-link::after {
  background: var(--text-on-dark-muted);
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header-center {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header-center h2 {
  margin-bottom: 16px;
}

/* ───────────────────────────── SPLIT LAYOUT ───────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-text h2 {
  margin-bottom: 4px;
}

.split-text .btn {
  align-self: flex-start;
  margin-top: 12px;
}

.split-media {
  position: relative;
  background: linear-gradient(135deg, #e8e4dc, #d4cfc5);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

/* ───────────────────────────── FEATURE GRID ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-cell {
  background: var(--bg);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-cell h3 {
  font-size: 1.5rem;
}

.feature-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

/* ───────────────────────────── MENU ───────────────────────────── */
.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 80px);
}

.menu-category {
  margin-bottom: 48px;
}

.menu-category h3 {
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.menu-item-price {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 24px;
}

.menu-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ───────────────────────────── HOURS ───────────────────────────── */
.hours-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.hours-cell {
  background: var(--bg);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.hours-cell h3 {
  margin-bottom: 16px;
}

.hours-time {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 12px;
}

/* ───────────────────────────── LOCATION ───────────────────────────── */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.location-info {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.location-info-block h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 500;
}

.location-map {
  background: linear-gradient(135deg, #e8e4dc, #d4cfc5);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ───────────────────────────── CONTACT ───────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: clamp(24px, 4vw, 60px);
  border-left: 1px solid var(--border);
}

.contact-block h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-top: 8px;
}

/* ───────────────────────────── BANNER / CTA ───────────────────────────── */
.banner-section {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: clamp(60px, 8vw, 100px) 0;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner-inner .eyebrow {
  color: var(--text-on-dark-muted);
}

.banner-inner h2 {
  margin-bottom: 8px;
}

.banner-inner .muted {
  color: var(--text-on-dark-muted);
}

/* ───────────────────────────── PREVIEW MENU ───────────────────────────── */
.menu-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.menu-preview-info {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid var(--border);
}

.menu-preview-info .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.menu-preview-list {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ───────────────────────────── FLASH MESSAGES ───────────────────────────── */
.flash-wrap {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 100%;
  max-width: 480px;
  padding: 0 24px;
}

.flash {
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  animation: flash-in 0.4s var(--ease-out);
  margin-bottom: 8px;
}

.flash.success {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.flash.error {
  background: #c44;
  color: #fff;
}

@keyframes flash-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
}

/* ───────────────────────────── FOOTER ───────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 2;
  display: block;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ───────────────────────────── SCROLL REVEAL ───────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.08s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.16s; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.24s; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.32s; }

/* ───────────────────────────── RESPONSIVE ───────────────────────────── */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .page-hero-aside {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 24px 0 0;
  }

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

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

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

  .hours-table {
    grid-template-columns: 1fr;
  }

  .location-split {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 280px;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }

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

  .menu-preview-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 105;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *  {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
  }
}
