﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #1f2a27;
  --muted: #5f666d;
  --bg: #f6f7f8;
  --panel: #ffffff;
  --brand: #3f7a69;
  --brand-2: #5a9684;
  --line: #e5e7ea;
  --accent: #cf9150;
  --accent-soft: #f0d6b6;
  --mint-soft: #cde7dd;
  --radius: 14px;
  --max: 1160px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #fbfcfd, #f3f5f6 55%),
    radial-gradient(circle at 85% 10%, rgba(207, 145, 80, 0.16), transparent 30%),
    radial-gradient(circle at 10% 85%, rgba(31, 58, 49, 0.14), transparent 34%),
    repeating-linear-gradient(135deg, rgba(22, 34, 30, 0.018) 0 2px, transparent 2px 10px);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: min(var(--max), calc(100% - 2.2rem)); margin: 0 auto; }
.section { padding: 5rem 0; }
.badge {
  display: inline-block;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .72rem;
  color: #7b4b1f;
  background: linear-gradient(90deg, rgba(240, 214, 182, .9), rgba(205, 231, 221, .6));
  border: 1px solid rgba(207, 145, 80, .28);
  border-radius: 999px;
  padding: .28rem .62rem;
}
.divider {
  width: 58px;
  height: 3px;
  background: var(--accent);
  margin: .8rem auto 1.4rem;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-top: .4rem; }
.section-header p { max-width: 620px; margin: 0 auto; color: var(--muted); }
h1, h2, h3, .footer__brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .01em;
}

