@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Albra;
  src: url("../fonts/albra-semi.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #181310;
  --paper: #f1eee7;
  --white: #fff;
  --accent: #e38bc4;
  --line: rgba(24,19,16,.22);
  --pad: clamp(22px,4.2vw,72px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins,Arial,sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
  color: inherit;
}

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0b0908;
  color: #fff;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  transition: opacity .75s var(--ease),visibility .75s;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro span {
  font-size: 11px;
  letter-spacing: .5em;
  margin-left: .5em;
}

.intro-mark {
  width: 86px;
  height: 58px;
  position: relative;
}

.intro-mark i {
  position: absolute;
  width: 51px;
  height: 51px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 3px;
}

.intro-mark i:first-child {
  left: 3px;
  animation: markIn .95s var(--ease);
}

.intro-mark i:last-child {
  right: 3px;
  animation: markIn .95s .08s var(--ease) both;
}

@keyframes markIn {
  from {
    transform: scale(.2);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: height .45s var(--ease),background .45s,border-color .45s,color .45s;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(20,16,14,.84);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.12);
}

.brand img {
  display: block;
  width: clamp(150px,12vw,190px);
  transition: width .45s var(--ease);
}

.site-header.is-scrolled .brand img {
  width: 132px;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .19em;
}

.desktop-nav a {
  opacity: .72;
  transition: opacity .25s;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang {
  border: 0;
  background: none;
  padding: 0;
  font-size: 10px;
  letter-spacing: .12em;
}

.lang span {
  opacity: .4;
  margin: 0 5px;
}

.contact-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.contact-link .arrow-up-right {
  margin-left: 9px;
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 30px;
  padding: 7px 0;
  position: relative;
}

.menu-button span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
  transition: transform .35s,opacity .35s;
}

.menu-button.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: #171210;
  color: #fff;
  padding: 130px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .65s var(--ease),visibility .65s;
}

.mobile-menu.is-open {
  transform: none;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  font-size: clamp(36px,10vw,66px);
  letter-spacing: -.055em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.mobile-menu small {
  font-size: 10px;
  letter-spacing: .14em;
  margin-right: 18px;
  opacity: .5;
}

.mobile-menu p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .55;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
  background: #0a0808;
  color: #fff;
}

.hero-video,.hero-shade,.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  to {
    transform: scale(1.07);
  }
}

.hero-shade {
  background: linear-gradient(90deg,rgba(4,3,3,.58) 0%,rgba(4,3,3,.12) 48%,rgba(4,3,3,.4) 100%),linear-gradient(180deg,rgba(0,0,0,.28),transparent 36%,rgba(0,0,0,.53));
  z-index: 2;
}

.hero-grain {
  z-index: 3;
  opacity: .15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 142px var(--pad) 48px;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .25em;
  opacity: .8;
}

.hero-title {
  margin: auto 0 0;
  line-height: .78;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -.072em;
}

.title-line {
  display: block;
  width: max-content;
}

.title-create {
  font-size: clamp(62px,8.7vw,145px);
  margin-left: 1vw;
}

.title-extra {
  font-size: clamp(65px,10.2vw,172px);
}

.title-moments {
  font-family: Albra,Georgia,serif;
  font-weight: 600;
  font-size: clamp(80px,11vw,184px);
  text-transform: none;
  letter-spacing: -.045em;
  margin-left: 27vw;
  margin-top: .08em;
}

.hero-bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 26px;
}

.hero-bottom p {
  max-width: 460px;
  font-size: clamp(12px,1vw,15px);
  line-height: 1.7;
  margin: 0;
  opacity: .82;
}

.round-cta {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: background .35s,color .35s,transform .35s;
}

.round-cta .arrow-down-right {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-size: 15px;
}

.round-cta:hover {
  background: #fff;
  color: #111;
  transform: scale(1.04);
}

.hero-meta {
  position: absolute;
  z-index: 6;
  right: var(--pad);
  top: 136px;
  display: flex;
  gap: 16px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .75;
}

.hero-meta span+span:before {
  content: "•";
  margin-right: 16px;
}

.scroll-hint {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .7;
}

.scroll-hint i {
  display: block;
  width: 1px;
  height: 25px;
  background: #fff;
  animation: scrollPulse 1.9s infinite;
}

@keyframes scrollPulse {
  0%,100% {
    transform: scaleY(.25);
    transform-origin: top;
    opacity: .3;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease),transform .9s var(--ease);
}

