:root {
  --red: #e10a05;
  --red-dark: #b80804;
  --blue: #0968a0;
  --blue-light: #dceef8;
  --navy: #0f1957;
  --navy-deep: #080f3b;
  --cream: #faf8f3;
  --ice: #f3f7fa;
  --white: #ffffff;
  --ink: #111940;
  --muted: #5f6685;
  --line: rgba(15, 25, 87, 0.12);
  --container: 76rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  color-scheme: light;
  scroll-padding-top: 7.5rem;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

body::selection {
  color: var(--white);
  background: var(--red);
}

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

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

section[id] {
  scroll-margin-top: 7.5rem;
}

.site-container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 220ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-loader {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(9, 104, 160, 0.45), transparent 23rem),
    var(--navy);
  transition: opacity 500ms var(--ease-out), visibility 500ms;
}

.site-loader__logo {
  width: min(14rem, 58vw);
  filter: drop-shadow(0 1rem 2rem rgba(0, 0, 0, 0.24));
  animation: loader-mark 900ms var(--ease-spring) both;
}

.site-loader__line {
  width: 6rem;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.site-loader__line::after {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  content: "";
  animation: loader-line 900ms var(--ease-out) both;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(250, 248, 243, 0.94);
  box-shadow: 0 1px 0 transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 300ms ease, background 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 38px rgba(15, 25, 87, 0.09);
}

.header-strip {
  color: var(--white);
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-strip__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2rem;
}

.header-strip__content a {
  transition: color 200ms ease;
}

.header-strip__content a:hover {
  color: #8fd4fa;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.75rem;
  gap: 1.25rem;
}

.brand-logo {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 11.5rem;
}

.brand-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.35rem 0.5rem rgba(15, 25, 87, 0.12));
  transition: transform 350ms var(--ease-out);
}

.brand-logo:hover img {
  transform: scale(1.025) rotate(-0.5deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.6rem);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.75rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0.35rem;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  content: "";
  transition: right 250ms var(--ease-out), left 250ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
  left: 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  gap: 0.65rem;
  overflow: hidden;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, box-shadow 300ms ease, transform 300ms var(--ease-out);
}

.button::before {
  position: absolute;
  top: -50%;
  left: -75%;
  width: 36%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  content: "";
  transform: rotate(22deg);
  transition: left 600ms var(--ease-out);
}

.button:hover::before {
  left: 135%;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.button svg path:not([fill]) {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button svg.icon-fill path {
  fill: currentColor;
  stroke: none;
}

.button--header {
  min-height: 2.8rem;
  padding-inline: 1.15rem;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 25px rgba(225, 10, 5, 0.22);
}

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 35px rgba(225, 10, 5, 0.24);
}

.button--primary:hover,
.button--header:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 40px rgba(225, 10, 5, 0.32);
}

.button--white {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(4, 9, 38, 0.18);
}

.button--white:hover {
  color: var(--red);
  box-shadow: 0 20px 44px rgba(4, 9, 38, 0.25);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 35px rgba(15, 25, 87, 0.2);
}

.button--navy:hover {
  background: var(--navy-deep);
}

.button--large {
  min-height: 3.75rem;
  padding: 1rem 1.65rem;
  font-size: 0.88rem;
}

.button--full {
  width: 100%;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 8% 15%, rgba(9, 104, 160, 0.09), transparent 24rem),
    linear-gradient(180deg, var(--cream) 0%, #fff 86%);
}

.hero__shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--red {
  top: -17rem;
  right: -17rem;
  width: 40rem;
  aspect-ratio: 1;
  border: 8rem solid rgba(225, 10, 5, 0.045);
}

