/* ================================================
   Chicken Bridge Cargo — styles.css
   ================================================ */

/* === Variables === */
:root {
  --ink: #070707;
  --paper: #f7f2e8;
  --muted: #8f877b;
  --red: #ff110b;
  --red-dark: #b60000;
  --cream: #fff8e9;
  --line: rgba(255, 255, 255, 0.1);
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  --section-pad: clamp(80px, 10vw, 130px);
  --radius-lg: 40px;
  --radius-md: 28px;
  --radius-sm: 18px;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 17, 11, 0.38);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 17, 11, 0.38) var(--ink);
}

/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}

/* === Focus === */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === Noise Texture (global fixed decorative overlay) === */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 26px 26px;
  mix-blend-mode: soft-light;
}

/* === Container & Section === */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: var(--section-pad) 0;
}

/* === Typography Utilities === */
.eyebrow {
  display: block;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  font-size: 0.72rem;
  margin: 0 0 22px;
}
.display {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  margin: 0;
}
.mega {
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 3.5rem);
  line-height: 0.79;
  letter-spacing: -0.07em;
  margin: 0;
}
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  line-height: 1.68;
  color: rgba(247, 242, 232, 0.78);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 17px 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.82rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.btn:active {
  transform: translateY(0);
}
.btn.red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn.red:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.btn.outline-dark {
  color: #111;
  border-color: rgba(0, 0, 0, 0.22);
  background: transparent;
}
.btn.outline-dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(247, 242, 232, 0.76);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* === Header === */
.header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: rgba(7, 7, 7, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    border-color 0.4s;
}
.header.scrolled,
.header--solid {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.055);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 190px;
  height: auto;
}
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.menu a {
  transition: color 0.2s;
}
.menu a:hover {
  color: #fff;
}
.hamb {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
  cursor: pointer;
}
.hamb:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hamb span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamb[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamb[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamb[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === Mobile Panel === */
.mobile-panel {
  position: fixed;
  inset: 0;
  background: #060606;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 36px 28px;
}
.mobile-panel.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.mobile-logo {
  margin-bottom: 52px;
}
.mobile-logo img {
  width: 220px;
  height: auto;
  max-width: 70vw;
}
.mobile-links {
  display: grid;
  gap: 16px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 11vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.mobile-links a {
  transition: color 0.2s;
}
.mobile-links a:hover {
  color: var(--red);
}
.mobile-cta {
  margin-top: 48px;
}

/* === Hero === */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: 150px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(7, 7, 7, 0.96) 30%,
    rgba(7, 7, 7, 0.52) 100%
  );
}
.hero-glow {
  position: absolute;
  right: -16vw;
  top: 8vh;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 17, 11, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 17, 11, 0.12), transparent 60%);
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: end;
}
.hero-copy .display em {
  font-style: normal;
  color: var(--red);
}
.hero-lead {
  margin: 26px 0 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-card {
  align-self: stretch;
  min-height: min(580px, calc(100svh - 300px));
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  background: #111;
  display: grid;
  align-content: end;
}
.hero-card-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 7, 7, 0.9));
}
.hero-card-content {
  position: relative;
  z-index: 1;
  padding: 26px 30px 30px;
  display: grid;
  gap: 10px;
}
.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
}
.hero-stat strong {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  font-weight: 900;
}

