@font-face {
  font-family: "Penumbra HalfSerif";
  src: url("public/assets/fonts/penumbra-halfserif-std-regular.otf")
    format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Veni";
  src: url("public/assets/fonts/veni-7ntypes.otf") format("opentype");
  font-display: swap;
}

:root {
  --verde-institucional: #0d3b2e;
  --verde-claro-pantone-375: #97d700;
  --tradicional-pantone-377: #7a9a01;
  --pimenta-pantone-485: #da291c;
  --damasco-pantone-021: #fe5000;
  --fundo-premium: #f4f1e8;
  --texto-principal: #0d3b2e;
  --bg: var(--fundo-premium);
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --text: var(--texto-principal);
  --text-soft: rgba(13, 59, 46, 0.76);
  --brand: var(--verde-institucional);
  --brand-strong: #08291f;
  --lime: var(--verde-claro-pantone-375);
  --lime-soft: rgba(151, 215, 0, 0.18);
  --apricot: var(--damasco-pantone-021);
  --line: rgba(11, 59, 46, 0.1);
  --line-strong: rgba(11, 59, 46, 0.16);
  --shadow: 0 22px 54px rgba(8, 41, 31, 0.1);
  --shadow-soft: 0 16px 36px rgba(8, 41, 31, 0.08);
  --shadow-elevated: 0 30px 70px rgba(8, 41, 31, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --section-space: clamp(3.1rem, 6vw, 4.25rem);
  --content-gap: clamp(1rem, 2vw, 1.5rem);
  --button-height: 3.45rem;
  --container: min(1120px, calc(100vw - 2rem));
  --font-body: "Manrope", sans-serif;
  --font-editorial: "Penumbra HalfSerif", Georgia, serif;
  --font-accent: "Veni", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(166, 206, 57, 0.17), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(254, 80, 0, 0.06), transparent 22%),
    linear-gradient(180deg, #fcfaf5 0%, #f4eee3 52%, #f8f5ee 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  overflow: clip;
  padding: 0.9rem 0 2.25rem;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-bg-left {
  inset: 4rem auto auto -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(166, 206, 57, 0.24);
}

.hero-bg-right {
  inset: 9rem -6rem auto auto;
  width: 16rem;
  height: 16rem;
  background: rgba(217, 121, 65, 0.14);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0 0.9rem;
}

.brand-mark {
  width: clamp(116px, 11.5vw, 140px);
  height: clamp(116px, 11.5vw, 140px);
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.nav-links a {
  position: relative;
  transition: color 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.32rem;
  height: 1px;
  background: rgba(11, 59, 46, 0.32);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  gap: clamp(1.8rem, 4vw, 2.6rem);
  align-items: center;
  padding: 1rem 0 0;
  text-align: center;
}

.hero-copy {
  display: grid;
  gap: 0.35rem;
}

.eyebrow,
.section-tag {
  margin: 0 0 0.7rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.product-card h3,
.footer-brand span {
  margin: 0;
  font-family: var(--font-editorial);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--verde-institucional);
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero h1 {
  font-size: clamp(2.95rem, 14vw, 4.8rem);
  max-width: 8.8ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 0.98;
}

.lead,
.copy-block p,
.story-content p,
.story-highlight p,
.section-intro,
.product-content p:not(.product-note),
.modal-product-content p,
.contact-copy p,
.form-note {
  color: var(--texto-principal);
  line-height: 1.72;
  font-size: 1rem;
}

.lead {
  max-width: 22rem;
  margin: 1.45rem 0 0;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

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

.button:focus-visible {
  outline: 2px solid rgba(151, 215, 0, 0.42);
  outline-offset: 3px;
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 59, 46, 0.17);
}

.button-primary:hover {
  background: var(--brand-strong);
  box-shadow: 0 18px 34px rgba(11, 59, 46, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(11, 59, 46, 0.12);
  color: var(--brand);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(11, 59, 46, 0.2);
  box-shadow: 0 14px 28px rgba(11, 59, 46, 0.08);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-divider {
  margin-top: 0.15rem;
}

.section-divider::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), 72rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(11, 59, 46, 0),
    rgba(11, 59, 46, 0.13) 18%,
    rgba(11, 59, 46, 0.2) 50%,
    rgba(11, 59, 46, 0.13) 82%,
    rgba(11, 59, 46, 0)
  );
}

.site-footer {
  position: relative;
}

.two-column,
.section-heading,
.contact-panel {
  display: grid;
  gap: var(--content-gap);
}

.intro,
.story,
.products,
.contact {
  text-align: center;
}

.section h2,
.section-tag,
.section-intro,
.copy-block p,
.story-content p,
.story-highlight p,
.contact-copy p {
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 12vw, 4rem);
  line-height: 0.98;
}

.section-intro,
.copy-block p,
.story-content p,
.story-highlight p,
.contact-copy p {
  max-width: 23rem;
}

.copy-block,
.story-highlight,
.contact-form {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.copy-block,
.story-panel,
.product-card,
.contact-panel,
.modal-product-card,
.product-modal-dialog {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.copy-block:hover,
.story-panel:hover,
.product-card:hover,
.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.story-panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(11, 59, 46, 0.98), rgba(10, 45, 35, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  color: #fff;
  box-shadow: 0 28px 64px rgba(8, 41, 31, 0.22);
}

.story-panel .section-tag,
.story-panel .story-content p,
.story-panel .story-highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.story-panel h2,
.story-panel h3 {
  color: #fff;
}

.story-highlight {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.story-highlight h3 {
  margin: 0 0 0.6rem;
}

.section-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 11vw, 4.1rem);
}

.products-editorial {
  display: none;
}

.products-editorial-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(11, 59, 46, 0.1);
  color: var(--brand);
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 16rem;
  text-align: center;
}

.products-editorial p {
  margin: 0;
  max-width: 20rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.98rem;
  text-align: center;
}

.kit-feature-content h3 {
  margin: 0;
  font-family: var(--font-editorial);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.products .section-heading {
  margin-bottom: 2rem;
}

.products .section-heading .section-intro {
  max-width: 30rem;
}

.products .section-heading {
  grid-template-columns: minmax(0, 1fr);
}

.products-editorial p,
.kit-feature-text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.kit-feature-list,
.kit-feature-meta,
.kit-feature-price {
  margin: 0;
}

.product-commercial {
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.45rem;
  width: min(100%, 16rem);
}

.product-note {
  margin: 0;
  color: rgba(11, 59, 46, 0.76);
  font-size: 12.48px;
  line-height: 1.5;
  text-align: center;
  max-width: 16rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  gap: 1.45rem;
  margin-top: 1.6rem;
}

.products-flow {
  display: grid;
  gap: 1.7rem;
}

.product-line-panel {
  display: grid;
  gap: 1.35rem;
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.product-line-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-xl) - 10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 232, 0.9));
}

