/* ============ TOKENS ============ */
:root {
  --orange: #f6921e;
  --orange-deep: #f47b16;
  --cream: #fbe2b0;
  --cream-soft: #fdeccb;
  --ink: #1f1d1a;
  --muted: #7c766e;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 24px 60px -28px rgba(31, 29, 26, 0.35);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.1; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.eyebrow--center { text-align: center; }

.section { padding: 90px 0; }
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  max-width: 560px;
}
.section__title--center { margin: 0 auto 50px; text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(246, 146, 30, .7);
}
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange-deep);
  padding: 10px 22px;
}
.btn--ghost:hover { background: var(--orange); color: #fff; }
.btn--text { background: transparent; color: var(--ink); padding: 13px 6px; }
.btn--text:hover { color: var(--orange-deep); }
.btn--block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,29,26,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.5px;
}
.logo span { color: var(--orange); }
.logo--light { color: #fff; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .15s;
}
.nav__links a:hover { color: var(--orange-deep); }
.nav__cta { margin-left: 8px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
}

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; }
.hero__blob {
  position: absolute;
  top: -10%; left: -8%;
  width: 64%; height: 130%;
  background: linear-gradient(150deg, var(--cream) 0%, var(--cream-soft) 100%);
  border-radius: 0 50% 45% 0 / 0 60% 55% 0;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  padding: 70px 24px 90px;
}
.hero__text h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  margin: 6px 0 22px;
}
.hero__lead { max-width: 430px; color: #5a544c; margin-bottom: 32px; }
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__menu-link { margin-top: 16px; font-size: 14px; color: #5a544c; }
.hero__menu-link a { color: var(--orange-deep); font-weight: 600; }
.hero__menu-link a:hover { text-decoration: underline; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

/* ============ OFFERS ============ */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.dish-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card__img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}
.dish-card__img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .4s ease;
}
.dish-card:hover .dish-card__img img { transform: scale(1.06); }
.dish-card h3 { font-size: 21px; color: var(--orange-deep); margin-bottom: 8px; }
.dish-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.dish-card__meta { display: flex; align-items: center; justify-content: space-between; }
.stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.price { font-weight: 700; font-size: 18px; }

/* ============ ABOUT ============ */
.about { background: linear-gradient(180deg, #fff 0%, var(--cream-soft) 100%); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__text p { color: #5a544c; margin-bottom: 16px; }
.about__text .btn { margin-top: 10px; }
.about__media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.about__media img { width: 100%; height: 420px; object-fit: cover; }
.about__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--orange-deep);
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .2s;
}
.about__play:hover { transform: translate(-50%, -50%) scale(1.08); }

/* ============ MENU ============ */
.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 40px;
}
.menu__tab {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1.5px solid rgba(31,29,26,.12);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: .18s;
}
.menu__tab:hover { border-color: var(--orange); color: var(--orange-deep); }
.menu__tab.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }
.menu__panel { display: none; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.menu__panel.is-active { display: grid; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none;} }
.menu__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(31,29,26,.14);
}
.menu__item h4 { font-size: 18px; margin-bottom: 4px; }
.menu__item p { font-size: 13.5px; color: var(--muted); }
.menu__item .tag {
  background: var(--cream);
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 30px;
  white-space: nowrap;
}
.menu__cta { text-align: center; margin-top: 44px; }

