:root {
  --bg: #f7f2ea;
  --bg-soft: #fffaf3;
  --dark: #14120f;
  --dark-soft: #26211c;
  --text: #2d2924;
  --muted: #72695f;
  --line: rgba(20, 18, 15, 0.12);
  --cream: #fff7ec;
  --gold: #c9995b;
  --gold-dark: #926936;
  --green: #23352b;
  --green-soft: #344b3d;
  --tomato: #9f3d2e;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(20, 18, 15, 0.14);
  --shadow-soft: 0 14px 40px rgba(20, 18, 15, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section {
  padding: 110px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--dark);
}

.section-lead {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: var(--dark);
  color: var(--cream);
  box-shadow: 0 16px 38px rgba(20, 18, 15, 0.22);
}

.btn-primary:hover {
  background: var(--green);
}

.btn-light {
  background: var(--cream);
  color: var(--dark);
  border-color: rgba(255, 247, 236, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--line);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 50;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 10px 12px 10px 24px;
  border: 1px solid rgba(255, 247, 236, 0.6);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 16px 52px rgba(20, 18, 15, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

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

.brand-text small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--dark-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
  transition: background 0.25s ease;
}

.cart-pill:hover {
  background: var(--green-soft);
}

.mobile-menu {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.3rem;
}

.page-spacer {
  height: 132px;
}

.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 153, 91, 0.22), transparent 30%),
    linear-gradient(135deg, #fff7ec 0%, #f1e5d4 60%, #e8d4b3 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,18,15,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,15,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 820px;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--dark);
  margin-top: 14px;
}

.page-hero h1 span {
  color: var(--green);
}

