:root {
  --bg: #f7f0e7;
  --paper: #fffaf4;
  --surface: #fffdf9;
  --ink: #2d1d16;
  --muted: #705a4d;
  --line: rgba(86, 53, 38, 0.12);
  --accent: #b55b2d;
  --accent-dark: #8f431d;
  --gold: #e2b36c;
  --shadow: 0 20px 50px rgba(55, 30, 17, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #fcf7f1 0%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.55;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(252, 247, 241, 0.82);
  border-bottom: 1px solid rgba(86, 53, 38, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d67a44);
  box-shadow: 0 10px 24px rgba(181, 91, 45, 0.25);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small,
.section-head p,
.contact-card,
.lead,
.hero-points,
.menu-card-body p,
.team-card p,
.footer-inner p,
.intro-strip p {
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(181, 91, 45, 0.1);
  outline: none;
}

.hero,
.section {
  padding: 56px 0;
}

.hero-grid,
.contact-grid,
.intro-strip {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: calc(100vh - 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 20px;
  max-width: 12ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.lead {
  font-size: 1.08rem;
  max-width: 60ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(181, 91, 45, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-secondary {
  background: rgba(181, 91, 45, 0.08);
  color: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: end;
}

.hero-card,
.menu-card,
.team-card,
.contact-card,
.contact-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card img,
.contact-photo img {
  height: 100%;
  object-fit: cover;
}

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

.hero-card-side {
  min-height: 340px;
  transform: translateY(40px);
}

.section-warm {
  padding-top: 12px;
}

.intro-strip {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 247, 0.9);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.menu-grid,
.team-grid {
  display: grid;
  gap: 20px;
}

.menu-grid {
  grid-template-columns: repeat(4, 1fr);
}

.menu-card {
  border: 1px solid var(--line);
}

.menu-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card-body {
  padding: 18px;
}

.menu-card-body span {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  color: var(--accent-dark);
}

.menu-card.featured {
  transform: translateY(-8px);
}

.section-dark {
  background: #261712;
  color: #fff7f0;
}

.section-dark .section-kicker,
.section-dark .role {
  color: var(--gold);
}

.section-dark .team-card p,
.section-dark .section-head p {
  color: rgba(255, 240, 227, 0.78);
}

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

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card img {
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.team-card div {
  padding: 20px;
}

.role {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 28px;
}

.contact-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}

.contact-list dd {
  margin: 0;
}

.contact-photo img {
  min-height: 100%;
}

.site-footer {
  border-top: 1px solid rgba(86, 53, 38, 0.08);
  background: rgba(255, 252, 247, 0.85);
}

.footer-inner {
  font-size: 0.94rem;
}

.footer-inner a {
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .intro-strip,
  .menu-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card-main,
  .hero-card-side {
    min-height: 320px;
    transform: none;
  }

  .menu-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
    min-height: 44px;
  }

  .hero,
  .section {
    padding: 40px 0;
  }

  .intro-strip,
  .contact-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--maxw));
  }

  h1 {
    max-width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-card-main,
  .hero-card-side {
    min-height: 250px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }
}
