﻿:root {
  --ink: #24231f;
  --muted: #756f65;
  --paper: #fff8ec;
  --cream: #f6dfbe;
  --apricot: #ef9e56;
  --berry: #9f3152;
  --mint: #b9cfb1;
  --leaf: #53684f;
  --line: rgba(36, 35, 31, 0.13);
  --shadow: 0 24px 70px rgba(91, 59, 33, 0.17);
  --shadow-glass: 0 8px 32px 0 rgba(159, 49, 82, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection {
  background-color: var(--berry);
  color: white;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(185, 207, 177, 0.18) 1px, transparent 1px), linear-gradient(180deg, #fffdf7, var(--paper));
  background-size: 54px 54px, auto;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
main { flex: 1 0 auto; }

/* Progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--berry);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s ease-out;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  padding: 10px clamp(18px, 4vw, 56px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.brand,
.nav-drawer,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand { gap: 12px; font-weight: 950; }
.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--berry);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  transition: transform 0.6s ease;
}

.brand:hover .brand-icon {
  transform: rotate(360deg);
}

.nav-drawer {
  justify-content: flex-end;
  gap: 22px;
}

.nav-links {
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--berry);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--berry);
}

.nav-links a:hover::after {
  width: 100%;
}

.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  background: var(--leaf);
  border-radius: 999px;
  font-weight: 850;
  transition: all 0.3s ease;
}

.call-link:hover {
  background: var(--berry);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  padding: 0;
  background: var(--leaf);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: var(--berry);
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: 100px clamp(18px, 5vw, 76px) 26px;
}
.hero-copy { max-width: 680px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--berry);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: 0; }
h1 { margin-bottom: 18px; font-size: clamp(4rem, 10vw, 8.8rem); line-height: 0.88; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 5vw, 4.3rem); line-height: 1; }
h3 { margin-bottom: 8px; font-size: 1.5rem; }
.hero-copy p { max-width: 570px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions { flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 900;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-dark { color: #fff; background: var(--berry); box-shadow: 0 14px 30px rgba(159, 49, 82, 0.25); }
.btn-light { color: var(--ink); background: var(--apricot); }

.hero-visual { position: relative; min-height: 560px; }
.hero-main-img {
  height: 560px;
  object-fit: cover;
  border-radius: 44px 44px 44px 160px;
  box-shadow: var(--shadow);
  transition: transform 1s ease;
}

.hero-visual:hover .hero-main-img {
  transform: scale(1.02);
}

.hero-note {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: -24px;
  width: min(230px, calc(100% - 32px));
  padding: 24px;
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 26px 26px 26px 6px;
  box-shadow: var(--shadow-glass);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 999px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot.open { background: #10b981; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
.status-dot.closed { background: #ef4444; }

.hero-note span { color: var(--leaf); font-weight: 950; text-transform: uppercase; }
.hero-note strong { display: block; margin-top: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 2.8rem; line-height: 1; }
.hero-note p { margin-bottom: 0; color: var(--muted); }

.quick-strip {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}
.quick-strip div { padding: 22px; background: #fffdf7; transition: background 0.3s ease; }
.quick-strip div:hover { background: var(--paper); }
.quick-strip span { display: block; color: var(--berry); font-size: 0.76rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.quick-strip strong { display: block; margin-top: 3px; }

.section { width: min(1120px, calc(100% - 36px)); margin: 0 auto; padding: clamp(54px, 8vw, 94px) 0; }
.intro, .info-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 7vw, 88px); align-items: start; }
.intro > p, .info-copy p, .plate-card p, .review-box p, .site-footer p { color: var(--muted); }
.brunch-band { background: linear-gradient(180deg, rgba(246, 223, 190, 0.92), rgba(255, 253, 247, 0.96)); }
.section-title { max-width: 760px; margin-bottom: 34px; }
.plate-list { display: grid; gap: 24px; }
.plate-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1fr;
  align-items: stretch;
  overflow: hidden;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 12px 32px rgba(91, 59, 33, 0.09);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.plate-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glass);
  border-color: var(--berry);
}
.plate-card:nth-child(even) { grid-template-columns: 1fr minmax(220px, 0.72fr); }
.plate-card:nth-child(even) img { order: 2; }
.plate-card img { height: 260px; object-fit: cover; transition: transform 0.6s ease; }
.plate-card:hover img { transform: scale(1.1); }

.plate-card div { display: flex; flex-direction: column; justify-content: center; padding: clamp(22px, 4vw, 44px); }
.plate-card span { color: var(--apricot); font-weight: 950; font-size: 1.2rem; }
.info-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-panel a, .info-panel div { display: block; padding: 22px; background: #fffdf7; border: 1px solid var(--line); border-radius: 24px; font-weight: 850; transition: all 0.3s ease; }
.info-panel a:hover { transform: translateY(-5px); border-color: var(--berry); box-shadow: var(--shadow-sm); }
.info-panel span { display: block; margin-bottom: 4px; color: var(--berry); font-size: 0.8rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.reviews {
  padding: 100px 0;
  background: linear-gradient(90deg, rgba(83, 104, 79, 0.9), rgba(83, 104, 79, 0.34)), url("https://images.unsplash.com/photo-1523906630133-f6934a1ab2b9?auto=format&fit=crop&w=1800&q=82") center / cover;
}
.review-box { width: min(700px, 100%); margin: 0 auto; padding: clamp(28px, 5vw, 54px); background: rgba(255, 253, 247, 0.9); backdrop-filter: blur(10px); border-radius: 34px; box-shadow: var(--shadow); text-align: center; }
.review-box h2 { font-size: 3.5rem; color: var(--berry); }

.site-footer { flex-shrink: 0; justify-content: space-between; gap: 20px; padding: 40px clamp(18px, 4vw, 56px); color: #fff; background: var(--ink); }
.site-footer p { margin: 4px 0 0; color: rgba(255, 255, 255, 0.68); }
.site-footer a { color: var(--apricot); font-weight: 900; }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--berry);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-weight: 900;
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: var(--leaf);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-drawer {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: var(--paper);
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease, transform 300ms ease;
    padding: 0 20px;
    z-index: 999;
  }

  .nav-drawer.is-open {
    max-height: 100vh;
    opacity: 1;
    transform: translateY(0);
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links {
    display: grid;
    gap: 8px;
    justify-content: stretch;
    overflow: visible;
  }

  .nav-links a {
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--line);
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .call-link {
    width: 100%;
    text-align: center;
    padding: 16px;
  }

  .hero, .intro, .info-section, .quick-strip, .plate-card, .plate-card:nth-child(even), .info-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-actions, .eyebrow { justify-content: center; }
  .eyebrow::before { display: none; }

  .hero { min-height: auto; }
  .hero-visual { min-height: auto; }
  .hero-main-img { height: 380px; }
  .plate-card:nth-child(even) img { order: 0; }
  .hero-note { margin: 20px auto 0; position: static; width: 100%; max-width: 400px; }
}

@media (max-width: 560px) {
  .header-call,
  .call-link,
  .hero-actions .btn,
  .site-footer {
    width: 100%;
  }

  .hero-main-img { height: 300px; border-radius: 32px 32px 32px 86px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
