:root {
  --paper: #fffdf9;
  --paper-soft: #f7f1ea;
  --paper-deep: #ede3d6;
  --ink: #101010;
  --muted: #5e5a57;
  --wine: #65131b;
  --wine-soft: #8f2631;
  --orange: #f18816;
  --line: rgba(16, 16, 16, 0.08);
  --line-strong: rgba(101, 19, 27, 0.18);
  --shadow-soft: 0 24px 60px rgba(16, 16, 16, 0.08);
  --shadow-card: 0 16px 40px rgba(16, 16, 16, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1.1rem;
  --container: min(1160px, calc(100% - 2rem));
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-editorial: "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(241, 136, 22, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 18%, #f9f3ed 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: auto auto -14rem -10rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(101, 19, 27, 0.05), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(101, 19, 27, 0.14);
  color: var(--wine);
}

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

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

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

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

.section {
  padding: clamp(4.75rem, 9vw, 7rem) 0;
}

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

.eyebrow {
  margin: 0 0 0.9rem;
  color: #5b0301;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #5b0301;
}

.section-heading .eyebrow,
.about-copy .eyebrow,
.final-cta-panel .eyebrow {
  color: #5b0301;
}

.promo-copy .eyebrow-light {
  color: rgba(255, 250, 245, 0.74);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.about-copy h2,
.promo-copy h2,
.final-cta-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p,
.about-copy p,
.promo-copy p,
.final-cta-panel p,
.hero-description,
.hero-subtitle {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), #262626);
  box-shadow: 0 16px 32px rgba(16, 16, 16, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(16, 16, 16, 0.2);
}

.button-secondary {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(101, 19, 27, 0.34);
  background: #fff;
}

.button-light {
  background: #ffffff;
  color: #111111;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(16, 16, 16, 0.12);
}

.button-light:hover,
.button-light:focus-visible {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 18px 32px rgba(16, 16, 16, 0.16);
}

.button-block {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 252, 247, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 247, 0.94);
  border-color: rgba(101, 19, 27, 0.08);
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand-seal {
  width: auto;
  height: clamp(3.45rem, 5.4vw, 4.15rem);
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 22px rgba(16, 16, 16, 0.08));
}

.brand-seal-large {
  width: auto;
  max-width: 100%;
  height: min(19.25rem, 60vw);
  filter: drop-shadow(0 22px 44px rgba(16, 16, 16, 0.14));
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav > a:not(.button) {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2f2f2f;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: #5b0301;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: clamp(6.7rem, 8.6vw, 7.4rem);
  padding-bottom: clamp(3.25rem, 5vw, 4.5rem);
}

.hero-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.5rem, 3vw, 3.25rem);
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.hero-subtitle {
  margin-top: 0.75rem;
  max-width: 26rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-description {
  margin-top: 0.85rem;
  max-width: 31rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.45rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  min-height: 4.4rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid #111111;
  border-radius: 1.15rem;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(16, 16, 16, 0.06);
}

.highlight-card-whatsapp {
  background: #ffffff;
}

.highlight-card-delivery {
  background: #ffffff;
}

.highlight-icon-badge {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 0.9rem;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(16, 16, 16, 0.18);
}

.highlight-icon-badge svg {
  width: 1.15rem;
  height: 1.15rem;
}

.highlight-copy {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.highlight-label,
.mini-kicker,
.card-label,
.product-category,
.offer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.highlight-label,
.mini-kicker,
.card-label,
.product-category {
  color: #111111;
  background: #ffffff;
  border: 1px solid #111111;
}

.hero-visual {
  min-width: 0;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.9rem;
  height: clamp(23rem, 36vw, 29rem);
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  box-shadow: 0 24px 60px rgba(16, 16, 16, 0.06);
}

.hero-stage:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
}

.hero-carousel-viewport {
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, #f3f3f3 0%, #ececec 100%);
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
}

.hero-slide[aria-hidden="true"] {
  pointer-events: none;
}

.hero-product {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  margin: 0;
  gap: 0.9rem;
  padding: 1.15rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 48%),
    linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
}

.hero-product-media {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 1rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-photo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.hero-product-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-product-copy > div {
  min-width: 0;
}

.hero-product-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777777;
}

.hero-product-title {
  margin: 0.3rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #111111;
}

.hero-product-note {
  margin: 0 0 0.18rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
  white-space: nowrap;
}

.hero-arrow {
  position: absolute;
  top: calc(50% - 1.55rem);
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(10px);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(16, 16, 16, 0.14);
}

.hero-arrow:focus-visible {
  outline: none;
}

.hero-arrow-prev {
  left: 1.35rem;
}

.hero-arrow-next {
  right: 1.35rem;
}

.hero-arrow svg {
  width: 1rem;
  height: 1rem;
}

.hero-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-progress {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-progress-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.hero-progress-dot:hover,
.hero-progress-dot:focus-visible {
  background: rgba(17, 17, 17, 0.4);
  transform: translateY(-1px);
}

.hero-progress-dot:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.hero-progress-dot.is-active {
  width: 2.15rem;
  background: #111111;
}

.hero-counter {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a7a7a;
  white-space: nowrap;
}

.promo-grid,
.info-grid {
  display: grid;
  gap: 1.4rem;
}

.product-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.product-card {
  border-color: #111111;
}

.product-card {
  overflow: hidden;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: #111111;
  box-shadow: 0 26px 42px rgba(16, 16, 16, 0.1);
}

.product-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.product-visual {
  min-height: 17rem;
  padding: 1rem;
}

.product-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1.2rem;
}

.visual-street-two .product-photo {
  object-position: center 82%;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: auto auto -20% -15%;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.08);
  filter: blur(22px);
  z-index: -1;
}