.page-hero p {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.breadcrumbs a {
  color: var(--gold-dark);
  font-weight: 700;
}

.breadcrumbs span[aria-current="page"] {
  color: var(--dark);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 48px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(201, 153, 91, 0.28), transparent 28%),
    linear-gradient(135deg, #fff7ec 0%, #f1e5d4 50%, #d9c0a1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,18,15,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,15,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: end;
}

.hero-copy {
  padding-bottom: 64px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(20,18,15,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: var(--dark);
}

.hero h1 span {
  color: var(--green);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-text {
  max-width: 590px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
  max-width: 710px;
}

.meta-card {
  padding: 18px;
  border: 1px solid rgba(20, 18, 15, 0.08);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.85);
}

.meta-card strong {
  display: block;
  font-size: 1.02rem;
  color: var(--dark);
}

.meta-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  justify-items: end;
}

.hero-svg {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  margin-left: auto;
  align-self: end;
}

.floating-card {
  position: absolute;
  right: -10px;
  top: 120px;
  width: min(270px, 46vw);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 22px 60px rgba(20,18,15,0.16);
  animation: float 5s ease-in-out infinite;
}

.floating-card small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  color: var(--dark);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.floating-card em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.84rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.trust-bar {
  padding: 28px 0;
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 52px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-track span {
  opacity: 0.78;
}

.trust-track span::before {
  content: "·  ";
  color: var(--gold);
  margin-right: 8px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.products {
  background: var(--bg-soft);
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-img {
  position: relative;
  display: grid;
  place-items: center;
  height: 280px;
  border-radius: 26px;
  overflow: hidden;
}

.product-img.tomato     { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #f4d4a5, #a95b3d 55%, #3b261d); }
.product-img.pesto      { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #efe3b3, #61784d 58%, #26372a); }
.product-img.spinach    { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #f6dfbb, #7e9b67 52%, #322a20); }
.product-img.steinpilz  { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #e6cda1, #6a4a2d 55%, #2a1d12); }
.product-img.limone     { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #fff3b8, #d4b048 55%, #6e5418); }
.product-img.spargel    { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #f1e6c7, #b8c285 55%, #4d5331); }
.product-img.buendner   { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #f0d3b8, #b06848 55%, #3a1f15); }
.product-img.carbonara  { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #f7e4b8, #c89653 55%, #4d361a); }
.product-img.bergkaese  { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #f4dfa6, #b8884a 55%, #4a3520); }
.product-img.baerlauch  { background: radial-gradient(circle at 50% 44%, rgba(255,255,255,0.86), transparent 24%), linear-gradient(145deg, #e9eac2, #4f7f4a 55%, #1d2e1b); }

.pasta-shape {
  width: 180px;
  height: 180px;
  border-radius: 44% 56% 50% 50%;
  background: radial-gradient(circle at 40% 34%, #fff3cd, #d89b54 70%);
  box-shadow: inset 0 0 0 14px rgba(255,255,255,0.22), 0 24px 52px rgba(20,18,15,0.24);
  transform: rotate(18deg);
  position: relative;
}

.pasta-shape::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 30% 30%, rgba(255,247,236,0.16) 0 4px, transparent 4px 9px);
  opacity: 0.6;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20,18,15,0.86);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  padding: 22px 4px 2px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.price {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
  font-size: 1.02rem;
}

.product-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.product-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--muted);
}

.product-meta strong {
  color: var(--dark);
  font-weight: 700;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 6px 11px;
  border-radius: 999px;
  background: #f5eadb;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tag-green {
  background: rgba(35, 53, 43, 0.1);
  color: var(--green);
}

.mini-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.mini-btn svg {
  display: block;
  width: 20px;
  height: 20px;
}

.mini-btn:hover {
  transform: scale(1.06);
  background: var(--green);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.story-visual {
  min-height: 600px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(20,18,15,0.12), rgba(20,18,15,0.3)),
    radial-gradient(circle at 34% 28%, #f8dfad, transparent 22%),
    linear-gradient(145deg, #8c4c32, #1f2d25 75%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story-visual::after {
  content: "Handwerk aus Fläsch";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 26px;
  background: var(--cream);
  color: var(--dark);
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.story-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.story-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,250,243,0.64);
}

.story-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-weight: 900;
}

.story-item h3 {
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: Georgia, serif;
  letter-spacing: -0.02em;
}

.story-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.value-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
  border: 1px solid rgba(35, 53, 43, 0.08);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.value-card h3 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.b2b {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.b2b::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -220px;
  top: -180px;
  border-radius: 50%;
  background: rgba(201,153,91,0.22);
  filter: blur(4px);
}

.b2b .section-title,
.b2b .section-lead {
  color: var(--cream);
}

.b2b .section-lead {
  opacity: 0.78;
}

.b2b-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: start;
}

.b2b-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.b2b-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
}

.b2b-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.b2b-card p {
  color: rgba(255,247,236,0.78);
  font-size: 0.94rem;
}

.shop-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.shop-panel h3 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.shop-panel p {
  color: rgba(255,247,236,0.74);
  margin-bottom: 24px;
}

.shop-steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.shop-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,247,236,0.84);
  font-weight: 700;
}

.contact-bg {
  background: var(--bg-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-info {
  padding: 34px;
  border-radius: 28px;
  background: var(--dark);
  color: var(--cream);
}

.contact-info h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.contact-info p,
.contact-info li {
  color: rgba(255,247,236,0.78);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 0.95rem;
}

.contact-list .icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(201,153,91,0.18);
  color: var(--gold);
  flex-shrink: 0;
}

.contact-list .icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.contact-list li {
  grid-template-columns: 36px 1fr;
}

.contact-list a {
  color: var(--cream);
  border-bottom: 1px solid rgba(255,247,236,0.3);
}

.contact-list a:hover {
  border-color: var(--gold);
}

.form {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbf7f1;
  padding: 16px 18px;
  outline: none;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,153,91,0.15);
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 0.84rem;
  color: var(--muted);
  padding: 0 4px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.legal {
  background: var(--bg-soft);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
  color: var(--dark);
}

.legal-content h2 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--dark);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--dark);
}

.legal-content p,
.legal-content li {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 0.96rem;
  line-height: 1.65;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--gold-dark);
  border-bottom: 1px solid currentColor;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 4px 4px;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  color: var(--dark);
  font-size: 1.02rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 0.2s ease;
}

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

.faq details > p {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(201,153,91,0.18), transparent 32%),
    linear-gradient(135deg, var(--green) 0%, var(--green-soft) 100%);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: center;
  margin: 0 16px;
}

.cta-band h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.cta-band p {
  color: rgba(255,247,236,0.78);
  margin-top: 12px;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: end;
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--dark);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand h2 {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.footer-brand small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 800;
}

.footer-brand p,
.footer-col a,
.footer-bottom {
  color: rgba(255,247,236,0.65);
  font-size: 0.94rem;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-col nav {
  display: grid;
  gap: 10px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .story-grid,
  .b2b-grid,
  .contact-card,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: start;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .split-head {
    align-items: start;
    flex-direction: column;
  }

  .legal-content {
    padding: 40px 24px;
  }

  .cta-band {
    padding: 36px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 76px 0;
  }

  .site-header {
    inset: 10px 0 auto 0;
  }

  .nav {
    min-height: 62px;
    padding: 8px 8px 8px 14px;
  }

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

  .brand-text small { display: none; }

  .hero {
    padding-top: 104px;
  }

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

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .floating-card {
    right: 10px;
    top: 46px;
  }

  .b2b-cards,
  .form-row,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-spacer { height: 92px; }
  .page-hero   { padding: 130px 0 60px; }
}

/* =================================================================== */
/* Animations & Interactions                                            */
/* =================================================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(201, 153, 91, 0.4);
  transition: transform 0.05s linear;
}

/* Header shrink/elevate on scroll */
.site-header.is-scrolled .nav {
  min-height: 64px;
  background: var(--bg-soft);
  box-shadow: 0 12px 40px rgba(20, 18, 15, 0.16);
}

.site-header,
.nav {
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Reveal on scroll */
.rv {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.6s ease var(--rv-delay, 0ms),
    transform 0.6s cubic-bezier(.2,.7,.2,1) var(--rv-delay, 0ms);
}

.rv-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger inside grids */
.product-grid .rv:nth-child(1) { --rv-delay: 0ms; }
.product-grid .rv:nth-child(2) { --rv-delay: 80ms; }
.product-grid .rv:nth-child(3) { --rv-delay: 160ms; }
.product-grid .rv:nth-child(4) { --rv-delay: 220ms; }
.product-grid .rv:nth-child(5) { --rv-delay: 280ms; }
.product-grid .rv:nth-child(6) { --rv-delay: 340ms; }
.product-grid .rv:nth-child(7) { --rv-delay: 400ms; }
.product-grid .rv:nth-child(8) { --rv-delay: 460ms; }
.product-grid .rv:nth-child(9) { --rv-delay: 520ms; }

.value-grid .rv:nth-child(1) { --rv-delay: 0ms; }
.value-grid .rv:nth-child(2) { --rv-delay: 80ms; }
.value-grid .rv:nth-child(3) { --rv-delay: 160ms; }
.value-grid .rv:nth-child(4) { --rv-delay: 240ms; }

.b2b-cards .rv:nth-child(1) { --rv-delay: 0ms; }
.b2b-cards .rv:nth-child(2) { --rv-delay: 90ms; }
.b2b-cards .rv:nth-child(3) { --rv-delay: 180ms; }
.b2b-cards .rv:nth-child(4) { --rv-delay: 270ms; }

.product-card {
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease;
}

.product-img {
  transition: transform 0.6s ease;
  overflow: hidden;
}

.pasta-shape {
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Glowing border on focused inputs */
.field input,
.field textarea,
.field select {
  position: relative;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(201, 153, 91, 0.5);
}

.floating-card {
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

/* Buttons get a subtle shine on hover */
.btn-primary,
.btn-light,
.cart-pill {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::after,
.btn-light::after,
.cart-pill::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.18) 55%,
    transparent 100%
  );
  transform: skewX(-22deg);
  transition: left 0.7s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover::after,
.btn-light:hover::after,
.cart-pill:hover::after {
  left: 130%;
}

.btn-primary > *,
.btn-light > *,
.cart-pill > * {
  position: relative;
  z-index: 2;
}

/* Trust bar gradient overlay */
.trust-bar {
  position: relative;
}

.trust-bar::before,
.trust-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

/* Nav link underline grow */
.nav-links a {
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease;
}

.nav-links a:hover::after {
  left: 0;
  right: 0;
}

.nav-links a.active::after {
  left: 0;
  right: 0;
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

/* FAQ open animation */
.faq details > p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq details[open] > p {
  max-height: 400px;
  opacity: 1;
  padding-top: 0;
  padding-bottom: 22px;
}

.faq summary::after {
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}

.faq details {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq details[open] {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.7);
  z-index: 49;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--bg);
  padding: 110px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
  box-shadow: -30px 0 80px rgba(20, 18, 15, 0.3);
}

.mobile-drawer-inner a {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--dark);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.mobile-drawer-inner a:hover {
  padding-left: 14px;
  color: var(--gold-dark);
}

.mobile-drawer-inner .mobile-cta {
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--cream);
  border-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.mobile-drawer-inner .mobile-cta:hover {
  padding-left: 22px;
  background: var(--green);
  color: var(--cream);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-drawer {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-drawer-inner {
  transform: translateX(0);
}

/* Page-load fade for hero */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1,
.hero-text,
.hero-actions,
.hero-meta,
.hero-kicker,
.hero-visual {
  animation: heroFade 1s cubic-bezier(.2,.7,.2,1) both;
}

.hero h1 { animation-delay: 0.05s; }
.hero-text { animation-delay: 0.18s; }
.hero-actions { animation-delay: 0.3s; }
.hero-meta { animation-delay: 0.42s; }
.hero-visual { animation-delay: 0.2s; }

/* Tag hover */
.tag {
  transition: transform 0.25s ease, background 0.25s ease;
}

.tag:hover {
  transform: translateY(-2px);
  background: var(--cream);
}

/* Mini button rotate on hover */
.mini-btn {
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
}

.mini-btn:hover {
  transform: scale(1.1) rotate(8deg);
}

/* Story numbers pop */
.story-number {
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
}

.story-item:hover .story-number {
  transform: scale(1.08) rotate(-6deg);
  background: var(--gold-dark);
}

.story-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.story-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 153, 91, 0.4);
  box-shadow: var(--shadow-soft);
}

/* Value card hover */
.value-card {
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 153, 91, 0.4);
}

.value-icon {
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.12) rotate(-5deg);
  background: var(--cream);
}

/* B2B card hover */
.b2b-card {
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), background 0.3s ease, border-color 0.3s ease;
}

.b2b-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 153, 91, 0.45);
}

/* Brand hover */
.brand {
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-12deg) scale(1.06);
  background: var(--gold-dark);
  color: var(--cream);
}

/* Selection color */
::selection {
  background: var(--gold);
  color: var(--dark);
}

/* Pause hero animations when scrolled past */
body.hero-off .floating-card,
body.hero-off .trust-track {
  animation-play-state: paused;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .floating-card,
  .pasta-shape,
  .trust-track {
    animation: none !important;
  }
  * {
    transition: none !important;
  }
}

