/* ============================================
   FASHION AGENCY — MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0D0D0D;
  --white:       #FFFFFF;
  --cream:       #F7F4EF;
  --cream-dark:  #EDE9E2;
  --taupe:       #C4B09A;
  --taupe-dark:  #9A8470;
  --text:        #2A2A2A;
  --text-mid:    #5C5C5C;
  --text-light:  #9A9A9A;
  --border:      #E2DDD6;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Outfit', system-ui, sans-serif;

  --nav-h:       76px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --max-w:       1320px;
  --gutter:      clamp(1.25rem, 4vw, 3rem);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-pad { padding-block: var(--section-pad); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
  background: transparent;
}

.btn-dark {
  color: var(--black);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--black); color: var(--white); }

.btn-light {
  color: var(--white);
  border-color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--black); }

.btn-taupe {
  color: var(--taupe-dark);
  border-color: var(--taupe);
}
.btn-taupe:hover { background: var(--taupe-dark); color: var(--white); border-color: var(--taupe-dark); }

.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* ── Divider ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--taupe);
  margin-block: 1.5rem;
}

/* ── Fade-in animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav__logo {
  display: block;
  position: relative;
  height: 46px;
  width: 180px;
  flex-shrink: 0;
}

.nav__logo-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.4s var(--ease-out);
}

.nav__logo-img--black { opacity: 0; }
.nav__logo-img--white { opacity: 1; }

.nav.scrolled .nav__logo-img--black { opacity: 1; }
.nav.scrolled .nav__logo-img--white { opacity: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -3px 0;
  height: 1px;
  background: var(--taupe-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--black); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

/* ── Transparent nav (sobre fondo oscuro) ── */
.nav:not(.scrolled) .nav__links a {
  color: rgba(255, 255, 255, 0.85);
}
.nav:not(.scrolled) .nav__links a:hover,
.nav:not(.scrolled) .nav__links a.active {
  color: var(--white);
}
.nav:not(.scrolled) .nav__links a::after {
  background: rgba(255, 255, 255, 0.6);
}

.nav__cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--taupe-dark); }

.nav:not(.scrolled) .nav__cta {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.nav:not(.scrolled) .nav__cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
}

.nav:not(.scrolled) .nav__hamburger span {
  background: var(--white);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.nav__mobile.open { opacity: 1; pointer-events: all; }

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--taupe-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #1a1410 0%, #2d2520 40%, #1a1208 100%);
  overflow: hidden;
}

/* Elegant geometric pattern for hero */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(196, 176, 154, 0.04) 80px,
      rgba(196, 176, 154, 0.04) 81px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(196, 176, 154, 0.04) 80px,
      rgba(196, 176, 154, 0.04) 81px
    );
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 65% 40%, rgba(196,176,154,0.12) 0%, transparent 70%);
}

.hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(20%);
}

/* Gradient overlay on visual */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 40%),
              linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  max-width: 680px;
}

.hero__eyebrow {
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--taupe);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--taupe);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--black);
  color: var(--white);
  padding-block: 3.5rem;
  overflow: hidden;
}

.intro-strip__track {
  display: flex;
  gap: 5rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.intro-strip__track:hover { animation-play-state: paused; }

.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.intro-strip__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--taupe);
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION: MARCAS PREVIEW
   ============================================ */
.brands-preview {
  background: var(--cream);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.section-header__text {}

.section-header h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 0.5rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.brand-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
}

.brand-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.brand-card:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }

.brand-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), opacity 0.4s;
  opacity: 0.75;
  filter: grayscale(15%);
}

.brand-card:hover .brand-card__img {
  transform: scale(1.06);
  opacity: 0.55;
}

.brand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 55%);
}

.brand-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 2rem 1.75rem;
  /* sin translateY: el contenido siempre queda dentro del frame */
}

.brand-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.brand-card__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0;
  transition: opacity 0.35s 0.05s;
  margin-bottom: 0.85rem;
}

