:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #fff8f3;
  --text: #2d2d2d;
  --muted: #6d6a67;
  --accent: #d95f35;
  --accent-dark: #a94122;
  --border: #ead9ce;
  --footer: #292421;
  --shadow: 0 20px 45px rgba(61, 45, 36, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent-dark);
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.container {
  width: min(100% - 32px, 800px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.hero {
  padding: 54px 0 26px;
}

.article-card,
.policy-card,
.terms-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-content,
.policy-card,
.terms-card {
  padding: clamp(24px, 5vw, 46px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: #23201e;
}

.policy-card h1,
.terms-card h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.045em;
}

.meta,
.updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #15110f;
  border: 1px solid rgba(217, 95, 53, 0.18);
  margin: 0 0 30px;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

p,
li {
  color: #3d3936;
  font-size: 1.06rem;
}

p {
  margin: 0 0 20px;
}

h2,
h3 {
  margin: 30px 0 14px;
  line-height: 1.25;
  color: #24211f;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
}

.policy-card h2,
.terms-card h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: 0;
}

ul {
  padding-left: 22px;
}

.recipe-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.recipe-list li {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffaf6, #ffffff);
  color: #3f3a36;
}

.recipe-list strong {
  color: var(--accent-dark);
}

.newsletter-box,
.notice {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid #e3dfda;
  border-radius: 22px;
  background: #f6f4f1;
}

.newsletter-box h2 {
  margin: 0 0 10px;
}

.newsletter-box p {
  margin-bottom: 18px;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid #d7d0ca;
  border-radius: 999px;
  padding: 13px 16px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.newsletter-form input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(217, 95, 53, 0.18);
}

.newsletter-form button,
.cookie-note button {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  padding: 13px 22px;
  white-space: nowrap;
}

.cookie-note button {
  appearance: none;
  padding: 10px 18px;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible,
.cookie-note button:hover,
.cookie-note button:focus-visible {
  background: var(--accent-dark);
}

.newsletter-status {
  min-height: 1.5em;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

main:not(.hero) {
  padding: 48px 0 56px;
}

.site-footer {
  margin-top: 54px;
  background: var(--footer);
  color: #f8f2ee;
  text-align: center;
  padding: 34px 16px;
}

.site-footer p {
  color: #f8f2ee;
  margin: 0 0 10px;
  font-size: 0.96rem;
}

.legal-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #ffd8c8;
  font-size: 0.95rem;
}

.cookie-note {
  position: fixed;
  left: 50%;
  bottom: 18px;
  width: min(calc(100% - 32px), 760px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 35px rgba(36, 28, 22, 0.16);
  z-index: 20;
}

.cookie-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-note a {
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 680px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-list {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 28px;
  }

  .article-card,
  .policy-card,
  .terms-card {
    border-radius: 22px;
  }

  .video-shell {
    border-radius: 16px;
  }

  .newsletter-form,
  .cookie-note {
    align-items: stretch;
    flex-direction: column;
  }

  .newsletter-form button,
  .cookie-note button {
    width: 100%;
  }
}
