/* =============================================
   PEACHBERRY — Premium Fruit Brand CSS
   블루베리: Deep Blue Mood
   설아복숭아: Warm Peach Mood
   ============================================= */

/* --------- RESET & BASE --------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --berry-deep: #1a2d52;
  --berry-mid: #243B6B;
  --berry-purple: #3B2E73;
  --berry-forest: #304D3D;
  --berry-cream: #F8F4ED;
  --berry-accent: #5B8AF0;
  --berry-light: #8BA8E5;

  --peach-gold: #E8956D;
  --peach-soft: #F7C6A3;
  --peach-brown: #4A3428;
  --peach-deep: #C4703E;
  --peach-cream: #FDF6EE;
  --peach-warm: #F2A07B;

  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --black: #0A0A0A;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #888888;

  /* Typography */
  --font-serif: 'Noto Serif KR', 'Georgia', serif;
  --font-sans: 'Noto Sans KR', sans-serif;
  --font-en: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-gap: 120px;
  --container-max: 1200px;
  --container-pad: 40px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --------- UTILITY --------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: 2px;
}

.section-tag--blue {
  color: var(--berry-accent);
  background: rgba(91, 138, 240, 0.1);
  border: 1px solid rgba(91, 138, 240, 0.25);
}

.section-tag--peach {
  color: var(--peach-deep);
  background: rgba(232, 149, 109, 0.1);
  border: 1px solid rgba(232, 149, 109, 0.3);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-title--blue { color: var(--berry-deep); }
.section-title--peach { color: var(--peach-brown); }

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  margin-top: 20px;
  line-height: 1.8;
}

/* --------- IMAGE PLACEHOLDERS --------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25);
  border: 1px dashed rgba(255,255,255,0.25);
  line-height: 1.6;
  padding: 16px;
}

.img-placeholder--blue { background: rgba(36, 59, 107, 0.5); }
.img-placeholder--blue-hero { background: rgba(26, 45, 82, 0.4); min-height: 100%; }
.img-placeholder--peach { background: rgba(74, 52, 40, 0.4); }
.img-placeholder--peach-hero { background: rgba(74, 52, 40, 0.35); min-height: 100%; }
.img-placeholder--story-berry { background: rgba(48, 77, 61, 0.4); }
.img-placeholder--story-peach { background: rgba(74, 52, 40, 0.35); }
.img-placeholder--experience { background: rgba(36, 59, 107, 0.35); }
.img-placeholder--harvest { background: rgba(74, 52, 40, 0.35); }
.img-placeholder--origin { background: rgba(74, 52, 40, 0.3); min-height: 360px; color: rgba(200,140,100,0.7); border-color: rgba(200,140,100,0.2); }
.img-placeholder--final-berry { background: rgba(26, 45, 82, 0.45); }
.img-placeholder--final-peach { background: rgba(74, 52, 40, 0.4); }
.img-placeholder--sm { min-height: 100px; font-size: 11px; }
.img-placeholder--brix { min-height: 160px; }
.img-placeholder--legal {
  min-height: 120px;
  background: rgba(232, 149, 109, 0.08);
  border-color: rgba(232, 149, 109, 0.2);
  color: rgba(180, 100, 60, 0.6);
  font-size: 11px;
}

/* --------- BUTTONS --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1.5px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--berry {
  background: transparent;
  border-color: rgba(91, 138, 240, 0.6);
  color: var(--berry-accent);
}
.btn--berry:hover { background: rgba(91, 138, 240, 0.1); border-color: var(--berry-accent); }

.btn--peach {
  background: transparent;
  border-color: rgba(242, 160, 123, 0.6);
  color: var(--peach-warm);
}
.btn--peach:hover { background: rgba(242, 160, 123, 0.1); border-color: var(--peach-warm); }

.btn--berry-solid {
  background: var(--berry-mid);
  color: var(--white);
  border-color: var(--berry-mid);
}
.btn--berry-solid:hover { background: var(--berry-deep); border-color: var(--berry-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(36,59,107,0.3); }

.btn--berry-outline {
  background: transparent;
  color: var(--berry-mid);
  border-color: var(--berry-mid);
}
.btn--berry-outline:hover { background: var(--berry-mid); color: var(--white); }

.btn--peach-solid {
  background: var(--peach-gold);
  color: var(--white);
  border-color: var(--peach-gold);
}
.btn--peach-solid:hover { background: var(--peach-deep); border-color: var(--peach-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196, 112, 62, 0.3); }

.btn--peach-outline {
  background: transparent;
  color: var(--peach-brown);
  border-color: var(--peach-brown);
}
.btn--peach-outline:hover { background: var(--peach-brown); color: var(--white); }

.btn--kakao {
  background: #FEE500;
  color: #3B1D0E;
  border-color: #FEE500;
  font-weight: 600;
}
.btn--kakao:hover { background: #FFDF00; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(254, 229, 0, 0.4); }

.btn--modal-submit {
  width: 100%;
  background: var(--berry-mid);
  color: var(--white);
  border-color: var(--berry-mid);
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
}
.btn--modal-submit:hover { background: var(--berry-deep); }

.btn--full { width: 100%; justify-content: center; }

.btn__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.btn__dot--berry { background: var(--berry-accent); }
.btn__dot--peach { background: var(--peach-warm); }
.btn__dot--berry-light { background: rgba(255,255,255,0.7); }
.btn__dot--peach-light { background: rgba(255,255,255,0.7); }

/* --------- BRAND LOGO --------- */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-logo__en {
  font-family: var(--font-en);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
}