.visual-street-one,
.visual-street-two,
.visual-street-three {
  background:
    radial-gradient(circle at top right, rgba(241, 136, 22, 0.18), transparent 24%),
    linear-gradient(180deg, #fff8f1 0%, #f1e6dc 100%);
}

.visual-polo-one,
.visual-polo-two,
.visual-polo-three {
  background:
    radial-gradient(circle at top right, rgba(101, 19, 27, 0.16), transparent 24%),
    linear-gradient(180deg, #f9f5ef 0%, #efe2d6 100%);
}

.visual-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(101, 19, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
}

.visual-garment {
  position: absolute;
  left: 50%;
  top: 55%;
}

.product-visual .garment-shirt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #141414 0%, #2a2a2a 100%);
}

.product-visual .garment-polo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #721e28 0%, #55121a 100%);
}
.product-copy {
  padding: 1.3rem;
  border-top: 1px solid #111111;
}

.product-copy h3,
.info-card h3,
.footer-contact h3 {
  margin: 0.7rem 0 0.65rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.product-copy p,
.info-card p,
.footer-brand p,
.footer-contact p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.promotions {
  padding-top: 0.5rem;
}

.promo-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  padding: clamp(1.75rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(91, 3, 1, 0.2), transparent 24%),
    linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 44%, #5b0301 100%);
  color: var(--paper);
  box-shadow: 0 28px 70px rgba(16, 16, 16, 0.18);
}

.promo-shell::before {
  content: "";
  position: absolute;
  inset: auto -8% -26% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.promo-copy p {
  color: rgba(255, 250, 245, 0.78);
}

.promo-copy h2 {
  font-size: clamp(2.8rem, 5.1vw, 4.85rem);
}

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

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.offer-card-wine {
  background: rgba(255, 255, 255, 0.08);
}

.offer-media {
  display: grid;
  place-items: center;
  margin: 1rem 0 1.1rem;
  padding: 0;
  height: 10.75rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.offer-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.95rem;
}

.offer-media-street img {
  object-position: center top;
  transform: translateY(-28px) scale(1.03);
  transform-origin: center top;
}

.offer-badge {
  color: #111111;
  background: #ffffff;
  border: 1px solid #111111;
}

.offer-pricing {
  margin: 1rem 0 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.offer-pricing strong {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.offer-pricing span,
.offer-highlight {
  color: rgba(255, 250, 245, 0.8);
}

.offer-highlight {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  font-weight: 700;
}

.offer-card .button-light {
  align-self: center;
  justify-content: center;
  min-width: min(100%, 16rem);
  margin-top: auto;
  border-color: #111111;
  box-shadow:
    inset 0 0 0 1px #111111,
    0 14px 28px rgba(16, 16, 16, 0.12);
}

.button-light.button-arrow::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button-light.button-arrow:hover::after,
.button-light.button-arrow:focus-visible::after {
  transform: translateX(4px);
}

.hero-whatsapp-button,
.hero-whatsapp-button:hover,
.hero-whatsapp-button:focus-visible {
  background: #25d366;
  color: #111111;
  border-color: #111111;
  box-shadow:
    inset 0 0 0 1px #111111,
    0 14px 28px rgba(16, 16, 16, 0.12);
}

.hero-whatsapp-button:hover,
.hero-whatsapp-button:focus-visible {
  box-shadow:
    inset 0 0 0 1px #111111,
    0 18px 32px rgba(16, 16, 16, 0.16);
}

.showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 241, 234, 0.48) 100%);
}

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

