: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;
  --header-height: 82px;
}

*,
*::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 .34s cubic-bezier(.76, 0, .24, 1), visibility 0s linear .34s;
}

.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 .42s cubic-bezier(.16, 1, .3, 1) both;
  transition: opacity .28s ease, transform .34s 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 .65s 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); }
}

/* CATÁLOGO · AVISO DE BIENVENIDA */
.catalog-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease, visibility 0s linear .45s;
}

.catalog-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.catalog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 37, 30, .62);
  backdrop-filter: blur(10px);
}

.catalog-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  overflow: hidden;
  padding: clamp(42px, 7vw, 68px) clamp(28px, 7vw, 66px) 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 93% 9%, rgba(201, 207, 182, .5), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 249, .99), rgba(241, 237, 228, .98));
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px 28px 78px 28px;
  box-shadow: 0 32px 90px rgba(28, 29, 23, .35);
  transform: translateY(24px) scale(.97);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.catalog-modal__card::before {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(95, 98, 69, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(201, 207, 182, .12), 0 0 0 52px rgba(201, 207, 182, .07);
  pointer-events: none;
}

.catalog-modal.is-open .catalog-modal__card { transform: translateY(0) scale(1); }

.catalog-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--olive-dark);
  background: rgba(255, 255, 255, .45);
  border: 1px solid rgba(95, 98, 69, .18);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.catalog-modal__close:hover {
  color: white;
  background: var(--olive);
  transform: rotate(8deg);
}

.catalog-modal__close:focus-visible,
.catalog-modal__action:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 4px;
}

.catalog-modal__close span {
  position: absolute;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.catalog-modal__close span:first-child { transform: rotate(45deg); }
.catalog-modal__close span:last-child { transform: rotate(-45deg); }

.catalog-modal__eyebrow,
.catalog-modal__signature {
  position: relative;
  display: block;
  color: var(--olive);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.catalog-modal__rule {
  position: relative;
  width: 78px;
  height: 1px;
  margin: 18px 0 25px;
  background: rgba(95, 98, 69, .24);
}

.catalog-modal__rule span {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--olive);
  border-radius: 50%;
}

.catalog-modal__card h2 {
  position: relative;
  max-width: 410px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: .97;
}

.catalog-modal__card p {
  position: relative;
  max-width: 360px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .94rem;
}

.catalog-modal__action {
  position: relative;
  gap: 13px;
  min-width: 190px;
}

.catalog-modal__action span {
  font-size: 1.15rem;
  line-height: 0;
  transition: transform .2s ease;
}

.catalog-modal__action:hover span { transform: translateX(4px); }

.catalog-modal__signature {
  margin-top: 32px;
  padding-top: 18px;
  color: rgba(95, 98, 69, .58);
  border-top: 1px solid rgba(95, 98, 69, .14);
  font-size: .52rem;
  letter-spacing: .24em;
}

body.catalog-modal-open { overflow: hidden; }

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: white;
  background: rgba(95, 98, 69, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  background: var(--olive-dark);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 8px 30px rgba(31, 33, 24, .22);
}

.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: rgba(255, 255, 255, .82);
  font-size: .74rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav > a:hover { color: white; }

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

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

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

.main-nav .nav-cta:hover { color: var(--olive-dark); background: var(--olive-light); }

.main-nav > a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.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: white;
  transition: .25s ease;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 40px;
  overflow: hidden;
  isolation: isolate;
}

.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);
  animation: hero-halo-left 12s ease-in-out infinite;
}

.hero::after {
  right: -220px;
  bottom: 100px;
  background: rgba(237,231,218,.8);
  animation: hero-halo-right 15s ease-in-out infinite;
}

.hero-grid {
  width: 100%;
  min-height: max(650px, calc(100vh - var(--header-height) - 40px));
  min-height: max(650px, calc(100svh - var(--header-height) - 40px));
  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-copy h1 em {
  display: inline-block;
  text-shadow: 0 1px 0 rgba(255,255,255,.24);
}

.hero .btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero .btn-primary::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -38%;
  width: 34%;
  height: 136%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.0) 30%, rgba(255,255,255,.42) 50%, rgba(255,255,255,.0) 70%, transparent 100%);
  transform: translateX(-220%) skewX(-20deg);
  pointer-events: none;
  animation: hero-cta-shine 7.8s ease-in-out infinite;
}

.hero-visual {
  transform-style: preserve-3d;
}

.hero-image-main,
.hero-image-small,
.hero-image-accent {
  backface-visibility: hidden;
}