.brand-logo__divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.brand-logo__ko {
  font-family: var(--font-sans);
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.7);
}

.brand-logo--white .brand-logo__en { color: var(--white); }

/* --------- NAVIGATION --------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__logo-text {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}

.nav__logo-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s var(--ease);
}

.nav__link.berry::after { background: var(--berry-accent); }
.nav__link.peach::after { background: var(--peach-warm); }

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  color: var(--white);
}
.nav__link--cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.nav__link--cta::after { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------- SECTION DIVIDERS --------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px var(--container-pad);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-divider--berry {
  background: var(--berry-deep);
  color: rgba(255,255,255,0.6);
}

.section-divider--peach {
  background: var(--peach-brown);
  color: rgba(255,255,255,0.6);
}

.divider-dot {
  color: rgba(255,255,255,0.3);
}

/* ===================================
   SECTION 1: HERO
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__split {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero__half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero__half-img-wrap {
  width: 100%;
  height: 100%;
}

.hero__half-img-wrap .img-placeholder {
  height: 100%;
  min-height: 100vh;
}

.hero__half-overlay {
  position: absolute;
  inset: 0;
}

.hero__half-overlay--blue {
  background: linear-gradient(135deg, rgba(26,45,82,0.85) 0%, rgba(59,46,115,0.7) 100%);
}

.hero__half-overlay--peach {
  background: linear-gradient(135deg, rgba(74,52,40,0.8) 0%, rgba(196,112,62,0.65) 100%);
}

.hero__center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 640px;
  padding: 0 24px;
}

.hero__brand-mark {
  margin-bottom: 32px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__scroll-text {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ===================================
   SECTION 2: BERRYFARM HERO
   =================================== */
.bb-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--berry-deep);
  overflow: hidden;
}

.bb-hero__visual {
  position: absolute;
  inset: 0;
}

.bb-hero__visual .img-placeholder {
  height: 100%;
  min-height: 90vh;
}

.bb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 45, 82, 0.92) 0%,
    rgba(36, 59, 107, 0.75) 50%,
    rgba(26, 45, 82, 0.5) 100%
  );
}

.bb-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 140px var(--container-pad) 100px;
  max-width: 700px;
}

