:root {
  color-scheme: light;
  --ink: #151716;
  --muted: #58605c;
  --paper: #ffffff;
  --wash: #f4f7f5;
  --line: #d9e3de;
  --forest: #1d5f49;
  --forest-dark: #12392f;
  --tomato: #b94534;
  --mustard: #d9a441;
  --blue: #2c5f8d;
  --shadow: 0 18px 45px rgba(20, 33, 27, 0.12);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--forest-dark);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--forest-dark);
  border-radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.04rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
}

.top-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 760;
}

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

.top-nav a:hover,
.site-footer a:hover {
  color: var(--tomato);
}

.article-hero {
  min-height: clamp(540px, 72vh, 720px);
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(90deg, rgba(15, 22, 18, 0.88) 0%, rgba(15, 22, 18, 0.68) 36%, rgba(15, 22, 18, 0.12) 70%), url("assets/kitchen-safety-hero.png");
  background-position: center right;
  background-size: cover;
}

.hero-copy {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding: 56px 0 70px;
  color: #fff;
}

.kicker {
  margin: 0 0 12px;
  color: var(--tomato);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-hero .kicker {
  color: #f0c15d;
}

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

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.dek {
  max-width: 56ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
}

.disclosure-bar {
  background: #fff7e4;
  border-block: 1px solid #ead19c;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.disclosure-bar .page-inner {
  display: flex;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: #4d4638;
  font-size: 0.9rem;
}

.page-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(44px, 7vw, 84px) 0;
}

.article-body {
  min-width: 0;
}

.article-body .lead {
  color: var(--ink);
  font-size: clamp(1.28rem, 2.4vw, 1.6rem);
  line-height: 1.45;
}

.article-body p {
  margin: 22px 0;
  color: #2d3431;
  font-size: 1.08rem;
}

.article-body h2,
.legal-content h2,
.section-heading h2 {
  margin: 42px 0 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
}

.image-callout {
  margin: 34px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-callout img {
  width: 100%;
}

blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  background: var(--wash);
  border-left: 5px solid var(--forest);
}

blockquote p {
  margin: 0 !important;
  color: var(--forest-dark) !important;
  font-size: 1.34rem !important;
  line-height: 1.38;
}

.product-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 38px 0;
  padding: 26px;
  color: #fff;
  background: var(--forest-dark);
  border-radius: 8px;
}

.product-box h2 {
  margin: 5px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.product-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.box-label {
  color: #f1c35e !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  color: #fff;
  background: var(--tomato);
  border-radius: 7px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  background: #993727;
}

.button-dark {
  background: var(--forest-dark);
}

.article-note {
  padding: 16px;
  color: var(--muted) !important;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem !important;
}

.cta-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding: 20px;
  background: #fff7e4;
  border: 1px solid #ead19c;
  border-radius: 8px;
}

.cta-strip p {
  margin: 0;
  color: #4d4638;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 760;
}

.side-rail {
  position: sticky;
  top: 96px;
}

.rail-card {
  padding: 18px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rail-title {
  margin: 0 0 12px;
  color: var(--forest-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-link {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.preview-link:first-of-type {
  border-top: 0;
}

.preview-link strong {
  line-height: 1.25;
}

.preview-tag,
.story-card span {
  color: var(--tomato);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.more-stories {
  padding: clamp(44px, 7vw, 78px) 0;
  background: var(--wash);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 680px;
}

.section-heading h2 {
  margin-top: 0;
}

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

.story-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.story-card:hover {
  border-color: var(--forest);
}

.story-card strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.site-footer {
  padding: 30px 0;
  color: #e4f0ec;
  background: #111a17;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.site-footer p {
  margin: 6px 0 0;
  color: #b7c8c1;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.legal-page {
  padding: clamp(44px, 8vw, 88px) 0;
  background: var(--wash);
}

.legal-content {
  width: min(850px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h1 {
  max-width: 12ch;
  margin: 0 0 24px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 1.6rem;
}

.legal-content p {
  color: #303734;
  font-size: 1.06rem;
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .side-rail {
    position: static;
  }

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

  .product-box,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
  }

  .article-hero {
    min-height: 650px;
    background-image: linear-gradient(180deg, rgba(15, 22, 18, 0.08) 0%, rgba(15, 22, 18, 0.82) 48%, rgba(15, 22, 18, 0.96) 100%), url("assets/kitchen-safety-hero.png");
    background-position: 70% center;
  }

  .hero-copy {
    width: min(100% - 36px, 720px);
    margin: 0 auto;
    padding-bottom: 40px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .disclosure-bar .page-inner {
    display: block;
  }

  .product-box,
  .cta-strip {
    padding: 20px;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }
}