.hero__shape--blue {
  bottom: 4rem;
  left: -8rem;
  width: 14rem;
  aspect-ratio: 1;
  background: rgba(9, 104, 160, 0.055);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(9, 104, 160, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.eyebrow__dot {
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(225, 10, 5, 0.1);
}

.hero h1 {
  max-width: 13.5ch;
  margin: 0 0 1.5rem;
  color: var(--navy);
  font-size: clamp(2.65rem, 5.15vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.057em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1::after {
  display: inline-block;
  width: 0.19em;
  aspect-ratio: 1;
  margin-left: 0.08em;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.hero__lead {
  max-width: 39rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

.text-link svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 250ms var(--ease-out);
}

.text-link:hover svg {
  transform: translateX(0.35rem);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__trust i {
  width: 0.28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
}

.hero__visual {
  position: relative;
  min-height: 35rem;
  margin-top: 0.85rem;
}

.hero__image-wrap {
  position: absolute;
  inset: 0 0 0 2rem;
  overflow: hidden;
  border-radius: 48% 48% 2.5rem 2.5rem;
  background: var(--blue-light);
  box-shadow: 0 35px 80px rgba(15, 25, 87, 0.18);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  content: "";
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 47%;
  transition: transform 1.1s var(--ease-out);
}

.hero__visual:hover .hero__image-wrap img {
  transform: scale(1.035);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(15, 25, 87, 0.38));
}

.hero__badge {
  position: absolute;
  top: 7%;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 9.75rem;
  aspect-ratio: 1;
  padding: 1.15rem;
  border: 0.45rem solid var(--cream);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 40px rgba(225, 10, 5, 0.26);
  transform: rotate(-7deg);
}

.hero__badge strong {
  flex: 0 0 auto;
  font-size: 2.25rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.hero__badge span {
  flex: 0 0 auto;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero__mini-card {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 25, 87, 0.18);
  font-size: 0.72rem;
  line-height: 1.5;
  backdrop-filter: blur(12px);
}

.hero__mini-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  color: var(--white);
  background: var(--blue);
}

.hero__mini-icon svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-bridge {
  position: relative;
  z-index: 5;
  height: 0;
}

.category-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(15, 25, 87, 0.08);
  backdrop-filter: blur(15px);
  translate: 0 -50%;
}

.category-rail__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 5rem;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 250ms ease, background 250ms ease;
}

.category-rail__item:last-child {
  border-right: 0;
}

.category-rail__item:hover {
  color: var(--white);
  background: var(--blue);
}

.category-rail__item span {
  color: var(--red);
  font-size: 0.63rem;
}

.category-rail__item:hover span {
  color: var(--white);
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section h2,
.butcher h2,
.final-cta h2 {
  color: var(--navy);
  font-size: clamp(2.05rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.06;
  text-wrap: balance;
}

.section--about {
  overflow: hidden;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 8rem);
}

.about-visual {
  position: relative;
  min-height: 38rem;
}

.about-visual::before {
  position: absolute;
  top: -2.3rem;
  right: -2.3rem;
  width: 10rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, rgba(9, 104, 160, 0.18) 0 2px, transparent 2px 9px);
  content: "";
}

.about-visual__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2rem 7rem 2rem 2rem;
  box-shadow: 0 32px 70px rgba(15, 25, 87, 0.15);
}

.about-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transition: transform 900ms var(--ease-out);
}

.about-visual:hover img {
  transform: scale(1.04);
}

.about-visual__stamp {
  position: absolute;
  right: -3.7rem;
  bottom: 3rem;
  display: grid;
  place-items: center;
  width: 9rem;
  aspect-ratio: 1;
  border: 0.55rem solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 40px rgba(15, 25, 87, 0.22);
}

.about-visual__stamp svg {
  position: absolute;
  inset: 0.25rem;
  width: calc(100% - 0.5rem);
  height: calc(100% - 0.5rem);
  animation: spin 22s linear infinite;
}

.about-visual__stamp text {
  fill: currentColor;
  font-family: Manrope, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.about-visual__stamp span {
  font-size: 2.7rem;
  font-weight: 800;
}

.about-content h2 {
  max-width: 16ch;
  margin: 1rem 0 1.75rem;
}

.about-copy {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.about-copy p:first-child {
  color: var(--navy);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  margin-top: 2.5rem;
}

.timeline__item {
  display: grid;
  gap: 0.35rem;
  max-width: 9rem;
}

.timeline__item strong {
  color: var(--red);
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.timeline__item span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45;
}

.timeline__line {
  position: relative;
  height: 1px;
  margin: 0 0.65rem;
  background: var(--line);
}

.timeline__line i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.36rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.section--features {
  background:
    linear-gradient(rgba(15, 25, 87, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 25, 87, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 4rem 4rem;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 15ch;
  margin-top: 0.85rem;
}

.section-heading__number {
  color: rgba(15, 25, 87, 0.09);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  isolation: isolate;
  min-height: 23rem;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 25, 87, 0.055);
  transition: color 350ms ease, background 350ms ease, border-color 350ms ease, box-shadow 350ms ease, transform 450ms var(--ease-out);
}

.feature-card::after {
  position: absolute;
  z-index: -1;
  right: -4rem;
  bottom: -4rem;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(9, 104, 160, 0.07);
  content: "";
  transition: transform 500ms var(--ease-out);
}

.feature-card:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 28px 60px rgba(15, 25, 87, 0.2);
  transform: translateY(-0.7rem);
}

.feature-card:hover::after {
  transform: scale(4.5);
}

.feature-card--blue:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.feature-card--red:hover {
  border-color: var(--red);
  background: var(--red);
}

.feature-card__number {
  display: block;
  color: rgba(15, 25, 87, 0.28);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: right;
  transition: color 300ms ease;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  aspect-ratio: 1;
  margin-top: 1.3rem;
  border-radius: 1.2rem;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(225, 10, 5, 0.2);
  transition: color 300ms ease, background 300ms ease, transform 400ms var(--ease-spring);
}

.feature-card--blue .feature-card__icon {
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(9, 104, 160, 0.2);
}

.feature-card:hover .feature-card__icon {
  color: var(--navy);
  background: var(--white);
  transform: rotate(-6deg) scale(1.06);
}

.feature-card__icon svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 2.3rem 0 0.85rem;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  transition: color 300ms ease;
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .feature-card__number {
  color: var(--white);
}

.butcher {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: var(--white);
  background: var(--navy);
}

.butcher::before {
  position: absolute;
  z-index: -1;
  top: -18rem;
  left: -16rem;
  width: 36rem;
  aspect-ratio: 1;
  border: 7rem solid rgba(9, 104, 160, 0.16);
  border-radius: 50%;
  content: "";
}

.butcher__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.section-kicker--light {
  color: #8fd4fa;
}

.butcher h2 {
  max-width: 12ch;
  margin: 1rem 0 1.6rem;
  color: var(--white);
}

.butcher__content p {
  max-width: 34rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.75;
}

.butcher__content .button {
  margin-top: 1.3rem;
}

.butcher__visual {
  position: relative;
  isolation: isolate;
}

.butcher-slider__stage {
  position: relative;
  min-height: 31rem;
}

.butcher-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 2rem 7rem 2rem 2rem;
  background: var(--navy-deep);
  box-shadow: 0 20px 45px rgba(3, 7, 33, 0.24);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity 720ms ease,
    transform 1050ms var(--ease-out),
    filter 1050ms var(--ease-out),
    box-shadow 1050ms var(--ease-out);
}

.butcher-slider__slide[data-state="active"] {
  z-index: 4;
  opacity: 1;
  filter: brightness(1) saturate(1);
  box-shadow: 0 30px 65px rgba(3, 7, 33, 0.38);
  transform: translate3d(0, 0, 0) scale(1);
}

.butcher-slider__slide[data-state="next"] {
  z-index: 3;
  opacity: 1;
  filter: brightness(0.92) saturate(0.96);
  transform: translate3d(1.5rem, 1.5rem, 0) scale(0.995);
}

.butcher-slider__slide[data-state="queued"] {
  z-index: 2;
  opacity: 1;
  filter: brightness(0.79) saturate(0.9);
  transform: translate3d(2.25rem, 2.25rem, 0) scale(0.988);
}

.butcher-slider__slide[data-state="tail"] {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.66) saturate(0.85);
  transform: translate3d(2.75rem, 2.75rem, 0) scale(0.98);
}

.butcher-slider__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 500ms ease, transform 900ms var(--ease-out);
}

