/* ============================================
   岡山農園 - スタイルシート
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red:         #e05a5a;
  --red-light:   #f5a0a0;
  --red-pale:    #fff0f0;
  --green:       #5a9e6e;
  --green-light: #a8d5b5;
  --green-pale:  #f0f9f3;
  --yellow:      #f5c842;
  --yellow-pale: #fffbea;
  --cream:       #fffdf6;
  --brown:       #7a5c3a;
  --brown-light: #c8a882;
  --text:        #3a3028;
  --text-mid:    #6b5c4e;
  --text-light:  #a08878;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --radius:      18px;
  --radius-sm:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   ナビゲーション
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,253,246,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(224,90,90,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--red); background: var(--red-pale); }

.nav-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.nav-btn:hover { background: #c84a4a !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   ボタン
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224,90,90,0.35);
}
.btn-primary:hover {
  background: #c84a4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,90,90,0.45);
}
.btn-large { padding: 18px 52px; font-size: 1.1rem; }

/* ============================================
   セクション共通
   ============================================ */
.section { padding: 100px 0; position: relative; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 56px;
  line-height: 2;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.commitment-card:nth-child(2) { transition-delay: 0.15s; }
.commitment-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(2) { transition-delay: 0.15s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.story-block:nth-child(2) { transition-delay: 0.15s; }
.story-block:nth-child(3) { transition-delay: 0.3s; }
.story-block:nth-child(4) { transition-delay: 0.45s; }
.voice-card:nth-child(2) { transition-delay: 0.15s; }
.voice-card:nth-child(3) { transition-delay: 0.3s; }

/* ウェーブ区切り */
.wave-bottom, .wave-top {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
}
.wave-bottom { bottom: -1px; }
.wave-top    { top: -1px; }
.wave-bottom svg, .wave-top svg { width: 100%; display: block; }

.section-deco {
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--red-pale) 0px, var(--red-pale) 12px,
    var(--green-pale) 12px, var(--green-pale) 24px
  );
}

/* ============================================
   ① ヒーロー
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* 左：テキスト側 */
.hero-content {
  background: linear-gradient(160deg, #fff8f0 0%, #fff9e8 60%, #f4fdf7 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 100px max(48px, calc((100vw - 1100px) / 2 + 48px));
  position: relative;
  z-index: 2;
}

/* 右：写真側 */
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* 写真左端をなめらかにぼかす */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff8f0 0%, transparent 18%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo-badges {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}
.hero-photo-badges span {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.hero-sub {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--green);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--red);
  position: relative;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  opacity: 0.65;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 2.1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.badge {
  display: inline-block;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   ② 農園について
   ============================================ */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 20px;
}
.about-text p { color: var(--text-mid); margin-bottom: 24px; }

.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  border: 1.5px solid var(--green-light);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 30%;
}
.about-info { padding: 24px; }
.about-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}
.about-info dt { font-size: 0.82rem; font-weight: 700; color: var(--text-light); white-space: nowrap; }
.about-info dd { font-size: 0.95rem; font-weight: 500; color: var(--text); }

/* ============================================
   ③ こだわり
   ============================================ */
