:root {
  --bg: #ffffff;
  --bg-alt: #fafaf8;
  --bg-dark: #1a1a1a;
  --fg: #1a1a1a;
  --fg-muted: #6b6b6b;
  --fg-light: #f5f5f0;
  --accent: #c1272d;
  --accent-dark: #9e1f24;
  --gold: #d4a853;
  --border: #e8e4df;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 6rem;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-prices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 8rem 4rem;
  background: var(--bg-alt);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.philosophy-headline em {
  font-style: italic;
  color: var(--accent);
}

.philosophy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.philosophy-col p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ── EXPERIENCE ── */
.experience {
  padding: 8rem 4rem;
}

.experience-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.experiences {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}

.experience-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.experience-card--featured {
  transform: scale(1.03);
  border-color: var(--accent);
}

.experience-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.75rem;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── MENU ── */
.menu-pricing {
  padding: 8rem 4rem;
  background: var(--bg-dark);
  color: white;
}

.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-header {
  margin-bottom: 4rem;
}

.menu-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: white;
}

.menu-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.menu-category {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-item {
  margin-bottom: 1.5rem;
}

.item-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: white;
}

.item-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.menu-note {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ── ATMOSPHERE ── */
.atmosphere {
  padding: 8rem 4rem;
}

.atmo-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.atmo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.atmo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.5rem;
}

.atmo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.atmo-img--tall { grid-row: span 2; }
.atmo-img--wide { grid-column: span 2; }

.atmo-text-block {
  grid-column: 1 / -1;
  background: var(--bg-alt);
  padding: 3rem 4rem;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.atmo-quote {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
}

.atmo-caption {
  font-size: 0.875rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ── LOCATION ── */
.location {
  padding: 8rem 4rem;
  background: var(--bg-alt);
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.location-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg);
  font-weight: 400;
}

.detail-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

.map-placeholder {
  background: var(--bg-dark);
  border-radius: 2px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-content {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pin-label {
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.pin-label span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-top: 0.25rem;
}

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

/* ── CLOSING ── */
.closing {
  padding: 10rem 4rem;
  text-align: center;
  background: var(--bg);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3rem;
  color: var(--fg);
}

.closing-meta {
  color: var(--fg-muted);
}

.closing-meta p:first-child {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.closing-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 4rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  .hero { padding: 0 1.5rem 4rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-scroll-cue { display: none; }

  .philosophy,
  .experience,
  .menu-pricing,
  .atmosphere,
  .location,
  .closing { padding: 5rem 1.5rem; }

  .philosophy-columns { grid-template-columns: 1fr; gap: 2rem; }
  .experiences { grid-template-columns: 1fr; }
  .experience-card--featured { transform: none; }
  .menu-grid { grid-template-columns: 1fr; gap: 2rem; }
  .atmo-text-block { grid-template-columns: 1fr; }
  .atmo-grid { grid-template-columns: 1fr; }
  .atmo-img--tall,
  .atmo-img--wide { grid-row: auto; grid-column: auto; }
  .location-inner { grid-template-columns: 1fr; }
  .location-details { grid-template-columns: 1fr; }
  .map-placeholder { height: 280px; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
}