/* ============================================================
   Wall Writers Coffee — Stylesheet
   ============================================================ */

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

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --ink: #1A1612;
  --espresso: #2C1F14;
  --gold: #B8955A;
  --gold-light: #D4AF7A;
  --gold-pale: #EDD9A3;
  --stone: #9B8E7F;
  --blush: #E8DDD1;
  --text-body: #3D3028;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 149, 90, 0.2);
  transition: padding 0.4s ease;
}

nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(245, 240, 232, 0.97);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-order {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--espresso);
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.nav-order:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--espresso);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--espresso);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold-light); }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(184,149,90,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  line-height: 2;
  max-width: 340px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold-light);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,149,90,0.35);
}

.btn-ghost {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.3);
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s;
}

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

.hero-right {
  background: var(--blush);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO ART ── */
.hero-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-art-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(44,31,20,0.55) 0%, rgba(26,22,18,0.28) 100%),
    url('https://s3-media0.fl.yelpcdn.com/bphoto/77BMeE--jsCErJKoKqaBBg/o.jpg');
  background-size: cover;
  background-position: center;
}

.hero-circle-large {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(184,149,90,0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 30s linear infinite;
}

.hero-circle-medium {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(184,149,90,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-circle-inner {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,90,0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-art-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(44,31,20,0.08);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.02em;
}

.hero-rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
}

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

/* ── SECTION BASE ── */
section { position: relative; }

.section-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--espresso);
}

.section-title em { font-style: italic; color: var(--gold); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--espresso);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 3rem;
}

.marquee-dot {
  color: var(--gold);
  margin-right: 3rem;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-visual {
  background: var(--espresso);
  background-image: url('https://s3-media0.fl.yelpcdn.com/bphoto/76ROJ4QVp3DCRx2ZHqbeMw/o.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-inner {
  position: relative;
  width: 280px;
  height: 380px;
}

.about-card {
  position: absolute;
  background: var(--blush);
  border: 1px solid rgba(184,149,90,0.2);
  padding: 2rem;
}

.about-card-main {
  width: 240px;
  height: 320px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #3d2b1a 0%, #1A1612 100%);
}

.about-card-accent {
  width: 180px;
  height: 200px;
  bottom: -30px;
  right: -30px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-main-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
}

.about-card-accent-text { text-align: center; }

.about-card-accent-text .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--espresso);
  display: block;
  line-height: 1;
}

.about-card-accent-text .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0.7;
}

.about-content {
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}

.about-body {
  font-size: 0.85rem;
  line-height: 2.2;
  color: var(--text-body);
  margin: 2rem 0 2.5rem;
  max-width: 420px;
}

.about-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184,149,90,0.2);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.3rem;
  display: block;
}

/* ── MENU HIGHLIGHTS ── */
.menu-section {
  padding: 7rem 5rem;
  background: var(--cream);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.menu-card {
  background: var(--warm-white);
  padding: 2.5rem;
  border: 1px solid rgba(184,149,90,0.1);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(44,31,20,0.1);
  z-index: 2;
}

.menu-card:hover::before { transform: scaleX(1); }

.menu-card-featured { background: var(--espresso); }

.menu-category {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.menu-card-featured .menu-category { color: var(--gold-pale); }

.menu-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.menu-card-featured .menu-name { color: var(--cream); }

.menu-desc {
  font-size: 0.75rem;
  line-height: 2;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.menu-card-featured .menu-desc { color: rgba(245,240,232,0.65); }

.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
}

.menu-tag {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold-pale);
  padding: 0.3rem 0.7rem;
  margin-left: 0.7rem;
  vertical-align: middle;
}

/* ── MENU CARD IMAGE ── */
.menu-card-img {
  height: 180px;
  margin: -2.5rem -2.5rem 1.5rem;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img { transform: scale(1.07); }

/* ── EXPERIENCE / GALLERY ── */
.experience-section {
  background: var(--espresso);
  padding: 7rem 5rem;
}

.experience-section .section-title { color: var(--cream); }

.experience-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1.5px;
  margin-top: 4rem;
}

.exp-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.exp-tile-1 { grid-row: 1 / 3; }

.exp-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.exp-tile:hover .exp-bg { transform: scale(1.06); }

.exp-bg-1 {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.22) 60%),
              url('https://s3-media0.fl.yelpcdn.com/bphoto/1W5QyQxEdI-cHNXvMaLB_A/o.jpg');
  background-size: cover;
  background-position: center;
}

.exp-bg-2 {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.22) 60%),
              url('https://s3-media0.fl.yelpcdn.com/bphoto/nkT71GjoZOK4xorlLEg1zA/o.jpg');
  background-size: cover;
  background-position: center;
}

.exp-bg-3 {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.22) 60%),
              url('https://s3-media0.fl.yelpcdn.com/bphoto/3BgTrMBjJKO95WxzeLxxww/o.jpg');
  background-size: cover;
  background-position: center;
}

.exp-bg-4 {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.22) 60%),
              url('https://s3-media0.fl.yelpcdn.com/bphoto/pTT_yvGqSXLdWB-WYPbVyA/o.jpg');
  background-size: cover;
  background-position: center;
}