.page-ready .hero-reveal {
  opacity: 1;
  transform: none;
}

.page-ready .title-create {
  transition-delay: .12s;
}

.page-ready .title-extra {
  transition-delay: .2s;
}

.page-ready .title-moments {
  transition-delay: .29s;
}

.page-ready .hero-bottom,.page-ready .hero-meta {
  transition-delay: .42s;
}

.section-kicker {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.statement {
  min-height: 105vh;
  padding: clamp(120px,14vw,220px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 8fr;
  gap: 4vw;
  background: var(--paper);
}

.statement-number {
  font-family: Albra,serif;
  font-size: clamp(68px,9vw,142px);
  line-height: 1;
  color: #d5cfc3;
}

.statement-copy h2 {
  font-size: clamp(48px,7.1vw,116px);
  line-height: .93;
  letter-spacing: -.062em;
  font-weight: 600;
  margin: 45px 0 72px;
  max-width: 1200px;
}

.statement-copy h2 em,.services-head h2 em,.contact-preview h2 em {
  font-family: Albra,Georgia,serif;
  font-weight: 600;
  text-transform: none;
}

.statement-text {
  margin-left: auto;
  max-width: 620px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 38px;
}

.statement-text p {
  margin: 0;
  font-size: clamp(13px,1vw,16px);
  line-height: 1.75;
}

.statement-text p:first-child {
  font-size: clamp(17px,1.4vw,23px);
  line-height: 1.45;
}

.editorial-image {
  padding: 0 var(--pad) clamp(100px,12vw,190px);
}

.image-wrap {
  height: min(72vw,790px);
  overflow: hidden;
  background: #16110f;
}

.image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 1.6s var(--ease);
}

.image-wrap.is-visible img {
  transform: scale(1);
}

.image-caption {
  margin: 17px 0 0 auto;
  max-width: 400px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  line-height: 1.6;
}

.manifesto {
  padding: clamp(90px,10vw,160px) var(--pad);
  background: #181310;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: end;
  gap: 5vw;
}

.manifesto-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .21em;
  opacity: .62;
}

.manifesto blockquote {
  margin: 0;
  font-family: Albra,Georgia,serif;
  font-size: clamp(52px,8.5vw,138px);
  line-height: .92;
  letter-spacing: -.04em;
}

.services {
  padding: clamp(120px,13vw,210px) var(--pad);
  background: #ddd3ee;
}

.services-head {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: clamp(80px,9vw,140px);
}

.services-head h2 {
  font-size: clamp(56px,8.3vw,135px);
  line-height: .9;
  letter-spacing: -.065em;
  margin: 40px 0 0;
}

.services-head>p {
  font-size: clamp(13px,1vw,16px);
  line-height: 1.75;
  margin: 0 0 10px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1.25fr .8fr 30px;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease),background .35s;
}

.service-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(255,255,255,.18);
}

.service-index {
  font-size: 9px;
  letter-spacing: .15em;
}

.service-row h3 {
  font-size: clamp(28px,3.1vw,52px);
  letter-spacing: -.045em;
  font-weight: 400;
  margin: 0;
}

.service-row p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  max-width: 390px;
}

.service-arrow {
  width: 20px;
  height: 20px;
  justify-self: end;
  transition: transform .3s;
}

.service-row:hover .service-arrow {
  transform: translate(4px,-4px);
}

.visual-pair {
  padding: clamp(100px,12vw,190px) var(--pad);
  display: grid;
  grid-template-columns: 1.25fr .65fr;
  gap: clamp(30px,7vw,120px);
  background: var(--paper);
  align-items: end;
}

.visual-pair figure {
  margin: 0;
  overflow: hidden;
  background: #171310;
}

.visual-pair img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.5s var(--ease);
}

.visual-pair figure.is-visible img {
  transform: scale(1);
}

.visual-pair__large {
  height: min(67vw,900px);
}

.visual-pair__small figure {
  height: min(38vw,530px);
}

.visual-pair__small p {
  font-size: clamp(28px,3.5vw,58px);
  line-height: 1.02;
  letter-spacing: -.05em;
  margin: 46px 0 0;
}

.visual-pair__small p em {
  font-family: Albra,serif;
  font-size: 1.17em;
}

