:root {
  --ink: #2c2116;
  --muted: #6f5d49;
  --line: #dec9aa;
  --paper: #f7f0e5;
  --cream: #fff8ef;
  --white: #ffffff;
  --ember: #b77528;
  --ember-dark: #885117;
  --olive: #efe1cc;
  --olive-soft: #fff3e4;
  --shadow: 0 18px 48px rgba(87, 61, 31, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffaf2 0%, var(--paper) 42%, #f3e6d5 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(100% - 32px, var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(183, 117, 40, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(96, 64, 31, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  color: #4d3b29;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, #f7c06a 0%, var(--ember) 56%, #9a5d20 100%);
  color: #fffaf2;
  box-shadow: 0 14px 30px rgba(183, 117, 40, 0.24);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--ember-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
}

.hero,
.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
  align-items: center;
  gap: 48px;
  min-height: 760px;
  padding: 70px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 6vw, 5.95rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.03;
}

.section-heading-wide {
  max-width: 980px;
}

.section-heading-fill {
  max-width: 1120px;
}

.heading-compact {
  font-size: clamp(1.95rem, 3.35vw, 3rem);
}

.heading-balanced {
  font-size: clamp(2rem, 3.25vw, 3.1rem);
}

.heading-series {
  font-size: clamp(1.65rem, 2.45vw, 2.25rem);
}

.heading-one-line {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.9rem, 3.35vw, 3rem);
}

.heading-ad-line {
  font-size: clamp(1.8rem, 3.05vw, 2.75rem);
}

.heading-signature {
  font-size: clamp(2.1rem, 3.25vw, 3rem);
}

.heading-symphony,
.heading-advisor {
  font-size: clamp(1.75rem, 2.65vw, 2.35rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.split-section > div > p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(87, 61, 31, 0.08);
}

.hero-metrics dt {
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-inset {
  position: absolute;
  right: -22px;
  bottom: -32px;
  width: min(48%, 320px);
  height: 220px;
  object-fit: cover;
  border: 8px solid #fffaf2;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 39, 32, 0.18);
}

.intro-band {
  padding: 42px;
  background: linear-gradient(135deg, #fff6e8 0%, #ead5b8 100%);
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid rgba(183, 117, 40, 0.22);
}

.intro-band p {
  max-width: 1020px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.16;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.section-heading-wide {
  max-width: 1180px;
}

.section-heading.section-heading-fill {
  max-width: 1180px;
}

.product-intro {
  margin-bottom: 42px;
}

.cooking-worlds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 30px;
}

.cooking-worlds article {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cooking-worlds h3 {
  margin-bottom: 8px;
}

.cooking-worlds p {
  margin-bottom: 0;
}

.series-line {
  margin-bottom: 10px !important;
  color: var(--ember);
  font-weight: 900;
}

.series-heading {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

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

.buyer-section {
  padding-top: 42px;
}

.buyer-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.buyer-grid div,
.faq-grid details {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.buyer-grid strong,
.faq-grid summary {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.buyer-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-grid summary {
  cursor: pointer;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-card::after,
.quality-image::after,
.hero-media::after,
.page-hero::after,
.asset-grid::after {
  pointer-events: none;
}

.product-card::after {
  content: "COOKERYAKI";
  position: absolute;
  right: 16px;
  bottom: 96px;
  z-index: 1;
  color: rgba(17, 16, 14, 0.22);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(214, 147, 61, 0.14);
}

.product-card img {
  width: 100%;
  height: clamp(230px, 22vw, 280px);
  aspect-ratio: auto;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #f8f3ea 0%, #e9dfcf 100%);
}

.product-card div {
  padding: 22px;
}

.product-card p {
  color: var(--muted);
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--ember) !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 48px;
  align-items: start;
}

.text-link {
  color: var(--ember);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px 18px;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  grid-row: span 2;
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.process-list strong {
  display: block;
  font-size: 1.08rem;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 46px;
  align-items: center;
}

.quality-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-content h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.video-frame {
  overflow: hidden;
  background: #2c2116;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-grid div {
  padding: 20px;
  background: var(--olive-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid strong {
  display: block;
  margin-bottom: 8px;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.reviews-section {
  padding-top: 76px;
}

.faq-section {
  padding-top: 44px;
}

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

figure {
  margin: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote {
  margin: 0 0 20px;
  color: var(--muted);
}

figcaption {
  font-weight: 900;
}

.stars {
  margin-bottom: 14px;
  color: var(--ember);
  letter-spacing: 0.06em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
  padding: 52px;
  background: linear-gradient(135deg, #ead2ae 0%, #fff7eb 100%);
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid rgba(183, 117, 40, 0.26);
}

.contact-section p {
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card a:not(.button) {
  color: var(--ink);
  text-decoration: none;
}

.brand-proof {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(183, 117, 40, 0.26);
  border-radius: 8px;
  background: rgba(183, 117, 40, 0.26);
}

.brand-proof div {
  padding: 18px;
  background: #fff8ef;
}

.brand-proof strong {
  display: block;
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.brand-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.asset-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.asset-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.asset-grid img:only-child {
  grid-column: 1 / -1;
}

.download-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.download-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.priority-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8ef 0%, #ead7bd 100%);
  border: 1px solid rgba(183, 117, 40, 0.34);
  border-radius: 8px;
}

.priority-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: contain;
  padding: 12px;
  opacity: 0.9;
}

.priority-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  background: rgba(214, 147, 61, 0.16);
  border: 1px solid rgba(214, 147, 61, 0.38);
  border-radius: 999px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-figure {
  overflow: hidden;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-figure img {
  width: 100%;
  height: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 28px;
  padding: 26px 0 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  max-width: 420px;
}

.site-footer img {
  width: 150px;
  margin-bottom: 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink);
  font-weight: 800;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 46px;
  align-items: center;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 84px 0 62px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--ember);
  font-weight: 800;
  text-decoration: none;
}

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

.content-card,
.spec-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-card p,
.spec-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list li:last-child {
  border-bottom: 0;
}

.spec-list strong {
  color: var(--ink);
}

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

.related-grid a {
  display: block;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    width: 146px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    min-height: 42px;
    padding: 0 15px;
    background: var(--ink);
    color: var(--white);
    border: 0;
    border-radius: 8px;
    font-weight: 800;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
  }

  .site-header.is-open .main-nav a {
    padding: 13px 4px;
    border-top: 1px solid var(--line);
  }

  .hero,
  .split-section,
  .quality-section,
  .contact-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-main {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .product-grid,
  .buyer-grid,
  .faq-grid,
  .review-grid,
  .content-grid,
  .related-grid,
  .cooking-worlds,
  .brand-proof {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 680px) {
  .hero,
  .section {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: 3.2rem;
  }

  .heading-one-line {
    white-space: normal;
  }

  .hero-metrics,
  .product-grid,
  .feature-grid,
  .buyer-grid,
  .faq-grid,
  .review-grid,
  .content-grid,
  .related-grid,
  .cooking-worlds,
  .brand-proof,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-inset {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 12px;
    border: 0;
  }

  .intro-band,
  .contact-section {
    padding: 28px;
  }

  .section {
    padding: 68px 0;
  }

  .quality-image img {
    min-height: 0;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