.bb-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.bb-hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 12px;
  font-weight: 300;
}

.bb-hero__cert-note {
  font-size: 12px;
  color: var(--berry-accent);
  opacity: 0.8;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.bb-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================
   SECTION 3: TRUST
   =================================== */
.bb-trust {
  background: var(--berry-cream);
  padding: var(--section-gap) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 24px;
  border: 1px solid rgba(36,59,107,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(36,59,107,0.1);
}

.trust-card--highlight {
  border-color: rgba(36,59,107,0.15);
  background: linear-gradient(135deg, #fff 0%, #F0F5FF 100%);
}

.trust-card--wide { grid-column: span 2; }

.trust-card--stat {
  background: var(--berry-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-card--supply {
  grid-column: span 2;
}

.trust-card__icon {
  font-size: 28px;
  color: var(--berry-accent);
  margin-bottom: 16px;
}

.trust-card--stat .trust-card__icon { color: rgba(255,255,255,0.6); }

.trust-stat__number {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat__unit {
  font-size: 20px;
  font-weight: 400;
}

.trust-card__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--berry-deep);
  line-height: 1.4;
  margin-bottom: 10px;
}

.trust-card--stat .trust-card__title,
.trust-card--stat .trust-card__desc { color: var(--white); }
.trust-card--stat .trust-card__desc { opacity: 0.75; }

.trust-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

.trust-card__img-wrap {
  margin-top: 16px;
  border-radius: 3px;
  overflow: hidden;
}

.trust-supply__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.trust-supply__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}

.supply-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--berry-accent);
  flex-shrink: 0;
}

/* ===================================
   SECTION 4: STORY
   =================================== */
.bb-story {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bb-story__visual {
  position: relative;
  min-height: 600px;
}

.bb-story__visual .img-placeholder { height: 100%; min-height: 600px; }

.bb-story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(26,45,82,0.15) 100%);
}

.bb-story__content {
  background: var(--berry-deep);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bb-story__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.bb-story__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bb-story__text p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-weight: 300;
}

.bb-story__farms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.farm-tag {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  border-radius: 2px;
  font-family: var(--font-sans);
}

/* ===================================
   SECTION 5: COMPARISON
   =================================== */
.bb-compare {
  background: var(--white);
  padding: var(--section-gap) 0;
}

.compare-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.compare-col { padding: 40px 36px; }

.compare-col--import {
  background: #f4f4f4;
}

.compare-col--berry {
  background: var(--berry-deep);
}

.compare-col__header {
  margin-bottom: 28px;
}

.compare-label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.compare-col--berry .compare-label { color: var(--white); }

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
}

.compare-item--bad { color: var(--text-mid); }
.compare-item--bad i { color: #ccc; font-size: 12px; }

.compare-item--good { color: rgba(255,255,255,0.85); }
.compare-item--good i { color: var(--berry-accent); font-size: 12px; }

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  width: 64px;
}

.compare-vs {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.compare-quote {
  background: var(--berry-cream);
  border-left: 3px solid var(--berry-accent);
  padding: 28px 36px;
  border-radius: 0 4px 4px 0;
}

.compare-quote blockquote {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--berry-deep);
  line-height: 1.85;
  font-weight: 500;
}

/* ===================================
   SECTION 6: EXPERIENCE FARM
   =================================== */
.bb-experience {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bb-experience__visual {
  position: relative;
  min-height: 600px;
  order: 2;
}

.bb-experience__visual .img-placeholder { height: 100%; min-height: 600px; }

.bb-experience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 0%, rgba(48,77,61,0.1) 100%);
}

