:root {
  --hueso: #f7f3ee;
  --arena: #d7c1a7;
  --cafe: #533c2c;
  --grafito: #2b2623;
  --arcilla: #a56150;
  --sage: #9dae8d;
  --azul: #6c7c8f;
  --white: #ffffff;
  --line: rgba(83, 60, 44, 0.12);
  --line-strong: rgba(83, 60, 44, 0.2);
  --shadow-soft: 0 18px 50px rgba(56, 39, 29, 0.08);
  --shadow-card: 0 14px 30px rgba(63, 45, 34, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 32px));
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--grafito);
  background:
    radial-gradient(circle at top right, rgba(166, 97, 80, 0.1), transparent 24%),
    radial-gradient(circle at top left, rgba(157, 174, 141, 0.12), transparent 26%),
    var(--hueso);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--cafe);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

.utility-bar {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(20px);
  background: rgba(247, 243, 238, 0.9);
  border-bottom: 1px solid var(--line);
}
.utility-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: rgba(43, 38, 35, 0.84);
  overflow-x: auto;
  scrollbar-width: none;
}
.utility-inner::-webkit-scrollbar { display: none; }
.utility-inner a {
  position: relative;
  white-space: nowrap;
}
.utility-inner a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--arcilla);
  transition: transform 180ms ease;
}
.utility-inner a:hover::after,
.utility-inner a:focus-visible::after { transform: scaleX(1); }

.site-header {
  position: sticky;
  top: 44px;
  z-index: 60;
  background: rgba(247, 243, 238, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 28px rgba(30, 18, 12, 0.05);
  background: rgba(247, 243, 238, 0.92);
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  width: min(240px, 44vw);
}
.brand img { width: 100%; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  color: rgba(43, 38, 35, 0.78);
}
.site-nav a {
  position: relative;
  padding: 8px 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cafe);
  transition: transform 180ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.header-cta,
.button-primary {
  background: var(--cafe);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(83, 60, 44, 0.18);
}
.header-cta:hover,
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(83, 60, 44, 0.24);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--cafe);
  border: 1px solid var(--line-strong);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}
.button.small { padding: 11px 16px; font-size: 13px; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.74);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--cafe);
}

main {
  padding-top: 18px;
}
section {
  padding: 28px 0 20px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: 48px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 44px;
}
.hero-copy,
.hero-visual,
.lookbook-card,
.why-grid article,
.catalog-aside,
.product-card,
.compare,
.swatch-card,
.help-cta,
.faq-list details,
.site-footer {
  position: relative;
}
.hero-copy {
  padding-right: 10px;
}
.segment-chip,
.mini-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--arcilla);
}
.segment-chip.small { min-height: 30px; padding-inline: 12px; }
.eyebrow {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(83, 60, 44, 0.68);
}
.hero h1,
.section-head h2,
.help-cta h3 {
  margin: 12px 0 0;
  line-height: 1.02;
  color: var(--cafe);
}
.hero h1 {
  font-size: clamp(42px, 5vw, 76px);
  max-width: 10ch;
}
.hero-text {
  max-width: 54ch;
  margin: 18px 0 0;
  font-size: 17px;
  color: rgba(43, 38, 35, 0.78);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(83, 60, 44, 0.12);
  font-size: 13px;
  color: rgba(43, 38, 35, 0.74);
}
.hero-visual {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.74;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(83, 60, 44, 0.08);
  box-shadow: 0 28px 60px rgba(36, 27, 20, 0.12);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}
.hero-orb-a {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(165,97,80,0.24) 0%, rgba(165,97,80,0) 70%);
  left: -20px; top: 80px;
}
.hero-orb-b {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(157,174,141,0.28) 0%, rgba(157,174,141,0) 68%);
  right: 0; bottom: 70px;
}
.hero-floating {
  position: absolute;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(83,60,44,0.12);
  box-shadow: var(--shadow-soft);
}
.hero-floating span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(83,60,44,0.62);
}
.hero-floating strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: var(--cafe);
}
.hero-floating-a { left: -8px; top: 120px; animation: drift 8s ease-in-out infinite; }
.hero-floating-b { right: -14px; bottom: 118px; animation: drift 9s ease-in-out infinite reverse; }