/* === Marquee === */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee-slide 32s linear infinite;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 5rem);
  letter-spacing: -0.06em;
}
.marquee-track span {
  color: var(--paper);
}
.marquee-track b {
  color: var(--red);
  font-weight: 400;
}
@keyframes marquee-slide {
  to {
    transform: translateX(-50%);
  }
}

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 580px;
}
.about-visual .bg-logo {
  position: absolute;
  inset: auto 0 -4% -6%;
  opacity: 0.032;
  width: 118%;
  filter: grayscale(1);
  pointer-events: none;
}
.about-panel {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.about-panel.p1 {
  left: 0;
  top: 0;
  width: 70%;
  height: 66%;
}
.about-panel.p1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-panel.p2 {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 46%;
  display: grid;
  place-items: center;
  background: var(--paper);
  padding: 24px;
}
.about-panel.p2 img {
  width: 78%;
  height: auto;
}
.about-text {
  display: grid;
  gap: 0;
}
.about-text .lead {
  margin: 26px 0 0;
}
.about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
}
.about-list-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}
.about-list-item strong {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  font-family: var(--serif);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.about-list-item span {
  font-size: 0.82rem;
  color: rgba(247, 242, 232, 0.65);
}

/* === Products Overview === */
.products-section {
  background: var(--paper);
  color: #111;
  overflow: hidden;
}
.products-section .eyebrow {
  color: var(--red-dark);
}
.products-section .lead {
  color: #544a41;
  margin: 22px 0 0;
}
.products-section .mega {
  color: #111;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.07);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}
.product-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5efe4;
}
.product-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-photo img {
  transform: scale(1.06);
}
.product-card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin: 0;
  color: #111;
}
.product-card-body p {
  color: #5d5247;
  line-height: 1.65;
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

/* === Split Product Sections === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(60px, 8vw, 110px) clamp(28px, 6vw, 88px);
}
.split-copy .lead {
  margin: 22px 0 32px;
}
.split-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.split-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.split:hover .split-photo {
  transform: scale(1.04);
}

.eggs {
  background: var(--paper);
}
.eggs .split-visual {
  background: #f0e4d0;
}
.eggs .split-copy {
  color: #111;
}
.eggs .split-copy .eyebrow {
  color: var(--red-dark);
}
.eggs .split-copy .mega {
  color: #111;
}
.eggs .split-copy .lead {
  color: #554b42;
}

.powder {
  background: #0d0d0d;
}
.powder .split-visual {
  order: -1;
}
.powder .split-copy .eyebrow {
  color: var(--red);
}
.powder .split-copy .lead {
  color: rgba(247, 242, 232, 0.76);
}

.liquid {
  background: var(--paper);
}
.liquid .split-copy {
  color: #111;
}
.liquid .split-copy .eyebrow {
  color: var(--red-dark);
}
.liquid .split-copy .mega {
  color: #111;
}
.liquid .split-copy .lead {
  color: #554b42;
}
.liquid .split-visual {
  background: #111;
}

/* === How to Order === */
.how {
  overflow: hidden;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.step-num {
  color: var(--red);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}
.step h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 0.9;
  margin: 24px 0 14px;
  color: #fff;
  letter-spacing: -0.04em;
}
.step p {
  color: rgba(247, 242, 232, 0.65);
  line-height: 1.68;
  font-size: 0.92rem;
  margin: 0;
}

/* === Promo Banners === */
.promo {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--red);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-mark {
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 440px;
  opacity: 0.08;
  filter: brightness(10);
  pointer-events: none;
}
.promo h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8.5vw, 9rem);
  letter-spacing: -0.07em;
  line-height: 0.78;
  margin: 0;
  position: relative;
  z-index: 1;
}
.promo-dark {
  background: #080808;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}
.promo-dark h2 {
  color: var(--paper);
}
.promo-dark .promo-mark {
  filter: none;
  opacity: 0.04;
  left: auto;
  right: -60px;
  bottom: -70px;
}

/* === Services === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.service {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}
.service-icon {
  font-size: 1.9rem;
  color: var(--red);
  margin-bottom: 22px;
  line-height: 1;
}
.service h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 0.9;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.04em;
}
.service p {
  color: rgba(247, 242, 232, 0.65);
  line-height: 1.68;
  font-size: 0.92rem;
  margin: 0;
}

/* === Benefits === */
.benefits {
  background: #090909;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.benefit {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}
.benefit-icon {
  font-size: 1.9rem;
  color: var(--red);
  margin-bottom: 22px;
  line-height: 1;
}
.benefit h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 0.9;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.04em;
}
.benefit p {
  color: rgba(247, 242, 232, 0.65);
  line-height: 1.68;
  font-size: 0.92rem;
  margin: 0;
}

/* === Contact / Form === */
.contact {
  background: var(--paper);
  color: #111;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1.5fr);
  gap: 52px;
  align-items: start;
}
.contact .mega {
  color: #111;
}
.contact .eyebrow {
  color: var(--red-dark);
}
.contact .lead {
  color: #574f45;
  margin: 22px 0 28px;
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: 6px;
}
.contact-info-card dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 4px;
}
.contact-info-card dd {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: #222;
}
.contact-info-card dd:last-child {
  margin-bottom: 0;
}
.contact-info-card a {
  color: var(--red-dark);
  text-decoration: underline;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}
.form {
  display: grid;
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-weight: 700;
  font-size: 0.88rem;
  color: #333;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid #ddd3c5;
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  background: #fbf8f2;
  color: #111;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  font-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 17, 11, 0.09);
  background: #fff;
}
.field input.invalid,
.field textarea.invalid,
.field select.invalid {
  border-color: var(--red-dark);
}
.field-error {
  font-size: 0.8rem;
  color: var(--red-dark);
  min-height: 1.1em;
  display: block;
}
.field-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.field-checkbox input[type='checkbox'] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 5px;
  cursor: pointer;
  accent-color: var(--red);
  border: 1.5px solid #ddd3c5;
  background: #fbf8f2;
  padding: 0;
}
.field-checkbox label {
  font-size: 0.84rem;
  color: #554b42;
  line-height: 1.55;
  font-weight: 400;
}
.field-checkbox label a {
  color: var(--red-dark);
  text-decoration: underline;
}
.form-message {
  padding: 16px 18px;
  border-radius: 14px;
  display: none;
  font-size: 0.9rem;
  line-height: 1.55;
}
.form-message.ok {
  display: block;
  background: #e4f5e4;
  color: #136513;
  border: 1px solid #b4d8b4;
}
.form-message.bad {
  display: block;
  background: #fde8e8;
  color: #8a0000;
  border: 1px solid #f4bfbf;
}
.form .btn.red {
  width: 100%;
  padding: 20px 30px;
  font-size: 0.88rem;
  margin-top: 4px;
}
.form .btn.red:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(255, 17, 11, 0.28);
}

