﻿:root {
  --bg: #f3eee5;
  --bg-strong: #ece4d6;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf1;
  --ink: #1f2d24;
  --ink-soft: #5d685f;
  --brand: #355844;
  --brand-deep: #1d3328;
  --accent: #c98b4b;
  --accent-soft: #e8c9a5;
  --line: rgba(29, 51, 40, 0.12);
  --shadow: 0 30px 80px -40px rgba(29, 41, 33, 0.25);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 139, 75, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f2ea 0%, #f3eee5 45%, #efe6d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 20% 20%, rgba(201, 139, 75, 0.12), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(53, 88, 68, 0.08), transparent 18%);
  opacity: 0.9;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.demo-banner {
  padding: 12px 20px;
  text-align: center;
  color: var(--brand-deep);
  background: rgba(201, 139, 75, 0.14);
  border-bottom: 1px solid rgba(201, 139, 75, 0.18);
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 20px 0;
}

.header-shell,
.hero-shell,
.section-shell,
.footer-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 24px 50px -40px rgba(29, 41, 33, 0.35);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: clamp(180px, 18vw, 240px);
  height: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-deep);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  margin: 4px auto;
  background: currentColor;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--brand-deep);
}

.nav-cta,
.btn-primary,
.btn-secondary,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary,
.submit-btn {
  color: #fffdf8;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 18px 34px -24px rgba(29, 51, 40, 0.65);
}

.btn-secondary {
  border: 1px solid rgba(29, 51, 40, 0.18);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.58);
}

.nav-cta:hover,
.btn-primary:hover,
.submit-btn:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 24px 0 44px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-media-card,
.section-card,
.info-card,
.review-card,
.menu-card,
.gallery-card,
.reservation-card,
.contact-card,
.map-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: fade-up 0.7s ease both;
}

.hero-copy {
  padding: 54px;
  align-self: stretch;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.editorial-copy h2,
.reservation-copy h2,
.contact-layout h1,
.menu-page-head h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.hero-tagline {
  margin: 18px 0 0;
  max-width: 16ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.18;
}

.hero-description,
.section-head p,
.intro-copy p,
.editorial-copy p,
.info-copy p,
.reservation-copy p,
.contact-copy p,
.testimonial-copy,
.menu-item-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.hero-description {
  max-width: 40rem;
  margin: 20px 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-notes span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--brand-deep);
  font-size: 0.92rem;
}

.hero-media-card {
  position: relative;
  overflow: hidden;
  min-height: 660px;
}

.hero-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 14, 0.16) 0%, rgba(10, 18, 14, 0.46) 100%);
}

.hero-media-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-copy,
.hero-thumbs {
  position: absolute;
  z-index: 1;
}

.hero-media-copy {
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(20, 30, 24, 0.56);
  color: #fffaf2;
  backdrop-filter: blur(10px);
}

.hero-media-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-media-copy span {
  color: rgba(255, 250, 242, 0.84);
  line-height: 1.6;
}

.hero-thumbs {
  top: 24px;
  right: 24px;
  display: grid;
  gap: 10px;
  width: 116px;
}

.hero-thumbs img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  box-shadow: 0 20px 44px -30px rgba(0, 0, 0, 0.45);
}

.section {
  padding: 36px 0 0;
}

.section-shell {
  display: grid;
  gap: 24px;
}

.section-head {
  max-width: 720px;
}

.section-head h2,
.editorial-copy h2,
.reservation-copy h2,
.contact-layout h1,
.menu-page-head h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 24px;
}

.section-card {
  padding: 34px;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  padding: 18px 20px;
  border: 1px solid rgba(29, 51, 40, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.menu-preview-grid,
.review-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.menu-card,
.review-card,
.gallery-card {
  overflow: hidden;
}

.menu-card img,
.gallery-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.menu-card:hover img,
.gallery-card:hover img {
  transform: scale(1.05);
}

.menu-card img {
  height: 240px;
}

.menu-item-copy {
  padding: 22px;
}

.menu-item-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.menu-item-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.price {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  min-height: 280px;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card img {
  height: 100%;
  min-height: 280px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  padding: 26px;
}

.info-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
}

.info-copy strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.review-card {
  padding: 26px;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.testimonial-copy {
  margin: 16px 0 12px;
  font-size: 1.02rem;
}

.review-author {
  color: var(--brand-deep);
  font-weight: 600;
}

.editorial-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.editorial-copy,
.reservation-copy,
.contact-copy,
.contact-side {
  padding: 36px;
}

.editorial-media,
.contact-card,
.map-card {
  overflow: hidden;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.menu-page-head {
  padding: 28px 0 6px;
}

.menu-category {
  display: grid;
  gap: 18px;
}

.menu-category + .menu-category {
  margin-top: 28px;
}

.menu-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.menu-category-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.menu-category-head span {
  color: var(--ink-soft);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: start;
}

.reservation-card {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--brand-deep);
  font-size: 0.94rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(29, 51, 40, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.reservation-note {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-top: 18px;
}

.reservation-highlights {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.reservation-highlights div {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.reservation-highlights strong {
  display: block;
  margin-bottom: 6px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 0;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item img {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 46px 0 36px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: var(--shadow);
}

.footer-meta {
  color: var(--ink-soft);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--brand-deep);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 1040px) {
  .hero-shell,
  .intro-grid,
  .editorial-layout,
  .contact-layout,
  .reservation-layout,
  .info-grid,
  .menu-preview-grid,
  .menu-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shell,
  .intro-grid,
  .editorial-layout,
  .contact-layout,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .hero-media-card {
    min-height: 520px;
  }

  .gallery-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-inline: 16px;
  }

  .header-shell,
  .hero-shell,
  .section-shell,
  .footer-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 28px;
    background: rgba(255, 250, 242, 0.94);
    box-shadow: var(--shadow);
  }

  .header-panel.is-open {
    display: flex;
  }

  .main-nav,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 16px;
  }

  .nav-cta {
    width: 100%;
  }

  .menu-preview-grid,
  .info-grid,
  .review-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-thumbs {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    padding: 16px;
    background: rgba(255, 250, 242, 0.8);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-copy,
  .section-card,
  .editorial-copy,
  .reservation-copy,
  .contact-copy,
  .contact-side,
  .reservation-card {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .submit-btn {
    width: 100%;
  }

  .hero-media-card {
    min-height: 380px;
  }

  .hero-media-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .menu-category-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
