:root {
  --olive: #5F6245;
  --olive-dark: #454833;
  --olive-light: #C9CFB6;
  --cream: #F7F5F0;
  --sand: #EDE7DA;
  --white: #FFFDF9;
  --ink: #24251E;
  --muted: #6D6E63;
  --line: rgba(95, 98, 69, .18);
  --shadow: 0 20px 60px rgba(46, 48, 35, .12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1200px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea,
select { font: inherit; }

button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  scroll-margin-top: 90px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--olive);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -.04em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

h3 { font-size: 1.7rem; }

em {
  color: var(--olive);
  font-weight: 500;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading p,
.hero-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: white;
  background: var(--olive);
  box-shadow: 0 12px 30px rgba(95, 98, 69, .25);
}

.btn-primary:hover { background: var(--olive-dark); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  color: white;
  background: var(--olive);
  border-radius: 8px;
}

.skip-link:focus { top: 12px; }

/* PAGE LOADER */
.page-loader {
  position: fixed;
  z-index: 10001;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  transition: opacity .7s cubic-bezier(.76, 0, .24, 1), visibility 0s linear .7s;
}

.page-loader::before,
.page-loader::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.page-loader::before {
  width: min(68vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(95, 98, 69, .14);
  box-shadow: 0 0 0 34px rgba(201, 207, 182, .10), 0 0 0 92px rgba(201, 207, 182, .05);
  animation: loader-orbit 5s ease-in-out infinite;
}

.page-loader::after {
  width: 48vw;
  height: 48vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(circle, rgba(201, 207, 182, .42), transparent 67%);
  filter: blur(14px);
}

.page-loader__halo {
  position: absolute;
  width: min(46vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(95, 98, 69, .13);
  border-radius: 50%;
  animation: loader-orbit 5s ease-in-out infinite reverse;
}

.page-loader__content {
  width: min(72vw, 280px);
  display: grid;
  justify-items: center;
  gap: 20px;
  animation: loader-content-in .8s cubic-bezier(.16, 1, .3, 1) both;
  transition: opacity .38s ease, transform .55s cubic-bezier(.76, 0, .24, 1);
}

.page-loader__logo {
  width: min(100%, 242px);
  height: auto;
  object-fit: contain;
}

.page-loader__progress {
  width: 118px;
  height: 1px;
  overflow: hidden;
  background: rgba(95, 98, 69, .22);
}

.page-loader__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: var(--olive);
  animation: loader-progress 1.1s cubic-bezier(.65, 0, .35, 1) infinite;
}

.page-loader__label {
  color: var(--olive-dark);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-align: center;
}

.page-loader.is-leaving {
  visibility: hidden;
  opacity: 0;
}

.page-loader.is-leaving .page-loader__content {
  opacity: 0;
  transform: translateY(-14px) scale(.98);
}

@keyframes loader-content-in {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes loader-progress {
  0% { transform: scaleX(0); }
  65%, 100% { transform: scaleX(1); }
}

@keyframes loader-orbit {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(14deg) scale(1.035); }
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(247, 245, 240, .82);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(247, 245, 240, .96);
  box-shadow: 0 8px 30px rgba(31, 33, 24, .08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.brand {
  width: 168px;
  display: block;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-dark { filter: none; }
.brand-logo-light { filter: none; }

.brand-footer {
  width: 220px;
  display: block;
}

.brand-footer .brand-logo {
  width: 100%;
  height: auto;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav > a {
  position: relative;
  color: #525346;
  font-size: .74rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--olive);
  transition: right .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after { right: 0; }

.main-nav .nav-cta {
  padding: 12px 18px;
  color: white;
  background: var(--olive);
  border-radius: 999px;
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: .25s ease;
}

/* HERO */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(6px);
}

.hero::before {
  top: 80px;
  left: -220px;
  background: rgba(201,207,182,.42);
}

.hero::after {
  right: -220px;
  bottom: 100px;
  background: rgba(237,231,218,.8);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.hero-copy { padding: 40px 0 70px; }

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .78rem;
}

.hero-note span { color: var(--olive); }

.hero-visual {
  position: relative;
  height: 610px;
}

.hero-image {
  overflow: hidden;
  border-radius: 180px 180px 30px 30px;
  box-shadow: var(--shadow);
}

.hero-image-main {
  position: absolute;
  inset: 0 0 0 16%;
}

.hero-image-small {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 38%;
  height: 300px;
  border: 10px solid var(--cream);
  border-radius: 120px 120px 24px 24px;
}

/* ABOUT */
.about {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about::before {
  content: "";
  position: absolute;
  width: min(42vw, 580px);
  aspect-ratio: 1;
  top: 7%;
  right: -18%;
  border: 1px solid rgba(95, 98, 69, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(201, 207, 182, .12), 0 0 0 84px rgba(201, 207, 182, .07);
  pointer-events: none;
}

.about-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 66px;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
}

.about-intro {
  max-width: 710px;
}

.about-intro p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1rem;
}

.about-intro .about-lede {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.35vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -.025em;
}

.about-photo {
  height: clamp(330px, 31vw, 420px);
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--cream);
  border-radius: 110px 110px 22px 22px;
  box-shadow: var(--shadow);
}

.about-photo img {
  transition: transform .7s ease;
}

.about-photo:hover img { transform: scale(1.04); }

.about-closing {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 9vw, 150px);
  margin-top: 72px;
  padding: 48px 0 0;
  border-top: 1px solid var(--line);
}

.about-closing > div:first-child p {
  max-width: 410px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.about-closing > div:last-child > p {
  max-width: 660px;
  color: var(--muted);
}

.about-closing .about-signature {
  margin-top: 30px;
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--ink);
  border-left: 2px solid var(--olive);
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.45;
}

.about-intro,
.about-photo,
.about-closing > div {
  will-change: transform, opacity;
}

/* SERVICES */
.services {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.services::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -190px;
  bottom: -160px;
  border: 1px solid rgba(95, 98, 69, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 253, 249, .25), 0 0 0 68px rgba(255, 253, 249, .16);
  pointer-events: none;
}

.services-heading,
.services-preview,
.services-footer {
  position: relative;
  z-index: 1;
}

.services-heading p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 5;
  padding: 30px;
  background: rgba(255, 253, 249, .72);
  border: 1px solid rgba(95, 98, 69, .18);
  border-radius: 24px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(46, 48, 35, .1);
  transform: translateY(-5px);
}

.service-card-featured {
  min-height: 410px;
  grid-column: span 7;
  justify-content: flex-end;
  color: var(--white);
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  border-radius: 130px 28px 28px 28px;
}

.service-card-featured:hover {
  background: var(--olive-dark);
}

.service-card-accent {
  grid-column: span 4;
  border-radius: 28px 28px 28px 110px;
}

.service-card:last-child {
  grid-column: span 8;
}

.service-index {
  color: var(--olive);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.service-card-featured .service-index,
.service-card-featured .service-type {
  color: var(--olive-light);
}

.service-type {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-card h3 {
  max-width: 450px;
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
}

.service-card p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.service-card-featured p {
  color: rgba(255, 255, 255, .72);
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(95, 98, 69, .2);
}

.services-footer p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.services-footer .btn span {
  margin-left: 6px;
  font-size: 1.1rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-copy > p {
  max-width: 560px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
}

.contact-list > * {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: .75rem;
}

.contact-list strong {
  font-size: .86rem;
  font-weight: 600;
}

.contact-visual {
  position: relative;
  isolation: isolate;
  min-height: 530px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(45deg, rgba(95,98,69,.08) 25%, transparent 25% 75%, rgba(95,98,69,.08) 75%),
    linear-gradient(-45deg, rgba(95,98,69,.08) 25%, transparent 25% 75%, rgba(95,98,69,.08) 75%);
  background-size: 60px 60px;
  border-radius: 180px 30px 30px 30px;
}

.contact-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-photo-one {
  z-index: 0;
  inset: 0 18% 12% 0;
  border-radius: 150px 28px 28px 28px;
}

.contact-photo-two {
  z-index: 3;
  right: 0;
  bottom: 18px;
  width: 38%;
  height: 230px;
  border: 8px solid var(--cream);
  border-radius: 90px 90px 20px 20px;
}

.contact-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,245,240,.05), rgba(95,98,69,.14));
  pointer-events: none;
}

.contact-decoration {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 25%, rgba(201,207,182,.55), transparent 35%);
}

.map-card {
  position: relative;
  z-index: 2;
  width: min(80%, 360px);
  padding: 36px;
  background: rgba(255,253,249,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-right: 8%;
  transform: translateY(-34px);
}

.map-pin {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--olive);
  border-radius: 50%;
  font-size: 1.5rem;
}

.map-card p { margin: 22px 0; }
.map-card a { color: var(--olive); font-size: .78rem; font-weight: 700; }

/* FOOTER */
.site-footer {
  padding: 80px 0 28px;
  color: white;
  background: #343629;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 54px;
}

.brand-footer {
  color: white;
  place-items: start;
}

.footer-grid p {
  max-width: 360px;
  margin-top: 24px;
  color: rgba(255,255,255,.58);
  font-size: .85rem;
}

.footer-grid h3 {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.64);
  font-size: .76rem;
}

