:root {
  --ink: #0b0907;
  --charcoal: #14100c;
  --smoke: #211a14;
  --bronze: #c49a62;
  --bronze-bright: #e1bd82;
  --bone: #f5ead8;
  --paper: #ead9bd;
  --meat: #7a2f24;
  --muted: #b6a48d;
  --line: rgba(196, 154, 98, 0.18);
  --header-height: 84px;
  --font-body: "Noto Sans Hebrew", Arial, sans-serif;
  --font-display: "Noto Serif Hebrew", Georgia, serif;
  --font-brand: "Noto Serif Hebrew", Georgia, serif;
  --font-english: "Bebas Neue", "Noto Sans Hebrew", sans-serif;
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  letter-spacing: 0;
  position: relative;
}

body::selection {
  background: var(--bronze);
  color: var(--ink);
}

img {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: var(--bone);
  border-bottom: 1px solid rgba(225, 189, 130, 0.12);
  background: rgba(9, 7, 5, 0.78);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-bright));
  opacity: 0.9;
  pointer-events: none;
}

body.is-scrolled .site-header {
  background: rgba(8, 6, 4, 0.9);
  border-bottom-color: rgba(225, 189, 130, 0.2);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.brand-lockup {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform 260ms ease;
}

body.is-scrolled .brand-mark {
  transform: scale(0.9);
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  font-family: var(--font-brand);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(245, 234, 216, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.button {
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  background: var(--bronze-bright);
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 220ms ease, transform 260ms ease;
}

.site-nav a:hover {
  color: var(--bone);
}

.site-nav a.is-active {
  color: var(--bone);
}

.site-nav a.is-active::after {
  opacity: 0.82;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(225, 189, 130, 0.32);
  border-radius: 2px;
  padding: 9px 18px;
  color: var(--bronze-bright);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.header-cta:hover {
  border-color: var(--bronze-bright);
  background: rgba(225, 189, 130, 0.06);
}

.nav-drawer-cta {
  display: none;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(225, 189, 130, 0.28);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 220ms ease, background 220ms ease;
}

.nav-toggle:hover {
  border-color: var(--bronze-bright);
  background: rgba(225, 189, 130, 0.06);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--bronze-bright);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(0.2, 0, 0.2, 1),
              opacity 200ms ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.6px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 28;
  background: rgba(8, 6, 4, 0.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  height: clamp(620px, 100svh, 1080px);
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: var(--hero-photo-opacity, 0.78);
  transform: scale(var(--hero-photo-scale, 1.04)) translateY(var(--hero-photo-shift, 0));
  filter: saturate(0.8) contrast(1.02) brightness(0.5);
  transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1), opacity 1.2s ease;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(232, 146, 52, 0.08), transparent 38%),
    radial-gradient(ellipse at center, rgba(11, 9, 7, 0.4) 0%, rgba(11, 9, 7, 0.78) 50%, rgba(11, 9, 7, 0.96) 100%);
}

.hero-stage {
  position: relative;
  z-index: 10;
  width: min(720px, calc(100% - 48px));
  padding-top: 3vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-bull {
  display: block;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  margin: 0 0 clamp(18px, 3vh, 32px);
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 38px rgba(232, 146, 52, 0.22));
}

.hero-rule {
  display: block;
  width: clamp(48px, 6vw, 88px);
  height: 1px;
  margin: 0 0 clamp(18px, 3vh, 28px);
  background: linear-gradient(90deg, transparent, var(--bronze-bright) 50%, transparent);
  opacity: 0.7;
}

.hero-tagline {
  margin: clamp(18px, 2.5vh, 28px) 0 0;
  color: rgba(245, 234, 216, 0.78);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.hero-tagline-dot {
  margin: 0 12px;
  color: var(--bronze);
  font-style: normal;
}

.hero-cta {
  margin-top: 0;
  padding-left: clamp(28px, 3vw, 40px);
  padding-right: clamp(28px, 3vw, 40px);
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: clamp(18px, 3vh, 34px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(225, 189, 130, 0.65);
  font-family: var(--font-english);
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(225, 189, 130, 0.65), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, transparent, var(--bronze-bright));
  animation: hero-scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes hero-scroll-pulse {
  0% { top: -45%; opacity: 0; }
  25% { opacity: 1; }
  100% { top: 105%; opacity: 0; }
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--bronze);
  font-family: var(--font-english);
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0.88;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0;
  color: var(--bronze-bright);
}

.hero h1,
.quality h2,
.benefits h2,
.protein-lab h2,
.shop h2,
.craft h2,
.founder h2,
.contact-section h2 {
  margin: 0;
  color: var(--bone);
  font-family: var(--font-brand);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  letter-spacing: 0;
  margin: 0 auto;
}

.hero h1 span {
  display: inline-block;
  color: var(--bone);
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 20px 80px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-lede {
  max-width: 580px;
  margin: 36px auto 0;
  color: rgba(245, 234, 216, 0.85);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(32px, 4.4vh, 48px);
  direction: rtl;
}

.hero-actions .button {
  width: clamp(176px, 12vw, 224px);
  min-height: 58px;
  padding: 13px 24px;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.15;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  padding: 12px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button-primary {
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--bronze-bright);
  border-color: var(--bronze-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 154, 98, 0.22);
}

.button-secondary {
  border: 1px solid rgba(225, 189, 130, 0.34);
  color: var(--bronze-bright);
  background: rgba(11, 9, 7, 0.2);
}

.button-secondary:hover {
  border-color: var(--bronze-bright);
  color: var(--bone);
  transform: translateY(-2px);
  background: rgba(225, 189, 130, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.button:active {
  transform: scale(0.96) translateY(0);
}

.section-panel {
  padding: clamp(100px, 12vw, 180px) clamp(22px, 6vw, 96px);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.image-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.82fr);
  gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(18px, 4vw, 58px);
  background:
    radial-gradient(circle at 50% 50%, rgba(196, 154, 98, 0.08), transparent 70%),
    linear-gradient(180deg, #0b0907, #14100c 58%, #0b0907),
    var(--ink);
}

.image-showcase figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #080604;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
}

.showcase-main {
  min-height: clamp(430px, 48vw, 680px);
}

.showcase-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
}

.showcase-tile {
  min-height: 260px;
}

.showcase-main img,
.showcase-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02) brightness(0.92);
  transform: scale(1.01);
  transition: transform 900ms ease, filter 900ms ease;
}

.showcase-main img {
  object-position: center;
}

.showcase-tile:nth-child(1) img {
  object-position: 55% center;
}

.showcase-tile:nth-child(2) img {
  object-position: center 46%;
}

.showcase-wide img {
  object-position: center 34%;
}

.image-showcase figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 6, 4, 0.88));
}

