/* ================================================================
   ZANATE BOTAS — Stylesheet
   Archetype: Editorial Light Cream (adapted)
   Palette: #f2f0eb cream + #64826e sage green
   v20260523
   ================================================================ */

/* 0. Custom Properties */
:root {
  --bg:         #f2f0eb;
  --bg-2:       #eae7df;
  --bg-3:       #dbd6cc;
  --bg-dark:    #1c1a17;
  --ink:        #1c1a17;
  --ink-soft:   #2e2b26;
  --ink-mute:   #6b6460;
  --ink-faint:  #9e9990;
  --accent:     #64826e;
  --accent-2:   #4d6556;
  --warm:       #8a6940;
  --gold:       #b8944e;
  --line:       rgba(28,26,23,0.11);
  --line-solid: #d4cfc7;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:     72px;
  --max-w:     1200px;
  --sec-pad:   clamp(4.5rem, 9vw, 9rem);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 2. Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  mix-blend-mode: multiply;
}

/* 3. Typography */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* 4. Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 3.5rem);
}
.section { padding-block: var(--sec-pad); }

/* 5. Navigation */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .45s var(--ease-out), box-shadow .45s;
}
.site-nav.is-scrolled {
  background: rgba(242,240,235,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-solid);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 4.5vw, 3.5rem);
  max-width: 1400px;
  margin-inline: auto;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.2rem;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-cta.btn-nav {
  background: var(--ink) !important;
  color: var(--bg) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  transition: background .25s !important;
}
.nav-cta.btn-nav::after { display: none !important; }
.nav-cta.btn-nav:hover { background: var(--accent) !important; color: #fff !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--accent); }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s, transform .2s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1.5px solid var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-solid);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-sage {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.btn-sage:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-light {
  background: transparent;
  color: #f2f0eb;
  border: 1.5px solid rgba(242,240,235,0.35);
}
.btn-light:hover { background: rgba(242,240,235,0.12); border-color: rgba(242,240,235,0.8); }

/* 7. Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg-letter {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-48%);
  font-family: var(--font-display);
  font-size: 52vw;
  font-weight: 700;
  color: rgba(100,130,110,0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 3.5rem);
  display: grid;
  grid-template-columns: 56fr 44fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100svh - var(--nav-h));
  padding-block: clamp(3rem, 5vw, 4rem);
}
.hero-text { animation: heroFadeUp .9s var(--ease-out) both; }
.hero-eyebrow {
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 1.75rem; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  color: var(--ink-mute);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeUp .9s .15s var(--ease-out) both;
}
.hero-glow {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(100,130,110,0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  animation: floatBoot 7s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(28,26,23,0.14));
}
@keyframes floatBoot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  animation: heroFadeUp .9s .4s var(--ease-out) both;
}
.hero-scroll-line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--line-solid), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* 8. Page Header (inner pages) */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 6rem));
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line-solid);
}
.page-header-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 3.5rem);
}
.page-header .eyebrow { margin-bottom: 1.5rem; }
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.page-header h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
.page-header-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mute);
  max-width: 55ch;
  margin-top: 1.25rem;
}

/* 9. Marquee */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line-solid);
  border-bottom: 1px solid var(--line-solid);
  padding-block: 0.85rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-inner { display: inline-flex; align-items: center; }
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-style: italic;
  color: var(--ink-mute);
  padding-inline: 2.5rem;
  white-space: nowrap;
}
.marquee-sep { color: var(--accent); font-style: normal; font-size: 0.65rem; padding-inline: 0.25rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 10. Collections Grid (Home) */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line-solid);
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.collection-card-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 3rem 2.5rem 5rem;
  transition: transform .8s var(--ease-out);
}
.collection-card:hover .collection-card-img { transform: scale(1.05); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,26,23,0.82) 0%, rgba(28,26,23,0.1) 60%, transparent 100%);
}
.collection-card-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 2.5rem 2.5rem;
  color: #f2f0eb;
}
.collection-card-body .eyebrow {
  color: rgba(242,240,235,0.6);
  margin-bottom: 0.6rem;
}
.collection-card-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.collection-card-body h2 em { font-style: italic; }
.collection-card-body .btn {
  font-size: 0.72rem;
  padding: 0.65rem 1.4rem;
}

/* 11. Heritage Band */
.heritage-band {
  background: var(--bg-dark);
  color: #f2f0eb;
  padding-block: clamp(3.5rem, 6vw, 6rem);
}
.heritage-band-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.heritage-stat { text-align: center; }
.heritage-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.heritage-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,240,235,0.4);
}
.heritage-band-sep {
  width: 1px; height: 3.5rem;
  background: rgba(242,240,235,0.12);
}

/* 12. Story Section (Home) */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.story-visual {
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
  position: relative;
  overflow: hidden;
  min-height: 55vh;
}
.story-visual-num {
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  user-select: none;
  position: absolute;
}
.story-visual-year {
  position: absolute;
  bottom: 2rem; left: 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.story-visual-tagline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  text-align: center;
  max-width: 22ch;
  line-height: 1.35;
}
.story-content {
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.story-content .eyebrow { margin-bottom: 1.5rem; }
.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.story-content h2 em { font-style: italic; color: var(--accent); }
.story-content p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.story-content p:last-of-type { margin-bottom: 2rem; }

/* 13. Location */
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.location-info {
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.location-info .eyebrow { margin-bottom: 1.5rem; }
.location-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  font-size: 0.93rem;
  color: var(--ink-mute);
  line-height: 1.6;
}
.location-detail-icon {
  color: var(--accent);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.location-map {
  position: relative;
  min-height: 440px;
}
.location-map iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border: none;
  filter: saturate(0.75) contrast(1.04);
}

/* 14. Boot Cards */

/* Large horizontal (Hombre) */
.boot-card-h {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-solid);
  overflow: hidden;
  transition: box-shadow .4s var(--ease-out), border-color .4s;
  background: var(--bg-2);
}
.boot-card-h:hover {
  box-shadow: 0 24px 72px rgba(28,26,23,0.09);
  border-color: var(--accent);
}
.boot-card-h.reverse { direction: rtl; }
.boot-card-h.reverse > * { direction: ltr; }