.commitment {
  background: linear-gradient(180deg, #fffff8 0%, #f5fff8 100%);
  padding-bottom: 120px;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.commitment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.commitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.commitment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.commitment-card:nth-child(1)::before { background: linear-gradient(90deg, #5b8dd9, #9ec4f5); }
.commitment-card:nth-child(2)::before { background: linear-gradient(90deg, var(--green), var(--green-light)); }
.commitment-card:nth-child(3)::before { background: linear-gradient(90deg, #d4845a, #f5c49e); }

/* こだわり2の画像 */
.commitment-img {
  margin: -36px -28px 24px;
}
.commitment-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 60%;
}

.commitment-icon { font-size: 2.4rem; margin-bottom: 8px; }
.commitment-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.commitment-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--text);
}
.commitment-card:nth-child(1) .commitment-title span { color: #5b8dd9; }
.commitment-card:nth-child(2) .commitment-title span { color: var(--green); }
.commitment-card:nth-child(3) .commitment-title span { color: #c4713a; }

.commitment-body {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 20px;
}
.commitment-quote {
  background: var(--cream);
  border-left: 3px solid var(--green-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 0.86rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.9;
}
.commitment-card:nth-child(1) .commitment-quote { border-color: #9ec4f5; }
.commitment-card:nth-child(3) .commitment-quote { border-color: #f5c49e; }

/* ============================================
   ④ 品種紹介
   ============================================ */
.products { background: var(--cream); }

.products-category { margin-bottom: 64px; }
.products-category-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-icon { font-size: 1.8rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products-grid--single {
  grid-template-columns: 1fr 1fr;
  max-width: 640px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card--melon { }

.product-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-body { padding: 22px 20px; }
.product-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.product-name-ruby {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-left: 4px;
}
.product-season {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-pale);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.product-season--melon {
  color: var(--green);
  background: var(--green-pale);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}
.product-tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.product-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.product-tag--melon {
  background: var(--green-pale);
  color: var(--green);
}
.product-tag--set {
  background: #f3eeff;
  color: #7c5cbf;
}

/* セット商品カード */
.product-card--set { }

.product-photo--set { position: relative; }
.product-set-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: #7c5cbf;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 0.08em;
}

.product-season--set {
  color: #7c5cbf;
  background: #f3eeff;
}

/* セット内容表示 */
.product-set-contents {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 16px;
}
.product-set-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.product-set-icon { font-size: 2rem; }
.product-set-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.product-set-note {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 2px;
}
.product-set-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ============================================
   ⑤ 農家の想い
   ============================================ */
.story {
  background: linear-gradient(135deg, #3d7a54 0%, #2d6040 60%, #4a7c3f 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '🌿';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  top: -4rem; right: -4rem;
  pointer-events: none;
}

.story-label { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }
.story-title { color: #fff; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-block {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: #fff;
}

.story-block--wide {
  grid-column: 1 / -1;
}

.story-img {
  margin: -36px -28px;
  height: calc(100% + 72px);
  min-height: 240px;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
/* テキストブロック内の写真（上部に配置） */
.story-img--inline {
  margin: -36px -28px 24px;
  height: 180px;
}
.story-img--inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius) var(--radius) 0 0;
}
.story-img--wide {
  height: 260px;
}
.story-img--wide img {
  object-position: center 30%;
}

.story-icon { font-size: 2.2rem; margin-bottom: 14px; }
.story-block h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 14px;
}
.story-block p {
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(255,255,255,0.88);
}

/* ============================================
   ⑥ お客さまの声
   ============================================ */
.voice { background: var(--yellow-pale); }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 20px;
  font-size: 4rem;
  line-height: 1;
  color: var(--yellow);
  font-family: Georgia, serif;
  opacity: 0.45;
}
.voice-category-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.voice-category-label--gold {
  border-color: var(--yellow);
  margin-top: 52px;
}
.voice-category-label--dark {
  border-color: #6a6a8a;
  margin-top: 52px;
}
.voice-category-label--melon {
  border-color: var(--green);
  margin-top: 52px;
}
.voice-category-icon { font-size: 1.4rem; }
.voice-grid { margin-bottom: 0; }
.voice-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.voice-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-top: 16px;
}
.voice-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 14px;
}
.voice-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.voice-attr {
  font-size: 0.76rem;
  color: var(--text-light);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 10px;
}
.voice-name { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }
.voice-note { font-size: 0.78rem; color: var(--text-light); text-align: center; }

/* ============================================
   ⑦ CTA
   ============================================ */
.cta { background: linear-gradient(135deg, #fff5f0 0%, #fff9e6 100%); }

.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }

.cta-photo {
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 40%;
}

.cta-deco { font-size: 2.8rem; margin-bottom: 20px; letter-spacing: 12px; }
.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
}
.cta-desc { font-size: 1rem; color: var(--text-mid); line-height: 2; margin-bottom: 36px; }
.cta-buttons { margin-bottom: 32px; }
.cta-microcopy {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.cta-info { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.cta-info p { font-size: 0.9rem; color: var(--text-mid); font-weight: 500; }

/* ============================================
   お知らせセクション（トップページ）
   ============================================ */
.news {
  padding-top: 60px;
  padding-bottom: 60px;
}

.news-list {
  max-width: 720px;
  margin: 0 auto 32px;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}

.news-item:first-child {
  border-top: 1px solid #eee;
}

.news-date {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  min-width: 90px;
  padding-top: 2px;
}

.news-content {
  flex: 1;
}

.news-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.news-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.news-more {
  text-align: center;
  margin-top: 16px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

@media (max-width: 640px) {
  .news-item {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   フッター
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 32px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; }
.footer .logo-text { color: #fff; font-size: 1.3rem; }
.footer .logo-icon { font-size: 1.8rem; }
.footer-address { font-size: 0.88rem; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 28px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 360px;
  }
  .hero-content {
    padding: 100px 24px 48px;
    text-align: center;
  }
  .hero-badges { justify-content: center; }
  .hero-photo::before {
    background: linear-gradient(to bottom, #fff8f0 0%, transparent 20%);
  }

  .about-grid { grid-template-columns: 1fr; }
  .commitment-list { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-block--wide { grid-column: auto; }
  .voice-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 2px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; width: 100%; }
  .hamburger { display: flex; }

  .section { padding: 72px 0; }
  .commitment-list { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid--single { grid-template-columns: 1fr; max-width: 100%; }
  .voice-grid { grid-template-columns: 1fr; }
  .hero { grid-template-rows: auto 280px; }
  .hero-photo img { object-position: center 25%; }
  .deco-circle--1 { width: 300px; height: 300px; }
}