.image-showcase figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  max-width: min(460px, calc(100% - 36px));
  color: var(--bone);
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.82);
}

.showcase-tile figcaption {
  font-size: clamp(1rem, 1.35vw, 1.35rem);
}

.image-showcase figure:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.04) brightness(0.98);
}

.origin-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(124, 92, 52, 0.14);
  border-bottom: 1px solid rgba(124, 92, 52, 0.14);
  background: #f4ead6;
}

.origin-strip span {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 20px 22px;
  color: #57361d;
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.origin-strip span + span {
  border-inline-start: 1px solid rgba(124, 92, 52, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(225, 189, 130, 0.16);
}

.trust-card {
  min-height: 188px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(20, 15, 10, 0.98), rgba(10, 7, 5, 0.98)),
    var(--ink);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(225, 189, 130, 0.28);
  border-radius: 50%;
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: 1.2rem;
  line-height: 1;
}

.trust-card h2 {
  margin: 0;
  color: var(--bone);
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.trust-card p {
  margin: 12px 0 0;
  max-width: 28ch;
  color: rgba(245, 234, 216, 0.66);
  font-size: 0.98rem;
  line-height: 1.6;
}

.quality {
  --quality-active: 0;
  background:
    linear-gradient(180deg, #fbf6ed 0%, #f7efe3 48%, #fbf7ef 100%);
  color: #1a1208;
  min-height: 300svh;
  padding: 0;
  position: relative;
  overflow: clip;
}

.quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(196, 154, 98, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(196, 154, 98, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 72% 42%, black, transparent 68%);
  opacity: 0.45;
  pointer-events: none;
}

.quality-container {
  position: sticky;
  top: var(--header-height);
  min-height: calc(100svh - var(--header-height));
  max-width: none;
  margin: 0;
  padding: clamp(54px, 7vw, 96px) clamp(22px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.quality-intro {
  max-width: 820px;
  margin-bottom: 0;
}

.quality-intro h2 {
  color: #1a1208;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 1.05;
  margin: 24px 0;
  max-width: 18ch;
}

.quality-accent {
  width: 80px;
  height: 2px;
  background: var(--bronze);
  margin: 32px 0;
}

.quality-lede {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  color: #4a3a2a;
  max-width: 680px;
}

.quality-scroll-frame {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(230px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: clamp(420px, 58vh, 620px);
}

.quality-step-rail {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: space-between;
  padding: 24px 0;
}

.quality-step-rail::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 38px;
  right: 50%;
  width: 1px;
  background: rgba(87, 54, 29, 0.16);
}

.quality-step-dot {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87, 54, 29, 0.16);
  border-radius: 50%;
  background: #fbf6ed;
  color: rgba(87, 54, 29, 0.42);
  font-family: var(--font-english);
  font-size: 1.28rem;
  line-height: 1;
  transform: scale(0.9);
  transition: transform 360ms ease, color 360ms ease, border-color 360ms ease, background 360ms ease;
}

.quality-step-dot.is-active {
  transform: scale(1);
  border-color: rgba(196, 154, 98, 0.72);
  background: #1a1208;
  color: var(--bronze-bright);
}

.quality-step-media {
  position: relative;
  height: clamp(360px, 48vh, 560px);
  overflow: hidden;
  background: #1a1208;
  box-shadow: 0 28px 90px rgba(87, 54, 29, 0.18);
}

.quality-step-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(26, 18, 8, 0.28));
  pointer-events: none;
}

.quality-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(calc(1.03 + (var(--quality-active, 0) * 0.025))) translateY(calc(var(--quality-active, 0) * -10px));
  transition: transform 520ms cubic-bezier(0.2, 0, 0.2, 1), opacity 360ms ease;
}

.quality-step-stack {
  position: relative;
  min-height: 380px;
}

.quality-number {
  display: block;
  margin-bottom: 28px;
  font-family: var(--font-english);
  font-size: clamp(7rem, 11vw, 13rem);
  line-height: 0.78;
  color: rgba(196, 154, 98, 0.34);
  letter-spacing: 0.02em;
}

.quality-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px) scale(0.985);
  transition: opacity 520ms cubic-bezier(0.2, 0, 0.2, 1), transform 520ms cubic-bezier(0.2, 0, 0.2, 1);
}

