:root {
  color-scheme: light;
  --ink: #10231d;
  --ink-soft: #284138;
  --paper: #fbf7ef;
  --paper-deep: #f1e7d7;
  --white: #ffffff;
  --green: #27624d;
  --teal: #2f7881;
  --saffron: #c7782c;
  --gold: #b79c63;
  --line: rgba(16, 35, 29, 0.16);
  --shadow: 0 22px 70px rgba(16, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem max(1.25rem, calc((100% - 1160px) / 2));
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.94);
  box-shadow: 0 8px 30px rgba(16, 35, 29, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: -0.1rem;
  font-size: 0.74rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.6rem 0.78rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a[aria-current="page"] {
  background: rgba(39, 98, 77, 0.1);
}

.menu-button {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(16, 35, 29, 0.9), rgba(16, 35, 29, 0.42) 50%, rgba(16, 35, 29, 0.14)),
    url("assets/home-kitchen.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 28%, rgba(199, 120, 44, 0.25), transparent 26rem),
    linear-gradient(0deg, rgba(16, 35, 29, 0.78), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 10rem 0 8.5rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.statement p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  font-weight: 700;
}

.hero h1 {
  max-width: 10ch;
  font-size: 5.75rem;
}

.hero-lede {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(16, 35, 29, 0.72);
  backdrop-filter: blur(12px);
}

.hero-strip span {
  min-height: 4.5rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-align: center;
}

.section {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 6.5rem 0;
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.48fr);
  gap: 3rem;
  align-items: start;
}

.intro-copy h2,
.section-heading h2,
.contact h2 {
  max-width: 48rem;
  font-size: 3rem;
}

.intro-copy p,
.section-heading p,
.contact-copy p {
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.profile-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-panel > div,
.contact-row {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.profile-panel > div:last-child,
.contact-row:last-child {
  border-bottom: 0;
}

.label,
.fact-card span,
.contact-row span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-panel strong,
.contact-row strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.facts {
  width: 100%;
  max-width: none;
  padding-right: max(1.25rem, calc((100% - 1160px) / 2));
  padding-left: max(1.25rem, calc((100% - 1160px) / 2));
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.facts .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.fact-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.fact-card,
.work-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.fact-card {
  min-height: 9rem;
  padding: 1.25rem;
  color: var(--ink);
}

.fact-card strong {
  display: block;
  margin-top: 0.65rem;
  overflow-wrap: anywhere;
  font-size: 1.35rem;
  line-height: 1.2;
}

.sources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.sources a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  min-height: 17rem;
  padding: 1.25rem;
}

.work-number {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.work-card h3 {
  margin: 2.6rem 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.work-card p {
  margin: 0;
  color: var(--ink-soft);
}

.statement {
  padding: 5rem max(1.25rem, calc((100% - 1160px) / 2));
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(241, 231, 215, 0.95), rgba(251, 247, 239, 0.9)),
    linear-gradient(135deg, var(--gold), var(--teal));
}

.statement-inner {
  max-width: 58rem;
}

.statement p {
  font-size: 2.7rem;
}

.statement span {
  display: block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 800;
}

.contact {
  width: min(1160px, calc(100% - 2.5rem));
}

.contact-row {
  transition:
    background 160ms ease,
    color 160ms ease;
}

a.contact-row:hover,
a.contact-row:focus-visible {
  color: var(--white);
  background: var(--green);
  outline: none;
}

a.contact-row:hover span,
a.contact-row:focus-visible span {
  color: rgba(255, 255, 255, 0.78);
}

.simple-page {
  padding-top: 5.5rem;
}

.page-hero {
  min-height: 34rem;
  display: grid;
  align-content: center;
  padding: 7rem max(1.25rem, calc((100% - 1160px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 35, 29, 0.92), rgba(16, 35, 29, 0.56), rgba(16, 35, 29, 0.18)),
    url("assets/home-kitchen.png") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.cooking-hero {
  background:
    linear-gradient(90deg, rgba(16, 35, 29, 0.92), rgba(16, 35, 29, 0.5), rgba(16, 35, 29, 0.12)),
    url("assets/home-kitchen.png") center / cover no-repeat;
}

.family-hero {
  background:
    linear-gradient(90deg, rgba(16, 35, 29, 0.94), rgba(39, 98, 77, 0.58), rgba(199, 120, 44, 0.2)),
    url("assets/home-kitchen.png") center / cover no-repeat;
}

.story-section {
  width: min(1160px, calc(100% - 2.5rem));
}

.story-list {
  display: grid;
  gap: 1rem;
}

.story-list article {
  display: grid;
  grid-template-columns: 4rem minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.story-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.story-list span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.story-list h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.story-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem max(1.25rem, calc((100% - 1160px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.4rem);
    right: 1.25rem;
    display: none;
    width: min(18rem, calc(100% - 2.5rem));
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background: rgba(39, 98, 77, 0.1);
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .intro-grid,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .fact-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(16, 35, 29, 0.94), rgba(16, 35, 29, 0.68)),
      url("assets/home-kitchen.png") center / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 2rem, 1160px);
    padding-bottom: 10rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 3rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    width: min(100% - 2rem, 1160px);
    padding: 4.5rem 0;
  }

  .facts {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .contact h2 {
    font-size: 2.2rem;
  }

  .fact-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .statement {
    padding: 4rem 1rem;
  }

  .statement p {
    font-size: 2rem;
  }

  .site-footer {
    display: grid;
  }

  .simple-page {
    padding-top: 4.6rem;
  }

  .page-hero {
    min-height: 30rem;
    padding: 5rem 1rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .story-section {
    width: min(100% - 2rem, 1160px);
  }

  .story-list article {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}