.butcher-slider:not(.is-changing):hover .butcher-slider__slide[data-state="active"] img {
  filter: saturate(1.12);
  transform: scale(1.015);
}

.butcher-slider.is-changing .butcher-slider__slide[data-state="active"] {
  z-index: 5;
  opacity: 0;
  filter: brightness(1.06) saturate(1.08);
  transform: translate3d(-4rem, -0.65rem, 0) rotate(-1.4deg) scale(0.965);
}

.butcher-slider.is-changing .butcher-slider__slide[data-state="next"] {
  z-index: 4;
  filter: brightness(1) saturate(1);
  box-shadow: 0 30px 65px rgba(3, 7, 33, 0.38);
  transform: translate3d(0, 0, 0) scale(1);
}

.butcher-slider.is-changing .butcher-slider__slide[data-state="queued"] {
  z-index: 3;
  filter: brightness(0.92) saturate(0.96);
  transform: translate3d(1.5rem, 1.5rem, 0) scale(0.995);
}

.butcher-slider.is-changing .butcher-slider__slide[data-state="tail"] {
  z-index: 2;
  opacity: 1;
  filter: brightness(0.79) saturate(0.9);
  transform: translate3d(2.25rem, 2.25rem, 0) scale(0.988);
}

.butcher-slider.is-resetting .butcher-slider__slide,
.butcher-slider.is-resetting .butcher-slider__slide img {
  transition: none !important;
}