.quality-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.quality-step h3 {
  font-family: var(--font-brand);
  font-size: clamp(2.3rem, 4.2vw, 4.6rem);
  font-weight: 700;
  margin: 0 0 18px;
  color: #1a1208;
  line-height: 1.02;
}

.quality-step p {
  max-width: 520px;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.65;
  color: #5a4a3a;
  margin: 0;
}

@media (max-width: 900px) {
  .quality {
    min-height: auto;
    padding: clamp(78px, 14vw, 112px) clamp(18px, 6vw, 34px);
  }

  .quality-container {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 0;
  }

  .quality-scroll-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .quality-step-rail {
    display: flex;
    gap: 10px;
    align-self: auto;
    padding: 0;
  }

  .quality-step-rail::before {
    display: none;
  }

  .quality-step-dot {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .quality-step-media {
    height: 320px;
  }

  .quality-step-stack {
    display: grid;
    gap: 28px;
    min-height: auto;
  }

  .quality-step {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding-top: 28px;
    border-top: 1px solid rgba(87, 54, 29, 0.12);
  }

  .quality-step:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .quality-number {
    margin-bottom: 18px;
    font-size: clamp(4.4rem, 20vw, 7rem);
  }

  .quality-step h3 {
    font-size: clamp(1.9rem, 8.4vw, 3rem);
  }
}

.protein-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 9, 7, 0.96), rgba(34, 24, 16, 0.98)),
    var(--ink);
}

.protein-copy p,
.shop-copy p,
.craft-copy p,
.founder-copy p,
.contact-copy p {
  color: rgba(245, 234, 216, 0.72);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.protein-lab > *,
.benefits > *,
.craft > *,
.photo-story > *,
.shop > *,
.contact-section > * {
  position: relative;
  z-index: 4;
}

.protein-copy {
  max-width: 680px;
}

.protein-lab h2,
.shop h2 {
  font-size: clamp(2.35rem, 4.8vw, 5rem);
}

.protein-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 189, 130, 0.16);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(8, 6, 4, 0.55);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.meter-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.meter-head span {
  color: rgba(245, 234, 216, 0.72);
  font-weight: 700;
}

.meter-head strong {
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: 0.8;
  direction: ltr;
  unicode-bidi: isolate;
}

.protein-presets {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 18px;
}