.bb-experience__content {
  background: var(--berry-forest);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.bb-experience__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.bb-experience__text {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

.bb-experience__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ===================================
   SECTION 7: PRODUCT CTA
   =================================== */
.bb-product {
  background: var(--berry-cream);
  padding: var(--section-gap) 0;
}

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

.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(36,59,107,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(36,59,107,0.12);
}

.product-card__img-wrap {
  height: 220px;
  overflow: hidden;
}

.product-card__img-wrap .img-placeholder {
  height: 220px;
}

.product-card__body {
  padding: 28px 24px;
}

.product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.product-badge--season { background: rgba(91,138,240,0.12); color: var(--berry-mid); }
.product-badge--year { background: rgba(48,77,61,0.12); color: var(--berry-forest); }
.product-badge--handmade { background: rgba(242,160,123,0.12); color: var(--peach-deep); }

.product-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--berry-deep);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===================================
   SECTION 8: PEACH HERO
   =================================== */
.ps-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--peach-brown);
  overflow: hidden;
}

.ps-hero__visual {
  position: absolute;
  inset: 0;
}

.ps-hero__visual .img-placeholder {
  height: 100%;
  min-height: 90vh;
}

.ps-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(74, 52, 40, 0.92) 0%,
    rgba(100, 65, 45, 0.75) 55%,
    rgba(196, 112, 62, 0.4) 100%
  );
}

.ps-hero__content {
  position: relative;
  z-index: 2;
  padding: 140px var(--container-pad) 100px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ps-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.ps-hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 12px;
  font-weight: 300;
}

.ps-hero__cert-note {
  font-size: 12px;
  color: var(--peach-soft);
  opacity: 0.8;
  margin-bottom: 40px;
}

.ps-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================
   SECTION 9: PEACH STORY
   =================================== */
.ps-story {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ps-story__visual {
  position: relative;
  min-height: 600px;
  order: 2;
}

.ps-story__visual .img-placeholder { height: 100%; min-height: 600px; }

.ps-story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 0%, rgba(74,52,40,0.1) 100%);
}

.ps-story__content {
  background: var(--peach-brown);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.ps-story__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.ps-story__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ps-story__text p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-weight: 300;
}

.ps-story__timeline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
}

.timeline-item--highlight {
  border-color: var(--peach-warm);
  background: rgba(242, 160, 123, 0.1);
}

.timeline-month {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  color: var(--peach-warm);
}

.timeline-event {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.timeline-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

/* ===================================
   SECTION 10: ORIGIN
   =================================== */
.ps-origin {
  background: var(--peach-cream);
  padding: var(--section-gap) 0;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.8fr;
  gap: 24px;
  margin-bottom: 60px;
}

.origin-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid rgba(74,52,40,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.origin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(74,52,40,0.1);
}

.origin-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--peach-warm), var(--peach-gold));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}

.origin-card:hover::before { transform: scaleX(1); }

.origin-card__number {
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 300;
  color: rgba(232,149,109,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.origin-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--peach-brown);
  margin-bottom: 12px;
}

.origin-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.origin-photo-wrap {
  border-radius: 4px;
  overflow: hidden;
}

/* ===================================
   SECTION 11: LEGAL
   =================================== */
.ps-legal {
  background: var(--white);
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.legal-inner {
  text-align: center;
}

.ps-legal__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--peach-brown);
  line-height: 1.3;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: stretch;
}

.legal-card {
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(74,52,40,0.1);
  border-radius: 4px;
  background: var(--peach-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.legal-card--center {
  border-color: rgba(232,149,109,0.3);
  background: var(--white);
  padding: 48px 36px;
  box-shadow: 0 0 0 6px rgba(232,149,109,0.06);
}

.legal-card__seal {
  font-size: 36px;
  color: var(--peach-warm);
}

.legal-card__cert-wrap {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
}

.legal-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--peach-brown);
}

.legal-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* EMBLEM */
.legal-emblem {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.legal-emblem__ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(232,149,109,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.legal-emblem__ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(232,149,109,0.25);
}

.legal-emblem__inner {
  text-align: center;
}

.legal-emblem__text {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--peach-brown);
  line-height: 1.5;
}

