:root {
  --cream: #faf6f1;
  --paper: #fffdf9;
  --ink: #2b2118;
  --muted: #6d5c4d;
  --accent: #c45c26;
  --accent-dark: #9e4316;
  --line: #eadfd3;
  --shadow: 0 16px 40px rgba(43, 33, 24, 0.08);
  --radius: 18px;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Avenir, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.hero {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 4.5rem 1rem;
  background:
    linear-gradient(180deg, rgba(43, 33, 24, 0.48), rgba(43, 33, 24, 0.62)),
    url("https://images.unsplash.com/photo-1517433670267-08bbd4be890f?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
  color: #fffaf4;
  text-align: center;
}

.hero-content {
  max-width: 38rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.hero .eyebrow {
  color: #f3d4b5;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.tagline,
.about-copy p,
.section-heading p,
.contact p {
  color: var(--muted);
}

.hero .tagline {
  color: rgba(255, 250, 244, 0.9);
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
}

.about,
.menu,
.contact {
  padding: 4.5rem 0;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.about-copy p + p {
  margin-top: 0.85rem;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.section-heading {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.product-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 1.05rem !important;
}

.contact {
  background: #f3ebe2;
}

.contact-card {
  font-style: normal;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.contact-card p + p {
  margin-top: 1.1rem;
}

.contact-card a {
  color: var(--accent);
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  padding: 1.4rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 0;
    min-height: auto;
  }

  .hero {
    min-height: 70vh;
    padding: 3.5rem 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img,
  .product-card img {
    height: 220px;
  }
}