@keyframes drift {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section-head { display: flex; flex-direction: column; gap: 6px; }
.section-head.compact h2 { font-size: clamp(30px, 4vw, 48px); max-width: 14ch; }
.section-head h2 { font-size: clamp(34px, 4vw, 52px); }
.need-grid,
.hero-product-grid,
.why-grid,
.swatch-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}
.need-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}
.need-card {
  min-height: 160px;
  border-radius: 24px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    linear-gradient(120deg, rgba(165,97,80,0.12), rgba(157,174,141,0.12));
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.need-card span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(83,60,44,0.64);
}
.need-card strong {
  font-size: 24px;
  line-height: 1.08;
  color: var(--cafe);
  max-width: 11ch;
}
.need-card:hover,
.need-card:focus-visible { transform: translateY(-4px); border-color: rgba(165,97,80,0.26); box-shadow: 0 18px 36px rgba(50, 34, 26, 0.1); }

.hero-products { padding-top: 34px; }
.hero-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
}
.hero-product {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.hero-product:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(46,31,24,0.11); }
.hero-product .media {
  aspect-ratio: 0.75;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease;
}
.hero-product:hover img { transform: scale(1.05); }
.hero-product .copy {
  padding: 18px 18px 20px;
}
.hero-product .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(83,60,44,0.58);
}
.hero-product h3 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.06;
  color: var(--cafe);
}
.hero-product p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(43,38,35,0.72);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.lookbook-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
}
.lookbook-media {
  min-height: 360px;
}
.lookbook-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lookbook-copy {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.lookbook-copy h3 { margin: 0; font-size: 32px; line-height: 1.02; color: var(--cafe); }
.lookbook-copy p { margin: 0; color: rgba(43,38,35,0.72); }
.lookbook-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 6px;
  color: var(--arcilla);
  font-weight: 600;
}
.lookbook-copy a::after { content: '↗'; font-size: 15px; }

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}
.why-grid article {
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
}
.why-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(165,97,80,0.12);
  color: var(--arcilla);
  font-weight: 700;
}
.why-grid h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.06;
  color: var(--cafe);
}
.why-grid p { margin: 10px 0 0; color: rgba(43,38,35,0.7); }

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.search-wrap {
  min-width: min(100%, 320px);
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(83,60,44,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.search-wrap svg {
  width: 20px;
  height: 20px;
  fill: rgba(83,60,44,0.56);
}
.search-wrap input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  color: var(--grafito);
}
.catalog-layout {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.catalog-aside {
  align-self: start;
  position: sticky;
  top: 148px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
}
.aside-title {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(83,60,44,0.58);
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.filter-chip {
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(83,60,44,0.12);
  background: rgba(255,255,255,0.84);
  font-size: 13px;
  color: rgba(43,38,35,0.75);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.filter-chip:hover,
.filter-chip:focus-visible { transform: translateY(-1px); border-color: rgba(165,97,80,0.3); }
.filter-chip.is-active {
  background: var(--cafe);
  border-color: var(--cafe);
  color: var(--white);
}
.catalog-summary {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(83,60,44,0.1);
}
.catalog-summary strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  color: var(--cafe);
}
.catalog-summary span { color: rgba(43,38,35,0.66); font-size: 14px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(41, 28, 21, 0.12);
  border-color: rgba(165,97,80,0.24);
}
.product-media {
  position: relative;
  aspect-ratio: 0.75;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247,243,238,0.8), rgba(215,193,167,0.35));
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--position, 50% 50%);
  transition: transform 280ms ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }
.product-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.product-family {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cafe);
  border: 1px solid rgba(83,60,44,0.1);
}
.product-compare {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(83,60,44,0.1);
  color: rgba(43,38,35,0.78);
  font-size: 12px;
  font-weight: 600;
}
.product-compare.is-active {
  background: var(--cafe);
  border-color: var(--cafe);
  color: var(--white);
}
.product-copy { padding: 18px 18px 20px; }
.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.product-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.02;
  color: var(--cafe);
}
.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--arcilla);
  white-space: nowrap;
}
.product-card p {
  margin: 10px 0 0;
  color: rgba(43,38,35,0.72);
  font-size: 14px;
  min-height: 42px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.product-tags span,
.modal-tags span,
.modal-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(165,97,80,0.08);
  color: var(--cafe);
  font-size: 12px;
  font-weight: 600;
}
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.product-link {
  color: var(--cafe);
  font-weight: 600;
  font-size: 14px;
}
.product-link::after { content: ' ↗'; }
.product-empty {
  padding: 44px 28px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255,255,255,0.72);
  border: 1px dashed rgba(83,60,44,0.18);
  color: rgba(43,38,35,0.66);
}

.compare {
  border-radius: 32px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
}
.compare-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}
.compare-toolbar p { margin: 0; color: rgba(43,38,35,0.68); }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.compare-product {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(83,60,44,0.1);
}
.compare-product .media { aspect-ratio: 0.78; }
.compare-product img { width: 100%; height: 100%; object-fit: cover; object-position: var(--position, 50% 50%); }
.compare-product .copy { padding: 16px 16px 18px; }
.compare-product h3 { margin: 0; font-size: 30px; line-height: 1; color: var(--cafe); }
.compare-product p { margin: 10px 0 0; color: rgba(43,38,35,0.72); font-size: 14px; }
.compare-product .price { margin-top: 10px; color: var(--arcilla); font-size: 17px; font-weight: 700; }
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border-radius: 20px;
  border: 1px solid rgba(83,60,44,0.1);
  background: rgba(255,255,255,0.82);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(83,60,44,0.08);
  font-size: 14px;
  vertical-align: middle;
}
.compare-table th {
  background: rgba(83,60,44,0.06);
  color: var(--cafe);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-table td:first-child { font-weight: 600; color: var(--cafe); width: 22%; }
.compare-note { margin: 12px 0 0; color: rgba(43,38,35,0.64); font-size: 13px; }

.swatch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}
.swatch-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
}
.swatch {
  display: block;
  width: 100%;
  height: 136px;
  border-radius: 18px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.34);
}
.swatch-card strong { display: block; margin-top: 16px; font-size: 20px; color: var(--cafe); }
.swatch-card p { margin: 8px 0 0; color: rgba(43,38,35,0.68); }
.swatches-cta {
  margin-top: 22px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(165,97,80,0.12), rgba(157,174,141,0.14));
  border: 1px solid rgba(83,60,44,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.swatches-cta p { margin: 0; color: rgba(43,38,35,0.7); max-width: 48ch; }

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.faq-list details {
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(83,60,44,0.1);
  box-shadow: var(--shadow-card);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 600;
  color: var(--cafe);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-list summary::after { content: '+'; font-size: 24px; line-height: 1; color: var(--arcilla); }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgba(43,38,35,0.72);
}
.help-cta {
  margin-top: 22px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(255,255,255,0.84), rgba(215,193,167,0.3));
  border: 1px solid rgba(83,60,44,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: var(--shadow-card);
}
.help-cta h3 { font-size: clamp(28px, 3vw, 40px); max-width: 12ch; }
.help-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer {
  margin-top: 34px;
  padding: 34px 0 40px;
  border-top: 1px solid rgba(83,60,44,0.1);
}
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
}
.footer-brand img { width: min(230px, 100%); }
.footer-brand p { max-width: 34ch; color: rgba(43,38,35,0.66); }
.site-footer h4 { margin: 0 0 12px; color: var(--cafe); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: rgba(43,38,35,0.72); }
.site-footer li a:hover { color: var(--cafe); }