.legal-emblem__sub {
  display: block;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--peach-warm);
  margin-top: 4px;
}

.legal-main-msg {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--peach-brown);
  line-height: 1.8;
  font-weight: 500;
}

.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(74,52,40,0.04);
  border: 1px solid rgba(74,52,40,0.1);
  border-left: 3px solid var(--peach-warm);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.legal-notice i {
  color: var(--peach-warm);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-notice p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===================================
   SECTION 12: BRIX
   =================================== */
.ps-brix {
  background: var(--peach-cream);
  padding: var(--section-gap) 0;
}

.brix-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
}

.brix-card {
  padding: 48px 40px;
}

.brix-card--general {
  background: #f0ede8;
}

.brix-card--seola {
  background: var(--peach-brown);
  color: var(--white);
}

.brix-card__label {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-mid);
}

.brix-card--seola .brix-card__label { color: rgba(255,255,255,0.7); }

.brix-card__num {
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: rgba(0,0,0,0.15);
  margin-bottom: 8px;
}

.brix-card--seola .brix-card__num { color: rgba(255,255,255,0.2); }

.brix-unit {
  font-size: 28px;
  font-weight: 300;
}

.brix-card__max {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.brix-card__max strong {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--peach-warm);
}

.brix-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc;
  padding-left: 20px;
}

.brix-list li {
  font-size: 14.5px;
  color: var(--text-mid);
}

.brix-card--seola .brix-list li { color: rgba(255,255,255,0.75); }

.brix-card__img {
  margin-top: 24px;
  border-radius: 3px;
  overflow: hidden;
}

.brix-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  width: 60px;
}

.brix-divider span {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

/* ===================================
   SECTION 13: HARVEST
   =================================== */
.ps-harvest {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ps-harvest__visual {
  position: relative;
  min-height: 600px;
}

.ps-harvest__visual .img-placeholder { height: 100%; min-height: 600px; }

.ps-harvest__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(74,52,40,0.15) 100%);
}

.ps-harvest__content {
  background: var(--peach-warm);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ps-harvest__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.ps-harvest__text {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 32px;
}

.harvest-badge-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.harvest-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  font-size: 13.5px;
  color: var(--white);
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.harvest-badge i { font-size: 14px; }

.ps-harvest__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================
   SECTION 14: FINAL CTA
   =================================== */
.final-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.final-cta__visual {
  position: absolute;
  inset: 0;
}

.final-cta__split {
  display: flex;
  height: 100%;
  width: 100%;
}

.final-cta__half {
  flex: 1;
  position: relative;
}

.final-cta__half .img-placeholder { height: 100%; min-height: 80vh; }

.final-cta__half-overlay {
  position: absolute;
  inset: 0;
}

.final-cta__half-overlay--blue {
  background: rgba(26, 45, 82, 0.8);
}

.final-cta__half-overlay--peach {
  background: rgba(74, 52, 40, 0.8);
}

.final-cta__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 24px;
  max-width: 720px;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 36px 0 24px;
}

.final-cta__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 300;
}

.final-cta__btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.final-cta__btn-group .btn:first-child {
  justify-self: end;
}

.final-cta__btn-group .btn:last-child {
  justify-self: start;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px var(--container-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo-en {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
}

.footer__logo-ko {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
}

.footer__desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 16px;
}

.footer__partners {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

.footer__divider { margin: 0 12px; opacity: 0.4; }

.footer__kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #FEE500;
  color: #3B1D0E;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.2s;
}

.footer__kakao:hover { background: #FFD500; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px var(--container-pad);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ===================================
   MODAL
   =================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  width: 90%;
  max-width: 480px;
  border-radius: 6px;
  padding: 48px 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.modal__close:hover { color: var(--text-dark); }

.modal__brand {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 400;
  color: var(--berry-mid);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.modal__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--berry-accent);
  background: var(--white);
}

/* ===================================
   FLOATING CTA
   =================================== */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 36px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateX(0);
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
  text-align: center;
}