.exp-bg-5 {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.22) 60%),
              url('https://s3-media0.fl.yelpcdn.com/bphoto/vfGK5w8EzV9ZSraTTWzjng/o.jpg');
  background-size: cover;
  background-position: center;
}

.exp-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 12px);
}

.exp-content {
  position: relative;
  z-index: 2;
}

.exp-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.exp-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.exp-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-top: 0.3rem;
  display: block;
}

.exp-tile-big-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.15;
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 7rem 5rem;
  background: var(--warm-white);
}

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-card {
  flex-shrink: 0;
  background: var(--cream);
  padding: 2.5rem;
  border: 1px solid rgba(184,149,90,0.12);
  position: relative;
  transition: transform 0.3s;
}

.review-card:hover { transform: translateY(-4px); }

.review-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 0.6;
  display: block;
  margin-bottom: 1.5rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.review-platform {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.reviews-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184,149,90,0.2);
}

.reviews-total-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.reviews-total-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── CAROUSEL NAV ── */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  background: none;
  border: 1px solid rgba(184,149,90,0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

.carousel-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(184,149,90,0.25);
  transition: all 0.35s;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.carousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ── INFO STRIP ── */
.info-strip {
  background: var(--espresso);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-block {
  padding: 3.5rem 4rem;
  border-right: 1px solid rgba(184,149,90,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-block:last-child { border-right: none; }

.info-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
}

.info-sub {
  font-size: 0.7rem;
  color: var(--stone);
  letter-spacing: 0.08em;
}

/* ── MAP SECTION ── */
.map-section {
  background: var(--espresso);
  padding: 5rem 5rem 0;
  border-top: 1px solid rgba(184,149,90,0.2);
}

.map-section .section-eyebrow { color: var(--gold); }
.map-section .section-title { color: var(--cream); margin-bottom: 0; }

.map-iframe-wrap {
  margin-top: 3rem;
  border: 1px solid rgba(184,149,90,0.25);
  overflow: hidden;
}

.map-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* ── ORDER CTA ── */
.cta-section {
  padding: 8rem 5rem;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'WW';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30vw;
  font-weight: 300;
  color: rgba(184,149,90,0.04);
  pointer-events: none;
  white-space: nowrap;
}

.cta-content { position: relative; z-index: 2; }

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 4rem 5rem 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,149,90,0.15);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--stone);
  line-height: 2;
  letter-spacing: 0.08em;
}

.footer-col-title {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(155,142,127,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social { display: flex; gap: 1.5rem; }

.footer-social a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(155,142,127,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE — 1024px ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links, .nav-order { display: none; }
  .hamburger { display: flex; }

  .hero { display: block; position: relative; min-height: 100vh; }
  .hero-right {
    position: absolute;
    inset: 0;
    min-height: unset;
    z-index: 0;
  }
  .hero-art { height: 100%; }
  .hero-left {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 8rem 2.5rem 5rem;
    justify-content: center;
    background: linear-gradient(
      160deg,
      rgba(44, 31, 20, 0.52) 0%,
      rgba(26, 22, 18, 0.80) 100%
    );
  }
  .hero-scroll { z-index: 2; }

  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 380px; overflow: hidden; }
  .about-content { padding: 3.5rem 2.5rem; }

  .menu-section { padding: 5rem 2.5rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; }

  .experience-section { padding: 5rem 2.5rem; }
  .experience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .exp-tile-1 { grid-row: auto; grid-column: 1 / 3; min-height: 280px; }
  .exp-tile { min-height: 200px; }

  .reviews-section { padding: 5rem 2.5rem; }

  .info-strip { grid-template-columns: 1fr; }
  .info-block {
    border-right: none;
    border-bottom: 1px solid rgba(184,149,90,0.15);
    padding: 2.5rem;
  }

  .cta-section { padding: 6rem 2.5rem; }

  footer { padding: 3rem 2.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }

  .map-section { padding: 4rem 2.5rem 0; }
}

/* ── RESPONSIVE — 600px ── */
@media (max-width: 600px) {
  .hero-left { padding: 7rem 1.5rem 3.5rem; min-height: 100vh; }
  .hero-right { min-height: 300px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }

  .about-visual { min-height: 260px; }
  .about-visual-inner { display: none; }
  .about-content { padding: 2.5rem 1.5rem; }
  .about-stats { gap: 2rem; flex-wrap: wrap; }

  .menu-section { padding: 4rem 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-header { flex-direction: column; align-items: flex-start; }

  .experience-section { padding: 4rem 1.5rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .exp-tile-1 { grid-column: auto; }
  .exp-tile { min-height: 220px; }

  .reviews-section { padding: 4rem 1.5rem; }

  .info-block { padding: 2rem 1.5rem; }

  .cta-section { padding: 5rem 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }

  footer { padding: 2.5rem 1.5rem 1.5rem; }

  .section-title { font-size: clamp(1.9rem, 7vw, 3rem); }

  .map-section { padding: 3.5rem 2.5rem 0; }
  .map-iframe-wrap iframe { height: 300px; }
}

/* ── RESPONSIVE — 380px ── */
@media (max-width: 380px) {
  .hero-left { padding: 6.5rem 1.2rem 3rem; }
  .hero-title { font-size: 2.6rem; }
  nav { padding: 1rem 1.2rem; }
}