.compare-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  min-width: 280px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(83,60,44,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(32, 22, 16, 0.14);
  display: none;
}
.compare-drawer.is-visible { display: block; }
.compare-drawer .title { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(83,60,44,0.58); }
.compare-drawer .items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.compare-drawer .items span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(165,97,80,0.08);
  color: var(--cafe);
  font-size: 13px;
  font-weight: 600;
}
.compare-drawer .actions { display: flex; gap: 10px; margin-top: 14px; }
.compare-drawer .actions button,
.compare-drawer .actions a {
  flex: 1;
  justify-content: center;
}
.compare-drawer .actions button {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(83,60,44,0.12);
  background: rgba(255,255,255,0.84);
  color: var(--cafe);
  font-weight: 600;
}
.compare-drawer .actions a {
  min-height: 42px;
  font-size: 13px;
  padding: 10px 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.modal.is-open { display: block; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 25, 20, 0.5);
  backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  margin: 12px auto;
  background: var(--hueso);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(32, 22, 16, 0.24);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}
.modal-close {
  position: sticky;
  top: 14px;
  right: 14px;
  margin-left: auto;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(83,60,44,0.12);
  background: rgba(255,255,255,0.9);
  display: grid;
  place-items: center;
  z-index: 2;
  margin: 14px 14px -64px auto;
}
.modal-close svg { width: 22px; height: 22px; fill: var(--cafe); }
.modal-media-wrap {
  min-height: 100%;
  background: rgba(255,255,255,0.62);
  border-right: 1px solid rgba(83,60,44,0.1);
}
.modal-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--modal-position, 50% 50%);
}
.modal-copy {
  padding: 76px 30px 30px;
}
.modal-family {
  margin: 18px 0 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(83,60,44,0.58);
}
.modal-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.98;
  color: var(--cafe);
}
.modal-price {
  margin: 12px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--arcilla);
}
.modal-blurb {
  margin: 18px 0 0;
  color: rgba(43,38,35,0.72);
  font-size: 16px;
  max-width: 42ch;
}
.modal-tags,
.modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
body.modal-open { overflow: hidden; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 0; min-height: auto; }
  .hero-frame { width: min(100%, 560px); }
  .need-grid, .hero-product-grid, .why-grid, .swatch-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lookbook-grid, .catalog-layout { grid-template-columns: 1fr; }
  .catalog-aside { position: static; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lookbook-card { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr 1fr 1fr; }
  .modal-panel { grid-template-columns: 1fr; }
  .modal-media-wrap { min-height: 420px; border-right: none; border-bottom: 1px solid rgba(83,60,44,0.1); }
}

@media (max-width: 760px) {
  .site-header { top: 44px; }
  .header-inner { grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(83,60,44,0.12);
    box-shadow: 0 18px 42px rgba(36, 24, 18, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero { padding-top: 24px; }
  .hero h1 { max-width: 11ch; }
  .hero-frame { width: 100%; }
  .hero-floating { display: none; }
  .need-grid,
  .hero-product-grid,
  .why-grid,
  .swatch-grid,
  .product-grid,
  .footer-grid,
  .compare-grid { grid-template-columns: 1fr; }
  .compare-toolbar,
  .swatches-cta,
  .help-cta,
  .catalog-head { flex-direction: column; align-items: flex-start; }
  .search-wrap { width: 100%; }
  .product-card h3 { font-size: 24px; }
  .help-cta h3 { max-width: none; }
  .compare-drawer { left: 16px; right: 16px; min-width: 0; }
  .modal-panel { width: calc(100vw - 16px); max-height: calc(100vh - 16px); margin: 8px auto; border-radius: 24px; }
  .modal-copy { padding: 72px 18px 22px; }
  .modal-actions { flex-direction: column; }
}

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