.floating-btn--berry {
  background: var(--berry-mid);
  color: var(--white);
}

.floating-btn--peach {
  background: var(--peach-warm);
  color: var(--white);
}

.floating-btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.floating-btn__icon { font-size: 16px; }

/* ===================================
   ANIMATIONS
   =================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===================================
   RESPONSIVE — TABLET
   =================================== */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
    --container-pad: 28px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-card--supply {
    grid-column: span 1;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid .product-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .origin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .origin-grid .origin-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .legal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .legal-card--center {
    grid-column: span 2;
    order: -1;
  }
}

/* ===================================
   RESPONSIVE — MOBILE
   =================================== */
@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
    --container-pad: 20px;
  }

  /* Nav */
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    z-index: 999;
  }

  .nav__menu.open {
    transform: translateY(0);
  }

  .nav__link {
    padding: 16px var(--container-pad);
    font-size: 16px;
    display: block;
  }

  .nav__link--cta {
    margin: 8px var(--container-pad) 0;
    border-radius: 3px;
    text-align: center;
  }

  /* Hero */
  .hero__half--blue { display: none; }
  .hero__half--peach { flex: 1; }
  .hero__half-overlay--peach {
    background: linear-gradient(180deg, rgba(26,45,82,0.85) 0%, rgba(74,52,40,0.8) 100%);
  }

  /* Blueberry sections */
  .bb-story { grid-template-columns: 1fr; }
  .bb-story__visual { display: none; }
  .bb-story__content { padding: 60px var(--container-pad); }

  .bb-experience { grid-template-columns: 1fr; }
  .bb-experience__visual { order: 0; min-height: 280px; }
  .bb-experience__visual .img-placeholder { min-height: 280px; }
  .bb-experience__content { order: 1; padding: 48px var(--container-pad); }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-card--supply,
  .trust-card--wide { grid-column: span 1; }
  .trust-card { padding: 24px 18px; }

  /* Compare */
  .compare-table { grid-template-columns: 1fr; }
  .compare-divider { display: none; }

  /* Products */
  .product-grid { grid-template-columns: 1fr; }
  .product-grid .product-card:last-child { grid-column: span 1; max-width: 100%; margin: 0; }

  /* Peach sections */
  .ps-hero__content { padding: 120px var(--container-pad) 80px; margin: 0 auto; }

  .ps-story { grid-template-columns: 1fr; }
  .ps-story__visual { display: none; }
  .ps-story__content { padding: 60px var(--container-pad); order: 1; }

  .origin-grid { grid-template-columns: 1fr; }
  .origin-grid .origin-card:last-child { grid-column: span 1; max-width: 100%; margin: 0; }

  /* Legal */
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card--center { grid-column: span 1; order: 0; }

  /* Brix */
  .brix-compare { grid-template-columns: 1fr; }
  .brix-divider { display: none; }

  /* Harvest */
  .ps-harvest { grid-template-columns: 1fr; }
  .ps-harvest__visual { min-height: 280px; }
  .ps-harvest__visual .img-placeholder { min-height: 280px; }
  .ps-harvest__content { padding: 48px var(--container-pad); }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }

  /* Floating */
  .floating-cta { right: 16px; bottom: 24px; }
  .floating-btn__text { display: none; }
  .floating-btn { padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .floating-btn__icon { font-size: 20px; }
}

@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; align-items: center; }
  .bb-hero__cta,
  .ps-hero__cta,
  .bb-experience__cta,
  .ps-harvest__cta { flex-direction: column; align-items: flex-start; }

  .final-cta__btn-group {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .final-cta__btn-group .btn:first-child,
  .final-cta__btn-group .btn:last-child {
    justify-self: center;
  }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-card--supply,
  .trust-card--wide { grid-column: span 1; }
}