.product-line-copy {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
}

.product-line-copy h3 {
  margin: 0;
}

.product-grid-featured {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.product-card-featured .product-image-wrap img {
  aspect-ratio: 16 / 11;
  min-height: 19.5rem;
}

.product-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 241, 0.94));
}

.product-card-spicy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 241, 0.96));
}

.product-image-wrap {
  padding: 1rem 1rem 0;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 232, 0.9));
  border-radius: calc(var(--radius-xl) - 10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.product-kit-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-kit-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  display: block;
  object-fit: cover;
  object-position: 60% 34%;
  transform: scale(0.94);
}

.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.9rem;
  padding: 1.4rem 1.3rem 1.45rem;
  text-align: center;
}

.product-content-featured {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}

.product-support-copy {
  margin: 0;
  max-width: 26rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.flavor-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.product-line-showcase {
  margin-top: 0.2rem;
}

.flavor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 0.7rem 0.9rem;
  border-radius: 18px;
  background: rgba(11, 59, 46, 0.05);
  border: 1px solid rgba(11, 59, 46, 0.08);
}

.flavor-item-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 241, 232, 0.9));
  transform: none;
  perspective: none;
}

.flavor-item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  transform: none;
  rotate: 0deg;
  skew: none;
}

.flavor-item h4 {
  margin: 0;
  color: var(--brand);
  font-size: 1.02rem;
  line-height: 1.1;
}

.flavor-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.product-commercial-block {
  width: 100%;
}