/* ============ RESERVATION ============ */
.reservation {
  position: relative;
  background:
    linear-gradient(rgba(20,16,12,.78), rgba(20,16,12,.78)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1400&q=80") center/cover fixed;
  padding: 90px 0;
}
.reservation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.reservation__mark { font-size: 56px; color: var(--orange); line-height: 1; }
.reservation__text { color: #f3efe8; font-size: 22px; font-family: "Playfair Display", serif; margin: 8px 0 22px; }
.reservation__author strong { color: #fff; display: block; font-size: 17px; }
.reservation__author span { color: #c9c1b5; font-size: 13px; }
.reservation__dots { display: flex; gap: 8px; margin-top: 22px; }
.reservation__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); }
.reservation__dots i.on { background: var(--orange); width: 24px; border-radius: 6px; }

.reservation__form {
  background: rgba(40, 33, 26, .78);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 34px;
}
.reservation__form h3 { color: #fff; font-size: 24px; margin-bottom: 22px; }
.field-row { display: flex; gap: 14px; margin-bottom: 14px; }
.reservation__form input {
  flex: 1;
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 13px 15px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.reservation__form input::placeholder { color: #bdb4a7; }
.reservation__form input:focus { outline: none; border-color: var(--orange); }
.reservation__form input[type="date"], .reservation__form input[type="time"] { color-scheme: dark; }
.reservation__note { color: #ffd9a8; font-size: 14px; margin-top: 14px; text-align: center; }
.reservation__call { color: #d8cfc2; font-size: 14px; margin-top: 16px; text-align: center; }
.reservation__call a { color: var(--orange); font-weight: 600; }
.reservation__call a:hover { text-decoration: underline; }

/* ============ NEWS ============ */
.news__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.news-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.news-card:hover { transform: translateY(-5px); }
.news-card img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 24px; }
.news-card__tag {
  display: inline-block;
  background: var(--cream);
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.news-card h3 { font-size: 20px; margin-bottom: 8px; }
.news-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.news-card__link { color: var(--orange-deep); font-weight: 600; font-size: 14px; }

/* ============ FIND US ============ */
.findus { background: linear-gradient(180deg, var(--cream-soft) 0%, #fff 100%); }
.findus__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.findus__map {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.findus__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.findus__info {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.findus__info h3 { font-size: 26px; margin-bottom: 12px; }
.findus__addr { color: var(--muted); margin-bottom: 22px; }
.findus__list { list-style: none; margin-bottom: 26px; }
.findus__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(31,29,26,.14);
  font-size: 14px;
}
.findus__list strong { color: var(--ink); }
.findus__list a { color: var(--orange-deep); font-weight: 600; text-align: right; }
.findus__list a:hover { text-decoration: underline; }
.findus__info .btn { align-self: flex-start; }

/* ============ NEWSLETTER ============ */
.newsletter { padding: 0 0 90px; }
.newsletter__inner {
  background: var(--orange);
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 26px 50px -22px rgba(246,146,30,.7);
}
.newsletter h3 { color: #fff; font-size: 26px; }
.newsletter p { color: rgba(255,255,255,.9); font-size: 14px; }
.newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter__form input {
  border: 0;
  border-radius: 40px;
  padding: 14px 22px;
  min-width: 260px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.newsletter__form input:focus { outline: 2px solid var(--ink); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #c9c1b5; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 64px 24px 48px;
}
.footer__brand p { font-size: 14px; margin: 16px 0 18px; max-width: 280px; }
.footer__social { display: flex; gap: 18px; }
.footer__social a { font-size: 13px; font-weight: 600; color: var(--orange); }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer__col p { font-size: 14px; margin-bottom: 8px; }
.footer__col a:hover { color: var(--orange); }
.footer__link { color: var(--orange); font-weight: 600; font-size: 14px; display: inline-block; margin-top: 6px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 12.5px;
  color: #8a8278;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 8px 24px 16px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__blob { width: 130%; height: 70%; top: -5%; border-radius: 0 0 50% 50%; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__media { order: -1; max-width: 360px; margin: 0 auto; }

  .offers__grid { grid-template-columns: 1fr; }
  .about__inner, .reservation__inner, .news__grid, .findus__grid { grid-template-columns: 1fr; }
  .menu__panel.is-active { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 1fr; }
  .news-card img { height: 180px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .section { padding: 64px 0; }
  .field-row { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
  .newsletter__inner { padding: 32px 26px; }
  .reservation { background-attachment: scroll; }
}
