/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f5f3ee;
  --bg-soft: #f9f7f3;
  --text-main: #222222;
  --text-muted: #6b6b6b;
  --accent: #1f3c3c;
  --accent-soft: #e3ebe7;
  --border: #e1ddd2;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

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

/* ---------- Layout ---------- */

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgba(245, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav__mark {
  width: 20px;
  height: 30px;
  border-radius: 999px;
  border: 2px solid #1e4b4b;
  position: relative;
}

.nav__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #1e4b4b;
}

.nav__name {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  font-size: 0.92rem;
}

.nav__links a {
  position: relative;
  padding-bottom: 0.1rem;
  color: var(--text-muted);
}

.nav__links a.active {
  color: var(--accent);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.18s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn--primary {
  background-color: var(--accent);
  color: #f9fafb;
}

.btn--ghost {
  background-color: transparent;
  color: var(--accent);
  border-color: rgba(31, 60, 60, 0.18);
}

/* ---------- Hero (Home) ---------- */

.hero {
  padding: 3.5rem 0 3.2rem;
}

.hero__grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero h1 {
  margin: 0.7rem 0 0.5rem;
  font-size: 2.4rem;
  max-width: 18ch;
}

.hero__text {
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero__actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero__meta {
  margin-top: 1.1rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__meta span {
  display: block;
}

.hero__image-wrap {
  border-radius: 26px;
  overflow: hidden;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Home: Highlights ---------- */

.section {
  padding: 3rem 0;
}

.section--soft {
  background-color: var(--bg-soft);
}

.section__header {
  margin-bottom: 1.8rem;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.section__title {
  margin: 0.4rem 0 0.3rem;
  font-size: 1.3rem;
}

.section__copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 40ch;
}

.highlights {
  display: grid;
  gap: 1.4rem;
}

.highlight-card {
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
}

.highlight-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.highlight-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Home: Story ---------- */

.story {
  display: grid;
  gap: 1.8rem;
}

/* ---------- Menu page ---------- */

.menu-hero {
  padding: 3.2rem 0 2.4rem;
}

.menu-grid {
  display: grid;
  gap: 2.4rem;
  align-items: flex-start;
}

.menu-hero__image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--bg-soft);
  max-height: 280px;
}

.menu-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.menu-hero__text p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.menu-section {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 2.5rem;
}

.menu-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.menu-section__header h2 {
  margin: 0;
  font-size: 1.1rem;
}

.menu-section__header span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-items {
  display: grid;
  gap: 0.8rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.menu-item__name {
  font-weight: 500;
}

.menu-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-item__price {
  white-space: nowrap;
}

.menu-strip {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.menu-strip__image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--bg-soft);
}

.menu-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-strip__text .section__title {
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .menu-strip {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

/* ---------- Visit page ---------- */

.visit-hero {
  padding: 3.2rem 0 2.4rem;
}

.visit-layout {
  display: grid;
  gap: 2.1rem;
  align-items: flex-start;
}

.visit-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  background-color: #ffffff;
  border: 1px solid var(--border);
}

.visit-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.visit-card p {
  margin: 0.2rem 0;
  font-size: 0.92rem;
}

.visit-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.visit-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.visit-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact form */

.form {
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border);
  background-color: var(--bg-soft);
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

input,
textarea {
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #b0aba0;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 1.6rem 1.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Responsive ---------- */

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .menu-grid,
  .visit-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .nav__links {
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}