.footer-grid > div > a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: .68rem;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  color: white;
  background: var(--olive);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(40, 43, 29, .28);
  font-size: .75rem;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--olive-dark);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}


/* LOGO REAL */
.hero-logo-watermark {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 18px;
  width: 128px;
  height: auto;
  object-fit: contain;
  opacity: .18;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.map-logo {
  width: 150px;
  height: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

/* MICROINTERACCIONES PARA GSAP */
.hero-image img {
  will-change: transform;
}

.contact-visual,
.whatsapp-float {
  will-change: transform, opacity;
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .page-loader { transition-duration: .15s; }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .main-nav { gap: 14px; }
  .main-nav > a { font-size: .68rem; }

  .hero-grid,
  .contact-grid { gap: 40px; }

}

@media (max-width: 900px) {
  .section { padding: 84px 0; }

  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(255,253,249,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 13px 10px;
    font-size: .82rem;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid,
  .contact-grid,
  .about-grid,
  .about-closing {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured,
  .service-card-accent,
  .service-card:last-child {
    grid-column: span 6;
  }

  .service-card-featured { min-height: 360px; }

  .hero-grid { gap: 30px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-visual { height: 560px; }

  .about-grid { align-items: start; }
  .about-photo { width: min(100%, 420px); height: 360px; }
  .about-closing { gap: 36px; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }

  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  h2 { font-size: clamp(2.5rem, 13vw, 3.8rem); }

  .hero { padding-top: 112px; }
  .hero-visual { height: 460px; }
  .hero-image-main { left: 8%; }
  .hero-image-small { width: 43%; height: 220px; border-width: 7px; }

  .about-heading { margin-bottom: 42px; }
  .about-intro .about-lede { font-size: 1.55rem; }
  .about-photo { height: 300px; border-radius: 84px 84px 20px 20px; }
  .about-closing { margin-top: 64px; padding-top: 34px; }
  .services-preview { grid-template-columns: 1fr; }
  .service-card,
  .service-card-featured,
  .service-card-accent,
  .service-card:last-child { grid-column: auto; min-height: 260px; padding: 26px; }
  .service-card-featured { min-height: 320px; border-radius: 92px 24px 24px 24px; }
  .service-card-accent { border-radius: 24px 24px 24px 86px; }
  .services-footer { align-items: flex-start; flex-direction: column; }
  .services-footer .btn { min-width: 100%; }
  .contact-list > * {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-visual { min-height: 400px; border-radius: 100px 24px 24px 24px; }
  .contact-photo-one { inset: 0 8% 12% 0; }
  .contact-photo-two { width: 45%; height: 180px; }
  .map-card { width: min(76%, 320px); margin-right: 2%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { grid-column: 1 / -1; }

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

}


@media (max-width: 640px) {
  .brand { width: 142px; }
  .brand-footer { width: 200px; }
  .hero-logo-watermark { width: 98px; top: 16px; right: 12px; }
}


.hero-image-accent {
  position: absolute;
  z-index: 4;
  right: 3%;
  top: 18%;
  width: 24%;
  height: 210px;
  border: 8px solid var(--cream);
  border-radius: 90px 90px 22px 22px;
  box-shadow: var(--shadow);
}

.lookbook-section {
  padding: 84px 0 100px;
  overflow: hidden;
  background: var(--olive-dark);
  color: white;
}

.lookbook-heading .eyebrow,
.lookbook-heading em {
  color: var(--olive-light);
}

.lookbook-heading h2 {
  max-width: 760px;
  margin-bottom: 38px;
}

.lookbook-viewport {
  overflow: hidden;
  cursor: grab;
}

.lookbook-viewport:active { cursor: grabbing; }

.lookbook-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 0 16px;
  will-change: transform;
}

.lookbook-card {
  width: clamp(220px, 24vw, 360px);
  height: clamp(300px, 36vw, 500px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: 120px 120px 24px 24px;
}

.lookbook-card:nth-child(3n + 2) {
  transform: translateY(38px);
}

.lookbook-card img {
  transition: transform .75s ease;
}

.lookbook-card:hover img { transform: scale(1.05); }

.contact-photo-three,
.contact-photo-four {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-photo-three {
  z-index: 2;
  left: 3%;
  bottom: 18px;
  width: 29%;
  height: 180px;
  border: 7px solid var(--cream);
  border-radius: 70px 70px 18px 18px;
}

.contact-photo-four {
  z-index: 1;
  right: 5%;
  top: 22px;
  width: 30%;
  height: 180px;
  border-radius: 18px 70px 18px 18px;
}

.contact-photo-three img,
.contact-photo-four img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
}

@media (max-width: 820px) {
  .hero-image-accent { width: 28%; height: 170px; }
}

@media (max-width: 580px) {
  .hero-image-accent { right: 0; top: 12%; width: 34%; height: 140px; }
  .lookbook-card { width: 235px; height: 330px; }
  .contact-photo-three { width: 35%; height: 145px; }
  .contact-photo-four { width: 34%; height: 145px; }
}

/* HERO MÓVIL: composición editorial, una imagen protagonista */
@media (max-width: 640px) {
  .site-header .nav-wrap { min-height: 74px; }
  .brand { width: 128px; }
  .menu-toggle { width: 40px; height: 40px; }

  .hero {
    padding-top: 96px;
  }

  .hero::before {
    top: 250px;
    left: -270px;
    opacity: .48;
  }

  .hero::after { display: none; }

  .hero-grid {
    min-height: auto;
    gap: 0;
  }

  .hero-copy {
    padding: 22px 0 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
    font-size: .64rem;
    letter-spacing: .145em;
    line-height: 1.45;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3rem, 13.4vw, 3.45rem);
    line-height: 1.03;
  }

  .hero-copy > p {
    max-width: 345px;
    margin-bottom: 0;
    font-size: .93rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: block;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-note {
    gap: 8px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: .68rem;
    line-height: 1.35;
  }

  .hero-visual {
    height: 350px;
    margin-top: 20px;
    overflow: hidden;
  }

  .hero-image-main {
    inset: 0 4px;
    border-radius: 104px 104px 20px 20px;
  }

  .hero-image-main img { object-position: center 18%; }

  .hero-image-small,
  .hero-image-accent,
  .hero-logo-watermark { display: none; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: clamp(2.82rem, 13.2vw, 3.15rem); }
  .hero-visual { height: 330px; }
}
