/* ==========================================================================
   SWAAP MEDIA — portfolio audiovisual
   ========================================================================== */

:root {
  --sidebar-w: 84px;
  --ink: #151514;
  --ink-deep: #0b0b0a;
  --cream: #e7ded0;
  --cream-dim: rgba(231, 222, 208, 0.62);
  --line: rgba(231, 222, 208, 0.24);
  --gold: #ffc400;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Helvetica, Arial,
    sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink-deep);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-home {
  overflow: hidden;
}

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

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

::selection {
  background: var(--cream);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Sidebar chrome
   -------------------------------------------------------------------------- */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: var(--sidebar-w);
  height: 100vh;
  padding: 26px 0 30px;
  background: rgba(10, 10, 9, 0.38);
  border-right: 1px solid rgba(231, 222, 208, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.sidebar__logo img {
  width: 64px;
  height: auto;
  opacity: 0.95;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.sidebar__logo:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.sidebar__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.lang-switch button {
  padding: 0;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}

.lang-switch button.is-active,
.lang-switch button:hover {
  color: var(--cream);
}

.topbar .lang-switch {
  flex-direction: row;
  gap: 8px;
  margin-right: 4px;
}

/* Hamburger ---------------------------------------------------------------- */

.burger {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.burger__bar {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  margin-left: -13px;
  background: var(--cream);
  transition: transform 0.36s var(--ease), opacity 0.2s linear;
}

.burger__bar:nth-child(1) {
  top: 14px;
}
.burger__bar:nth-child(2) {
  top: 20px;
  width: 18px;
  margin-left: -9px;
}
.burger__bar:nth-child(3) {
  top: 26px;
}

.burger.is-open .burger__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.is-open .burger__bar:nth-child(2) {
  opacity: 0;
}
.burger.is-open .burger__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Menu overlay
   -------------------------------------------------------------------------- */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: var(--sidebar-w);
  z-index: 70;
  display: flex;
  align-items: center;
  padding-left: clamp(32px, 9vw, 150px);
  background: rgba(10, 10, 9, 0.9);
  backdrop-filter: blur(9px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
}

.menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__list li {
  overflow: hidden;
}

.menu__link {
  display: inline-block;
  padding: 6px 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: translateY(115%);
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}

.menu.is-open .menu__link {
  transform: translateY(0);
}

.menu.is-open li:nth-child(1) .menu__link {
  transition-delay: 0.06s;
}
.menu.is-open li:nth-child(2) .menu__link {
  transition-delay: 0.12s;
}
.menu.is-open li:nth-child(3) .menu__link {
  transition-delay: 0.18s;
}

.menu__link:hover {
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Mobile top bar (hidden on desktop)
   -------------------------------------------------------------------------- */

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 14px 0 18px;
  background: rgba(10, 10, 9, 0.38);
  border-bottom: 1px solid rgba(231, 222, 208, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.topbar__logo img {
  width: 72px;
  height: auto;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   Home — horizontal filmstrip driven by vertical scroll (desktop / tablet)
   -------------------------------------------------------------------------- */

.panels {
  display: flex;
  width: 100vw;
  height: 100vh;
  margin-left: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  cursor: default;
}

.panels::-webkit-scrollbar {
  display: none;
}

.panel {
  position: relative;
  flex: 0 0 auto;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background-color: #0b0b0a;
  background-size: cover;
  background-position: center;
}

.panel:last-child {
  border-right: 0;
}

.panel--sports {
  background-image: url("../images/home/sports.jpg");
}

.panel--weddings {
  background-image: url("../images/home/weddings.jpg");
}

.panel--events {
  background-image: url("../images/home/events.jpg");
}

.panel--business {
  background-image: url("../images/home/business.jpg");
}

.panel--restaurants {
  background-image: url("../images/home/restaurants.jpg");
}

.panel--fashion {
  background-image: url("../images/home/fashion.jpg");
}

.panel--lifestyle {
  background-image: url("../images/home/lifestyle.jpg");
}

.panel--realestate {
  background-image: url("../images/home/realestate.jpg");
}

.panel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  background: transparent;
}

.panel__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 90% at 50% 50%,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(rgba(8, 8, 8, 0.28), rgba(8, 8, 8, 0.42));
}

.panel__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 100%;
  padding: 0 6vw;
  text-align: center;
  will-change: transform;
  transition: transform 0.45s var(--ease);
}

.panel__title {
  margin: 0;
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(38px, 7.4vw, 80px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 34px 0 36px rgba(0, 0, 0, 0.3);
}

.panel__title--sports {
  font-family: "Wallpoet", var(--mono);
  letter-spacing: 0.02em;
}

.panel__title--weddings {
  font-family: "Cinzel", "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.panel__title--events {
  font-family: "Teko", var(--sans);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.panel__title--business {
  font-family: "Zen Dots", var(--sans);
  letter-spacing: 0.04em;
}

.panel__title--restaurants {
  font-family: "Bebas Neue", var(--sans);
  letter-spacing: 0.06em;
}

.panel__title--fashion {
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 25px;
  text-indent: 25px;
}

.panel__title--lifestyle {
  font-family: "Teko", var(--sans);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.panel__title--realestate {
  font-family: "Wallpoet", var(--mono);
  font-size: clamp(28px, 5.6vw, 64px);
  letter-spacing: 0.04em;
}

/* Ghost button ------------------------------------------------------------- */

.ghost {
  display: inline-block;
  padding: 13px 30px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 2px solid var(--cream);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.ghost:hover {
  color: var(--ink);
  background: var(--cream);
}

.ghost--quiet {
  border-color: rgba(231, 222, 208, 0.35);
  color: var(--cream-dim);
}

.ghost--quiet:hover {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

/* --------------------------------------------------------------------------
   Marquee ticker
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  user-select: none;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee__group {
  display: flex;
  flex: 0 0 auto;
  padding-right: 0;
}

.marquee span {
  padding: 0 22px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --------------------------------------------------------------------------
   Inner page shell
   -------------------------------------------------------------------------- */

.page {
  min-height: 100vh;
  margin-left: var(--sidebar-w);
  background: var(--ink-deep);
  overflow-x: hidden;
  max-width: 100%;
}

.wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.lede {
  max-width: 46ch;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.85;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}

.arrow-link:hover {
  gap: 16px;
  border-color: var(--cream);
}

/* --------------------------------------------------------------------------
   Equipo
   -------------------------------------------------------------------------- */

.equipo {
  display: block;
  max-width: 1100px;
  padding: clamp(50px, 8vh, 96px) 0 clamp(40px, 7vh, 80px);
}

.equipo__intro {
  margin: 0 0 clamp(28px, 5vh, 44px);
}

.equipo__title {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 clamp(36px, 6vh, 56px);
  padding: 0;
  list-style: none;
}

.team-card {
  padding: 28px 24px;
  background: rgba(231, 222, 208, 0.03);
  border: 1px solid var(--line);
}

.team-card__name {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.team-card__role {
  margin: 0 0 14px;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card__bio {
  margin: 0;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
}

.equipo__body p {
  max-width: 52ch;
  margin: 0 0 20px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.95;
}

/* --------------------------------------------------------------------------
   Site footer
   -------------------------------------------------------------------------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__nav a {
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.site-footer__nav a:hover {
  color: var(--cream);
}

.site-footer--home {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  justify-content: flex-end;
  padding: 14px 22px 14px calc(var(--sidebar-w) + 22px);
  border-top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.site-footer--home p {
  pointer-events: auto;
  opacity: 0.7;
}

.home-hint {
  position: fixed;
  left: 50%;
  bottom: 52px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.home-hint.is-gone {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
}

.home-hint__text {
  margin: 0;
  padding: 8px 14px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(10, 10, 9, 0.48);
  border: 1px solid rgba(231, 222, 208, 0.28);
  backdrop-filter: blur(8px);
}

.home-hint__chev {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--cream);
  border-bottom: 1.5px solid var(--cream);
  transform: rotate(45deg);
  animation: hint-nudge-y 1.6s ease-in-out infinite;
}

@keyframes hint-nudge-y {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(45deg);
  }
}

/* --------------------------------------------------------------------------
   Coming soon
   -------------------------------------------------------------------------- */

body.is-soon {
  overflow: hidden;
}

.soon {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  margin-left: var(--sidebar-w);
  overflow: hidden;
  background: var(--ink-deep);
}

.soon__media {
  position: absolute;
  inset: -4%;
  background-color: #0b0b0a;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(0.75) contrast(1.05);
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  animation: soon-drift 22s ease-in-out infinite alternate;
}

.soon.is-ready .soon__media {
  opacity: 1;
}

.soon__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 50% 45%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.35), rgba(8, 8, 8, 0.62));
}

.soon__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.soon__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 34rem;
  padding: 0 7vw;
  text-align: center;
}

.soon__eyebrow,
.soon__badge,
.soon__title,
.soon__sub,
.soon__line,
.soon__actions {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.soon.is-ready .soon__eyebrow,
.soon.is-ready .soon__badge,
.soon.is-ready .soon__title,
.soon.is-ready .soon__sub,
.soon.is-ready .soon__line,
.soon.is-ready .soon__actions {
  opacity: 1;
  transform: none;
}

.soon.is-ready .soon__eyebrow { transition-delay: 0.08s; }
.soon.is-ready .soon__badge { transition-delay: 0.18s; }
.soon.is-ready .soon__title { transition-delay: 0.28s; }
.soon.is-ready .soon__sub { transition-delay: 0.4s; }
.soon.is-ready .soon__line { transition-delay: 0.52s; }
.soon.is-ready .soon__actions { transition-delay: 0.64s; }

.soon__eyebrow {
  margin: 0 0 14px;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.soon__badge {
  margin: 0 0 22px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.soon__title {
  margin: 0 0 18px;
  font-family: "Zen Dots", var(--sans);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.soon__sub {
  margin: 0;
  max-width: 36ch;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.85;
}

.soon__line {
  width: min(180px, 42vw);
  height: 1px;
  margin: 34px 0 36px;
  background: rgba(231, 222, 208, 0.18);
  overflow: hidden;
}

.soon__line span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--cream);
  transform: translateX(-120%);
}

.soon.is-ready .soon__line span {
  animation: soon-sweep 2.4s var(--ease) 0.7s infinite;
}

.soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@keyframes soon-drift {
  from {
    transform: scale(1.06) translate3d(-1.2%, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(1.2%, -1%, 0);
  }
}

@keyframes soon-sweep {
  0% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(280%);
  }
}

/* --------------------------------------------------------------------------
   Content categories (visual mood — not portfolio)
   -------------------------------------------------------------------------- */

.stories-hero {
  padding: clamp(56px, 10vh, 110px) 0 clamp(28px, 5vh, 48px);
  border-bottom: 1px solid var(--line);
}

.stories-hero__inner {
  max-width: 820px;
}

.stories-hero h1 {
  margin: 0 0 18px;
  font-family: "Zen Dots", var(--sans);
  font-size: clamp(28px, 4.8vw, 52px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: none;
}

.stories-hero__lede {
  margin: 0;
  max-width: 52ch;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.stories {
  padding: clamp(36px, 6vh, 72px) 0 20px;
}

.story-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(280px, 42vh, 460px);
  border: 1px solid rgba(231, 222, 208, 0.14);
  border-radius: 10px;
  background: #0b0b0a center / cover no-repeat;
  isolation: isolate;
  transition: transform 0.55s var(--ease), border-color 0.35s var(--ease);
}

.story-card--wide {
  min-height: clamp(340px, 56vh, 620px);
  margin-bottom: clamp(18px, 2.2vw, 28px);
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.story-card--span {
  grid-column: 1 / -1;
  min-height: clamp(300px, 44vh, 480px);
}

.story-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.88) contrast(1.05);
  background: transparent;
  z-index: 0;
}

.story-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.18) 0%,
      rgba(8, 8, 8, 0.22) 40%,
      rgba(8, 8, 8, 0.78) 100%
    ),
    radial-gradient(90% 70% at 50% 20%, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
  transition: opacity 0.45s var(--ease);
}

.story-card__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(22px, 3.5vw, 40px);
  transform: translateY(0);
  transition: transform 0.45s var(--ease);
}

.story-card__copy h2 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: none;
}

.story-card__copy p {
  margin: 0;
  max-width: 42ch;
  color: rgba(231, 222, 208, 0.72);
  font-family: var(--mono);
  font-size: clamp(11.5px, 1.2vw, 13px);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

@media (hover: hover) {
  .story-card:hover {
    border-color: rgba(231, 222, 208, 0.34);
    transform: translateY(-3px);
  }

  .story-card:hover .story-card__video {
    transform: scale(1.08);
    filter: saturate(1) contrast(1.08);
  }

  .story-card:hover .story-card__veil {
    opacity: 0.92;
  }

  .story-card:hover .story-card__copy {
    transform: translateY(-4px);
  }
}

.stories-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(48px, 8vh, 88px) 0 clamp(28px, 5vh, 40px);
  border-top: 1px solid rgba(231, 222, 208, 0.12);
  margin-top: clamp(36px, 6vh, 64px);
}

.stories-cta p {
  margin: 0;
  max-width: 36ch;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

a.story-card {
  color: inherit;
}

.story-card__more {
  display: inline-block;
  margin-top: 14px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}

/* --------------------------------------------------------------------------
   Sports case (SD Oyonesa)
   -------------------------------------------------------------------------- */

.work-hero {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: min(88vh, 860px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.work-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.88) contrast(1.05);
}

.work-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.18) 0%,
      rgba(8, 8, 8, 0.12) 38%,
      rgba(8, 8, 8, 0.82) 100%
    ),
    radial-gradient(80% 60% at 50% 20%, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

.work-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 56px)
    clamp(36px, 6vh, 64px);
}

.work-hero__title {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.32em;
  row-gap: 0.02em;
  width: 100%;
  margin: 0 0 16px;
  font-family: "Wallpoet", var(--mono);
  font-size: clamp(36px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.work-hero__lede {
  margin: 0 0 28px;
  max-width: 36ch;
  color: rgba(231, 222, 208, 0.82);
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.8;
}

.work-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.work-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(48px, 8vh, 88px) 0 clamp(12px, 2vh, 24px);
}

.work-intro__copy,
.work-caps {
  min-width: 0;
}

.work-intro h2,
.work-intro__copy p,
.work-hero__lede,
.work-head p,
.work-head h2 {
  overflow-wrap: break-word;
}

.work-intro h2 {
  margin: 0 0 16px;
  max-width: 22ch;
  font-family: var(--sans);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.work-intro__copy p:last-child {
  margin: 0;
  max-width: 36ch;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.9;
}

.work-caps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.work-caps li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.work-caps span {
  font-family: "Wallpoet", var(--mono);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-caps small {
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-block {
  padding: clamp(40px, 7vh, 80px) 0 0;
  scroll-margin-top: 28px;
  min-width: 0;
}

.work-head {
  max-width: 52ch;
  margin-bottom: clamp(22px, 4vh, 36px);
}

.work-head h2 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.work-head p:last-child {
  margin: 0;
  max-width: 36ch;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.8;
}

.film {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: min(78vh, 820px);
  background: #111;
  border: 1px solid rgba(231, 222, 208, 0.16);
}

.film video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  background: #111;
}

.film__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(8, 8, 8, 0.28);
  border: 0;
  cursor: pointer;
  transition: background-color 0.35s var(--ease);
}

.film__play:hover {
  background: rgba(8, 8, 8, 0.12);
}

.film__play-icon {
  position: relative;
  width: 68px;
  height: 68px;
  border: 2px solid var(--cream);
  border-radius: 50%;
}

.film__play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--cream);
  transform: translate(-40%, -50%);
}

.film.is-playing .film__play {
  opacity: 0;
  pointer-events: none;
}

.reels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.reel {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  background: #111;
  border: 1px solid rgba(231, 222, 208, 0.16);
  cursor: pointer;
}

.reel video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.reel__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 48px 14px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  pointer-events: none;
}

.reel__tag {
  padding: 3px 7px;
  font-size: 9px;
  letter-spacing: 0.18em;
  border: 1px solid rgba(231, 222, 208, 0.45);
}

@media (hover: hover) {
  .reel {
    transition: transform 0.45s var(--ease), border-color 0.35s var(--ease);
  }

  .reel:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 222, 208, 0.4);
  }
}