.butcher__seal {
  position: absolute;
  z-index: 7;
  bottom: 1.5rem;
  left: -2.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 40px rgba(3, 7, 33, 0.3);
  font-size: 0.72rem;
  line-height: 1.4;
  backdrop-filter: blur(14px);
}

.butcher__seal svg {
  width: 2rem;
  fill: var(--red);
}

.butcher-slider__dots {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 15, 59, 0.7);
  box-shadow: 0 10px 25px rgba(3, 7, 33, 0.2);
  backdrop-filter: blur(10px);
}

.butcher-slider__dots button {
  width: 0.46rem;
  height: 0.46rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 300ms var(--ease-out), background 250ms ease, transform 250ms ease;
}

.butcher-slider__dots button:hover {
  background: var(--white);
  transform: scale(1.15);
}

.butcher-slider__dots button.is-active {
  width: 1.45rem;
  background: var(--red);
}

.section--offers {
  background: var(--white);
}

.offers-intro > p {
  max-width: 30rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.offers-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.25rem;
}

.offer-card {
  position: relative;
  isolation: isolate;
  min-height: 36rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.offer-card--image img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.offer-card--image:hover img {
  transform: scale(1.045);
}

.offer-card__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 25, 87, 0.04) 15%, rgba(15, 25, 87, 0.92) 100%);
}

.offer-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.offer-card__label {
  display: inline-flex;
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(225, 10, 5, 0.86);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.offer-card__content p {
  max-width: 30rem;
  margin: 1rem 0 1.4rem;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.offer-card--day {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.25rem);
  color: var(--navy);
  background: var(--red);
}

.offer-card__watermark {
  position: absolute;
  z-index: -1;
  right: -3rem;
  bottom: -7rem;
  color: rgba(255, 255, 255, 0.085);
  font-size: 30rem;
  font-weight: 800;
  letter-spacing: -0.15em;
  line-height: 0.8;
}

.offer-card__topline {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-card__topline i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.offer-card__day-mark {
  display: grid;
  place-items: center;
  width: 4.5rem;
  aspect-ratio: 1;
  margin-bottom: 1.35rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.14);
  font-size: 2.3rem;
  font-weight: 800;
}

.offer-card--day h3 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.offer-card--day p {
  max-width: 35rem;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.88rem;
  line-height: 1.7;
}

.offer-card--day .button {
  margin-top: 1.35rem;
}

.location {
  background: var(--ice);
}

.location__heading p {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.location__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.25rem;
}

.map-card {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border: 0.65rem solid var(--white);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(15, 25, 87, 0.1);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  border: 0;
  filter: saturate(0.65) contrast(1.05);
}

.map-card__action {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.1rem;
  color: var(--white);
  background: rgba(15, 25, 87, 0.93);
  box-shadow: 0 14px 35px rgba(15, 25, 87, 0.25);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.5;
  backdrop-filter: blur(12px);
  transition: background 250ms ease, transform 300ms var(--ease-out);
}

.map-card__action:hover {
  background: var(--blue);
  transform: translateY(-0.25rem);
}

.map-card__action small {
  display: block;
  margin-bottom: 0.3rem;
  color: #8fd4fa;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-card__action svg {
  flex: 0 0 auto;
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(9, 104, 160, 0.62), transparent 18rem),
    var(--navy);
  box-shadow: 0 24px 60px rgba(15, 25, 87, 0.18);
}

.hours-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hours-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.6rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  color: var(--white);
  background: var(--red);
}

