:root {
  --black: #0D0D0D;
  --white: #F5F5F5;
  --gray-mid: #A6A6A6;
  --gray-light: #D4D4D4;
  --black-soft: #1A1A1A;
  --black-deep: #050505;
  --gray-dim: #6E6E6E;
  --line: rgba(245, 245, 245, 0.16);
  --line-dark: rgba(13, 13, 13, 0.18);
  --product-camel: #B79A72;
  --product-bone: #F3F0EA;
  --ink: var(--black);
  --charcoal: var(--black-soft);
  --ash: var(--gray-mid);
  --camel: var(--gray-mid);
  --bone: var(--black);
  --radius: 4px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--white);
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.48) 66%, rgba(5, 5, 5, 0));
  backdrop-filter: blur(8px);
}

.brand-mark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand-mark img {
  display: block;
  width: clamp(118px, 12vw, 164px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-cta {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-photo,
.editorial-photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-position: 56% 32%;
  background-image:
    linear-gradient(120deg, rgba(12, 12, 12, 0.14), rgba(12, 12, 12, 0.02) 56%, rgba(12, 12, 12, 0.04)),
    radial-gradient(circle at 78% 26%, rgba(183, 154, 114, 0.12), transparent 34%),
    url("assets/photos/hero-canguro.jpg"),
    linear-gradient(135deg, #0d0d0d 0%, #343330 44%, #111 100%);
}

.hero-photo::after,
.editorial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.34;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.12), rgba(12, 12, 12, 0.46)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.18) 54%, rgba(5, 5, 5, 0) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 clamp(22px, 6vw, 86px) 72px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--camel);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--ash);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 14px;
  color: rgba(245, 245, 245, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.hero-tag {
  margin: 0 0 30px;
  color: var(--gray-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-note,
.panel-note {
  margin: 16px 0 0;
  color: rgba(245, 245, 245, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.panel-note {
  color: var(--ash);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(245, 245, 245, 0.54);
}

.button-dark {
  width: fit-content;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone);
}

.intro-line {
  min-height: 82px;
  padding: 28px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}

.intro-line:last-child {
  border-right: 0;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 24px;
  color: var(--white);
}

.drop-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1.08fr);
  gap: 44px;
  align-items: stretch;
}

.drop-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.drop-copy p,
.mood-copy p,
.section-heading p,
.fit-item p,
.seo-copy p,
details p {
  color: var(--ash);
  font-size: 16px;
  line-height: 1.7;
}

.price-stack {
  display: grid;
  gap: 10px;
  max-width: 420px;
}

.launch-badge {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gray-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-stack div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-stack span {
  color: var(--ash);
}

.price-stack strong {
  color: var(--white);
}

.price-value {
  display: grid;
  justify-items: end;
  gap: 4px;
  line-height: 1;
  text-align: right;
}

.price-value s {
  color: var(--gray-dim);
  font-size: 13px;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.price-value b {
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 800;
}

/* Three-tier launch pricing (canguro) */
.price-stack-three {
  max-width: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.price-stack-three div {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 22px 20px;
  border-bottom: none;
  border-right: 1px solid var(--line);
}

.price-stack-three div:last-child {
  border-right: none;
}

.price-stack-three span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-stack-three .price-value {
  justify-items: start;
  text-align: left;
}

.price-stack-three .price-value b {
  font-size: clamp(20px, 1.9vw, 28px);
}

/* Size band */
.size-band {
  margin-top: 48px;
  padding: 28px clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}

.size-label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.size-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.size-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  background: var(--black-soft);
}

.size-note {
  margin: 0;
  font-size: 14px;
  color: var(--ash);
}

/* Shipping note in buy section */
.ship-note {
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ash);
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(210px, 0.74fr);
  grid-template-rows: minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 14px;
  min-height: 620px;
}

.editorial-photo,
.product-photo {
  position: relative;
  min-height: 580px;
  margin: 0;
  border-radius: var(--radius);
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.product-photo {
  background-color: #efece6;
  border: 1px solid rgba(13, 13, 13, 0.08);
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(13, 13, 13, 0.06));
  background-size: auto;
}

.product-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  background: rgba(13, 13, 13, 0.78);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-transform: uppercase;
}

.product-photo-primary {
  grid-row: 1 / span 2;
  min-height: 620px;
}

.product-photo-texture,
.product-photo-tones {
  min-height: 0;
}

.photo-product-fit {
  background-position: center center;
  background-color: #efece6;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.0), rgba(5, 5, 5, 0.1)),
    url("assets/photos/canguro-grid4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.photo-product-chiporro {
  background-position: center;
  background-color: #d8cdbb;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.0), rgba(5, 5, 5, 0.18)),
    url("assets/photos/chiporro-canguro.jpg");
  background-size: cover;
}

.photo-product-tones {
  background-position: center top;
  background-color: #efece6;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.0), rgba(5, 5, 5, 0.18)),
    url("assets/photos/canguro-cafe.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}

.mood-section {
  width: 100%;
  max-width: none;
  padding-left: clamp(22px, 5vw, 64px);
  padding-right: clamp(22px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.mood-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr 0.72fr;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: end;
}

.mood-copy {
  padding: 34px 22px 20px 0;
}

.mood-copy p {
  color: rgba(245, 245, 245, 0.72);
}

.photo-couple {
  min-height: 620px;
  background-image:
    linear-gradient(180deg, rgba(12, 12, 12, 0.04), rgba(12, 12, 12, 0.4)),
    url("assets/photos/hero-canguro.jpg"),
    linear-gradient(135deg, #22211f 0%, #5b5650 46%, #111 100%);
  background-position: center 28%;
}

.photo-detail {
  min-height: 430px;
  background-image:
    linear-gradient(180deg, rgba(12, 12, 12, 0.04), rgba(12, 12, 12, 0.3)),
    url("assets/photos/chiporro-canguro.jpg"),
    linear-gradient(135deg, #d8cdbb 0%, #8a7a62 48%, #3a3128 100%);
  background-position: center;
}

.section-heading.compact {
  max-width: 760px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.fit-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.fit-grid-four .fit-item {
  min-height: 200px;
  padding: 24px;
}

.fit-grid-four .fit-item span {
  margin-bottom: 40px;
}

.fit-grid-four .fit-item h3 {
  font-size: 18px;
}

.fit-item {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-soft);
}

.fit-item span {
  display: block;
  margin-bottom: 54px;
  color: var(--camel);
  font-size: 13px;
  font-weight: 800;
}

.fit-item h3 {
  margin-bottom: 8px;
  font-size: 21px;
  color: var(--white);
}

.palette-section {
  padding-top: 0;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.color-grid-photo {
  grid-template-columns: repeat(4, 1fr);
}

.color-grid-photo .color-card {
  margin: 0;
  min-height: auto;
}

.color-card {
  min-height: 168px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-soft);
}

.swatch {
  display: block;
  width: 100%;
  height: 96px;
  margin-bottom: 16px;
  border: 1px solid rgba(12, 12, 12, 0.16);
  border-radius: 6px;
}

.swatch-photo {
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #efece6;
}
.swatch-gris-claro { background-image: url("assets/photos/canguro-gris-claro.jpg"); }
.swatch-gris-oscuro { background-image: url("assets/photos/canguro-gris-oscuro.jpg"); }
.swatch-negro { background-image: url("assets/photos/canguro-negro.jpg"); }
.swatch-cafe { background-image: url("assets/photos/canguro-cafe.jpg"); }

.color-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-section {
  padding-top: 20px;
}

.future-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.future-section h2 {
  max-width: 780px;
}

.brand-seal {
  display: block;
  width: clamp(96px, 14vw, 180px);
  height: clamp(96px, 14vw, 180px);
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.future-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.future-line span {
  min-height: 76px;
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  color: var(--ash);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.future-line span:last-child {
  border-right: 0;
}

.seo-section {
  padding-top: 14px;
}

.seo-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.buy-section {
  width: 100%;
  max-width: none;
  padding: 110px 24px;
  background: var(--charcoal);
  color: var(--white);
}

.buy-content {
  max-width: 920px;
  margin: 0 auto;
}

.buy-content h2 {
  max-width: 820px;
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.steps div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: var(--radius);
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--camel);
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: rgba(245, 245, 245, 0.76);
  line-height: 1.5;
}

.faq-section {
  max-width: 820px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 800;
}

details p {
  margin-bottom: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 36px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--ash);
  font-size: 13px;
  background: var(--black);
}

.site-footer .brand-mark {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  justify-self: end;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-cta {
    grid-column: 2;
  }

  .nav-links {
    display: none;
  }

  .intro-band,
  .drop-grid,
  .mood-grid,
  .fit-grid,
  .color-grid,
  .future-line,
  .seo-copy,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .fit-grid-four,
  .color-grid-photo {
    grid-template-columns: 1fr 1fr;
  }

  .price-stack-three {
    grid-template-columns: 1fr;
  }

  .price-stack-three div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .price-stack-three div:last-child {
    border-bottom: none;
  }

  .price-stack-three .price-value {
    justify-items: end;
    text-align: right;
  }

  .intro-line,
  .future-line span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .editorial-photo,
  .product-photo-primary,
  .photo-female,
  .photo-couple,
  .photo-detail {
    min-height: 430px;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .product-photo-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

  .product-photo-texture,
  .product-photo-tones {
    min-height: 300px;
  }

  .mood-copy {
    padding: 0 0 12px;
  }

  .site-footer,
  .site-footer a:last-child {
    justify-items: start;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-height: 60px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(245, 245, 245, 0.08);
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: none;
  }

  .brand-mark img {
    width: 112px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-photo {
    background-position: 64% center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 108px 20px 48px;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-note {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

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

  .section {
    padding: 68px 18px;
  }

  .editorial-photo,
  .product-photo-primary,
  .photo-female,
  .photo-couple,
  .photo-detail {
    min-height: 350px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-photo-primary,
  .product-photo-texture,
  .product-photo-tones {
    grid-column: auto;
    min-height: 300px;
  }

  .product-photo-primary {
    min-height: 380px;
  }

  .fit-item,
  .steps div,
  .color-card {
    padding: 22px;
  }

  .price-stack div {
    display: grid;
    gap: 6px;
  }

  .price-value {
    justify-items: start;
    text-align: left;
  }

  .future-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(12, 12, 12, 0.22);
  }
}