.hero-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent 34%, rgba(36,37,30,.06) 100%);
  pointer-events: none;
}

.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 {
  width: min(112%, 420px);
  height: clamp(370px, 35vw, 470px);
  margin: 0 0 0 auto;
  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-intro,
.about-photo {
  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(2, minmax(0, 1fr));
  gap: 20px;
}

.service-preview-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  background: rgba(255, 253, 249, .82);
  border: 1px solid rgba(95, 98, 69, .16);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(46, 48, 35, .08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.service-preview-card:hover {
  background: var(--white);
  border-color: rgba(95, 98, 69, .24);
  box-shadow: 0 22px 50px rgba(46, 48, 35, .12);
  transform: translateY(-5px);
}

.service-preview-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(95, 98, 69, .08);
}

.service-preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease;
}

.service-preview-card:hover .service-preview-card__media img {
  transform: scale(1.04);
}

.service-preview-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 22px;
}

.service-preview-card__eyebrow {
  margin-bottom: 10px;
  color: var(--olive);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.service-preview-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.service-preview-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .92rem;
}

.service-preview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.service-preview-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--olive-dark);
  background: rgba(95, 98, 69, .08);
  border: 1px solid rgba(95, 98, 69, .12);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
}

.service-preview-card__link {
  margin-top: auto;
  color: var(--olive);
  font-size: .76rem;
  font-weight: 700;
}

.service-preview-card__link span {
  font-size: 1rem;
}

.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;
}


/* REDES SOCIALES */
.contact-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: -4px 0 28px;
  padding: 18px 20px;
  background: rgba(255, 253, 249, .78);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(46, 48, 35, .07);
}

.contact-socials__copy {
  min-width: 190px;
}

.contact-socials__copy span {
  display: block;
  margin-bottom: 3px;
  color: var(--olive);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.contact-socials__copy strong {
  display: block;
  max-width: 240px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.social-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  color: var(--olive-dark);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(95, 98, 69, .2);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-link:hover {
  color: white;
  background: var(--olive);
  border-color: var(--olive);
  box-shadow: 0 9px 24px rgba(95, 98, 69, .2);
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.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;
}

.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-social-copy {
  max-width: 240px !important;
  margin: 0 0 16px !important;
}

.social-links-footer {
  gap: 8px;
}

.social-links-footer .social-link {
  width: 42px;
  min-height: 42px;
  padding: 0;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
}

.social-links-footer .social-link:hover {
  color: var(--olive-dark);
  background: var(--olive-light);
  border-color: var(--olive-light);
}

.social-links-footer .social-link:focus-visible {
  outline-color: var(--olive-light);
}

.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;
  transform-origin: center;
}

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

/* MICROINTERACCIONES PARA GSAP */
.hero-image,
.hero-image img,
.hero-logo-watermark,
.hero-visual {
  will-change: transform, opacity;
}

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

/* CURSOR PERSONALIZADO ZAREN · PINCEL DE ESMALTE */
.zaren-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 48px;
  height: 78px;
  display: none;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -92%, 0) rotate(-18deg) scale(.92);
  transform-origin: 50% 92%;
  transition: opacity .18s ease, transform .2s ease;
}

.zaren-cursor.is-visible { opacity: 1; }

.zaren-cursor.is-active {
  transform: translate3d(-50%, -92%, 0) rotate(-23deg) scale(1.02);
}

.zaren-cursor__brush {
  position: relative;
  width: 30px;
  height: 70px;
  filter: drop-shadow(0 12px 17px rgba(28, 30, 21, .18));
  transform-origin: 50% 92%;
  transition: transform .2s ease, filter .2s ease;
}

.zaren-cursor.is-hovering .zaren-cursor__brush {
  transform: rotate(8deg) translateY(-2px) scale(1.04);
  filter: drop-shadow(0 14px 20px rgba(28, 30, 21, .24));
}

.zaren-cursor__handle,
.zaren-cursor__ferrule,
.zaren-cursor__bristles,
.zaren-cursor__highlight,
.zaren-cursor__drop {
  position: absolute;
  display: block;
}

.zaren-cursor__handle {
  top: 0;
  left: 50%;
  width: 15px;
  height: 42px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #3e412f, #686c4c 48%, #484b36);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px 8px 5px 5px;
  box-shadow: inset 2px 0 3px rgba(255,255,255,.12);
}