.product-copy p {
  font-size: 0.95rem;
}

.visual-street-one .garment-shirt {
  transform: translate(-50%, -26%) rotate(-4deg) scale(1.02);
}

.visual-street-two .garment-shirt {
  transform: translate(-54%, -28%) rotate(-10deg) scale(1.06);
}

.visual-street-three .garment-shirt {
  transform: translate(-46%, -26%) rotate(7deg) scale(1.04);
}

.visual-polo-one .garment-polo {
  transform: translate(-50%, -26%) rotate(-5deg) scale(1.02);
}

.visual-polo-two .garment-polo {
  transform: translate(-54%, -28%) rotate(-11deg) scale(1.04);
}

.visual-polo-three .garment-polo {
  transform: translate(-46%, -26%) rotate(8deg) scale(1.02);
}

.about {
  background:
    radial-gradient(circle at right top, rgba(101, 19, 27, 0.05), transparent 26%),
    linear-gradient(180deg, #fcf9f4 0%, #f6f0e8 100%);
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4.2vw, 4rem);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 1.05rem;
  font-family: var(--font-editorial);
}

.about-eyebrow {
  margin: 0;
}

.about-title {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-editorial);
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #111111;
}

.about-title-line {
  display: inline;
}

.about-title-line-break {
  white-space: normal;
}

.about-lead {
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.78;
  color: #312c29;
}

.about-body {
  display: grid;
  gap: 0.8rem;
  max-width: 31rem;
}

.about-body p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--muted);
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #111111;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(16, 16, 16, 0.04);
}

.about-copy .about-signature {
  margin-top: 0.55rem;
  color: #5b0301;
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-visual {
  display: flex;
  justify-content: flex-end;
}

.about-showcase {
  --about-offset-x: 0px;
  --about-offset-y: 0px;
  width: min(100%, 35rem);
  transform: translate3d(var(--about-offset-x), var(--about-offset-y), 0);
  transition: transform 280ms ease;
}

.about-showcase-frame {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 2rem;
  background:
    radial-gradient(circle at right top, rgba(101, 19, 27, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 239, 231, 0.98));
  box-shadow:
    0 24px 56px rgba(16, 16, 16, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.about-showcase-frame::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 1.45rem;
  pointer-events: none;
}

.about-showcase:hover .about-showcase-frame,
.about-showcase:focus-within .about-showcase-frame {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow:
    0 30px 64px rgba(16, 16, 16, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-showcase-note {
  position: relative;
  z-index: 1;
}

.about-showcase-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.22 / 1;
  border-radius: 2rem;
  background: linear-gradient(180deg, #efe8df 0%, #e8dfd5 100%);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.about-showcase-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.06));
  pointer-events: none;
}

.about-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.about-showcase:hover .about-showcase-image,
.about-showcase:focus-within .about-showcase-image {
  transform: scale(1.03);
}

.about-showcase-note {
  position: absolute;
  right: 1.85rem;
  bottom: 1.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: #111111;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(16, 16, 16, 0.08);
}

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

.info-card {
  position: relative;
  overflow: hidden;
}

.info-grid > .info-card:not(.info-card-premium) {
  display: none;
}

.info-card-premium {
  display: grid;
  align-content: start;
  padding: 1.45rem;
  border-color: #111111;
  background: linear-gradient(180deg, #ffffff 0%, #f6f3ef 100%);
  box-shadow: 0 22px 44px rgba(16, 16, 16, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.info-card-premium::before {
  content: none;
}

.info-card-premium::after {
  content: "";
  position: absolute;
  inset: -20% auto auto -30%;
  width: 9rem;
  height: 140%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: rotate(12deg);
  pointer-events: none;
}

.info-card-premium:hover,
.info-card-premium:focus-within {
  transform: translateY(-6px);
  border-color: #111111;
  box-shadow: 0 28px 48px rgba(16, 16, 16, 0.1);
}

.info-card-premium:hover::after,
.info-card-premium:focus-within::after {
  opacity: 1;
  animation: info-card-sheen 900ms ease;
}

.info-card-street {
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f1ed 100%);
}

.info-card-polo {
  background:
    radial-gradient(circle at top right, rgba(91, 3, 1, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f1eb 100%);
}

.info-card-delivery {
  background:
    radial-gradient(circle at top right, rgba(241, 136, 22, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f2ea 100%);
}

.info-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.icon-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(91, 3, 1, 0.14);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 232, 0.92));
  color: #5b0301;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 28px rgba(16, 16, 16, 0.08);
  animation: info-icon-breathe 5.4s ease-in-out infinite;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.icon-wrap::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(91, 3, 1, 0.1);
  border-radius: 0.95rem;
  animation: info-icon-frame-pulse 4.8s ease-in-out infinite;
}

.info-card-polo .icon-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 237, 230, 0.95));
}

.info-card-delivery .icon-wrap {
  border-color: rgba(241, 136, 22, 0.24);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(255, 242, 229, 0.95));
}

.info-card-premium:hover .icon-wrap,
.info-card-premium:focus-within .icon-wrap {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 20px 34px rgba(16, 16, 16, 0.1);
}

.icon-wrap svg {
  position: relative;
  z-index: 1;
  width: 1.75rem;
  height: 1.75rem;
}

.info-card .info-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b7a72;
}