.product-line-commercial {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding-top: 0.15rem;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  width: 100%;
  text-align: center;
}

.product-title-row h3 {
  flex: 0 1 auto;
}

.product-flavors {
  margin: 0;
  max-width: 28rem;
  color: var(--brand);
  line-height: 1.7;
  font-weight: 400;
}

.product-separator {
  display: inline-block;
  margin: 0 0.35rem;
  color: var(--brand);
}

.product-title-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(11, 59, 46, 0.08);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.product-title-meta-accent {
  background: rgba(11, 59, 46, 0.08);
  color: var(--brand);
}

.product-kit-card {
  max-width: 42rem;
  margin: 0 auto;
}

.product-kit-flavors {
  max-width: 24rem;
}

.product-kit-weight {
  margin: 0;
  color: var(--brand);
  font-weight: 600;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.product-badge {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--brand);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.product-badge-soft {
  background: rgba(122, 154, 1, 0.14);
  color: var(--tradicional-pantone-377);
}

.product-badge-accent {
  background: rgba(254, 80, 0, 0.14);
  color: var(--damasco-pantone-021);
}

.product-badge-soft-accent {
  background: rgba(254, 80, 0, 0.08);
  color: var(--damasco-pantone-021);
}

.product-badge-spicy {
  background: rgba(218, 41, 28, 0.14);
  color: var(--pimenta-pantone-485);
}

.product-badge-soft-spicy {
  background: rgba(218, 41, 28, 0.08);
  color: var(--pimenta-pantone-485);
}

.product-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1.7rem;
  line-height: 1.02;
}

.flavor-name {
  font-weight: 400;
  color: var(--brand);
}

.flavor-name-traditional {
  color: var(--brand);
}

.flavor-name-apricot {
  color: var(--brand);
}

.flavor-name-spicy {
  color: var(--brand);
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.product-highlights li {
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 59, 46, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-highlights li:nth-child(1) {
  background: rgba(122, 154, 1, 0.12);
  color: var(--tradicional-pantone-377);
}

.product-highlights li:nth-child(2) {
  background: rgba(254, 80, 0, 0.1);
  color: var(--damasco-pantone-021);
}

.product-highlights li:nth-child(3) {
  background: rgba(218, 41, 28, 0.1);
  color: var(--pimenta-pantone-485);
}

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

.product-meta strong {
  color: var(--brand);
  font-size: 1.2rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.92rem 1rem;
  border-radius: 18px;
  background: rgba(11, 59, 46, 0.06);
  color: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-align: center;
}

.product-commercial .product-price {
  width: 100%;
}

.product-price span,
.kit-feature-meta span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-price strong,
.kit-feature-price strong {
  font-size: 1.42rem;
  color: inherit;
}

.product-price-prominent strong {
  font-size: 1.42rem;
}

.product-price-accent {
  background: rgba(11, 59, 46, 0.06);
  color: var(--brand);
}

.product-price-spicy {
  background: rgba(11, 59, 46, 0.06);
  color: var(--brand);
}

.button-inline {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  width: min(100%, 16rem);
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  min-height: var(--button-height);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(11, 59, 46, 0.14);
}

.button-inline:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.button-inline-accent {
  color: #fff;
  border-color: var(--brand);
}

.button-inline-accent:hover {
  background: var(--brand-strong);
}

.button-inline-spicy {
  color: #fff;
  border-color: var(--brand);
}

.button-inline-spicy:hover {
  background: var(--brand-strong);
}

.body-modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-modal[hidden] {
  display: none;
}

.product-modal.is-open {
  display: grid;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 19, 0.56);
  backdrop-filter: blur(5px);
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 1.5rem);
  overflow-y: auto;
  padding: 1.6rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.98)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 72px rgba(8, 24, 19, 0.24);
  animation: modalReveal 260ms ease;
}

.product-modal-dialog-kit {
  width: min(1040px, calc(100vw - 1.5rem));
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 59, 46, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-modal-close:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(11, 59, 46, 0.22);
  box-shadow: 0 14px 28px rgba(8, 41, 31, 0.12);
}

