/* Real Chakki Fresh Atta — brand styles */
:root {
  --orange: #f26b1a;
  --orange-deep: #d4550a;
  --orange-soft: #ff9a3c;
  --beige: #f3e6d0;
  --beige-deep: #e8d5b5;
  --paper: #faf3e6;
  --brown: #3d2a1a;
  --brown-mid: #6b5344;
  --gold: #e8b84a;
  --gold-deep: #c9922e;
  --green: #2f6b3a;
  --white: #fffdf8;
  --ink: #2a1c12;
  --shadow: rgba(61, 42, 26, 0.12);
  --radius: 4px;
  --font-display: "Great Vibes", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-title: "Oswald", "Outfit", sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(242, 107, 26, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(232, 184, 74, 0.12), transparent 45%),
    linear-gradient(180deg, var(--paper) 0%, var(--beige) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
  color: var(--brown);
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 243, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 42, 26, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-link img {
  width: 52px;
  height: 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .script {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--orange);
  line-height: 1;
}

.brand-text .sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(61, 42, 26, 0.15);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-mid);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brown);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.1rem !important;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 253, 248, 0.12);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: rgba(61, 42, 26, 0.25);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2a1c12;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(42, 28, 18, 0.78) 0%, rgba(42, 28, 18, 0.42) 42%, rgba(42, 28, 18, 0.12) 68%, transparent 100%),
    linear-gradient(to top, rgba(42, 28, 18, 0.45), transparent 35%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 5rem;
  max-width: 560px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.05s forwards, sway 5s ease-in-out 1.2s infinite;
  transform-origin: center bottom;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.28s forwards;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 253, 248, 0.88);
  max-width: 28rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.52s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sway {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}

/* ——— Village divider ——— */
.village-band {
  display: block;
  width: 100%;
  height: 48px;
  object-fit: cover;
  object-position: bottom;
  background: linear-gradient(180deg, transparent, rgba(61, 42, 26, 0.06));
}

/* ——— Trust strip ——— */
.trust-strip {
  background: linear-gradient(90deg, var(--orange-deep), var(--orange), var(--orange-soft));
  color: var(--white);
  padding: 1rem 0;
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  text-align: center;
}

.trust-strip li {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.section-head .eyebrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  display: block;
  margin-bottom: 0.35rem;
}

.section-head h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--brown-mid);
  font-size: 1.05rem;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(232, 213, 181, 0.45), rgba(243, 230, 208, 0.3));
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ——— Benefits ——— */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-bottom: 3px solid var(--orange);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--orange));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.benefit h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.benefit p {
  font-size: 0.95rem;
  color: var(--brown-mid);
}

/* ——— Process teaser ——— */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
}

.step-num {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  min-width: 2rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--brown-mid);
}

.process-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ——— Soft roti / pack visual ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow);
  aspect-ratio: 1 / 1;
  background: var(--beige-deep);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-copy .eyebrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
}

.split-copy h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.4rem 0 1rem;
}

.split-copy p {
  color: var(--brown-mid);
  margin-bottom: 1rem;
}

.split-copy p + .btn {
  margin-top: 0.75rem;
}

/* ——— Page hero (inner) ——— */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(242, 107, 26, 0.12), transparent),
    radial-gradient(ellipse at 50% 0%, rgba(232, 184, 74, 0.2), transparent 60%);
  border-bottom: 1px solid rgba(61, 42, 26, 0.08);
}

.page-hero .eyebrow {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.75rem;
}

.page-hero p {
  color: var(--brown-mid);
  max-width: 32rem;
  margin-inline: auto;
}

/* ——— Product ——— */
.pack-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}

.pack-size {
  padding: 0.85rem 1.4rem;
  border: 1.5px solid rgba(61, 42, 26, 0.18);
  background: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  min-width: 5.5rem;
  text-align: center;
}

.pack-size.is-featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, #fff8f0, var(--white));
  box-shadow: 0 0 0 1px var(--orange);
}

.claims {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.claims li {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.claims li::before {
  content: "✦ ";
  color: var(--gold-deep);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 32px var(--shadow);
  background: var(--beige-deep);
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--brown-mid);
  background: var(--white);
}

.buy-block {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(242, 107, 26, 0.1), rgba(232, 184, 74, 0.15));
  border: 1px solid rgba(242, 107, 26, 0.2);
  border-radius: 8px;
}