.contact-preview {
  min-height: 82vh;
  padding: clamp(120px,14vw,220px) var(--pad);
  background: #181310;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-preview h2 {
  font-size: clamp(65px,11vw,180px);
  line-height: .86;
  letter-spacing: -.07em;
  margin: 45px 0 70px;
}

.contact-preview>a {
  width: max-content;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .17em;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.contact-preview>a span {
  margin-left: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease),transform .85s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-image] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease),transform 1s var(--ease);
}

[data-reveal-image].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width:900px) {
  .desktop-nav,.contact-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    height: 82px;
  }

  .brand img {
    width: 145px;
  }

  .header-actions {
    gap: 16px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero-meta {
    top: 102px;
  }

  .title-create {
    font-size: clamp(52px,14vw,94px);
    margin-left: 0;
  }

  .title-extra {
    font-size: clamp(46px,12.2vw,84px);
    line-height: .95;
  }

  .title-moments {
    font-size: clamp(78px,19vw,126px);
    margin-left: 8vw;
  }

  .hero-bottom p {
    max-width: 58vw;
  }

  .round-cta {
    width: 100px;
    height: 100px;
  }

  .statement {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .statement-number {
    display: none;
  }

  .statement-copy h2 {
    font-size: clamp(52px,12vw,90px);
  }

  .statement-text {
    max-width: none;
  }

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

  .manifesto-side {
    flex-direction: row;
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-row {
    grid-template-columns: 42px 1fr 26px;
  }

  .service-row p {
    grid-column: 2/3;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1/3;
  }

  .visual-pair {
    gap: 32px;
  }
}

@media (max-width:600px) {
  :root {
    --pad: 20px;
  }

  .site-header {
    height: 72px;
  }

  .brand img {
    width: 132px;
  }

  .lang {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    padding: 98px 20px 38px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: .17em;
  }

  .hero-title {
    margin: auto 0;
    line-height: .88;
  }

  .title-create {
    font-size: 15vw;
  }

  .title-extra {
    font-size: 12.1vw;
  }

  .title-moments {
    font-size: 22vw;
    margin-left: 4vw;
  }

  .hero-bottom {
    align-items: center;
  }

  .hero-bottom p {
    max-width: 64%;
    font-size: 10px;
    line-height: 1.6;
  }

  .round-cta {
    width: 84px;
    height: 84px;
    font-size: 7px;
  }

  .round-cta .arrow-down-right {
    right: 17px;
    bottom: 14px;
  }

  .hero-meta,.scroll-hint {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.25)),linear-gradient(180deg,rgba(0,0,0,.35),transparent 35%,rgba(0,0,0,.64));
  }

  .statement {
    min-height: auto;
    padding: 105px 20px;
  }

  .statement-copy h2 {
    font-size: 13vw;
    margin: 34px 0 52px;
  }

  .statement-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .editorial-image {
    padding: 0 20px 90px;
  }

  .image-wrap {
    height: 78vh;
    min-height: 520px;
  }

  .image-wrap img {
    object-position: center;
  }

  .image-caption {
    font-size: 8px;
  }

  .manifesto {
    padding: 90px 20px;
  }

  .manifesto blockquote {
    font-size: 14vw;
  }

  .services {
    padding: 105px 20px;
  }

  .services-head {
    margin-bottom: 70px;
  }

  .services-head h2 {
    font-size: 14vw;
    margin-top: 30px;
  }

  .service-row {
    grid-template-columns: 30px 1fr 20px;
    gap: 12px;
    padding: 25px 0;
  }

  .service-row h3 {
    font-size: 8vw;
  }

  .service-row p {
    font-size: 10px;
  }

  .visual-pair {
    padding: 90px 20px;
    grid-template-columns: 1fr;
  }

  .visual-pair__large {
    height: 72vh;
  }

  .visual-pair__small figure {
    height: 56vh;
  }

  .visual-pair__small p {
    margin-top: 30px;
    font-size: 10vw;
  }

  .contact-preview {
    min-height: 72vh;
    padding: 100px 20px;
  }

  .contact-preview h2 {
    font-size: 17vw;
    margin: 35px 0 60px;
  }
}

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

  .intro,.hero-video,.hero-reveal,[data-reveal],[data-reveal-image],.image-wrap img,.visual-pair img,.site-header,.brand img,.round-cta {
    animation: none !important;
    transition: none !important;
  }

  .hero-reveal,[data-reveal],[data-reveal-image] {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-hint i {
    animation: none;
  }
}

