:root {
  --bg: #fffaf4;
  --surface: #ffffff;
  --text: #1f1a16;
  --muted: #665c54;
  --accent: #b55d2d;
  --accent-dark: #8f4620;
  --line: #eadfd5;
  --shadow: 0 16px 40px rgba(39, 24, 16, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--accent); }

.hero {
  padding: 56px 0 48px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero__content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.06;
}
.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 58ch;
}
.hero__image img,
.team-block__image,
.menu-card,
.card {
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero__image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.button:hover { background: var(--accent-dark); }
.button--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 52px 0;
}
.section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
}
.section--accent { background: #fff; }
.section--soft { background: #f7efe8; }

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.card-list {
  display: grid;
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
}
.card h3,
.menu-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.card p,
.menu-card__body p,
.team-block__text p,
.section p {
  margin: 0;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.menu-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.menu-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.menu-card__body {
  padding: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid img {
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.team-block {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 26px;
  align-items: center;
}
.team-block__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero__grid,
  .two-columns,
  .team-block,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .header__inner,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.opening-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}