.zaren-cursor__ferrule {
  top: 37px;
  left: 50%;
  width: 20px;
  height: 10px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c9c2b2, #fffdf9 45%, #a8a190);
  border-radius: 4px 4px 3px 3px;
  box-shadow: inset 0 0 0 1px rgba(69,72,51,.12);
}

.zaren-cursor__bristles {
  top: 45px;
  left: 50%;
  width: 21px;
  height: 25px;
  transform: translateX(-50%);
  clip-path: polygon(4% 0, 96% 0, 68% 82%, 52% 100%, 38% 82%);
  background: linear-gradient(90deg, #6b704f, #93986d 48%, #555a3e);
  box-shadow: inset 3px 0 5px rgba(255,255,255,.13);
}

.zaren-cursor__highlight {
  top: 7px;
  left: 10px;
  width: 4px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,0));
  opacity: .78;
}

.zaren-cursor__drop {
  left: 50%;
  bottom: -2px;
  width: 7px;
  height: 7px;
  opacity: 0;
  transform: translateX(-50%) rotate(45deg) scale(.4);
  background: #8d9367;
  border-radius: 70% 30% 70% 30%;
  box-shadow: 0 0 8px rgba(201,207,182,.65);
  transition: opacity .16s ease, transform .16s ease;
}

.zaren-cursor.is-active .zaren-cursor__drop {
  opacity: .95;
  transform: translateX(-50%) rotate(45deg) scale(1);
}

.zaren-cursor-trails {
  position: fixed;
  inset: 0;
  z-index: 1998;
  pointer-events: none;
  contain: strict;
}

.zaren-cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--trail-size, 24px);
  height: calc(var(--trail-size, 24px) * .58);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 25% 50%, rgba(255,255,255,.92), rgba(255,255,255,.26) 35%, transparent 72%),
    linear-gradient(115deg, transparent, rgba(255,255,255,.48), rgba(201,207,182,.38), transparent);
  box-shadow: 0 0 10px rgba(255,255,255,.2), 0 0 18px rgba(201,207,182,.14);
  transform: translate(-50%, -50%) rotate(var(--trail-rotate, -20deg)) scale(1);
}

.zaren-cursor-trail.is-active {
  animation: cursor-gloss-fade .72s cubic-bezier(.16, 1, .3, 1) forwards;
}

@media (hover: hover) and (pointer: fine) {
  html.has-zaren-cursor,
  html.has-zaren-cursor body,
  html.has-zaren-cursor a,
  html.has-zaren-cursor button,
  html.has-zaren-cursor .btn,
  html.has-zaren-cursor .service-preview-card,
  html.has-zaren-cursor .lookbook-card,
  html.has-zaren-cursor .whatsapp-float {
    cursor: none !important;
  }

  .zaren-cursor {
    display: grid;
  }
}

@keyframes cursor-gloss-fade {
  0% {
    opacity: .78;
    filter: blur(0px);
    transform: translate(-50%, -50%) rotate(var(--trail-rotate, -18deg)) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(5px);
    transform: translate(-50%, -50%) rotate(var(--trail-rotate, -18deg)) scale(.45);
  }
}

@keyframes hero-halo-left {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .92; }
  50% { transform: translate3d(40px, -22px, 0) scale(1.08); opacity: 1; }
}

@keyframes hero-halo-right {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .82; }
  50% { transform: translate3d(-34px, 18px, 0) scale(1.06); opacity: .98; }
}

@keyframes hero-cta-shine {
  0%, 74%, 100% { transform: translateX(-220%) skewX(-20deg); opacity: 0; }
  10% { opacity: .12; }
  18%, 24% { transform: translateX(430%) skewX(-20deg); opacity: .62; }
  30% { opacity: 0; }
}

@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; }
  .hero::before,
  .hero::after,
  .hero .btn-primary::after,
  .zaren-cursor-trail {
    animation: none !important;
  }

  .zaren-cursor-trails {
    display: none !important;
  }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .main-nav { gap: 14px; }
  .main-nav > a { font-size: .68rem; }
  .contact-socials { align-items: flex-start; flex-direction: column; }

  .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(69, 72, 51, .98);
    border: 1px solid rgba(255, 255, 255, .18);
    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 {
    grid-template-columns: 1fr;
  }

  .services-preview {
    grid-template-columns: 1fr 1fr;
  }

  .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; }

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