.protein-presets button {
  min-height: 42px;
  border: 1px solid rgba(225, 189, 130, 0.16);
  border-radius: 2px;
  background: transparent;
  color: rgba(245, 234, 216, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.protein-presets button:hover,
.protein-presets button.is-active {
  border-color: rgba(225, 189, 130, 0.55);
  background: rgba(225, 189, 130, 0.08);
  color: var(--bronze-bright);
}

#protein-range {
  position: relative;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: rgba(245, 234, 216, 0.12);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  margin: 32px 0;
}

#protein-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bronze-bright);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--bronze), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 180ms ease, background 180ms ease;
}

#protein-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bronze-bright);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--bronze), 0 4px 12px rgba(0, 0, 0, 0.4);
}

#protein-range:active::-webkit-slider-thumb {
  transform: scale(1.12);
  background: var(--bone);
}

.meter-track {
  display: none;
}

.calc-result {
  position: relative;
  margin: 0 0 22px;
  padding: clamp(24px, 3.5vw, 34px);
  border: 1px solid rgba(225, 189, 130, 0.1);
  border-radius: 4px;
  background: rgba(9, 7, 5, 0.45);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(225, 189, 130, 0.04), 0 12px 40px rgba(0, 0, 0, 0.15);
}

.calc-grams {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(225, 189, 130, 0.14);
}

.calc-grams span {
  color: rgba(245, 234, 216, 0.62);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calc-grams strong {
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: clamp(3.6rem, 6.4vw, 6.2rem);
  line-height: 0.78;
  direction: ltr;
  unicode-bidi: isolate;
}

.calc-grams em {
  margin-inline-start: 4px;
  color: rgba(245, 234, 216, 0.55);
  font-style: normal;
  font-size: 0.42em;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.calc-meta {
  display: flex;
  gap: 28px;
  margin: 16px 0 0;
}

.calc-meta p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-meta span {
  color: rgba(245, 234, 216, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calc-meta strong {
  color: var(--bone);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 900;
  direction: ltr;
  unicode-bidi: isolate;
}

.calc-summary {
  margin: 14px 0 0;
  color: rgba(245, 234, 216, 0.7);
  font-size: 0.96rem;
  line-height: 1.55;
}

.calculator-note,
.product-badge {
  color: rgba(245, 234, 216, 0.55);
  font-size: 0.85rem;
  font-weight: 700;
}

.protein-console .button {
  width: 100%;
  margin-top: 22px;
}

.calculator-shop-link {
  display: block;
  margin-top: 14px;
  color: var(--bronze-bright);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgba(225, 189, 130, 0.34);
  text-underline-offset: 5px;
}

.calculator-note {
  margin: 16px 0 0;
  line-height: 1.55;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--bronze-bright);
  font-weight: 900;
  line-height: 1.2;
}

.section-cta::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
  transition: width 220ms ease, opacity 220ms ease;
}

.section-cta:hover::after {
  width: 64px;
  opacity: 1;
}

.benefits {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.98), rgba(33, 26, 20, 0.98)),
    var(--smoke);
}

.benefits-copy {
  position: sticky;
  top: 112px;
  max-width: 620px;
}

.benefits h2 {
  font-size: clamp(2.35rem, 4.8vw, 5rem);
}

.benefits-copy p {
  max-width: 520px;
}

.benefit-rows {
  border-top: 1px solid var(--line);
}

.benefit-rows article {
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.benefit-rows span {
  display: block;
  color: var(--bronze-bright);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 900;
  line-height: 1.08;
}

.benefit-rows p {
  max-width: 570px;
  margin: 12px 0 0;
  color: rgba(245, 234, 216, 0.7);
  font-size: 1.05rem;
  line-height: 1.68;
}

.benefits-photo {
  grid-column: 1 / -1;
  height: clamp(360px, 46vw, 620px);
  overflow: hidden;
  margin-top: clamp(18px, 3vw, 42px);
}

.benefits-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.96) contrast(1.02) brightness(0.94);
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: stretch;
  min-height: 760px;
  background: var(--smoke);
}

.craft-media {
  min-height: 620px;
  overflow: hidden;
}

.craft-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.craft-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 96px);
}

.craft h2,
.founder h2,
.contact-section h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
}

.craft-copy p {
  max-width: 520px;
}

