﻿:root {
  --cream: #fff9f2;
  --peach: #ffe3c9;
  --tomato: #c7542d;
  --forest: #27443a;
  --ink: #1f1e1b;
  --card: #fffdf9;
  --line: #ebd9c8;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, #ffe8d3 0%, #ffe8d300 34%),
    radial-gradient(circle at 85% 0%, #ffd8b8 0%, #ffd8b800 26%),
    var(--cream);
  line-height: 1.5;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff7edee;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

nav a {
  margin-left: 1rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--tomato);
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--tomato);
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  color: var(--forest);
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 1rem 0 1.6rem;
  max-width: 64ch;
}

.cta {
  display: inline-block;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
}

.cta:hover {
  background: #1f342d;
}

.section {
  padding: 2rem 0 4rem;
}

h2 {
  font-size: clamp(1.6rem, 3.1vw, 2.3rem);
  color: var(--forest);
}

.section-intro {
  margin: 0.7rem 0 1.2rem;
}

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


.dish-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin-bottom: 0.65rem;
  background: #f1ede7;
}

.dish-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.dish-card p {
  margin: 0.5rem 0;
}

.price {
  display: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact {
  padding-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 0.55rem;
}

.contact-list a {
  color: var(--forest);
}

.order-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.order-form label {
  display: block;
  font-weight: 700;
  margin: 0.65rem 0 0.3rem;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid #d8c0ab;
  border-radius: 10px;
  padding: 0.62rem;
  font-family: inherit;
  font-size: 0.98rem;
  background: #fffefc;
}

.order-form button {
  margin-top: 0.9rem;
  width: 100%;
  border: 0;
  border-radius: 11px;
  background: var(--tomato);
  color: #fff;
  font-weight: 700;
  padding: 0.8rem;
  cursor: pointer;
}

.order-form button:hover {
  background: #a74625;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  color: #5f5144;
}

@media (max-width: 900px) {
  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.8rem;
  }

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

  nav a {
    margin-left: 0.75rem;
  }
}