/* QL-004 · Diferencial, clientes, contacto y footer */

.difference {
  padding: clamp(120px,14vw,220px) var(--pad);
  background: #181310;
  color: #fff;
}

.difference-intro {
  display: grid;
  grid-template-columns: .55fr 2.3fr;
  gap: 5vw;
  align-items: start;
}

.difference-intro h2 {
  font-size: clamp(52px,7.8vw,126px);
  line-height: .91;
  letter-spacing: -.064em;
  margin: 0;
}

.difference-intro h2 em,.clients-head h2 em,.contact h2 em {
  font-family: Albra,Georgia,serif;
  font-weight: 600;
}

.difference-list {
  margin: clamp(100px,12vw,190px) 0 0 auto;
  max-width: 1040px;
  border-top: 1px solid rgba(255,255,255,.24);
}

.difference-list article {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 36px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
  align-items: start;
}

.difference-list article>span {
  font-size: 9px;
  letter-spacing: .18em;
  opacity: .55;
}

.difference-list h3 {
  font-size: clamp(27px,3vw,50px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 400;
  margin: 0;
}

.difference-list p {
  font-size: 12px;
  line-height: 1.75;
  max-width: 370px;
  margin: 4px 0 0;
  opacity: .74;
}

.clients {
  padding: clamp(115px,13vw,200px) 0;
  background: #f1eee7;
  overflow: hidden;
}

.clients-head {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: .45fr 1.7fr .75fr;
  gap: 5vw;
  align-items: end;
}

.clients-head h2 {
  font-size: clamp(47px,6.8vw,108px);
  line-height: .94;
  letter-spacing: -.058em;
  margin: 0;
}

.clients-head p {
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
  opacity: .66;
}

.logo-marquee {
  margin-top: clamp(80px,9vw,140px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: logoScroll 34s linear infinite;
}

.logo-track span {
  width: clamp(190px,19vw,310px);
  height: 150px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: clamp(19px,2vw,31px);
  font-weight: 600;
  letter-spacing: .08em;
  color: #554e48;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoScroll {
  to {
    transform: translateX(-50%);
  }
}

.contact {
  padding: clamp(120px,14vw,220px) var(--pad);
  background: #ddd3ee;
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: clamp(70px,10vw,170px);
  align-items: start;
}

.contact h2 {
  font-size: clamp(58px,8.5vw,138px);
  line-height: .88;
  letter-spacing: -.067em;
  margin: 42px 0 55px;
}

.contact-cta>p {
  max-width: 610px;
  font-size: clamp(13px,1.1vw,17px);
  line-height: 1.75;
  margin: 0 0 48px;
}

.whatsapp-button {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 18px 23px 18px 28px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: background .3s,color .3s,transform .3s;
}

.whatsapp-button .arrow-up-right {
  font-size: 17px;
}

.whatsapp-button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  padding-top: 52px;
}

.form-row {
  position: relative;
  padding: 0 0 18px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(24,19,16,.45);
}

.form-row label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 13px;
}

.form-row input,.form-row textarea {
  display: block;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 400 clamp(16px,1.5vw,22px)/1.45 Poppins,Arial,sans-serif;
  padding: 0;
  resize: vertical;
}

.form-row:focus-within {
  border-color: var(--ink);
}

.form-row--message {
  margin-top: 46px;
}

.form-trap {
  position: absolute !important;
  left: -9999px !important;
}

.contact-form button {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 10px 0 13px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.contact-form button .arrow-up-right {
  font-size: 20px;
  transition: transform .3s;
}

.contact-form button:hover .arrow-up-right {
  transform: translate(5px,-5px);
}

.site-footer {
  background: #181310;
  color: #fff;
  padding: 70px var(--pad) 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: min(240px,46vw);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}

.footer-links a:hover {
  border-color: #fff;
}

.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .66;
}

@media (max-width:900px) {
  .difference-intro,.clients-head,.contact {
    grid-template-columns: 1fr;
  }

  .difference-intro {
    gap: 38px;
  }

  .difference-list article {
    grid-template-columns: 45px 1fr;
  }

  .difference-list p {
    grid-column: 2;
  }

  .clients-head {
    align-items: start;
  }

  .clients-head p {
    max-width: 480px;
  }

  .contact {
    gap: 35px;
  }

  .contact-form {
    padding-top: 20px;
  }
}