.process-steps {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.step-num {
  color: var(--bronze);
  font-family: var(--font-english);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.process-steps h3 {
  margin: 0 0 8px;
  color: var(--bone);
  font-family: var(--font-brand);
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.process-steps p {
  margin: 0;
  color: rgba(245, 234, 216, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.55fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 1px;
  min-height: 780px;
  background: var(--line);
}

.photo-tile {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
}

.photo-tile-large {
  grid-row: 1 / span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02) brightness(0.94);
  transform: scale(1.01);
  transition: transform 900ms ease, filter 900ms ease;
}

.photo-tile-large img {
  object-position: center;
}

.photo-tile:nth-child(2) img {
  object-position: 54% center;
}

.photo-tile:nth-child(3) img {
  object-position: center 46%;
}

.photo-tile figcaption {
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 36px);
  width: min(330px, calc(100% - 36px));
  color: var(--bone);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.18;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(11, 9, 7, 0.88));
}

.photo-tile figcaption {
  z-index: 1;
}

.photo-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.03) brightness(1);
}

.shop {
  background:
    radial-gradient(circle at 50% 20%, rgba(122, 47, 36, 0.12), transparent 60%),
    linear-gradient(180deg, #0b0907, #1a120d),
    var(--ink);
  padding-top: clamp(54px, 7vw, 92px);
}

.shop-copy {
  max-width: 920px;
  margin: 0 auto clamp(38px, 6vw, 72px);
  text-align: center;
}

.shop-copy p {
  max-width: 620px;
  margin: 22px auto 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(22px, 4vw, 52px);
  max-width: 1180px;
  margin: 0 auto;
}

.product-list {
  display: grid;
  gap: 14px;
}

.product-option {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(225, 189, 130, 0.1);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(245, 234, 216, 0.05), rgba(225, 189, 130, 0.02)),
    rgba(8, 6, 4, 0.52);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(225, 189, 130, 0.05), 0 18px 56px rgba(0, 0, 0, 0.16);
  transition: transform 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 260ms ease, background 260ms ease, box-shadow 320ms ease;
}