.hours-card__icon svg {
  width: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours-card h3 {
  margin-top: 0.3rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hours-list {
  display: grid;
  flex: 1;
  align-content: center;
  margin-block: 1.5rem;
}

.hours-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.hours-list strong {
  font-size: 0.86rem;
  text-align: right;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: var(--white);
  background: var(--blue);
}

.final-cta__circle {
  position: absolute;
  z-index: -1;
  border: 5rem solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.final-cta__circle--one {
  top: -15rem;
  right: -9rem;
  width: 29rem;
  aspect-ratio: 1;
}

.final-cta__circle--two {
  bottom: -12rem;
  left: -10rem;
  width: 24rem;
  aspect-ratio: 1;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.8rem;
  text-align: center;
}

.final-cta__content {
  width: 100%;
}

.final-cta h2 {
  max-width: 22ch;
  margin-inline: auto;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.final-cta__content p {
  max-width: 42rem;
  margin-top: 0.7rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer {
  padding-top: 4.5rem;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-brand img {
  width: 11rem;
  filter: drop-shadow(0 0.75rem 1.2rem rgba(0, 0, 0, 0.18));
}

.footer-brand p {
  max-width: 16rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-column strong {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 0.79rem;
}

.footer-column a {
  transition: color 200ms ease, transform 200ms ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(0.2rem);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 700;
}

.footer-bottom a span {
  color: #8fd4fa;
  font-size: 1rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  display: grid;
  place-items: center;
  width: 3.75rem;
  aspect-ratio: 1;
  border: 0.25rem solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 36px rgba(12, 72, 34, 0.3);
  transition: transform 350ms var(--ease-spring), box-shadow 300ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 42px rgba(12, 72, 34, 0.4);
  transform: scale(1.08) rotate(-4deg);
}

.whatsapp-float svg {
  width: 1.75rem;
  fill: currentColor;
}

.whatsapp-float__ring {
  position: absolute;
  inset: -0.3rem;
  border: 1px solid rgba(37, 211, 102, 0.6);
  border-radius: 50%;
  animation: pulse 2.3s ease-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.noscript-message {
  position: fixed;
  z-index: 1300;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 38rem;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 1rem 3rem rgba(15, 25, 87, 0.24);
  text-align: center;
}

@keyframes loader-mark {
  from { opacity: 0; transform: scale(0.84) translateY(0.5rem); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes loader-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.86); }
  80%, 100% { opacity: 0; transform: scale(1.35); }
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 0.8rem; }
  .desktop-nav a { font-size: 0.7rem; }
  .button--header { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.78fr); gap: 3rem; }
  .hero__mini-card { right: -0.5rem; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card { min-height: 20rem; }
}

@media (max-width: 860px) {
  :root { --gutter: 1.25rem; }
  .header-strip__content p { display: none; }
  .header-strip__content { justify-content: center; }
  .nav-shell { height: 4.8rem; }
  .brand-logo { width: 9.25rem; }
  .desktop-nav { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    width: 2.9rem;
    aspect-ratio: 1;
    gap: 0.28rem;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 1.15rem; height: 2px; border-radius: 2px; background: currentColor; transition: transform 300ms ease, opacity 250ms ease; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(0.38rem) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-0.38rem) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 1;
    top: 6.8rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
    padding: 2rem var(--gutter);
    visibility: hidden;
    opacity: 0;
    background: rgba(250, 248, 243, 0.98);
    transform: translateY(-1rem);
    backdrop-filter: blur(20px);
    transition: opacity 250ms ease, transform 300ms var(--ease-out), visibility 300ms;
  }
  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-nav > a:not(.button) { padding: 0.85rem 0; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 1.15rem; font-weight: 800; }
  .mobile-nav .button { margin-top: 1.25rem; }
  .hero { padding-top: 3.8rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero h1, .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { width: min(100%, 32rem); min-height: 34rem; margin: 0 auto; }
  .hero__image-wrap { left: 0; }
  .hero__badge { left: -1rem; }
  .category-rail { grid-template-columns: repeat(3, 1fr); }
  .category-rail__item:nth-child(3) { border-right: 0; }
  .category-rail__item:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .about-grid, .butcher__grid, .offers-grid, .location__grid { grid-template-columns: 1fr; }
  .about-visual { width: min(100% - 2rem, 34rem); min-height: 34rem; margin-inline: auto; }
  .about-visual__stamp { right: -2rem; }
  .about-content { text-align: center; }
  .about-content h2, .about-copy { margin-inline: auto; }
  .timeline { text-align: left; }
  .butcher__content { text-align: center; }
  .butcher h2, .butcher__content p { margin-inline: auto; }
  .butcher__visual { width: min(100% - 1rem, 42rem); margin-inline: auto; }
  .butcher-slider__stage { min-height: 26rem; }
  .butcher__seal { left: -0.75rem; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading__number { align-self: flex-end; margin-top: -3rem; }
  .offers-intro > p { margin-top: -1rem; }
  .offer-card { min-height: 32rem; }
  .map-card, .map-card iframe { min-height: 29rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .hero h1 { font-size: clamp(2.3rem, 10.5vw, 3.35rem); }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; max-width: 100%; padding-inline: 1rem; white-space: normal; }
  .hero__trust { gap: 0.45rem; font-size: 0.61rem; }
  .hero__visual { min-height: 29rem; }
  .hero__image-wrap { inset: 0; border-radius: 10rem 10rem 1.75rem 1.75rem; }
  .hero__badge { top: 1rem; left: -0.5rem; width: 8.4rem; padding: 0.9rem; }
  .hero__badge strong { font-size: 2rem; }
  .hero__mini-card { right: -0.25rem; bottom: 1rem; }
  .category-rail { grid-template-columns: 1fr 1fr; }
  .category-rail__item { min-height: 4.1rem; }
  .category-rail__item:nth-child(2) { border-right: 0; }
  .category-rail__item:nth-child(3) { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .category-rail__item:nth-child(4) { border-right: 0; }
  .category-rail__item:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .category-bridge { height: 2rem; }
  .section { padding-block: 4.5rem; }
  .section h2, .butcher h2 { font-size: 2.35rem; }
  .about-visual { min-height: 29rem; }
  .about-visual__frame { border-radius: 1.5rem 5rem 1.5rem 1.5rem; }
  .about-visual__stamp { right: -1rem; bottom: 1.5rem; width: 7.5rem; }
  .timeline { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; text-align: center; }
  .timeline__item { max-width: none; }
  .timeline__line { width: 1px; height: 1.5rem; margin: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; padding: 1.35rem; }
  .feature-card h3 { margin-top: 1.7rem; }
  .butcher-slider__stage { min-height: 21rem; }
  .butcher-slider__slide { border-radius: 1.5rem 4rem 1.5rem 1.5rem; }
  .butcher-slider__slide[data-state="next"] { transform: translate3d(0.8rem, 0.8rem, 0) scale(0.995); }
  .butcher-slider__slide[data-state="queued"] { transform: translate3d(1.2rem, 1.2rem, 0) scale(0.988); }
  .butcher-slider__slide[data-state="tail"] { transform: translate3d(1.5rem, 1.5rem, 0) scale(0.98); }
  .butcher-slider.is-changing .butcher-slider__slide[data-state="active"] { transform: translate3d(-2.25rem, -0.35rem, 0) rotate(-1deg) scale(0.97); }
  .butcher-slider.is-changing .butcher-slider__slide[data-state="next"] { transform: translate3d(0, 0, 0) scale(1); }
  .butcher-slider.is-changing .butcher-slider__slide[data-state="queued"] { transform: translate3d(0.8rem, 0.8rem, 0) scale(0.995); }
  .butcher-slider.is-changing .butcher-slider__slide[data-state="tail"] { transform: translate3d(1.2rem, 1.2rem, 0) scale(0.988); }
  .butcher__content .button { width: 100%; }
  .offer-card { min-height: 31rem; border-radius: 1.7rem; }
  .offer-card--day { padding: 1.7rem; }
  .offer-card--day .button { width: 100%; }
  .offer-card__watermark { font-size: 23rem; }
  .location__heading { gap: 1.25rem; }
  .map-card { border-width: 0.4rem; }
  .map-card__action { right: 0.65rem; bottom: 0.65rem; left: 0.65rem; }
  .hours-list > div { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
  .hours-list strong { text-align: left; }
  .final-cta__inner .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 0.45rem; padding-block: 1.2rem; }
  .whatsapp-float { right: 0.85rem; bottom: 0.85rem; width: 3.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