.info-card-premium h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #111111;
}

.info-card .info-lead {
  margin: 0.7rem 0 0;
  color: #5f5954;
  font-size: 0.98rem;
  line-height: 1.55;
}

.info-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.info-size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  min-height: 2.45rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 18px rgba(16, 16, 16, 0.04);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #111111;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.info-card-premium:hover .info-size-chip,
.info-card-premium:focus-within .info-size-chip {
  transform: translateY(-2px);
  border-color: rgba(91, 3, 1, 0.14);
  box-shadow: 0 14px 24px rgba(16, 16, 16, 0.07);
}

.info-card-premium:hover .info-size-chip:nth-child(2),
.info-card-premium:focus-within .info-size-chip:nth-child(2) {
  transform: translateY(-5px);
}

.info-card-premium:hover .info-size-chip:nth-child(3),
.info-card-premium:focus-within .info-size-chip:nth-child(3) {
  transform: translateY(-3px);
}

.info-card-premium:hover .info-size-chip:nth-child(4),
.info-card-premium:focus-within .info-size-chip:nth-child(4) {
  transform: translateY(-5px);
}

.info-details {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.info-details li {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  color: #5f5954;
  font-weight: 700;
  line-height: 1.45;
}

.info-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #5b0301;
  box-shadow: 0 0 0 4px rgba(91, 3, 1, 0.12);
  animation: logistics-dot-pulse 1.4s ease-in-out infinite;
}

.info-card-delivery .info-details li:nth-child(2)::before {
  animation-delay: 0.4s;
}

@keyframes info-card-sheen {
  0% {
    transform: translateX(-1rem) rotate(12deg);
  }

  100% {
    transform: translateX(28rem) rotate(12deg);
  }
}

@keyframes info-topline-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes info-icon-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes info-icon-frame-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(0.96);
  }
}

@keyframes logistics-dot-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(91, 3, 1, 0.16);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
    box-shadow: 0 0 0 6px rgba(91, 3, 1, 0.2);
  }
}

.final-cta-panel {
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid #111111;
  border-radius: var(--radius-xl);
  background: #f4f1ed;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.final-cta-panel h2 {
  margin-inline: auto;
  max-width: 12ch;
}

.final-cta-panel p {
  max-width: 34rem;
  margin: 0 auto;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.site-footer {
  padding: 0;
  border-top: 1px solid rgba(101, 19, 27, 0.08);
}

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

.brand-footer {
  margin-bottom: 1rem;
}

.footer-contact a {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-weight: 700;
}

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

.footer-nav a {
  color: var(--muted);
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--wine);
}

.footer-bottom {
  padding: 1.15rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: none;
}

.mobile-cta a {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.22);
  box-shadow:
    0 18px 36px rgba(37, 211, 102, 0.3),
    0 10px 22px rgba(16, 16, 16, 0.14);
  overflow: hidden;
}

.mobile-cta a::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 70%);
}

.mobile-cta a svg {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
}