.brand-card:hover .brand-card__tagline { opacity: 1; }

.brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.35s 0.1s;
}
.brand-card__link span { border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 1px; }
.brand-card:hover .brand-card__link { opacity: 1; }

/* Image placeholders */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-style: italic;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.1em;
}

.img-ph-1  { background: linear-gradient(135deg, #1e1a15 0%, #2d261e 100%); }
.img-ph-2  { background: linear-gradient(135deg, #16191c 0%, #222730 100%); }
.img-ph-3  { background: linear-gradient(135deg, #1a1518 0%, #28202a 100%); }
.img-ph-4  { background: linear-gradient(135deg, #191716 0%, #26221f 100%); }
.img-ph-5  { background: linear-gradient(135deg, #141918 0%, #1e2822 100%); }
.img-ph-6  { background: linear-gradient(135deg, #19181a 0%, #272427 100%); }

/* ============================================
   SECTION: ABOUT
   ============================================ */
.about {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  opacity: 0.8;
}

.about__img-accent {
  position: absolute;
  bottom: -4rem;
  right: -3rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--black);
  opacity: 0.7;
}

.about__eyebrow { color: var(--taupe); }

.about__title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.about__text {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.about__stat-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}

/* ============================================
   SECTION: SERVICES
   ============================================ */
.services { background: var(--cream); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.service-item {
  background: var(--cream);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-item:hover::before { transform: scaleX(1); }
.service-item:hover { background: var(--cream-dark); }

.service-item__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.service-item:hover .service-item__num { color: var(--taupe); }

.service-item__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.service-item__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   SECTION: MARCAS (full page)
   ============================================ */
.brands-page { background: var(--cream); }

.brands-list {
  display: grid;
  gap: 1.5px;
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.brand-showcase + .brand-showcase {
  border-top: none;
}

.brand-showcase--reverse .brand-showcase__media {
  order: 2;
}

.brand-showcase--reverse .brand-showcase__body {
  order: 1;
}

.brand-showcase__media {
  position: relative;
  overflow: hidden;
}

.brand-showcase__image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.brand-showcase__body {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-showcase__eyebrow {
  margin-bottom: 0.75rem;
}

.brand-showcase__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.brand-showcase__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ============================================
   SECTION: INDIVIDUAL BRAND PAGE
   ============================================ */
.brand-hero {
  height: 70svh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.brand-hero__bg {
  position: absolute;
  inset: 0;
}

.brand-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.brand-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.2) 60%, transparent 100%);
}

.brand-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.brand-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  transition: color 0.2s;
  position: absolute;
  top: calc(var(--nav-h) + 2rem);
}
.brand-hero__back:hover { color: var(--white); }

.brand-hero__eyebrow { color: var(--taupe); margin-bottom: 1rem; }

.brand-hero__name {
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--white);
  font-weight: 300;
  line-height: 0.95;
}

.brand-detail {
  background: var(--cream);
}

.brand-detail__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding-block: var(--section-pad);
}

.brand-detail__sidebar {}

.brand-detail__meta {
  margin-top: 2rem;
}

.brand-detail__meta-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.brand-detail__meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.brand-detail__meta-value {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
}

.brand-detail__main {}

.brand-detail__intro {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 2rem;
}

.brand-detail__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.brand-detail__cta {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.brand-detail__cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.brand-detail__cta p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

/* Lookbook grid */
.lookbook {
  background: var(--black);
  padding-block: var(--section-pad);
}

.lookbook__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 3rem;
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.lookbook__item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}

.lookbook__item:first-child { grid-column: span 2; aspect-ratio: 16/10; }

.lookbook__item .img-placeholder { font-size: 3rem; }

.lookbook__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s var(--ease-out), opacity 0.4s;
  filter: grayscale(15%);
}
.lookbook__item:hover .lookbook__img { transform: scale(1.05); opacity: 0.9; }

/* ============================================
   SECTION: CONTACT
   ============================================ */
.contact { background: var(--cream-dark); }

.contact__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}

.contact__info-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.contact__info-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact__data {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__data-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__data-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__data-icon svg { width: 14px; height: 14px; stroke: var(--taupe-dark); }

.contact__data-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact__data-value {
  font-size: 0.92rem;
  color: var(--text);
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--taupe-dark);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M1 4l5 5 5-5' fill='none' stroke='%239a9a9a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  margin-top: 2rem;
  width: 100%;
  padding: 1.1rem;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover { background: var(--taupe-dark); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding-top: 5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.footer__brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 260px;
}

.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__newsletter-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.footer__newsletter-input:focus { outline: none; background: rgba(255,255,255,0.1); }

.footer__newsletter-btn {
  padding: 0.75rem 1.25rem;
  background: var(--taupe-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: background 0.25s;
  white-space: nowrap;
}
.footer__newsletter-btn:hover { background: var(--taupe); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding-top: var(--nav-h);
  padding-bottom: 4rem;
  background: var(--black);
  color: var(--white);
}

.page-hero__inner {
  padding-top: 4rem;
}

.page-hero__eyebrow { color: var(--taupe); margin-bottom: 1rem; }

.page-hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  font-weight: 300;
  line-height: 0.95;
}

.page-hero__subtitle {
  max-width: 540px;
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 1.5rem;
}

/* ============================================
   NOSOTROS PAGE
   ============================================ */
.nosotros-story {
  background: var(--cream);
}

.nosotros-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.nosotros-story__visual {
  position: relative;
}

.nosotros-story__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.nosotros-story__accent {
  position: absolute;
  bottom: -3rem;
  right: -2.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 8px solid var(--cream);
}

.nosotros-story__text-large {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.nosotros-story__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.valores {
  background: var(--cream-dark);
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.valor-item {
  background: var(--cream-dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s;
}

.valor-item:hover { background: var(--cream); }

.valor-item__icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.valor-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--taupe-dark);
}

.valor-item__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.valor-item__text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   SERVICIOS PAGE
   ============================================ */
.servicios-detail {
  background: var(--cream);
}

.servicios-detail__grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.servicio-detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.servicio-detail-item:last-child { border-bottom: none; }
.servicio-detail-item:hover { background: var(--cream-dark); }

.servicio-detail-item__num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  min-width: 80px;
  text-align: right;
  transition: color 0.3s;
}
.servicio-detail-item:hover .servicio-detail-item__num { color: var(--taupe); }

.servicio-detail-item__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.servicio-detail-item__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-card:first-child,
  .brand-card:nth-child(4) { grid-column: span 1; aspect-ratio: 3/4; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 3rem; }

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

@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__visual { width: 100%; opacity: 0.3; }
  .hero__content { max-width: 100%; }

  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-accent { display: none; }

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

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .nosotros-story__inner { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros-story__accent { display: none; }

  .brand-detail__inner { grid-template-columns: 1fr; gap: 3rem; }

  .lookbook__grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook__item:first-child { grid-column: span 2; }

  .brand-showcase { grid-template-columns: 1fr; }
  .brand-showcase__media { order: 1; }
  .brand-showcase__body { order: 2; }
  .brand-showcase__image { min-height: 280px; }
  .brand-showcase__body { padding: 2.5rem 2rem; }

  .servicios-detail__grid .servicio-detail-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .servicio-detail-item__num { font-size: 2.5rem; min-width: auto; text-align: left; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card:first-child,
  .brand-card:nth-child(4) { aspect-ratio: 3/4; }

  .about__stats { flex-direction: column; gap: 1.5rem; }

  .section-header { grid-template-columns: 1fr; }
  .section-header .btn { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

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

  .contact-form { padding: 1.75rem; }

  .lookbook__grid { grid-template-columns: 1fr; }
  .lookbook__item:first-child { grid-column: span 1; }
  .brand-showcase__image { min-height: 220px; }
  .brand-showcase__body { padding: 2rem 1.5rem; }
}