.divider--left { margin-left: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: .2s ease;
}
.btn:focus-visible,
.nav__links a:focus-visible,
.footer__links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #162a24, #295147);
  box-shadow: 0 10px 22px rgba(31, 58, 49, 0.34), 0 0 0 1px rgba(207, 145, 80, 0.22) inset;
}
.btn--outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--brand); }
.btn--soft { background: #eef2f1; color: var(--brand); }
.btn--soft:hover { background: #e3ece8; color: #194237; }

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(8px);
  background: rgba(247, 251, 249, 0.94);
  border-bottom: 1px solid #d8e3de;
}
.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--brand);
  font-weight: 700;
}
.nav__logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ffffff14;
  border: 1px solid #ffffff22;
  display: grid;
  place-items: center;
  font-size: .72rem;
  letter-spacing: .08em;
}
.nav__links { display: flex; gap: .4rem; }
.nav__links a {
  color: #3f5850;
  font-size: .95rem;
  padding: .45rem .8rem;
  border-radius: 8px;
}
.nav__links a.active,
.nav__links a:hover { color: #fff; background: var(--brand); }
.nav__phone { color: #33584d; font-weight: 600; font-size: .94rem; }
.nav__hamburger { display: none; background: transparent; border: 0; }
.nav__hamburger span { display:block; width:22px; height:2px; background:#2f5348; margin:5px 0; }

.hero {
  min-height: 84vh;
  display: grid;
  align-items: end;
  background: #f3f8f6;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 44, 37, .72), rgba(56, 36, 17, .56));
  z-index: 0;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: -3%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  animation: heroSlide 18s ease-in-out infinite;
}
.hero__slide--1 {
  background-image: url("sandwichs2.jpg");
  animation-delay: 0s;
}
.hero__slide--2 {
  background-image: url("sandwichs3.jpg");
  animation-delay: 6s;
}
.hero__slide--3 {
  background-image: url("sandwichs4.jpg");
  animation-delay: 12s;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  padding: 7rem 0 4rem;
  position: relative;
  z-index: 1;
}
.hero__text > * {
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp .65s ease forwards;
}
.hero__text > *:nth-child(1) { animation-delay: .04s; }
.hero__text > *:nth-child(2) { animation-delay: .10s; }
.hero__text > *:nth-child(3) { animation-delay: .16s; }
.hero__text > *:nth-child(4) { animation-delay: .22s; }
.hero__text > *:nth-child(5) { animation-delay: .28s; }

.hero__cards .hero__card {
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp .65s ease forwards;
}
.hero__cards .hero__card:nth-child(1) { animation-delay: .25s; }
.hero__cards .hero__card:nth-child(2) { animation-delay: .33s; }
.hero__cards .hero__card:nth-child(3) { animation-delay: .41s; }
.hero__eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #eaf1ed;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.42);
  margin-bottom: 1rem;
}
.hero__subtitle {
  color: #edf3ef;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
  max-width: 560px;
  margin-bottom: 1.4rem;
}
.hero__tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: #fff3de;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
  margin-bottom: 2rem;
}
.hero__cards {
  display: grid;
  gap: .9rem;
  align-content: end;
}
.hero__card {
  background: linear-gradient(145deg, rgba(74, 132, 115, 0.62), rgba(95, 155, 136, 0.52));
  border: 1px solid rgba(231, 246, 239, 0.42);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.hero__card h3 { font-size: .98rem; margin-bottom: .2rem; color: #f7faf8; }
.hero__card p { color: #e1e9e5; font-size: .9rem; }

.page-hero,
.buffets-hero,
.reviews-hero {
  text-align: center;
  color: #fff;
  padding: 7rem 0 4.2rem;
  background: linear-gradient(120deg, #4b8473, #79a595);
}
.page-hero p,
.buffets-hero p,
.reviews-hero p { color: #d2d8d5; max-width: 720px; margin: .7rem auto 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about__photo {
  grid-column: span 2;
  min-height: 240px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url("breakfast2.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.about__stat {
  background: linear-gradient(180deg, #ffffff, #fbfaf8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.about__stat-num { font-size: 2rem; color: var(--brand); font-weight: 700; }
.about__stat-label { color: var(--muted); font-size: .9rem; }
.about__text p { color: var(--muted); margin-bottom: 1rem; }

.section--about-compact { padding-bottom: 2.4rem; }
.section--offers-compact { padding-top: 2.4rem; }

.section--local { padding-top: 3.2rem; padding-bottom: 3.2rem; }
.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.local-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.local-card h3 { margin-bottom: .35rem; }
.local-card p { color: var(--muted); font-size: .92rem; }

.section--faq { padding-top: 2.8rem; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: .75rem;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin-top: .55rem;
  color: var(--muted);
  font-size: .92rem;
}

.section--tinted {
  background: linear-gradient(180deg, #f3f5f6, #eef2f3);
  position: relative;
  overflow: hidden;
}
.section--tinted::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 15%, rgba(207, 145, 80, 0.2), transparent 34%),
    radial-gradient(circle at 92% 75%, rgba(31, 58, 49, 0.16), transparent 36%);
}
.section--local {
  background:
    linear-gradient(180deg, rgba(205, 231, 221, 0.56), rgba(255, 255, 255, 0));
}
.features__grid,
.reviews-grid,
.buffets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.feature-card,
.review-card,
.buffet-card {
  background: linear-gradient(180deg, #ffffff, #fcfbf9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card:hover,
.review-card:hover,
.buffet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.10), 0 0 0 1px rgba(207, 145, 80, .22) inset;
  border-color: var(--accent-soft);
}
.feature-card__icon,
.menu-section__icon,
.contact__info-icon { display: none; }
.feature-card__title,
.review-card__title { margin-bottom: .5rem; }
.feature-card p,
.review-card__body { color: var(--muted); font-size: .95rem; }
.review-card__stars { color: var(--accent); letter-spacing: .08em; }
.review-card__stars::before { content: "★★★★★"; }
.review-card__footer { margin-top: .6rem; padding-top: .7rem; border-top: 1px solid var(--line); }
.review-card__author { font-weight: 600; }
.review-card__source { color: var(--muted); font-size: .85rem; }

.menu-hero { padding: 2.1rem 0 .9rem; }
.buffets-hero--compact { padding: 2.1rem 0 .9rem; }
.menu-page { padding: .55rem 0 5rem; }
.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.menu-section {
  margin-bottom: 0;
  background: linear-gradient(180deg, #ffffff, #fcfbf9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
.menu-section--wide { grid-column: span 2; }
.menu-section__header {
  border-bottom: 1px solid #dbe0e3;
  padding-bottom: .55rem;
  margin-bottom: .55rem;
}
.menu-section__header h2 { font-size: 1.25rem; color: var(--brand); }
.menu-section__sub { color: var(--muted); font-size: .86rem; margin-bottom: .5rem; }
.menu-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.menu-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid #dfe4e7;
}
.menu-table tr + tr { border-top: 1px dashed #d6dce0; }
.menu-table td { padding: .56rem .75rem; font-size: .88rem; line-height: 1.35; }
.menu-table td:last-child { text-align: right; font-weight: 700; color: var(--brand); white-space: nowrap; }
.menu-extras,
.menu-note {
  margin-top: .6rem;
  padding: .62rem .8rem;
  border-radius: 10px;
  font-size: .85rem;
}
.menu-extras { background: #f3eee8; border: 1px solid #e8dccf; }
.menu-note { background: #eef6f2; border: 1px solid #dbe8e2; }
.menu-table-wrap { margin-top: .7rem; }

.buffet-card { padding: 0; overflow: hidden; }
.buffet-card__header {
  background: linear-gradient(145deg, #1a2723, #26413a);
  color: #fff;
  padding: 1.2rem;
}
.buffet-card__price { color: #f0dcc0; font-size: 1.9rem; font-weight: 700; }
.buffet-card__price-label { color: #bac6c1; font-size: .8rem; }
.buffet-card__body { padding: 1.2rem; color: var(--muted); }
.buffets-info {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.buffets-info h3 { margin-bottom: .9rem; }
.buffets-info ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem 1.4rem;
}
.buffets-info li { color: var(--muted); font-size: .93rem; }
.buffets-info li::before { content: "- "; color: var(--brand); }

.cta-band {
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.cta-band--dark { background: #15211e; }
.cta-band--dark {
  background: linear-gradient(140deg, #4c8776, #6ea391);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.cta-band h2 { margin-bottom: .5rem; }
.cta-band p { color: #c9d1cd; margin-bottom: 1rem; }
.cta-band__actions {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section--dark {
  background: linear-gradient(170deg, #edf7f3, #e5f2ed);
  padding: 4rem 0;
  text-align: center;
  color: var(--ink);
}
.section--dark p { color: var(--muted); margin-bottom: 1rem; }
.section--dark .btn--outline {
  color: var(--brand);
  border-color: rgba(63, 122, 105, 0.55);
}
.section--dark .btn--outline:hover {
  background: var(--brand);
  color: #fff;
}

.contact-section {
  background: linear-gradient(170deg, #f2faf7, #e9f5f0);
  color: var(--ink);
  padding: 4.4rem 0;
}
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 90%, rgba(207, 145, 80, 0.14), transparent 36%);
}
.contact-section .section-header p { color: var(--muted); }
.contact__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact__info-item {
  border: 1px solid #d8e5df;
  background: #ffffff;
  border-radius: 12px;
  padding: .95rem 1rem;
  margin-bottom: .8rem;
}
.contact__info-label { color: #5d6f69; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.contact__info-value { font-size: 1rem; margin-top: .2rem; color: #22332e; }
.contact__info-value a { text-decoration: underline; text-underline-offset: 3px; }
.map-embed {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d8e5df;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; min-height: 320px; }

.footer {
  background: #f4faf7;
  color: #5f666d;
  padding: 2.6rem 0 1.3rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}
.footer__brand-name { color: var(--brand); font-weight: 700; margin-bottom: .55rem; }
.footer__brand-desc { max-width: 360px; font-size: .92rem; }
.footer__heading { color: #23463c; font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.footer__links li { margin-bottom: .34rem; }
.footer__links a:hover { color: var(--brand); }
.footer__bottom { border-top: 1px solid #d9e4df; padding-top: .9rem; font-size: .82rem; text-align: center; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.local-card {
  border-top: 3px solid rgba(176, 138, 90, 0.65);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  8% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1.16);
  }
  38% {
    opacity: 0;
    transform: scale(1.18);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
  .hero__slide {
    animation: none;
    opacity: 0;
    transform: scale(1.1);
  }
  .hero__slide--1 { opacity: 1; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 6rem; }
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .menu-layout,
  .menu-section--wide,
  .menu-split { grid-template-columns: 1fr; }
  .menu-section--wide { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner > :first-child { grid-column: span 2; }
}
@media (max-width: 760px) {
  .nav__hamburger { display: block; }
  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #f3f9f6;
    padding: .8rem 0 1rem;
    flex-direction: column;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .nav__links a { width: 100%; text-align: center; padding: .75rem 1rem; border-radius: 0; }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__phone { display: none; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__inner > :first-child { grid-column: span 1; }
  .buffets-info ul { grid-template-columns: 1fr; }
}
