:root {
  --ink: #201914;
  --paper: #fff9ef;
  --cream: #f3e9d8;
  --sage: #62715f;
  --sage-dark: #2e4037;
  --berry: #8f2f45;
  --butter: #f0c458;
  --line: rgba(32, 25, 20, 0.16);
  --shadow: 0 24px 70px rgba(32, 25, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: white;
}

.brand,
.nav-links,
.header-action {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(32, 25, 20, 0.38);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.brand-logo {
  width: 58px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
}

.nav-links a,
.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.header-action:hover {
  background: rgba(255, 255, 255, 0.16);
}

.header-action {
  justify-self: end;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 78px) 82px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(19, 17, 14, 0.84), rgba(19, 17, 14, 0.18) 62%),
    linear-gradient(0deg, rgba(19, 17, 14, 0.55), rgba(19, 17, 14, 0.05) 46%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  color: white;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--butter);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--berry);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(58px, 10vw, 142px);
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.order-form button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.order-form button {
  background: var(--butter);
  color: var(--ink);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: white;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--sage-dark);
  color: white;
}

.ticker span {
  min-height: 60px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.ticker span:last-child {
  border-right: 0;
}

.section-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 92px);
  padding: 88px 0 64px;
  align-items: end;
}

.intro p:last-child,
.order-copy p,
.visit-details dd,
.product-card p {
  font-size: 17px;
  line-height: 1.65;
}

.intro p:last-child {
  margin: 0;
  color: rgba(32, 25, 20, 0.74);
}

.bakes {
  padding: 30px 0 92px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 38px rgba(32, 25, 20, 0.08);
}

.product-card img {
  aspect-ratio: 1.15;
  object-fit: cover;
}

.product-card div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-card p {
  margin: 0;
  color: rgba(32, 25, 20, 0.68);
}

.product-card span {
  color: var(--berry);
  font-weight: 850;
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 80px);
  background: var(--berry);
  color: white;
}

.order-copy {
  max-width: 720px;
}

.order-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.order-form {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.75fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: 92px 0;
}

.visit-photo img {
  aspect-ratio: 0.95;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visit-details dl {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.visit-details dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.visit-details dt {
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.visit-details dd {
  margin: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 80px);
  background: var(--ink);
  color: white;
  font-size: 14px;
}

footer span:first-child {
  font-weight: 900;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }

  .header-action {
    min-width: 64px;
  }

  .hero {
    min-height: 88vh;
    padding: 138px 20px 58px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(19, 17, 14, 0.76), rgba(19, 17, 14, 0.18)),
      linear-gradient(90deg, rgba(19, 17, 14, 0.58), rgba(19, 17, 14, 0.28));
  }

  .ticker,
  .intro,
  .product-grid,
  .order-band,
  .visit {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .intro {
    padding-top: 64px;
  }

  .section-heading {
    display: block;
  }

  .order-band {
    padding-inline: 20px;
  }
}

@media (max-width: 520px) {
  .brand {
    min-height: 56px;
    padding: 6px 10px 6px 7px;
  }

  .brand-logo {
    width: 62px;
    height: 46px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links a {
    flex: 1;
    padding-inline: 8px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 86px);
  }

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

  .visit-details dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  footer {
    display: grid;
  }
}
