:root {
  --cream: #f8f0dc;
  --paper: #fffaf0;
  --sage: #7f8a5a;
  --sage-dark: #58623c;
  --brown: #6b3f1b;
  --ink: #293223;
  --muted: #786f5d;
  --line: rgba(107, 63, 27, 0.22);
  --shadow: 0 24px 70px rgba(67, 48, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(127, 138, 90, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--paper), var(--cream));
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(107, 63, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 63, 27, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand-mark img {
  width: clamp(210px, 24vw, 340px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--sage-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2.5rem) 0 4rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 620px;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--sage);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(67, 48, 24, 0.12);
}

.button.primary {
  background: var(--sage);
  color: #fffdf3;
}

.button.secondary {
  background: transparent;
  color: var(--sage-dark);
}

.note {
  margin: 1rem 0 0;
  color: var(--brown);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-card {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 0.9rem;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) max(1rem, calc((100vw - 1120px) / 2));
  border-block: 1px solid var(--line);
  background: rgba(127, 138, 90, 0.16);
}

.script {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--brown);
  font-family: "Licorice", cursive;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.8;
}

.intro-band p,
.order-panel p,
.about-copy p,
.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 2rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  max-width: 720px;
}

.about-copy p {
  max-width: 700px;
  margin-top: 1.25rem;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    linear-gradient(rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.78)),
    url("../img/products/cinnamon-rolls.png") center / cover;
  box-shadow: var(--shadow);
}

.about-card .script {
  margin-bottom: 0.8rem;
  color: var(--sage-dark);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.about-card p {
  color: var(--brown);
  font-weight: 800;
}

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

.menu-item {
  display: grid;
  grid-template-rows: 11.5rem 1fr auto;
  gap: 1rem;
  min-height: 21.5rem;
  overflow: hidden;
  padding: 0.9rem 0.9rem 1.1rem;
  border: 1px solid rgba(107, 63, 27, 0.16);
  border-radius: 0.5rem;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 16px 38px rgba(67, 48, 24, 0.09);
}

.menu-item.featured {
  background:
    linear-gradient(rgba(127, 138, 90, 0.08), rgba(127, 138, 90, 0.08)),
    rgba(255, 250, 240, 0.95);
}

.menu-item img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(127, 138, 90, 0.13);
  border-radius: 0.35rem;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
}

.menu-item div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.menu-item span {
  display: block;
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-item strong {
  display: block;
  flex: 0 0 auto;
  color: var(--sage-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.65rem;
  line-height: 0.82;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.order-section {
  padding-top: 0;
}

.order-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(88, 98, 60, 0.92), rgba(127, 138, 90, 0.86)),
    var(--sage);
  box-shadow: var(--shadow);
  color: #fffdf3;
}

.order-panel .eyebrow,
.order-panel h2,
.order-panel p {
  color: #fffdf3;
}

.order-panel p {
  max-width: 720px;
  margin-top: 1rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.contact-row a,
.contact-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.17);
  color: #fffdf3;
  font-weight: 800;
  text-decoration: none;
}

.phone-link {
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sage-dark);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .brand-mark img {
    width: min(300px, 78vw);
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.72rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .hero-card {
    order: -1;
    max-width: 430px;
    margin: 0 auto;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.35rem;
  }

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

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