/* === Footer === */
.footer {
  padding: 64px 0 52px;
  background: #040404;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-nav a {
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #fff;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  z-index: 80;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 36px));
  background: #fff;
  color: #111;
  border-radius: 24px;
  padding: 28px 30px 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: #111;
}
.cookie-banner p {
  margin: 0;
  color: #51483f;
  font-size: 0.88rem;
  line-height: 1.6;
}
.cookie-banner p a {
  color: var(--red-dark);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-actions .btn {
  color: #2a2520;
  border-color: #b0a898;
  background: #f2ede4;
  font-size: 0.76rem;
  padding: 13px 20px;
  font-weight: 700;
}
.cookie-actions .btn:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.cookie-actions .btn.red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cookie-actions .btn.red:hover {
  background: #c70000;
  border-color: #c70000;
  color: #fff;
  transform: translateY(-1px);
}

/* === Inner Pages (Legal, 404) === */
.page-inner {
  padding: 140px 0 100px;
  background: var(--paper);
  color: #111;
  min-height: 100svh;
}
.page-inner .eyebrow {
  color: var(--red-dark);
}
.page-inner h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  margin: 0 0 46px;
  color: #111;
}
.page-card {
  background: #fff;
  border-radius: 36px;
  padding: clamp(28px, 5vw, 50px) clamp(24px, 5vw, 56px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 50px rgba(0, 0, 0, 0.07);
  margin-bottom: 18px;
}
.page-card h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
  margin: 32px 0 12px;
  color: #111;
}
.page-card h2:first-child {
  margin-top: 0;
}
.page-card p,
.page-card li {
  line-height: 1.82;
  color: #4e4540;
  font-size: 0.95rem;
}
.page-card ul,
.page-card ol {
  padding-left: 1.5em;
}
.page-card li {
  margin-bottom: 6px;
}
.page-card a {
  color: var(--red-dark);
  text-decoration: underline;
}
.page-back {
  margin-top: 30px;
}

/* === Form note & data notice === */
.form-note {
  font-size: 0.78rem;
  color: #888;
  margin: 0;
  text-align: center;
}
.form-data-note {
  font-size: 0.8rem;
  color: #6e6158;
  line-height: 1.55;
  margin: 4px 0;
  padding: 10px 14px;
  background: #f5f0e8;
  border-radius: 10px;
  border-left: 3px solid #d4c9b8;
}

/* === Honeypot — visually hidden, never display:none === */
.field--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

/* === PHP success state === */
.form-success-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e4f5e4;
  border: 2px solid #b4d8b4;
  color: #136513;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}
.form-success-box h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
  margin: 0;
  color: #111;
}
.form-success-box p {
  color: #4e4540;
  line-height: 1.72;
  margin: 0;
  font-size: 0.95rem;
}

/* === PHP error summary === */
.form-error-summary {
  background: #fde8e8;
  color: #8a0000;
  border: 1px solid #f4bfbf;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* === 404 === */
.not-found {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.not-found-num {
  font-family: var(--serif);
  font-size: clamp(9rem, 26vw, 22rem);
  line-height: 0.72;
  letter-spacing: -0.1em;
  color: rgba(247, 242, 232, 0.05);
  user-select: none;
  margin-bottom: -30px;
  pointer-events: none;
}
.not-found h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
  margin: 0 0 18px;
  color: var(--paper);
}
.not-found .lead {
  color: rgba(247, 242, 232, 0.62);
  margin-bottom: 38px;
}
.not-found-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .menu {
    display: none;
  }
  .hamb {
    display: flex;
  }
  .brand img {
    width: 158px;
  }

  .hero {
    padding-top: 130px;
    align-items: start;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    min-height: 460px;
  }
  .display {
    font-size: clamp(3.8rem, 18vw, 7.5rem);
  }
  .mega {
    font-size: clamp(2.8rem, 13vw, 5.5rem);
  }

  .section {
    padding: clamp(60px, 9vw, 90px) 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-visual {
    min-height: 400px;
  }
  .about-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .split-copy {
    padding: clamp(48px, 8vw, 78px) clamp(24px, 5vw, 48px);
  }
  .split-visual {
    min-height: 340px;
    order: -1;
  }
  .powder .split-visual {
    order: -1;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand img {
    margin-inline: auto;
  }
  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 36px);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .about-list {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .not-found-actions {
    flex-direction: column;
  }
  .not-found-actions .btn {
    width: 100%;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .split-visual {
    min-height: 280px;
  }
  .step {
    min-height: unset;
  }
}