.boot-img-wrap {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  min-height: 460px;
}
.boot-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: transform .7s var(--ease-out);
  filter: drop-shadow(0 24px 40px rgba(28,26,23,0.12));
}
.boot-card-h:hover .boot-img { transform: scale(1.04) translateY(-8px); }

.boot-body {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.boot-body .eyebrow { margin-bottom: 0.85rem; }
.boot-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.boot-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}
.boot-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.boot-spec {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(100,130,110,0.09);
  border: 1px solid rgba(100,130,110,0.2);
  padding: 0.3rem 0.7rem;
}

/* Portrait grid (Mujer) */
.boots-grid-portrait {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line-solid);
}
.boot-card-p {
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .4s var(--ease-out);
}
.boot-card-p:hover { box-shadow: 0 16px 48px rgba(28,26,23,0.1); }
.boot-card-p .boot-img-wrap {
  aspect-ratio: 3/4;
  min-height: unset;
  padding: 2.5rem 2rem;
  flex-shrink: 0;
}
.boot-card-p .boot-img { max-height: unset; }
.boot-card-p .boot-body {
  padding: 2rem 2.5rem 2.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line-solid);
}
.boot-card-p .boot-name { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* 15. Nosotros */
.nosotros-intro {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.nosotros-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.nosotros-intro-text h2 em { font-style: italic; color: var(--accent); }
.nosotros-intro-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.nosotros-intro-aside {
  position: relative;
  background: var(--accent);
  padding: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.nosotros-intro-aside-year {
  position: absolute;
  top: -1rem; right: -1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  user-select: none;
}
.nosotros-intro-aside p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-solid);
}
.value-card {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.value-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-mute);
}

/* 16. Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-block {
  background: var(--bg-2);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line-solid);
  transition: border-color .3s, transform .3s var(--ease-out);
}
.contact-block:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-block-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contact-block p, .contact-block a {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-mute);
  transition: color .2s;
}
.contact-block a:hover { color: var(--accent); }

.social-links { display: flex; flex-direction: column; gap: 0.75rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.5rem;
  border: 1px solid var(--line-solid);
  background: var(--bg-2);
  transition: border-color .3s, background .3s, transform .25s var(--ease-out);
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--accent);
  background: rgba(100,130,110,0.07);
  transform: translateX(5px);
}
.social-link-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  flex-shrink: 0;
  transition: background .25s;
}
.social-link:hover .social-link-icon { background: var(--accent); }
.social-link svg { width: 18px; height: 18px; }
.social-link-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.social-link-text span {
  font-size: 0.78rem;
  color: var(--ink-mute);
}

/* 17. Custom Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: absolute;
  width: 32px; height: 32px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), border-color .25s, background .25s;
}
.cursor.is-hovering .cursor-ring {
  width: 52px; height: 52px;
  background: rgba(100,130,110,0.14);
  border-color: var(--accent);
}
.cursor.is-hovering .cursor-dot { background: var(--accent); }

/* 18. Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.22s; }
.reveal[data-delay="3"] { transition-delay: 0.34s; }
.reveal[data-delay="4"] { transition-delay: 0.46s; }

/* 19. Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(242,240,235,0.8);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 3.5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(242,240,235,0.08);
  margin-bottom: 1.75rem;
}
.footer-logo {
  height: 34px; width: auto;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.footer-brand > p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(242,240,235,0.4);
  max-width: 28ch;
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(242,240,235,0.28);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(242,240,235,0.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: rgba(242,240,235,0.9); }
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(242,240,235,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,240,235,0.5);
  transition: border-color .25s, color .25s;
}
.footer-social-link svg { width: 15px; height: 15px; fill: currentColor; }
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: rgba(242,240,235,0.25);
}
.footer-bottom a { color: inherit; transition: color .2s; }
.footer-bottom a:hover { color: rgba(242,240,235,0.6); }

/* 20. Utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.text-accent { color: var(--accent); }
.text-gold   { color: var(--gold); }

/* 21. Responsive */
@media (max-width: 1023px) {
  .heritage-band-inner { grid-template-columns: 1fr 1fr; }
  .heritage-band-sep { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nosotros-intro { grid-template-columns: 1fr; }
  .nosotros-intro-aside { display: none; }
}
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 2rem 3rem;
  }
  .hero-visual { order: -1; max-height: 44vh; }
  .hero-img { max-height: 40vh; }
  .hero-scroll-cue { display: none; }
  .hero-bg-letter { font-size: 80vw; right: -8%; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card { aspect-ratio: 3/2; }
  .boot-card-h, .boot-card-h.reverse { grid-template-columns: 1fr; direction: ltr; }
  .boot-img-wrap { min-height: 260px; padding: 2rem; }
  .boots-grid-portrait { grid-template-columns: 1fr; gap: 0; }
  .story-section { grid-template-columns: 1fr; }
  .story-visual { min-height: auto; aspect-ratio: 3/1.5; }
  .story-visual-num { font-size: 35vw; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .heritage-band-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 479px) {
  .heritage-band-inner { grid-template-columns: 1fr; text-align: center; }
  .boots-grid-portrait { grid-template-columns: 1fr; }
}