.stills {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(12px, 1.6vw, 20px);
}

.stills__item {
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(231, 222, 208, 0.14);
}

.stills__item img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.stills__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  max-height: 620px;
}

.stills__item:not(.stills__item--wide) {
  aspect-ratio: 4 / 3;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 6, 5, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__video {
  width: min(100%, 420px);
  max-height: min(88vh, 860px);
  background: #000;
}

.lightbox__close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}

body.is-lightbox {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Proyectos (legacy carousel — unused on content page)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 46vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(11px) brightness(0.4) saturate(0.6);
  transform: scale(1.12);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: "Zen Dots", var(--sans);
  font-size: clamp(28px, 4.6vw, 54px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero p {
  margin: 0;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cat {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.6fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  padding: clamp(52px, 9vh, 104px) 0;
  border-bottom: 1px solid rgba(231, 222, 208, 0.12);
  scroll-margin-top: 40px;
}

.cat__title {
  margin: 0 0 18px;
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.cat--sports .cat__title {
  font-family: "Wallpoet", var(--mono);
}

.cat--musical .cat__title {
  font-family: "Teko", var(--sans);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cat--fashion .cat__title {
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 14px;
  text-indent: 14px;
}

.cat__desc {
  max-width: 34ch;
  margin: 0 0 26px;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.9;
}

.cat__controls {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.arrow-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--cream);
  font-size: 14px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.arrow-btn:hover {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}

.arrow-btn[disabled] {
  opacity: 0.3;
  cursor: default;
}

.arrow-btn[disabled]:hover {
  color: var(--cream);
  background: none;
  border-color: var(--line);
}

/* Carousel ----------------------------------------------------------------- */

.carousel__track {
  display: flex;
  gap: 20px;
  padding-bottom: 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 auto;
  width: clamp(210px, 22vw, 268px);
  scroll-snap-align: start;
}

.card__media {
  position: relative;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: #1b1b19;
  border: 1px solid rgba(231, 222, 208, 0.14);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.04);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}

.card:hover .card__media img {
  filter: grayscale(0) contrast(1.06);
  transform: scale(1.06);
}

.card__title {
  margin: 16px 0 5px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card__sub {
  margin: 0;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 26px;
}

.dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(231, 222, 208, 0.3);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.dots button.is-active {
  background: var(--cream);
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   Contacto
   -------------------------------------------------------------------------- */

.contacto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  padding: clamp(50px, 8vh, 96px) 0 clamp(40px, 7vh, 80px);
}

.contacto__intro {
  max-width: 40ch;
  margin: 0 0 34px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.9;
}

.form {
  display: grid;
  gap: 20px;
  max-width: 520px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 14px;
  background: rgba(231, 222, 208, 0.03);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  background: rgba(231, 222, 208, 0.06);
  border-color: var(--cream);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(231, 222, 208, 0.32);
}

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--cream-dim);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
}

.check input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: var(--cream);
}

.check a {
  border-bottom: 1px solid var(--line);
}

.form__status {
  margin: 0;
  min-height: 18px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
}

.contacto__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contacto__figure img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .cat {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cat__controls {
    margin-top: 22px;
  }

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

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

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

@media (max-width: 760px) {
  :root {
    --sidebar-w: 0px;
    --topbar-h: 58px;
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .sidebar {
    display: none;
  }

  .topbar {
    display: flex;
    height: calc(var(--topbar-h) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    padding-left: max(14px, env(safe-area-inset-left, 0px));
  }

  .topbar__logo img {
    width: 64px;
  }

  .topbar .lang-switch button {
    min-width: 36px;
    min-height: 36px;
    font-size: 11px;
  }

  .menu {
    top: 0;
    left: 0;
    align-items: flex-start;
    padding-top: calc(var(--topbar-h) + env(safe-area-inset-top, 0px) + 10vh);
    padding-right: 24px;
    padding-bottom: max(40px, env(safe-area-inset-bottom, 0px));
    padding-left: 24px;
  }

  .menu__link {
    font-size: clamp(28px, 9vw, 36px);
  }

  body.is-home {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.is-soon {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .soon {
    margin-left: 0;
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--topbar-h) + env(safe-area-inset-top, 0px)) 0
      calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .soon__title {
    font-size: clamp(26px, 8vw, 38px);
  }

  .soon__actions {
    width: 100%;
  }

  .soon__actions .ghost {
    width: 100%;
    text-align: center;
  }

  .page {
    margin-left: 0;
    padding-top: calc(var(--topbar-h) + env(safe-area-inset-top, 0px));
  }

  .panels {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: 0;
    overflow: visible;
    touch-action: auto;
    cursor: auto;
  }

  .panel {
    width: 100%;
    max-width: 100%;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    border-right: 0;
  }

  .panel__video {
    object-fit: cover;
    object-position: center center;
    background: transparent;
    transform: translateZ(0);
  }

  .panel__inner {
    gap: 26px;
    justify-content: center;
    padding: calc(var(--topbar-h) + env(safe-area-inset-top, 0px) + 12px)
      7vw
      calc(52px + env(safe-area-inset-bottom, 0px));
    transform: none !important;
  }

  .panel__title {
    font-size: clamp(34px, 11vw, 52px);
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  }

  .panel__title--fashion {
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .panel__title--weddings {
    letter-spacing: 0.12em;
  }

  .panel__title--restaurants,
  .panel__title--realestate {
    font-size: clamp(26px, 9vw, 42px);
  }

  .panel__title--lifestyle {
    letter-spacing: 0.08em;
  }

  .ghost {
    padding: 12px 26px;
    font-size: 12px;
  }

  .site-footer--home {
    left: 0;
    justify-content: center;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
  }

  .site-footer--home p {
    font-size: 10px;
    opacity: 0.55;
  }

  .home-hint {
    bottom: calc(44px + env(safe-area-inset-bottom, 0px));
  }

  .marquee {
    padding: 11px 0;
  }

  .marquee__group span {
    font-size: 12px;
  }

  .stories-hero {
    padding: 42px 0 24px;
  }

  .stories-hero h1 {
    font-size: clamp(26px, 8vw, 36px);
  }

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

  .story-card,
  .story-card--wide,
  .story-card--span {
    min-height: 62vw;
    max-height: 420px;
    border-radius: 8px;
  }

  .story-card--wide {
    min-height: 72vw;
    max-height: 480px;
  }

  .stories-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .work-hero {
    min-height: min(64svh, 520px);
    place-items: end start;
  }

  .work-hero__inner {
    padding: 28px max(18px, env(safe-area-inset-right, 0px))
      calc(28px + env(safe-area-inset-bottom, 0px))
      max(18px, env(safe-area-inset-left, 0px));
  }

  .work-hero__title {
    flex-direction: column;
    width: 100%;
    font-size: clamp(30px, 10.6vw, 44px);
  }

  .work-intro {
    grid-template-columns: 1fr;
    padding-top: 36px;
    gap: 28px;
  }

  .work-block {
    scroll-margin-top: calc(var(--topbar-h) + env(safe-area-inset-top, 0px) + 12px);
  }

  .reels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .reel {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .reel__meta {
    padding: 36px 10px 10px;
    font-size: 10px;
    gap: 5px;
  }

  .reel__tag {
    font-size: 8px;
  }

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

  .stills__item--wide {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .lightbox {
    padding: 12px;
    padding-top: calc(58px + env(safe-area-inset-top, 0px));
  }

  .lightbox__video {
    width: min(100%, 92vw);
    max-height: 78vh;
  }

  .hero h1 {
    font-size: clamp(26px, 8vw, 40px);
  }

  .wrap {
    padding-left: max(18px, env(safe-area-inset-left, 0px));
    padding-right: max(18px, env(safe-area-inset-right, 0px));
    overflow-x: hidden;
  }

  .cat {
    padding: 42px 0 48px;
    gap: 28px;
  }

  .cat__title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .cat__desc {
    font-size: 13px;
    line-height: 1.75;
  }

  .carousel {
    margin-right: -18px;
  }

  .carousel__track {
    gap: 14px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .card {
    width: min(72vw, 260px);
  }

  .card__media {
    aspect-ratio: 3 / 4;
  }

  .dots {
    margin-top: 18px;
  }

  .equipo {
    padding: 42px 0 48px;
    max-width: none;
  }

  .equipo__body p {
    font-size: 13.5px;
    line-height: 1.85;
  }

  .contacto {
    padding: 42px 0 48px;
    gap: 36px;
  }

  .contacto__figure {
    max-width: 280px;
    margin: 0 auto;
  }

  .field input,
  .field textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer__nav {
    gap: 14px;
  }
}

@media (max-width: 380px) {
  .topbar__logo img {
    width: 56px;
  }

  .panel__title {
    font-size: clamp(30px, 10.5vw, 40px);
  }

  .card {
    width: 78vw;
  }
}

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

  .marquee__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .home-hint__chev {
    animation: none;
  }

  .soon__media {
    animation: none;
    transform: scale(1.04);
  }

  .soon__eyebrow,
  .soon__badge,
  .soon__title,
  .soon__sub,
  .soon__line,
  .soon__actions {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .soon__line span {
    animation: none;
    transform: none;
    width: 100%;
    opacity: 0.45;
  }
}