.reveal {
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.about-copy.reveal {
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual.reveal {
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.has-motion .about-copy.reveal {
  transform: translateY(34px);
}

.has-motion .about-visual.reveal {
  transform: translateY(24px) scale(0.97);
}

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

.has-motion .about-visual.reveal.is-visible {
  transform: translateY(0) scale(1);
}

body.is-ready .hero-copy,
body.is-ready .hero-visual {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 1rem;
  }

  .header-cta {
    margin-left: 0.2rem;
  }

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

  .hero-stage {
    height: clamp(21rem, 38vw, 24.5rem);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 5.75rem 1rem auto;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border: 1px solid rgba(101, 19, 27, 0.12);
    border-radius: 1.4rem;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: 0 20px 40px rgba(16, 16, 16, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 0.75rem 0.4rem;
  }

  .header-cta {
    margin-left: 0;
    margin-top: 0.35rem;
    width: 100%;
  }

  .hero-grid,
  .about-grid,
  .promo-shell {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 38rem;
  }

  .about-title {
    max-width: 12ch;
  }

  .about-visual {
    justify-content: flex-start;
  }

  .about-showcase {
    width: min(100%, 36rem);
  }

  .about-showcase-note {
    right: 1.45rem;
    bottom: 1.45rem;
  }

  .hero {
    padding-top: 6.35rem;
    padding-bottom: 3.5rem;
  }

  .hero-stage {
    height: clamp(21rem, 58vw, 24rem);
    max-width: 34rem;
    margin-inline: auto;
  }

  .promo-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 6rem;
  }

  .promotions {
    padding-top: 0;
  }

  .promo-shell {
    gap: 1.35rem;
    padding: 1.2rem;
    border-radius: 1.65rem;
  }

  .promo-copy h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .promo-copy p {
    max-width: 26rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .offer-card {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .offer-media {
    height: 9.25rem;
    margin: 0.85rem 0 1rem;
    border-radius: 0.95rem;
  }

  .offer-pricing {
    margin: 0.7rem 0 0.45rem;
  }

  .offer-pricing strong {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .offer-highlight {
    margin-bottom: 0.95rem;
    font-size: 0.92rem;
  }

  .about-copy {
    gap: 1rem;
  }

  .about-title {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .about-lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .about-body p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .about-showcase-frame {
    padding: 0;
    border-radius: 1.6rem;
  }

  .about-showcase-image-wrap {
    aspect-ratio: 1.08 / 1;
    border-radius: 1.6rem;
  }

  .about-showcase-note {
    right: 1.2rem;
    bottom: 1.2rem;
    font-size: 0.68rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-subtitle,
  .hero-description {
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .hero-stage {
    height: 22.5rem;
    padding: 0.75rem;
  }

  .hero-product {
    padding: 0.95rem;
  }

  .hero-product-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero-product-note {
    margin: 0;
  }

  .hero-arrow {
    top: calc(50% - 1.3rem);
    width: 2.65rem;
    height: 2.65rem;
  }

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

  .mobile-cta {
    display: block;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.8rem);
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 1.25rem, 100%);
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand-copy span {
    display: none;
  }

  .mobile-cta a {
    width: 4rem;
    height: 4rem;
  }

  .button {
    width: 100%;
  }

  .promo-shell {
    gap: 1.1rem;
    padding: 1rem;
    border-radius: 1.45rem;
  }

  .promo-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .promo-copy p {
    font-size: 0.9rem;
  }

  .offer-card {
    padding: 0.9rem;
    border-radius: 1.1rem;
  }

  .offer-media {
    height: 8.4rem;
    margin: 0.75rem 0 0.9rem;
  }

  .offer-badge {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .offer-pricing {
    gap: 0.4rem;
  }

  .offer-pricing strong {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .offer-pricing span,
  .offer-highlight {
    font-size: 0.84rem;
  }

  .about {
    padding-top: 4.2rem;
  }

  .about-copy {
    text-align: left;
  }

  .about-title {
    max-width: none;
    font-size: clamp(1.95rem, 10.8vw, 2.6rem);
  }

  .about-title-line {
    display: block;
  }

  .about-title-line-break {
    display: block;
    white-space: nowrap;
  }

  .about-lead {
    font-size: 0.98rem;
  }

  .about-pill-row {
    gap: 0.55rem;
  }

  .about-showcase {
    width: 100%;
  }

  .about-showcase-frame {
    padding: 0;
    border-radius: 1.4rem;
  }

  .about-showcase-image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 1.4rem;
  }

  .about-showcase-note {
    right: 1rem;
    bottom: 1rem;
    min-height: 2.1rem;
    padding: 0.42rem 0.75rem;
    font-size: 0.63rem;
  }

  .hero-copy .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .hero-copy h1 {
    margin-inline: auto;
    font-size: clamp(2.45rem, 11.8vw, 3.15rem);
  }

  .hero-description {
    font-size: 0.78rem;
  }

  .hero-actions,
  .final-cta-actions {
    flex-direction: column;
  }

  .hero-stage {
    height: 20.25rem;
    padding: 0.65rem;
  }

  .hero-product {
    padding: 0.75rem;
  }

  .hero-product-media {
    padding: 0.65rem;
  }

  .hero-carousel-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .hero-progress {
    width: 100%;
  }

  .hero-arrow {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero-arrow-prev {
    left: 0.9rem;
  }

  .hero-arrow-next {
    right: 0.9rem;
  }

  .hero-product-title {
    font-size: 1.22rem;
  }

  .hero-product-note {
    font-size: 0.72rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