.product-option.is-featured {
  border-color: rgba(225, 189, 130, 0.28);
  background:
    radial-gradient(circle at 14% 18%, rgba(196, 154, 98, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(245, 234, 216, 0.06), rgba(225, 189, 130, 0.03)),
    rgba(8, 6, 4, 0.58);
}

.product-option:hover {
  border-color: rgba(225, 189, 130, 0.34);
  background:
    linear-gradient(135deg, rgba(245, 234, 216, 0.07), rgba(225, 189, 130, 0.03)),
    rgba(8, 6, 4, 0.62);
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(225, 189, 130, 0.08), 0 22px 68px rgba(0, 0, 0, 0.24);
}

.product-option img {
  width: 132px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  background: #090705;
  filter: saturate(0.96) contrast(1.02) brightness(0.96);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.product-copy {
  min-width: 0;
}

.product-option h3 {
  margin: 7px 0 8px;
  color: var(--bone);
  font-family: var(--font-brand);
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  line-height: 1.05;
}

.product-option p {
  margin: 0;
  color: rgba(245, 234, 216, 0.65);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-badge {
  display: inline-flex;
  color: var(--bronze-bright);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(225, 189, 130, 0.14);
  color: rgba(245, 234, 216, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(8, 6, 4, 0.26);
}

.product-price {
  align-self: stretch;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: end;
  align-items: start;
  gap: 18px;
  min-width: 116px;
}

.product-price strong {
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.product-price small {
  color: rgba(245, 234, 216, 0.5);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-qty {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 40px;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.product-qty output {
  display: grid;
  place-items: center;
  height: 40px;
  border: 1px solid rgba(225, 189, 130, 0.12);
  color: var(--bone);
  font-family: var(--font-english);
  font-size: 1.35rem;
  line-height: 1;
  background: rgba(8, 6, 4, 0.32);
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(225, 189, 130, 0.32);
  border-radius: 2px;
  background: rgba(11, 9, 7, 0.4);
  color: var(--bronze-bright);
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.qty-btn:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ink);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(196, 154, 98, 0.3);
}

.qty-btn:active {
  transform: scale(0.94);
}

.cart-panel {
  align-self: start;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(225, 189, 130, 0.18);
  border-radius: 2px;
  padding: 32px 28px;
  background: rgba(16, 11, 7, 0.7);
}

.cart-mark {
  width: 120px;
  height: auto;
  margin: 0 auto 18px;
}

.cart-panel h3 {
  margin: 0 0 22px;
  text-align: center;
  color: var(--bone);
  font-size: 1.8rem;
}

.cart-lines {
  margin: 0;
  border-top: 1px solid var(--line);
}

.cart-lines div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-lines dt,
.cart-lines dd {
  margin: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 24px 0;
}

.cart-total span {
  color: rgba(245, 234, 216, 0.72);
  font-weight: 800;
}

.cart-total strong {
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: 3.8rem;
  line-height: 0.8;
}

.cart-note {
  margin: -6px 0 18px;
  color: rgba(245, 234, 216, 0.58);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cart-panel .button {
  width: 100%;
}

.founder {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center start;
  overflow: hidden;
  padding: clamp(64px, 8vw, 120px) clamp(22px, 8vw, 120px);
  background: #e9d5b6;
  color: var(--ink);
}

.founder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.98) contrast(1);
}

.founder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(233, 213, 182, 0.94) 0%, rgba(233, 213, 182, 0.8) 34%, rgba(233, 213, 182, 0.24) 66%, rgba(11, 9, 7, 0.08) 100%);
}

.founder-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  color: var(--ink);
}

.founder .section-kicker,
.founder-copy p {
  color: #57361d;
}

.founder h2 {
  color: var(--ink);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(320px, 0.6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  background: linear-gradient(180deg, var(--ink), #110c08);
}

.faq-heading {
  max-width: 480px;
}

.faq-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  margin-bottom: 18px;
}

.faq-heading p {
  margin: 14px 0 0;
  color: rgba(245, 234, 216, 0.7);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(225, 189, 130, 0.14);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(225, 189, 130, 0.14);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  cursor: pointer;
  color: var(--bone);
  font-family: var(--font-brand);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 700;
  line-height: 1.32;
  list-style: none;
  transition: color 220ms ease, padding 220ms ease;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze-bright);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  border: 1px solid rgba(225, 189, 130, 0.28);
  border-radius: 50%;
  transition: transform 320ms cubic-bezier(0.2, 0, 0.2, 1), border-color 220ms ease, background 220ms ease;
}

.faq-item summary:hover {
  color: var(--bronze-bright);
}

.faq-item summary:hover::after {
  border-color: var(--bronze-bright);
  background: rgba(225, 189, 130, 0.06);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--bronze-bright);
}

.faq-answer {
  padding: 0 4px 26px;
  animation: faq-expand 360ms cubic-bezier(0.2, 0, 0.2, 1);
}

.faq-answer p {
  margin: 0;
  max-width: 60ch;
  color: rgba(245, 234, 216, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

@keyframes faq-expand {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(54px, 8vw, 96px) clamp(22px, 8vw, 120px);
  background:
    radial-gradient(circle at 20% 10%, rgba(225, 189, 130, 0.16), transparent 34%),
    linear-gradient(135deg, #17110d, #090705);
  border-top: 1px solid rgba(225, 189, 130, 0.14);
  border-bottom: 1px solid rgba(225, 189, 130, 0.14);
}

.conversion-band h2 {
  margin: 0;
  max-width: 14ch;
  color: var(--bone);
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 1.03;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  min-height: 660px;
  background:
    radial-gradient(circle at 18% 8%, rgba(196, 154, 98, 0.2), transparent 34%),
    linear-gradient(180deg, #0b0907, #17110d 58%, #080604);
}

.final-mark {
  width: clamp(120px, 12vw, 180px);
  height: auto;
  margin-bottom: 28px;
}

.contact-copy {
  max-width: 650px;
}

.contact-copy p {
  max-width: 570px;
  margin: 22px 0 0;
}

.contact-photo {
  overflow: hidden;
  height: clamp(220px, 24vw, 320px);
  margin-top: clamp(26px, 4vw, 44px);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.96) contrast(1.02) brightness(0.94);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(225, 189, 130, 0.1);
  border-radius: 4px;
  background: rgba(9, 7, 5, 0.45);
  backdrop-filter: blur(12px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.contact-form-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(225, 189, 130, 0.12);
}

.contact-form-head span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(225, 189, 130, 0.26);
  color: var(--bronze-bright);
  font-family: var(--font-english);
  font-size: 1.35rem;
}

.contact-form-head h3 {
  margin: 0 0 6px;
  color: var(--bone);
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.contact-form-head p {
  margin: 0;
  color: rgba(245, 234, 216, 0.62);
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 234, 216, 0.72);
  font-size: 0.96rem;
  font-weight: 900;
}

.contact-message,
.contact-form .button,
.contact-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(225, 189, 130, 0.14);
  border-radius: 2px;
  background: rgba(8, 6, 4, 0.7);
  color: var(--bone);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(225, 189, 130, 0.82);
  background: rgba(14, 10, 7, 0.96);
  box-shadow: 0 0 0 3px rgba(225, 189, 130, 0.12);
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
}

.contact-status {
  margin: 0;
  color: rgba(245, 234, 216, 0.58);
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-credits {
  padding: 24px 22px;
  background: #080604;
  color: rgba(245, 234, 216, 0.65);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.mobile-order-bar {
  display: none;
}

body.nav-open .mobile-order-bar,
body.lightbox-open .mobile-order-bar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(5, 4, 3, 0.88);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(760px, 84svh);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(225, 189, 130, 0.2);
  background: #090705;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
}

.lightbox img {
  width: 100%;
  height: min(680px, 76svh);
  object-fit: contain;
  background: #070503;
}

.lightbox figcaption {
  padding: 16px 18px;
  color: rgba(245, 234, 216, 0.82);
  font-weight: 800;
  line-height: 1.45;
}

.lightbox-close {
  position: fixed;
  z-index: 1;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(225, 189, 130, 0.32);
  border-radius: 50%;
  background: rgba(9, 7, 5, 0.82);
  color: var(--bronze-bright);
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms cubic-bezier(0.2, 0, 0.2, 1), transform 800ms cubic-bezier(0.2, 0, 0.2, 1);
}

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

.hero-stage.reveal {
  opacity: 0;
  transform: scale(1.02);
  filter: blur(8px);
  transition: opacity 1.4s cubic-bezier(0.2, 0, 0.2, 1), transform 1.4s cubic-bezier(0.2, 0, 0.2, 1), filter 1.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.hero-stage.reveal.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.2, 0, 0.2, 1), transform 600ms cubic-bezier(0.2, 0, 0.2, 1);
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  body.nav-open .site-header {
    background: rgba(8, 6, 4, 0.94);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 29;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100svh - var(--header-height));
    width: 100vw;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: clamp(28px, 7vh, 64px) clamp(24px, 8vw, 44px) clamp(30px, 7vh, 58px);
    background:
      radial-gradient(circle at 50% 10%, rgba(196, 154, 98, 0.08), transparent 34%),
      linear-gradient(180deg, rgba(18, 13, 9, 0.98), rgba(8, 6, 4, 0.99));
    border-top: 1px solid rgba(225, 189, 130, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 260ms ease, transform 300ms cubic-bezier(0.2, 0, 0.2, 1);
    overflow-y: auto;
    direction: rtl;
  }

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

  .site-nav a {
    width: 100%;
    max-width: 420px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 0;
    border-bottom: 1px solid rgba(225, 189, 130, 0.1);
    color: rgba(245, 234, 216, 0.9);
    font-family: var(--font-body);
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    font-weight: 800;
    text-align: center;
  }

  .site-nav .nav-drawer-cta {
    display: flex;
    justify-content: center;
    border-bottom: 0;
    margin-top: 18px;
    padding: 15px 22px;
    border: 1px solid var(--bronze-bright);
    border-radius: 2px;
    background: var(--bronze-bright);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    height: clamp(560px, 90svh, 760px);
  }

  .hero-shade {
    background:
      radial-gradient(circle at 68% 34%, rgba(225, 189, 130, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(11, 9, 7, 0.42), rgba(11, 9, 7, 0.78) 46%, rgba(11, 9, 7, 0.98));
  }

  .hero {
    min-height: 580px;
    height: clamp(580px, 92svh, 820px);
  }

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

  .hero-stage {
    width: calc(100% - 36px);
    padding-top: 8vh;
  }

  .hero-bull {
    width: clamp(120px, 30vw, 180px);
    margin-bottom: 18px;
  }

  .hero-rule {
    width: clamp(40px, 14vw, 72px);
    margin-bottom: 18px;
  }

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

  .hero h1 em {
    font-size: clamp(0.9rem, 3.6vw, 1.3rem);
    letter-spacing: 0.32em;
    margin-top: 10px;
  }

  .hero-tagline {
    font-size: clamp(0.92rem, 3vw, 1.05rem);
    margin-top: 18px;
  }

  .hero-tagline-dot {
    margin: 0 8px;
  }

  .hero-cta {
    margin-top: 0;
  }

  .hero-scroll {
    display: none;
  }

  .quality-heading,
  .protein-lab,
  .benefits,
  .shop-layout,
  .craft,
  .image-showcase,
  .contact-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .faq-heading h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .faq-item summary {
    font-size: clamp(1rem, 4vw, 1.15rem);
    padding: 18px 0;
  }

  .image-showcase {
    padding: clamp(12px, 3vw, 24px);
  }

  .showcase-main {
    min-height: 430px;
  }

  .showcase-side {
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .origin-strip {
    grid-template-columns: 1fr;
  }

  .origin-strip span {
    min-height: 58px;
    border-inline-start: 0;
    border-top: 1px solid rgba(124, 92, 52, 0.18);
  }

  .origin-strip span:first-child {
    border-top: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: auto;
  }

  .benefits-copy {
    position: static;
  }

  .cart-panel {
    position: relative;
    top: auto;
  }

  .product-option {
    grid-template-columns: 118px minmax(0, 1fr) auto;
  }

  .product-option img {
    width: 118px;
    height: 132px;
  }

  .product-price {
    min-width: 94px;
  }

  .product-qty {
    grid-column: 2 / -1;
    justify-content: start;
    margin-top: -8px;
  }

  .benefits-photo {
    height: 420px;
  }

  .craft {
    min-height: auto;
  }

  .craft-media,
  .craft-media img {
    min-height: 420px;
  }

  .photo-story {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .photo-tile,
  .photo-tile-large {
    grid-row: auto;
    min-height: 420px;
  }

  .founder {
    min-height: 640px;
    place-items: end start;
  }

  .founder img {
    object-position: 57% center;
  }

  .founder::after {
    background: linear-gradient(180deg, rgba(233, 213, 182, 0.12), rgba(233, 213, 182, 0.92) 58%, rgba(233, 213, 182, 0.98));
  }

  .contact-photo {
    height: 300px;
  }

  .conversion-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .conversion-actions {
    justify-content: stretch;
  }

  .conversion-actions .button {
    flex: 1 1 220px;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
  }

  .button {
    width: 100%;
  }

  body {
    padding-bottom: 74px;
  }

  .section-panel {
    padding-inline: 18px;
  }

  .image-showcase {
    gap: 10px;
    padding: 10px;
  }

  .showcase-side {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .showcase-main,
  .showcase-tile {
    grid-column: auto;
    min-height: 330px;
  }

  .image-showcase figcaption {
    right: 18px;
    bottom: 18px;
  }

  .quality h2,
  .protein-lab h2,
  .benefits h2,
  .shop h2,
  .craft h2,
  .founder h2,
  .contact-section h2 {
    font-size: clamp(1.9rem, 9.4vw, 2.9rem);
    line-height: 1.1;
  }

  .eyebrow {
    max-width: 100%;
    padding: 0;
    font-size: 0.74rem;
    letter-spacing: 0.26em;
  }

  .craft-copy {
    padding: 48px 18px;
  }

  .process-steps li {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .step-num {
    font-size: 1.5rem;
  }

  .calc-meta {
    flex-wrap: wrap;
    gap: 18px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-photo {
    height: 240px;
  }

  .product-option {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .product-option img {
    width: 88px;
    height: 112px;
  }

  .product-price {
    grid-column: 1 / -1;
    grid-template-rows: none;
    grid-auto-flow: column;
    justify-content: space-between;
    justify-items: start;
    align-items: baseline;
    min-width: 0;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(225, 189, 130, 0.12);
  }

  .product-qty {
    grid-column: 1 / -1;
    justify-content: stretch;
    grid-template-columns: 1fr minmax(52px, 0.7fr) 1fr;
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    margin-top: 0;
  }

  .product-qty output {
    width: 100%;
  }

  .qty-btn {
    width: 100%;
  }

  .product-tags {
    display: none;
  }

  .benefits-photo,
  .photo-tile,
  .photo-tile-large {
    min-height: 360px;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 40;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(225, 189, 130, 0.28);
    border-radius: 4px;
    background: rgba(225, 189, 130, 0.18);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .mobile-order-bar a {
    min-height: 52px;
    display: grid;
    place-items: center;
    background: rgba(9, 7, 5, 0.92);
    color: var(--bone);
    font-size: 0.86rem;
    font-weight: 900;
  }

  .mobile-order-bar a:nth-child(2) {
    background: var(--bronze-bright);
    color: var(--ink);
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox figure {
    max-height: calc(100svh - 24px);
  }

  .lightbox img {
    height: auto;
    max-height: 72svh;
  }

  .lightbox-close {
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