.buy-block h2 {
  font-family: var(--font-title);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.buy-block p {
  color: var(--brown-mid);
  margin-bottom: 1.25rem;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ——— Process page ——— */
.journey {
  display: grid;
  gap: 0;
  counter-reset: journey;
}

.journey-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(61, 42, 26, 0.1);
  counter-increment: journey;
}

.journey-item::before {
  content: counter(journey, decimal-leading-zero);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}

.journey-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.journey-item p {
  color: var(--brown-mid);
}

.pull-quote {
  margin: 3rem 0 0;
  padding: 2rem 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--brown);
  line-height: 1.35;
  background: linear-gradient(90deg, transparent, rgba(242, 107, 26, 0.08), transparent);
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

/* ——— Nutrition ——— */
.nutrition-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 12px 36px var(--shadow);
  border-radius: 6px;
  overflow: hidden;
}

.nutrition-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  background: var(--brown);
  color: var(--white);
}

.nutrition-table th,
.nutrition-table td {
  padding: 0.75rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(61, 42, 26, 0.08);
  font-size: 0.95rem;
}

.nutrition-table tr:last-child th,
.nutrition-table tr:last-child td {
  border-bottom: none;
}

.nutrition-table th {
  font-weight: 500;
  color: var(--brown-mid);
}

.nutrition-table td {
  font-weight: 650;
  text-align: right;
  color: var(--brown);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--brown-mid);
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 1px;
}

.tip-block {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 24px var(--shadow);
}

.tip-block h3 {
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.tip-block p {
  color: var(--brown-mid);
}

/* ——— About ——— */
.about-intro {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-intro p {
  color: var(--brown-mid);
  font-size: 1.1rem;
}

.motto {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  color: var(--orange);
  text-align: center;
  margin: 0 0 2.5rem;
}

.about-profile {
  max-width: 46rem;
  margin: 0 auto 3rem;
}

.about-profile h2 {
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--brown);
}

.about-profile h2:first-child {
  margin-top: 0;
}

.about-profile p {
  color: var(--brown-mid);
  font-size: 1.02rem;
  margin-bottom: 0.85rem;
}

.about-profile ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--brown-mid);
}

.about-profile li {
  margin-bottom: 0.4rem;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem;
  background: var(--paper);
  border: 1px solid rgba(42, 28, 18, 0.08);
  border-radius: 8px;
}

.cert-badges img {
  height: 56px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 0.25rem;
  box-shadow: 0 4px 12px var(--shadow);
}