@media (max-width: 640px) {
  :root { --header-height: 74px; }

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

  .catalog-modal { padding: 16px; }
  .catalog-modal__card { padding: 40px 24px 28px; border-radius: 24px 24px 58px 24px; }
  .catalog-modal__card h2 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .catalog-modal__action { width: 100%; }

  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; }
  .services-preview { grid-template-columns: 1fr; }
  .service-preview-card__body { padding: 22px 20px 20px; }
  .services-footer { align-items: flex-start; flex-direction: column; }
  .services-footer .btn { min-width: 100%; }
  .contact-list > * {
    grid-template-columns: 1fr;
    gap: 3px;
  }


  .contact-socials {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .social-links-contact {
    width: 100%;
  }

  .social-links-contact .social-link {
    flex: 1 1 calc(33.333% - 7px);
    padding-inline: 10px;
  }

  .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-section .container {
  width: min(calc(100% - 24px), 1460px);
}

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

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

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

.lookbook-heading p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}

.lookbook-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

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

.lookbook-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-inline: 9px;
  will-change: transform;
}

.lookbook-card {
  width: clamp(250px, 22vw, 340px);
  flex: 0 0 clamp(250px, 22vw, 340px);
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(17, 18, 13, .18);
}

.lookbook-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  overflow: hidden;
}

.lookbook-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

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

.lookbook-card figcaption {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 14px 16px 16px;
}

.lookbook-card figcaption span {
  color: rgba(255,255,255,.62);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.lookbook-card figcaption strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
}

.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; }
  .contact-photo-three { width: 35%; height: 145px; }
  .contact-photo-four { width: 34%; height: 145px; }
}


@media (max-width: 900px) {
  .lookbook-section .container {
    width: min(calc(100% - 20px), 1460px);
  }

  .lookbook-card {
    width: 270px;
    flex-basis: 270px;
  }
}

@media (max-width: 520px) {
  .lookbook-section .container {
    width: min(calc(100% - 12px), 1460px);
  }

  .lookbook-card {
    width: 235px;
    flex-basis: 235px;
  }

  .lookbook-track { gap: 14px; }
  .lookbook-card figcaption { min-height: 74px; }
}

/* 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 {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 96px;
    padding-bottom: 24px;
  }

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

  .hero::after { display: none; }

  .hero-grid {
    min-height: calc(100svh - var(--header-height) - 24px);
    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; }
}


@media (max-width: 420px) {
  .social-links-contact .social-link {
    flex-basis: 100%;
  }
}

/* HERO ADAPTATIVO: MONITORES ULTRAWIDE Y PANTALLAS DE POCA ALTURA */
@media (min-width: 1500px) {
  .hero .container {
    width: min(calc(100% - 80px), 1320px);
  }

  .hero-grid {
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(72px, 5vw, 104px);
  }

  .hero-copy > p {
    max-width: 590px;
  }

  .hero-visual {
    height: min(68vh, 650px);
    min-height: 540px;
  }
}

@media (min-width: 901px) and (max-height: 850px) {
  .hero {
    padding-top: 108px;
    padding-bottom: 18px;
  }

  .hero-grid {
    min-height: calc(100svh - 108px - 18px);
    gap: clamp(38px, 4vw, 64px);
  }

  .hero-copy {
    padding: 12px 0 20px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(3.5rem, 6.4vw, 5.75rem);
  }

  .hero-copy > p {
    font-size: .96rem;
    line-height: 1.55;
  }

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

  .hero-note {
    margin-top: 18px;
  }

  .hero-visual {
    height: min(67vh, 560px);
    min-height: 470px;
  }

  .hero-image-small {
    height: min(35vh, 255px);
    bottom: 16px;
  }

  .hero-image-accent {
    height: min(25vh, 185px);
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 10px;
  }

  .hero-grid {
    min-height: calc(100svh - 102px);
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 5.8vw, 4.75rem);
    line-height: .98;
  }

  .hero-copy > p {
    max-width: 560px;
    font-size: .88rem;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-note {
    margin-top: 12px;
  }

  .hero-visual {
    height: min(65vh, 465px);
    min-height: 390px;
  }

  .hero-image-small {
    height: min(33vh, 220px);
    border-width: 7px;
  }

  .hero-image-accent {
    height: min(23vh, 155px);
    border-width: 6px;
  }
}

/* Evita que la siguiente sección se asome al cargar, incluso con barras móviles dinámicas. */
@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }

  @media (min-width: 901px) and (max-height: 850px) {
    .hero-grid {
      min-height: calc(100dvh - 108px - 18px);
    }
  }

  @media (min-width: 901px) and (max-height: 720px) {
    .hero-grid {
      min-height: calc(100dvh - 102px);
    }
  }
}
