/* ── Design tokens ── */
:root {
  --brand:       #2d6a4f;
  --brand-dark:  #1b4332;
  --brand-light: #d8f3dc;
  --accent:      #d97706;
  --text:        #1c2e1e;
  --text-muted:  #485e52;
  --bg:          #f2f7f4;
  --bg-alt:      #e8f0ea;
  --border:      #c8ddd0;
  --hero-overlay:rgba(5,20,10,0.55);
  --radius:      8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --font-head:   'Cormorant Garamond', serif;
  --font-body:   'Jost', sans-serif;
  --max-w:       1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.section-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }

.btn {
  display: inline-flex; align-items: center;
  background: var(--brand); color: #fdf6ec;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s ease-out, transform 0.15s ease-out, box-shadow 0.2s ease-out;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,67,50,0.25); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); box-shadow: none; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 68px; }
.nav__logo { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; letter-spacing: 0.03em; color: var(--brand); text-align: center; transition: color 0.15s; }
.nav__logo:hover { color: var(--brand-dark); }
.nav__links { display: flex; gap: 1.75rem; align-items: center; }
.nav__links--right { justify-content: flex-end; }
.nav__links a { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; transition: color 0.15s ease-out; }
.nav__links a:hover { color: var(--brand); }
.nav__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.nav__toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text); padding: 0.25rem; line-height: 1; }
.nav__toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* Mobile nav panel */
.nav__panel { display: none; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav__panel.is-open { display: block; }
.nav__panel-inner { display: flex; flex-direction: column; gap: 0; padding: 0.5rem 0 1rem; }
.nav__panel-inner a { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; padding: 0.7rem 0; border-bottom: 1px solid var(--border); transition: color 0.15s ease-out; }
.nav__panel-inner a:last-child { border-bottom: none; margin-top: 0.5rem; }
.nav__panel-inner a:hover { color: var(--brand); }
.nav__panel-inner a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: var(--brand-dark) center/cover no-repeat; }
.hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero__inner {
  position: relative; z-index: 1; color: #fff; text-align: center;
  max-width: 760px; margin: 0 auto; padding: 4rem 0;
  animation: heroFadeUp 0.9s ease-out both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; margin-bottom: 1.25rem; }
.hero__title { margin-bottom: 1.25rem; color: var(--brand-light); }
.hero__sub { font-size: 1.1rem; opacity: 0.9; max-width: 500px; margin: 0 auto 2.25rem; font-weight: 300; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__cta .btn { background: var(--accent); border-color: var(--accent); color: var(--text); }
.hero__cta .btn:hover { background: #b45309; border-color: #b45309; color: var(--bg); }

/* ABOUT */
.about { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__text h2 { margin: 0.5rem 0 1rem; }
.about__text p { color: var(--text-muted); margin-bottom: 0.75rem; }
.about__img-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light);
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.05em;
  user-select: none;
}
.about__img-placeholder::after { content: 'F'; color: var(--border); font-size: 8rem; font-weight: 600; line-height: 1; }

/* MENU */
.menu { background: var(--bg-alt); padding: clamp(3rem, 8vw, 5.5rem) 0; }
.menu__tabs { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; border-bottom: 1px solid var(--border); padding-bottom: 0; }
.menu__tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--text-muted); padding: 0.6rem 1.5rem;
  cursor: pointer; margin-bottom: -1px;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}
.menu__tab:hover { color: var(--brand); }
.menu__tab.is-active { color: var(--brand); border-bottom-color: var(--brand); }
.menu__tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.menu__section { display: none; }
.menu__section.is-active { display: block; }
.menu__grid { display: grid; gap: 0; }
.menu__item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.menu__item:last-child { border-bottom: none; }
.menu__item-info h4 { margin-bottom: 0.3rem; }
.menu__item-info p { font-size: 0.875rem; color: var(--text-muted); font-weight: 300; }
.menu__price { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--brand); white-space: nowrap; flex-shrink: 0; }
.menu__note { margin: 2.5rem auto 0; font-size: 0.875rem; color: var(--text-muted); text-align: center; max-width: 600px; line-height: 1.6; }

/* HOURS */
.hours { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.hours__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.hours__block h2 { margin: 0.5rem 0 1.5rem; }
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table tr { border-bottom: 1px solid var(--border); }
.hours__table td { padding: 0.75rem 0; font-size: 0.95rem; }
.hours__table td:last-child { text-align: right; color: var(--text-muted); }

/* CONTACT */
.contact { background: var(--brand); color: #fff; padding: clamp(3rem, 8vw, 5.5rem) 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact__text h2 { margin: 0.5rem 0 1rem; }
.contact__text p { opacity: 0.88; font-size: 0.95rem; }
.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__form input, .contact__form textarea {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  color: #fff; font-family: var(--font-body); font-size: 0.9rem; width: 100%;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
}
.contact__form input::placeholder, .contact__form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact__form input:hover, .contact__form textarea:hover { background: rgba(255,255,255,0.16); }
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.18); }
.contact .btn { background: var(--accent); border-color: var(--accent); color: var(--text); }
.contact .btn:hover { background: #b45309; border-color: #b45309; }
.contact .btn:focus-visible { outline-color: var(--brand-light); }

/* FOOTER */
.footer { background: var(--brand-dark); color: rgba(255,255,255,0.55); padding: 1.75rem 0; }
.footer__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer__logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: #fff; flex: 1; letter-spacing: 0.03em; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: 0.875rem; transition: color 0.15s ease-out; }
.footer__links a:hover { color: #fff; }
.footer__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__inner { grid-template-columns: 1fr auto; position: relative; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .about__inner, .hours__inner, .contact__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about__img { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; gap: 1rem; }
  .hero { min-height: 75vh; }
}

@media (min-width: 769px) {
  .nav__panel { display: none !important; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__inner { animation: none; }
  .btn, .nav__links a, .footer__links a,
  .contact__form input, .contact__form textarea { transition: none; }
}