.cert-badges p {
  margin: 0;
  flex: 1 1 12rem;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-panel {
  padding: 1.75rem;
  background: var(--white);
  box-shadow: 0 10px 28px var(--shadow);
  border-top: 3px solid var(--green);
}

.about-panel h3 {
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.about-panel p,
.about-panel address {
  font-style: normal;
  color: var(--brown-mid);
  font-size: 0.95rem;
}

.about-panel .logo-group {
  width: 220px;
  max-width: 100%;
  margin-bottom: 1rem;
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--white);
  box-shadow: 0 12px 36px var(--shadow);
  border-radius: 6px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(61, 42, 26, 0.15);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.form-message {
  font-size: 0.9rem;
  min-height: 1.25rem;
}

.form-message.success {
  color: var(--green);
}

.form-message.error {
  color: #b33a2b;
}

.contact-details h2 {
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-details dl {
  margin: 0 0 1.5rem;
}

.contact-details dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1rem;
}

.contact-details dd {
  margin: 0.25rem 0 0;
  color: var(--brown-mid);
}

.contact-details a:hover {
  color: var(--orange-deep);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(61, 42, 26, 0.15);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  transition: border-color 0.2s, color 0.2s;
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.map-embed {
  margin-top: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px var(--shadow);
  aspect-ratio: 21 / 9;
  background: var(--beige-deep);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ——— Footer ——— */
.site-footer {
  background: linear-gradient(180deg, #2a1c12, #1a110b);
  color: rgba(255, 253, 248, 0.78);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-grid--rich {
  align-items: start;
}

.footer-motto {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin: 0.35rem 0 0.85rem !important;
}

.footer-certs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-certs__logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-certs img {
  width: auto;
  height: 48px;
  max-width: none;
  flex-shrink: 0;
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 0.2rem;
  filter: none;
}

.footer-certs p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.7);
  letter-spacing: 0.02em;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  filter: none;
  background: #fff;
  border-radius: 50%;
  padding: 0.15rem;
  flex-shrink: 0;
}

.footer-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand .brand-text .script {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold);
}

.footer-brand .brand-text .sub {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.85);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 22rem;
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  color: rgba(255, 253, 248, 0.7);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.5);
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Responsive ——— */
/* ——— Homepage redesign ——— */
.site-header--home {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
}

.site-header--home .brand-text .script {
  color: var(--gold);
}

.site-header--home .brand-text .sub,
.site-header--home .site-nav a {
  color: rgba(255, 253, 248, 0.88);
}

.site-header--home .nav-toggle {
  background: rgba(255, 253, 248, 0.15);
  border-color: rgba(255, 253, 248, 0.35);
}

.site-header--home .nav-toggle span {
  background: var(--white);
}

.site-header--home.is-scrolled {
  background: rgba(250, 243, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(61, 42, 26, 0.08);
}

.site-header--home.is-scrolled .brand-text .script {
  color: var(--orange);
}

.site-header--home.is-scrolled .brand-text .sub,
.site-header--home.is-scrolled .site-nav a {
  color: var(--brown-mid);
}

.site-header--home.is-scrolled .nav-toggle {
  background: var(--white);
  border-color: rgba(61, 42, 26, 0.15);
}

.site-header--home.is-scrolled .nav-toggle span {
  background: var(--brown);
}

.hero {
  margin-top: 0;
}

.hero-logo {
  width: 160px;
  height: 160px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 253, 248, 0.45);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll span {
  width: 4px;
  height: 10px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollPulse 1.6s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  margin: 0;
}

.product-spotlight {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.product-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.product-duo figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(61, 42, 26, 0.16);
  background: linear-gradient(145deg, #c47820, #6b3d12);
}

.product-duo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.product-duo figure:hover img {
  transform: scale(1.03);
}

.product-duo figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--brown-mid);
  background: var(--white);
}

.feature-pills--center {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-duo__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.product-spotlight__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.product-spotlight__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(61, 42, 26, 0.18);
  aspect-ratio: 5 / 4;
  background: linear-gradient(145deg, #c47820, #6b3d12);
}

.product-spotlight__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}

.product-spotlight__visual:hover img {
  transform: scale(1.03);
}

.product-spotlight__copy h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.85rem;
}

.product-spotlight__copy > p {
  color: var(--brown-mid);
  font-size: 1.05rem;
  max-width: 28rem;
  margin-bottom: 1.25rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-pills li {
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 0.55rem 0.9rem 0.45rem;
  border-bottom: 2px solid var(--orange);
}

.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.why-item {
  padding-top: 0.5rem;
  border-top: 2px solid var(--orange);
}

.why-num {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.why-item h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--brown-mid);
  font-size: 0.98rem;
}

.journey-home {
  padding-bottom: 3rem;
  overflow: hidden;
}

.journey-track {
  margin: 0.5rem 0 1.5rem;
  padding: 0 0 0.5rem;
}

.journey-scroll {
  list-style: none;
  margin: 0;
  padding: 0.5rem max(1.25rem, calc((100vw - var(--max)) / 2));
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

.journey-scroll li {
  flex: 0 0 min(200px, 70vw);
  scroll-snap-align: start;
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-right: 1px solid rgba(61, 42, 26, 0.12);
  position: relative;
}

.journey-scroll li:last-child {
  border-right: none;
}

.journey-scroll span {
  display: block;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.journey-scroll strong {
  display: block;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.journey-scroll em {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--brown-mid);
}

.softness {
  padding: 4rem 0;
}

.softness__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.softness__quote {
  margin: 0;
  padding: 0 0.5rem;
}

.softness__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.25;
  color: var(--brown);
}

.softness__quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.softness__visual {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 24px 50px var(--shadow);
}

.softness__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(42, 28, 18, 0.88), rgba(212, 85, 10, 0.75)),
    url("../assets/product-shot.png") center / cover;
  color: var(--white);
  padding: 4rem 0;
}

.cta-band h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0.25rem 0 0.65rem;
}

.cta-band p {
  color: rgba(255, 253, 248, 0.85);
  max-width: 28rem;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .product-spotlight__grid,
  .product-duo,
  .why-row,
  .softness__grid,
  .benefits,
  .process-grid,
  .split,
  .gallery,
  .nutrition-layout,
  .about-grid,
  .contact-layout,
  .footer-grid,
  .footer-grid--rich {
    grid-template-columns: 1fr 1fr;
  }

  .product-spotlight__visual {
    aspect-ratio: 16 / 11;
  }

  .softness__visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .split-visual {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }

  .journey-item {
    grid-template-columns: 56px 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(61, 42, 26, 0.1);
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
    box-shadow: 0 12px 30px var(--shadow);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.75rem 0.5rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .site-header--home .site-nav a {
    color: var(--brown-mid);
  }

  .hero {
    min-height: 100dvh;
    align-items: flex-end;
  }

  .hero-media {
    object-position: center center;
  }

  .hero-inner {
    padding: 6.5rem 0 4.5rem;
    max-width: 100%;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-scroll {
    display: none;
  }

  .map-embed {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .footer-grid,
  .footer-grid--rich {
    grid-template-columns: 1fr;
  }

  .trust-strip ul {
    gap: 0.5rem 1.25rem;
  }

  .trust-strip li {
    font-size: 0.75rem;
  }
}

