@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --coffee: #3b2a1a;
  --espresso: #1e1209;
  --caramel: #c47c2b;
  --gold: #d4a85a;
  --light-gold: #e8c88a;
  --terracotta: #b85c38;
  --sage: #7a8c6e;
  --muted: #8a7a6a;
  --border: rgba(59, 42, 26, 0.12);
  --shadow: 0 4px 30px rgba(59, 42, 26, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--warm-white);
  color: var(--coffee);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(59, 42, 26, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coffee);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
}

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

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--coffee);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

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

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

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coffee);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--caramel);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--coffee);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--caramel);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coffee);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

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

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) saturate(1.1);
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 20%);
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: -1.5rem;
  z-index: 10;
  background: var(--caramel);
  color: white;
  padding: 1.2rem 1.8rem;
  box-shadow: var(--shadow);
}

.hero-badge .year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.hero-badge .since {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── SECTION BASE ── */
section {
  padding: 5rem 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--caramel);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.2;
}

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

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

.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--light-gold);
  font-size: 1rem;
  padding: 0 2.5rem;
  opacity: 0.85;
}

.marquee-dot {
  color: var(--caramel);
  padding: 0 0.5rem;
}

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

/* ── OUR STORY ── */
.story-section {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.story-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--warm-white);
}

.story-year-tag {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--espresso);
  color: var(--light-gold);
  padding: 0.75rem 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
}

.story-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.story-taglines {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.story-taglines span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--caramel);
  font-size: 1rem;
}

/* ── MENU SECTION ── */
.menu-section { background: var(--warm-white); }

.menu-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.menu-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.menu-tab:hover { color: var(--coffee); }

.menu-tab.active {
  color: var(--caramel);
  border-bottom-color: var(--caramel);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--cream);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.4s ease forwards;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 42, 26, 0.12);
  border-color: var(--gold);
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0.95) saturate(1.05);
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}

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

.menu-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--caramel);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

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

/* ── REVIEWS ── */
.reviews-section { background: var(--espresso); }

.reviews-section .section-label { color: var(--light-gold); }
.reviews-section .section-label::before { background: var(--light-gold); }
.reviews-section .section-title { color: var(--cream); }

.rating-display {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.rating-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.rating-info .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; }
.rating-info .count { font-size: 0.8rem; color: rgba(245, 240, 232, 0.5); letter-spacing: 0.1em; margin-top: 0.2rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 168, 90, 0.3);
}

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

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 168, 90, 0.7);
}

/* ── HOURS STRIP ── */
.hours-strip {
  background: var(--caramel);
  padding: 2.5rem 0;
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  flex-direction: column;
}

.hours-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
}

.hours-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.hours-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.footer-brand .brand-since {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.7;
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-col address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.9;
}

.footer-col address a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.25);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--cream);
  padding: 9rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--espresso);
  line-height: 1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--caramel);
}

.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 20rem;
  text-align: right;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail .label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
}

.contact-detail .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--coffee);
}

.contact-detail .value a {
  color: var(--coffee);
  text-decoration: none;
}

.contact-map {
  margin-top: 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
  filter: grayscale(20%) saturate(0.9);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--coffee);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  background: var(--sage);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ── ABOUT PAGE ── */
.about-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--muted);
  max-width: 50rem;
  margin: 3rem auto;
  text-align: center;
  line-height: 1.7;
}

.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 4rem 0;
}

.about-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.about-photos img:hover {
  filter: brightness(1.05) saturate(1.1);
}

.about-photos .img-tall {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.about-mission {
  background: var(--coffee);
  color: var(--cream);
  padding: 4rem;
  text-align: center;
  margin-bottom: 5rem;
}

.about-mission h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-mission p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.7;
  max-width: 40rem;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-right { height: 45vh; }
  .hero-badge { bottom: 1.5rem; left: 1rem; }

  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-year-tag { display: none; }
  .story-image-accent { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; }
  .page-hero-sub { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photos { grid-template-columns: repeat(2, 1fr); }
  .about-photos .img-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .hours-inner { flex-direction: column; align-items: flex-start; }
  .hours-divider { display: none; }
  .about-mission { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  section { padding: 3.5rem 0; }
  .about-photos { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