@media (max-width:600px) {
  .difference {
    padding: 105px 20px;
  }

  .difference-intro h2 {
    font-size: 13.5vw;
  }

  .difference-list {
    margin-top: 85px;
  }

  .difference-list article {
    grid-template-columns: 28px 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .difference-list h3 {
    font-size: 8vw;
  }

  .difference-list p {
    font-size: 10px;
  }

  .clients {
    padding: 100px 0;
  }

  .clients-head {
    padding: 0 20px;
    gap: 28px;
  }

  .clients-head h2 {
    font-size: 12.5vw;
  }

  .logo-marquee {
    margin-top: 65px;
  }

  .logo-track span {
    width: 190px;
    height: 120px;
    font-size: 19px;
  }

  .contact {
    padding: 105px 20px;
  }

  .contact h2 {
    font-size: 15.8vw;
    margin: 34px 0 42px;
  }

  .whatsapp-button {
    width: 100%;
    justify-content: space-between;
  }

  .contact-form {
    padding-top: 50px;
  }

  .site-footer {
    padding: 58px 20px 28px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    grid-column: auto;
    flex-direction: column;
    gap: 11px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .logo-track {
    animation: none;
  }
}

.form-notice {
  margin: 0 0 35px;
  padding: 15px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  line-height: 1.6;
}

/*
   ==================================================
      FLECHAS SVG
      Mismo render en iPhone, Android y desktop
   ==================================================
*/

.arrow-up-right,
.arrow-down-right,
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
  vertical-align: middle;
}

.arrow-up-right svg,
.arrow-down-right svg,
.service-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-up-right svg path,
.arrow-down-right svg path,
.service-arrow svg path {
  fill: none !important;
  stroke: currentColor;
}

.contact-link .arrow-up-right {
  width: 14px;
  height: 14px;
  margin-left: 9px;
}

.round-cta .arrow-down-right {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 16px;
  height: 16px;
}

.service-arrow {
  width: 20px;
  height: 20px;
  justify-self: end;
  transition: transform .3s;
}

.whatsapp-button .arrow-up-right {
  width: 18px;
  height: 18px;
}

.contact-form button .arrow-up-right {
  width: 20px;
  height: 20px;
  transition: transform .3s;
}

.contact-form button:hover .arrow-up-right {
  transform: translate(5px, -5px);
}

.footer-links .arrow-up-right {
  width: 13px;
  height: 13px;
  margin-left: 4px;
}

/*
   ==================================================
   AJUSTES MOBILE · iPhone / pantallas chicas
   Mejora de legibilidad + flecha CTA "Conocé Qualia"
   ==================================================
*/
@media (max-width: 600px) {

  /* Microtextos del hero: en iPhone 8–10px quedaban demasiado chicos */
  .eyebrow {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .16em;
  }

  .hero-bottom p {
    font-size: 12px;
    line-height: 1.65;
  }

  /* CTA circular */
  .round-cta {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .12em;
  }

  .round-cta .arrow-down-right {
    width: 19px;
    height: 19px;
    right: 15px;
    bottom: 14px;
  }

  .round-cta .arrow-down-right svg {
    stroke-width: 1.7;
  }

  /* Etiquetas pequeñas de las secciones */
  .section-kicker {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: .18em;
  }

  .image-caption {
    font-size: 10px;
    line-height: 1.6;
  }

  /* Textos descriptivos que estaban en 10px */
  .service-row p,
  .difference-list p {
    font-size: 12px;
    line-height: 1.65;
  }

  /* Numeraciones / microcopys */
  .difference-list article > span,
  .form-row label,
  .mobile-menu small,
  .mobile-menu p {
    font-size: 11px;
  }

  /* Botones y enlaces de acción */
  .whatsapp-button,
  .contact-form button {
    font-size: 11px;
  }

  .footer-links {
    font-size: 11px;
  }
}

/*
   ==================================================
   MENU MOBILE · 3 líneas / X al abrir
   Tercera línea con ::before; conserva los 2 spans.
   ==================================================
*/
@media (max-width: 900px) {
  .menu-button {
    width: 36px;
    height: 30px;
    padding: 0;
    position: relative;
  }

  .menu-button span,
  .menu-button::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    margin: 0;
    transition: top .35s ease, transform .35s ease, opacity .25s ease;
  }

  .menu-button::before {
    content: "";
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-button span:first-child {
    top: 6px;
  }

  .menu-button span:last-child {
    top: 23px;
  }

  .menu-button.is-active::before {
    opacity: 0;
  }

  .menu-button.is-active span:first-child,
  .menu-button.is-active span:last-child {
    top: 50%;
  }

  .menu-button.is-active span:first-child {
    transform: translateY(-50%) rotate(45deg);
  }

  .menu-button.is-active span:last-child {
    transform: translateY(-50%) rotate(-45deg);
  }
}

/* ==================================================
   AJUSTE MENU MOBILE · 3 líneas nítidas
   La línea central queda en pixel entero para evitar
   diferencias de grosor por antialiasing.
   ================================================== */
@media (max-width: 900px) {
  .menu-button span,
  .menu-button::before {
    height: 1px;
    transform-origin: center;
  }

  .menu-button::before {
    top: 14px;
    transform: none;
  }

  .menu-button span:first-child {
    top: 6px;
  }

  .menu-button span:last-child {
    top: 22px;
  }

  .menu-button.is-active::before {
    opacity: 0;
  }

  .menu-button.is-active span:first-child,
  .menu-button.is-active span:last-child {
    top: 14px;
  }

  .menu-button.is-active span:first-child {
    transform: rotate(45deg);
  }

  .menu-button.is-active span:last-child {
    transform: rotate(-45deg);
  }
}


/* ==================================================
   AJUSTE CLIENTE · bloque de dos fotografías
   ================================================== */
.visual-pair {
  background: #181310;
  color: #fff;
}

/* Título hero solicitado por cliente */
.hero-title--hello .title-create {
  font-size: clamp(58px, 7.2vw, 120px);
  margin-left: 1vw;
}

.hero-title--hello .title-extra {
  font-size: clamp(42px, 4.8vw, 80px);
  margin-left: 10vw;
  margin-top: .10em;
}

.hero-title--hello .title-moments {
  font-size: clamp(54px, 7.2vw, 120px);
  margin-left: 18vw;
  margin-top: .06em;
  text-transform: none;
}

/* ARTÍSTICAS: misma familia sans del título, con énfasis sin romper composición */
.statement-copy h2 strong {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-title--hello .title-create {
    font-size: clamp(48px, 13.5vw, 84px);
    margin-left: 0;
  }

  .hero-title--hello .title-extra {
    font-size: clamp(34px, 9vw, 58px);
    margin-left: 4vw;
  }

  .hero-title--hello .title-moments {
    font-size: clamp(39px, 10.4vw, 68px);
    margin-left: 0;
    letter-spacing: -.035em;
  }
}

@media (max-width: 600px) {
  .hero-title--hello {
    line-height: .90;
  }

  .hero-title--hello .title-create {
    font-size: 13.8vw;
  }

  .hero-title--hello .title-extra {
    font-size: 9.2vw;
    margin-left: 1vw;
    margin-top: .12em;
  }

  .hero-title--hello .title-moments {
    font-size: 10.2vw;
    margin-left: 0;
    margin-top: .16em;
  }
}

/* ==================================================
   AJUSTE QUE HACEMOS · bloque de texto secundario
   Más ancho en desktop para evitar una columna alta.
   ================================================== */
@media (min-width: 901px) {
  .statement-text {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .statement-text p {
    max-width: 620px;
    margin-left: auto;
  }
}


/* Selector de idioma ES / EN */
.lang a {
  color: inherit;
  text-decoration: none;
}


/* =========================================
   FOOTER · CRÉDITO DESARROLLO
   ========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom-right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    transition: opacity .25s ease;
}

.footer-bottom-right a:hover {
    opacity: .6;
}

.footer-dev-arrow {
    display: inline-flex;
    width: 13px;
    height: 13px;
}

.footer-dev-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 700px) {
    .footer-bottom {
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer-bottom-right {
        text-align: right;
    }
}

/* ==================================================
   FORMULARIO · FONDO TRANSPARENTE + AUTOFILL
   ================================================== */

.contact-form input,
.contact-form textarea {
    background: transparent !important;
}

/* Chrome / Edge / Safari */
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill:active {
    -webkit-text-fill-color: #15100d !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    caret-color: #15100d;
}

/* Firefox */
.contact-form input:autofill,
.contact-form textarea:autofill {
    background: transparent !important;
    color: #15100d !important;
}