:root {
  --navy: #18293d;
  --navy-deep: #101d2c;
  --beige: #f4efe8;
  --beige-soft: #f7f3ed;
  --white: #fffdf9;
  --black: #141414;
  --muted: #4d5c6b;
  --muted-soft: rgba(24, 41, 61, 0.68);
  --line: rgba(24, 41, 61, 0.12);
  --shadow: 0 22px 60px rgba(16, 29, 44, 0.12);
  --radius: 28px;
  --container: min(1360px, calc(100% - 48px));
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--navy);
  background: #ffffff;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 12px;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 41, 61, 0.08);
}

.nav-wrap {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.site-nav ul,
.footer-nav ul,
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-left,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-actions {
  justify-content: flex-end;
}

.menu-left a,
.shop-link,
.footer-nav h3,
.footer-social h3,
.footer-bottom,
.social-links a,
.button,
.newsletter input,
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-left a,
.shop-link {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(24, 41, 61, 0.78);
}

.menu-left a:hover,
.shop-link:hover,
.footer-nav a:hover,
.footer-bottom a:hover,
.social-links a:hover {
  color: var(--navy);
}

.brand-mark {
  text-align: center;
}

.brand-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-tagline {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(24, 41, 61, 0.45);
  margin-top: 5px;
  font-weight: 500;
}


.bag-link {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bag-link svg {
  width: 22px;
  height: 22px;
}

.bag-count {
  position: absolute;
  top: 5px;
  right: 2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  overflow: clip;
  background: #ffffff;
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 88px 96px;
}

.hero-content h1,
.feature-copy h2,
.split-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--navy);
}

.hero-content h1 {
  font-size: clamp(7rem, 28vw, 20rem);
  line-height: 0.86;
  color: var(--navy);
}

.hero-subtag {
  margin: 18px 0 18px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(24, 41, 61, 0.72);
}

.hero-quote,
.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.hero-quote {
  max-width: 700px;
  margin: 0 auto 42px;
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  line-height: 1.3;
  color: rgba(24, 41, 61, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  border: 1px solid transparent;
}

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

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #223952;
}

.button-outline,
.button-outline-dark {
  border-color: rgba(30, 42, 54, 0.2);
  background: transparent;
}

.button-outline:hover,
.button-outline-dark:hover,
.button-outline:focus-visible,
.button-outline-dark:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.brand-mark,
.brand-logo,
.site-header a,
.site-header button,
.feature-copy h2,
.split-card h2 {
  color: var(--navy);
}

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

.feature-copy,
.split-card,
.site-footer,
.site-header {
  border-color: var(--line);
}

.feature,
.split-section {
  border-top: 1px solid rgba(24, 41, 61, 0.06);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: stretch;
}

.feature-reverse .feature-copy {
  order: 1;
}

.feature-reverse .feature-media {
  order: 2;
}

.feature-copy,
.feature-media,
.split-card {
  min-height: 100%;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px clamp(28px, 6vw, 88px);
}

.feature-media {
  position: relative;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 41, 61, 0.08);
}

.feature-media-local {
  background: linear-gradient(180deg, #ececec 0%, #f6f5f3 100%);
}

.feature-media-local img {
  object-fit: cover;
}

/* Per-section heights — intentional rhythm */
#tenis  { min-height: 560px; }
#urban  { min-height: 480px; }
#running { min-height: 620px; }
#accesorios { min-height: 480px; }

#urban .feature-media img {
  object-position: center 20%;
}

#running .feature-media img {
  object-position: center 30%;
}

.tone-beige {
  background: #ffffff;
}

.tone-white {
  background: #ffffff;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.7rem;
  color: rgba(24, 41, 61, 0.52);
  font-weight: 600;
}

.feature-copy h2,
.split-card h2 {
  font-size: clamp(4rem, 7.6vw, 6.9rem);
  line-height: 0.9;
  margin-bottom: 22px;
}

.quote {
  color: rgba(30, 42, 54, 0.7);
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  line-height: 1.15;
  margin: 0 0 26px;
}

.description,
.split-card p:not(.quote):not(.eyebrow),
.footer-brand p:last-child {
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.82;
  color: var(--muted);
}

.description {
  max-width: 580px;
  margin: 0 0 36px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-card {
  padding: clamp(44px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-light {
  background: #ffffff;
}

.split-dark {
  background: var(--navy);
  color: var(--white);
}

.split-dark h2,
.split-dark .quote {
  color: var(--white);
}

.split-dark .eyebrow,
.split-dark .description,
.split-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 480px;
  width: 100%;
}

.newsletter input {
  flex: 1;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: none;
  font-size: 0.72rem;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.newsletter svg {
  width: 20px;
  height: 20px;
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 14px 0;
}

.trust-wrap {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.trust-item svg {
  flex-shrink: 0;
  opacity: 0.75;
}

/* Instagram feed */
.instagram-section {
  padding: 80px 0 0;
  border-top: 1px solid rgba(24, 41, 61, 0.06);
}

.instagram-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.instagram-handle {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}

.instagram-handle:hover {
  opacity: 0.75;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.instagram-post {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.instagram-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 29, 44, 0);
  transition: background 0.3s ease;
}

.instagram-post:hover img {
  transform: scale(1.04);
}

.instagram-post:hover::after {
  background: rgba(16, 29, 44, 0.18);
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-header {
    flex-direction: column;
    gap: 8px;
  }
}

.site-footer {
  background: var(--navy-deep);
  padding: 80px 0 36px;
  border-top: none;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .container {
  width: min(1480px, calc(100% - 48px));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .brand-logo {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  letter-spacing: -0.04em;
  margin: -0.12em 0 16px;
  line-height: 1;
}

.footer-nav h3,
.footer-social h3 {
  margin: 0 0 18px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
}

.footer-nav ul {
  display: grid;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.social-links a svg {
  flex-shrink: 0;
  color: var(--white);
}

.social-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 1024px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(247, 243, 237, 0.98);
    border-bottom: 1px solid rgba(30, 42, 54, 0.08);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .menu-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 18px;
  }

  .menu-left li {
    width: 100%;
    border-top: 1px solid rgba(30, 42, 54, 0.07);
  }

  .menu-left a {
    display: block;
    padding: 16px 0;
  }

  .shop-link {
    display: none;
  }

  .feature,
  .split-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
  }

  .feature-media {
    min-height: 420px;
  }

  .feature-reverse .feature-copy,
  .feature-reverse .feature-media {
    order: initial;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1000px);
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand-tagline {
    display: none;
  }

  
  .hero-content {
    padding-block: 88px 72px;
  }

  .hero-subtag {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
  }

  .hero-content h1 {
    font-size: clamp(5rem, 26vw, 8rem);
  }

  .hero-quote {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .feature-copy h2,
  .split-card h2 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
    line-height: 0.92;
  }

  .quote {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  .description,
  .split-card p:not(.quote):not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .feature-media {
    min-height: 320px;
  }

  .feature-copy,
  .split-card {
    padding-inline: 22px;
    padding-block: 44px;
  }

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

  .footer-bottom,
  .footer-bottom div,
  .nav-actions {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