.product-modal-close:focus-visible,
.modal-product-card button:focus-visible,
.modal-individual-button:focus-visible,
.modal-kit-button:focus-visible {
  outline: 2px solid rgba(151, 215, 0, 0.45);
  outline-offset: 3px;
}

.product-modal-header {
  display: grid;
  gap: 0.55rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.product-modal-header h3 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--brand);
  text-wrap: balance;
}

.product-modal-header p,
.modal-kit-content > p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-modal-header-kit {
  max-width: 28rem;
}

.modal-product-grid {
  display: grid;
  gap: 1.15rem;
}

.modal-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 243, 236, 0.98));
  border: 1px solid rgba(11, 59, 46, 0.08);
  box-shadow: 0 14px 30px rgba(8, 41, 31, 0.08);
}

.modal-product-card-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 240, 0.98));
}

.modal-product-card-spicy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 241, 0.98));
}

.modal-product-image-wrap {
  padding: 0.9rem 0.9rem 0;
}

.modal-product-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 241, 232, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.modal-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1rem 1.05rem 1.08rem;
}

.modal-product-content h4 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand);
  text-wrap: balance;
}

.modal-product-content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.modal-product-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(11, 59, 46, 0.08);
}

.modal-product-meta span,
.modal-kit-meta span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-product-meta strong,
.modal-kit-meta strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--brand);
  font-size: 1.22rem;
}

.modal-product-price,
.modal-kit-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: var(--brand);
}

.modal-product-price strong,
.modal-kit-price strong {
  font-size: 1.75rem;
  line-height: 1;
}

.modal-product-price-accent {
  color: var(--brand);
}

.modal-product-price-spicy {
  color: var(--brand);
}

.modal-product-card button,
.modal-kit-button {
  width: 100%;
  margin-top: 0.1rem;
}

.modal-product-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.modal-individual-button {
  width: min(100%, 20rem);
}

.modal-kit-layout {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.modal-kit-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-kit-visual img {
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(8, 41, 31, 0.09);
}

.modal-kit-content {
  display: grid;
  gap: 1rem;
  align-content: start;
  max-width: 30rem;
}

.modal-kit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal-kit-list li {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 59, 46, 0.08);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.88rem;
}

.modal-kit-meta {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(11, 59, 46, 0.08);
}

.modal-kit-meta > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

@keyframes modalReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.kit-feature {
  margin-top: 2.6rem;
  display: grid;
  gap: 1.4rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(244, 241, 232, 0.98)),
    linear-gradient(135deg, rgba(151, 215, 0, 0.06), rgba(254, 80, 0, 0.04));
  border: 1px solid rgba(11, 59, 46, 0.08);
  box-shadow: var(--shadow);
}

.kit-feature-visual img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.72);
}

.kit-feature-content {
  display: grid;
  gap: 0.9rem;
}

.kit-feature-subtitle {
  margin: -0.2rem 0 0;
  color: var(--brand);
  font-size: 1.04rem;
  font-weight: 700;
}

.kit-feature-content h3 {
  font-size: clamp(2.1rem, 7vw, 3.15rem);
}

.kit-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}

.kit-feature-list li {
  padding: 0.52rem 0.82rem;
  border-radius: 999px;
  background: rgba(11, 59, 46, 0.08);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.88rem;
}

.kit-feature-meta {
  display: grid;
  gap: 0.85rem;
}

.kit-feature-meta > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
}

.kit-feature-meta strong {
  font-size: 1.28rem;
}

.kit-feature-price {
  color: var(--damasco-pantone-021);
}

.kit-feature-button {
  width: 100%;
}

.contact-panel {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.84);
}

.contact-form {
  display: grid;
  gap: 1.05rem;
  background: var(--surface-strong);
  padding: 1.25rem;
  transition:
    box-shadow 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
  border: 1px solid rgba(11, 59, 46, 0.08);
}

.contact-form.contact-form-highlight {
  border-color: rgba(151, 215, 0, 0.7);
  box-shadow:
    0 0 0 4px rgba(151, 215, 0, 0.16),
    0 26px 66px rgba(8, 41, 31, 0.16);
  transform: translateY(-2px);
}

.button-instagram {
  width: min(100%, 19rem);
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

.button-contact-whatsapp {
  width: min(100%, 19rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(11, 59, 46, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(166, 206, 57, 0.35);
  border-color: var(--lime);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  text-align: center;
}

.form-success {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(166, 206, 57, 0.14);
  color: var(--brand);
  font-size: 0.94rem;
  line-height: 1.6;
}

.form-success.is-error {
  background: rgba(217, 121, 65, 0.14);
  color: #9a4f24;
}

.site-footer {
  padding: 2.55rem 0 2.8rem;
}

.footer-shell {
  display: grid;
  gap: 1.35rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(11, 59, 46, 0.1);
  text-align: center;
}

.footer-content {
  display: grid;
  gap: 1.5rem;
}

.footer-column {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-heading {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.45;
  font-size: 0.95rem;
}

.footer-copy-soft {
  color: var(--text-soft);
  font-weight: 500;
}

.footer-column-copy {
  gap: 0.35rem;
}

.footer-company {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.footer-company img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
}

.footer-company-copy {
  display: grid;
  gap: 0.35rem;
}

.footer-nav {
  display: grid;
  gap: 0.78rem;
}

.footer-nav a {
  color: var(--brand);
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-nav a:hover {
  color: var(--brand-strong);
  transform: translateY(-1px);
}

.footer-credit-row {
  display: grid;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 59, 46, 0.08);
}

.footer-credit {
  display: inline-grid;
  justify-items: center;
  gap: 0.55rem;
  color: var(--text-soft);
  justify-self: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.footer-credit:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer-credit span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.footer-credit img {
  width: min(9rem, 44vw);
  height: auto;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 3.7rem;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  background: rgba(11, 59, 46, 0.96);
  color: #fff;
  box-shadow: 0 18px 40px rgba(8, 41, 31, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: var(--brand-strong);
  box-shadow: 0 22px 44px rgba(8, 41, 31, 0.26);
}

.whatsapp-float svg {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
}

.whatsapp-float-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.1;
}

.whatsapp-float-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.whatsapp-float-copy small {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .section {
    padding: 2.35rem 0;
  }

  .hero h1 {
    max-width: min(90vw, 320px);
    font-size: clamp(2.22rem, 8vw, 3.02rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .section h2 {
    max-width: min(90vw, 320px);
    font-size: clamp(1.86rem, 6.9vw, 2.55rem);
    line-height: 0.98;
    letter-spacing: -0.006em;
  }

  .story-content h2 {
    max-width: min(92vw, 320px);
    font-size: clamp(1.82rem, 6.6vw, 2.34rem);
    line-height: 0.98;
  }

  .contact-copy h2 {
    max-width: min(88vw, 300px);
    font-size: clamp(1.8rem, 6.8vw, 2.26rem);
    line-height: 0.98;
  }

  .lead,
  .section-intro,
  .copy-block p,
  .story-content p,
  .story-highlight p,
  .product-content p:not(.product-note),
  .contact-copy p,
  .form-note {
    max-width: min(90vw, 32ch);
    font-size: clamp(0.98rem, 3.7vw, 1.05rem);
    line-height: 1.66;
  }

  .lead {
    margin-top: 1.15rem;
    max-width: min(90vw, 32ch);
  }

  .product-note {
    max-width: 16rem;
    font-size: 12.48px;
    line-height: 1.5;
  }

  .hero-shell {
    padding-bottom: 0.9rem;
  }

  .topbar {
    justify-content: center;
  }

  .hero {
    gap: 1.2rem;
  }

  .section-heading > div,
  .contact-copy,
  .story-content,
  .two-column > div:first-child {
    display: grid;
    justify-items: center;
  }

  .section-tag {
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-copy .button-secondary {
    width: min(100%, 19rem);
  }

  .button-primary,
  .button-secondary,
  .button-inline,
  .modal-kit-button {
    min-height: 3.2rem;
  }

  .story-highlight,
  .copy-block {
    padding: 24px;
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .story-panel {
    padding: 24px;
    gap: 1rem;
    max-width: calc(100vw - 16px);
    margin-left: auto;
    margin-right: auto;
  }

  .story-highlight {
    padding: 22px;
  }

  .product-card {
    width: min(100%, 24rem);
    margin: 0 auto;
  }

  .product-line-panel {
    padding: 1.15rem;
  }

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

  .product-commercial {
    gap: 0.65rem;
    width: min(100%, 18rem);
  }

  .product-content {
    gap: 0.85rem;
    padding: 1.2rem 1.1rem 1.35rem;
  }

  .product-card h3 {
    font-size: 1.42rem;
  }

  .product-title-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .product-title-row h3 {
    flex: initial;
  }

  .product-card-featured .product-image-wrap img {
    min-height: auto;
  }

  .product-flavors {
    max-width: 24rem;
  }

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

  .flavor-item:last-child {
    grid-column: 1 / -1;
    max-width: 12rem;
    margin: 0 auto;
  }

  .product-line-copy h3,
  .product-kit-card h3 {
    font-size: 1.42rem;
  }

  .product-meta {
    padding-bottom: 1rem;
  }

  .product-modal {
    padding: 0.75rem;
  }

  .product-modal-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    padding: 1.05rem;
    border-radius: 24px;
  }

  .product-modal-header,
  .product-modal-header-kit {
    justify-items: center;
    text-align: center;
    max-width: none;
    margin-bottom: 1.2rem;
    padding-top: 0.5rem;
  }

  .product-modal-header h3 {
    font-size: clamp(1.82rem, 7.4vw, 2.34rem);
  }

  .modal-product-grid,
  .modal-kit-layout {
    grid-template-columns: 1fr;
  }

  .modal-product-content,
  .modal-kit-content {
    text-align: center;
  }

  .modal-product-meta,
  .modal-kit-meta > div {
    align-items: center;
    text-align: left;
  }

  .modal-kit-list {
    justify-content: center;
  }

  .modal-kit-meta {
    gap: 0.75rem;
  }

  .modal-kit-button {
    width: min(100%, 19rem);
    margin-left: auto;
    margin-right: auto;
  }

  .product-modal-close {
    top: 0.85rem;
    right: 0.85rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .kit-feature {
    padding: 1rem;
  }

  .kit-feature-content {
    justify-items: center;
    text-align: center;
  }

  .kit-feature-list,
  .kit-feature-meta {
    width: 100%;
  }

  .contact-form label {
    text-align: left;
  }

  .contact-form .button-primary {
    width: min(100%, 19rem);
    margin: 0 auto;
  }

  .contact-panel,
  .contact-form {
    padding: 24px;
  }

  .section-divider {
    margin-top: 0.15rem;
  }

  .section-divider::before,
  .site-footer::before {
    width: calc(100% - 1.75rem);
  }

  .footer-copy {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-company {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.7rem;
    max-width: 19rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-company-copy {
    justify-items: center;
    text-align: center;
    gap: 0.28rem;
  }

  .footer-company img {
    width: 40px;
    height: 40px;
  }

  .footer-nav {
    justify-items: center;
    text-align: center;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.85rem;
    min-height: 3.1rem;
    padding: 0.74rem 0.86rem;
    gap: 0.56rem;
  }

  .whatsapp-float svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .whatsapp-float-copy strong {
    font-size: 0.84rem;
  }

  .whatsapp-float-copy small {
    font-size: 0.62rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: min(92vw, 304px);
    font-size: clamp(1.98rem, 7vw, 2.46rem);
  }

  .section h2 {
    max-width: min(92vw, 304px);
    font-size: clamp(1.7rem, 6.2vw, 2.14rem);
  }

  .story-content h2 {
    max-width: min(92vw, 304px);
    font-size: clamp(1.62rem, 5.9vw, 1.98rem);
  }

  .whatsapp-float-copy small {
    display: block;
    font-size: 0.56rem;
  }

  .whatsapp-float {
    min-height: 3rem;
    padding: 0.74rem 0.8rem;
  }
}

@media (min-width: 760px) {
  .hero-shell {
    padding-bottom: 3rem;
  }

  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.45rem;
    min-height: 42rem;
    padding: 1.8rem 0 0;
    text-align: left;
  }

  .hero-copy {
    max-width: 37rem;
  }

  .hero h1,
  .lead,
  .section h2,
  .section-tag,
  .section-intro,
  .copy-block p,
  .story-content p,
  .story-highlight p,
  .contact-copy p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(4rem, 8vw, 6rem);
  }

  .lead {
    max-width: 35rem;
    font-size: 1.32rem;
    line-height: 1.5;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 0;
    align-self: start;
  }

  .hero-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 68px rgba(8, 41, 31, 0.14);
  }

  .two-column,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .intro,
  .story,
  .products,
  .contact,
  .product-content,
  .footer-shell {
    text-align: left;
  }

  .section h2 {
    max-width: none;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .copy-block,
  .contact-form {
    padding: 1.75rem;
  }

  .story-panel {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
    align-items: center;
    padding: 2.1rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .section-heading h2 {
    max-width: 13ch;
  }

  .section-heading .section-intro {
    max-width: 34rem;
    margin-left: 0;
    margin-right: 0;
  }

  .products .section-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.4rem;
  }

  .products .section-heading > div {
    display: grid;
    justify-items: start;
  }

  .products-flow {
    gap: 2rem;
  }

  .product-line-panel {
    width: 100%;
    max-width: none;
    padding: 1.9rem;
  }

  .product-line-hero img {
    aspect-ratio: 16 / 8.6;
  }

  .product-line-copy {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }

  .product-line-commercial {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .product-kit-card {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.49fr) minmax(0, 0.51fr);
    align-items: center;
    gap: 1.2rem;
  }

  .product-kit-card .product-image-wrap {
    padding: 1.4rem 0 1.4rem 1.4rem;
    align-self: stretch;
  }

  .product-kit-card .product-kit-media {
    padding: 1.3rem 0 1.3rem 1.3rem;
    align-self: stretch;
  }

  .product-kit-card .product-kit-media img {
    aspect-ratio: 16 / 11;
    min-height: 100%;
    object-fit: cover;
    object-position: 60% 34%;
    transform: scale(0.94);
    width: 100%;
  }

  .product-kit-card .product-content {
    padding: 1.8rem 1.9rem 1.8rem 1.05rem;
  }

  .product-kit-card .product-content-featured {
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    gap: 1rem;
  }

  .product-kit-card .product-support-copy,
  .product-kit-card .product-flavors {
    max-width: 23rem;
  }

  .product-kit-card .product-commercial {
    width: min(100%, 16rem);
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-kit-card .button-inline {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

  .product-card {
    width: auto;
    margin: 0;
  }

  .product-content {
    padding: 1.45rem 1.3rem 1.5rem;
  }

  .product-commercial {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.85rem;
  }

  .product-image-wrap {
    padding: 1.28rem 1.28rem 0;
  }

  .product-image-wrap img {
    aspect-ratio: 4 / 5;
  }

  .product-badges,
  .product-highlights {
    justify-content: flex-start;
  }

  .kit-feature {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    padding: 1.35rem;
  }

  .modal-kit-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .modal-kit-content {
    max-width: none;
  }

  .kit-feature-content {
    justify-items: start;
    text-align: left;
  }

  .kit-feature-list {
    justify-content: flex-start;
  }

  .kit-feature-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-inline {
    width: min(100%, 16rem);
  }

  .contact-panel {
    padding: 1.85rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .button-instagram {
    width: fit-content;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-content {
    grid-template-columns: minmax(15rem, 1.2fr) minmax(9rem, 0.78fr) minmax(11rem, 0.9fr);
    gap: 1.4rem 2.1rem;
    align-items: start;
  }

  .footer-column,
  .footer-credit-row {
    justify-items: start;
  }

  .footer-copy {
    max-width: 22rem;
  }

  .footer-company {
    max-width: 23rem;
  }

  .footer-credit-row {
    justify-items: center;
  }

  .footer-credit {
    justify-items: center;
    justify-self: center;
  }
}

@media (min-width: 1040px) {
  .section {
    padding: 4.3rem 0;
  }

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

  .hero-visual {
    min-height: 33rem;
  }

  .hero {
    gap: 2.9rem;
  }

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

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

  .modal-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kit-feature {
    padding: 1.55rem;
    gap: 1.8rem;
  }

  .product-card,
  .contact-panel,
  .story-panel,
  .copy-block {
    will-change: transform;
  }
}
