/* ==========================================================================
   Comidas de Empresa Alicante — Styles
   ========================================================================== */

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

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

:root {
  --white: #f5f5f2;
  --off-white: #efefeb;
  --light-gray: #ddddda;
  --mid-gray: #9a9a96;
  --dark-gray: #5d5d58;
  --charcoal: #1a1a1a;
  --black: #0d0d0e;

  --text-dark: #111111;
  --text-mid: #5f5f5b;
  --text-light: #9a9a96;
  --line: rgba(0,0,0,0.08);
  --line-soft: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* --- Nav --- */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

#mainNav.scrolled {
  background: rgba(13,13,14,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s;
}

#mainNav.scrolled .nav-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.nav-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.nav-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

#mainNav.scrolled .nav-cta { color: var(--white); border-color: rgba(255,255,255,0.22); }

@media (max-width: 900px) {
  .nav-right {
    gap: 0.8rem;
  }

  .nav-link {
    display: none;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: var(--black);
}

.hero-left {
  background: linear-gradient(180deg, #111111 0%, #0b0b0c 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 5rem;
  z-index: 2;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03), transparent 35%);
  pointer-events: none;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 14%; bottom: 14%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
  z-index: 3;
}

.hero-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 0.9s ease both;
  position: relative;
  top: 18px;
}

.hero-eyebrow span {
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.38);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.26);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-tagline em {
  font-style: italic;
  color: rgba(255,255,255,0.26);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: fadeUp 0.9s 0.3s ease both;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  max-width: 320px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary::after { content: '→'; font-size: 1rem; transition: transform 0.2s; }
.btn-primary:hover { background: #dbdbd7; transform: translateX(3px); }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: transparent;
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  max-width: 320px;
  transition: border-color 0.25s, color 0.25s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.9); color: white; }

/* --- Hero Right / Image --- */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.02) brightness(0.82);
  opacity: 0;
  transform: scale(1);
  animation: zoomHero 12s ease infinite alternate;
  transition: opacity 1.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.08) 60%);
}

@keyframes zoomHero {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

.hero-contact-overlay {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  animation: fadeUp 1s 0.5s ease both;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  background: rgba(17,17,17,0.48);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-left: 2px solid rgba(255,255,255,0.18);
  transition: background 0.2s, border-color 0.2s;
}

.contact-line:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.42);
}

.contact-line svg {
  width: 13px; height: 13px;
  stroke: rgba(255,255,255,0.86); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* --- Hero Video Section --- */
.hero-video {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,0.16), transparent 40%),
    radial-gradient(circle at 90% 84%, rgba(214,202,182,0.16), transparent 42%),
    linear-gradient(130deg, #34373c 0%, #3d4147 52%, #2f3339 100%);
}

.hero-video-left {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(168deg, #2f3338 0%, #262a2f 56%, #2f3338 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw 2.6rem;
  z-index: 2;
}

.hero-copy {
  position: relative;
  z-index: 2;
  transform: translateY(24px);
  background: transparent;
  border-left: 2px solid rgba(255,255,255,0.36);
  backdrop-filter: none;
  padding: 1rem 0 1rem 1.6rem;
  max-width: 680px;
  box-shadow: none;
}

.hero-video-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.07) 0 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.12;
  pointer-events: none;
}

/* Mobile hero background carousel (hidden on desktop) */
.hero-mobile-bg {
  display: none;
}

.hero-video-left::after {
  content: '';
  position: absolute;
  right: 2.8rem;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
  z-index: 3;
}

.hero-video-right {
  position: relative;
  overflow: hidden;
  background: #2b2f34;
  margin: 0.7rem 0.8rem 0.7rem 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 22px 44px rgba(0,0,0,0.2);
}

.hero-video-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  mix-blend-mode: soft-light;
  z-index: 2;
  pointer-events: none;
  animation: heroLightSweep 14s ease-in-out infinite;
}

.hero-video-right::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.26);
  pointer-events: none;
  z-index: 4;
}

.hero-video-right video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: grayscale(100%) contrast(1.08) brightness(0.92);
}

.hero-media {
  position: absolute;
  inset: 0;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.6s ease, transform 6.8s ease;
}

.hero-media.active {
  opacity: 1;
  transform: scale(1.04);
}

.hero-media-img {
  background-size: cover;
  background-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10,12,15,0.18) 0%, rgba(10,12,15,0.04) 55%),
    radial-gradient(circle at 22% 78%, rgba(214,202,182,0.14), transparent 48%);
  pointer-events: none;
  z-index: 3;
  animation: heroOverlayPulse 12s ease-in-out infinite;
}

.hero-video-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-video-title em {
  font-style: italic;
  color: rgba(255,255,255,0.26);
}

.hero-video-left .hero-eyebrow,
.hero-video-left .hero-sub,
.hero-video-left .hero-btns {
  animation: none;
}

.hero-variant-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}

.hero-main-title {
  margin-top: 1.1rem;
  font-size: clamp(2.35rem, 3.9vw, 4.35rem);
  line-height: 1.02;
}

.hero-hint {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
  margin: -1rem 0 1.1rem;
  max-width: 460px;
}

.hero-tagline {
  font-size: clamp(1.85rem, 3.3vw, 3.05rem);
  line-height: 1.08;
  margin-bottom: 1.15rem;
}

.hero-sub {
  margin-bottom: 1.45rem;
}

.hero-proofbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

/* --- Hero style options --- */
.hero-style--option-a .hero-copy {
  border-left-color: rgba(255,255,255,0.4);
}

.hero-video.hero-style--option-a {
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.06), transparent 40%),
    linear-gradient(180deg, #111111 0%, #0d0d0e 100%);
}

.hero-video.hero-style--option-a .hero-video-left {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    linear-gradient(180deg, #111111 0%, #0b0b0c 100%);
}

.hero-video.hero-style--option-a .hero-video-right {
  background: #111111;
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
}

@media (min-width: 1024px) {
  .home-main .hero-video.hero-style--option-a {
    min-height: 95vh;
  }

  .home-main .hero-video.hero-style--option-a .hero-video-left {
    padding: 0 5vw 2.5rem;
  }

  .home-main .hero-video.hero-style--option-a .hero-copy {
    transform: translateY(18px);
    padding: 1rem 0 1rem 1.45rem;
    max-width: 670px;
  }

  .home-main .hero-video.hero-style--option-a .hero-main-title {
    font-size: clamp(2.2rem, 3.45vw, 3.95rem);
    margin-top: 1rem;
  }

  .home-main .hero-video.hero-style--option-a .hero-tagline {
    font-size: clamp(1.75rem, 2.55vw, 2.65rem);
    margin-bottom: 1.05rem;
  }

  .home-main .hero-video.hero-style--option-a .hero-sub {
    margin-bottom: 1.1rem;
  }
}

.hero-style--option-b {
  background:
    radial-gradient(circle at 92% 10%, rgba(245,236,224,0.16), transparent 40%),
    radial-gradient(circle at 7% 92%, rgba(255,255,255,0.14), transparent 44%),
    linear-gradient(130deg, #3f4247 0%, #4a4e55 52%, #373b40 100%);
}

.hero-style--option-b .hero-video-left {
  background:
    linear-gradient(180deg, rgba(245,236,224,0.2), rgba(245,236,224,0.04)),
    linear-gradient(168deg, #43474d 0%, #31353b 56%, #383d43 100%);
}

.hero-style--option-b .hero-copy {
  border-left: none;
  border-top: 1px solid rgba(255,255,255,0.36);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 1.1rem 0;
}

.hero-style--option-b .hero-video-right {
  border-radius: 20px;
}

.hero-style--option-c {
  background:
    linear-gradient(130deg, #2e3136 0%, #3a3e44 50%, #2d3035 100%);
}

.hero-style--option-c .hero-video-left {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0 1px, transparent 1px),
    linear-gradient(168deg, #2f3338 0%, #262a2f 56%, #2d3137 100%);
  background-size: 24px 24px, 24px 24px, auto;
}

.hero-style--option-c .hero-copy {
  border-left: none;
  padding-left: 0;
}

.hero-style--option-c .hero-main-title {
  font-size: clamp(2.2rem, 3.7vw, 4rem);
}

.hero-style--option-c .hero-proofbar {
  gap: 0.8rem;
}

.hero-style--option-c .hero-proofbar span {
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,0.28);
  padding-top: 0.45rem;
}

.hero-proofbar span {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.82);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 0.24rem 0;
  backdrop-filter: none;
  background: transparent;
}

.hero-video--executive .hero-video-left {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(166deg, #30343a 0%, #272b31 100%);
}

.hero-video--executive .hero-proofbar span:first-child {
  border-color: rgba(255,255,255,0.32);
  color: rgba(255,255,255,0.86);
}

.hero-video--signature .hero-video-left {
  background:
    linear-gradient(180deg, rgba(242,233,217,0.13), rgba(242,233,217,0.05)),
    linear-gradient(168deg, #353941 0%, #2a2e35 100%);
}

.hero-video--signature .hero-variant-kicker {
  color: rgba(255,255,255,0.82);
}

.hero-video--signature .hero-tagline em {
  color: rgba(255,255,255,0.34);
}

.hero-video--minimal .hero-tagline {
  display: none;
}

.hero-video--minimal .hero-sub {
  margin-bottom: 1.8rem;
}

.hero-video--minimal .hero-proofbar span {
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.56);
}

.hero-video--minimal .hero-proofbar span::after {
  content: '•';
  margin-left: 0.55rem;
  color: rgba(255,255,255,0.32);
}

.hero-video--minimal .hero-proofbar span:last-child::after {
  display: none;
}

/* Option C hard overrides: intentionally distinct look */
.hero-video.hero-style--option-c {
  grid-template-columns: 1fr 1fr;
  min-height: 84vh;
  background:
    linear-gradient(130deg, #f0ede6 0%, #e6e1d8 54%, #d8d2c7 100%);
}

.hero-video.hero-style--option-c .hero-video-left {
  background: transparent;
  padding: 0 4.6vw 2.1rem;
}

.hero-video.hero-style--option-c .hero-copy {
  transform: translateY(6px);
  border-left: none;
  border-top: 1px solid rgba(17, 17, 17, 0.25);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  padding: 1.1rem 0;
  max-width: 640px;
}

.hero-video.hero-style--option-c .hero-eyebrow,
.hero-video.hero-style--option-c .hero-variant-kicker,
.hero-video.hero-style--option-c .hero-hint,
.hero-video.hero-style--option-c .hero-sub,
.hero-video.hero-style--option-c .hero-tagline em,
.hero-video.hero-style--option-c .hero-proofbar span {
  color: rgba(17, 17, 17, 0.72);
}

.hero-video.hero-style--option-c .hero-main-title {
  color: #131313;
  margin-top: 0.6rem;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.hero-video.hero-style--option-c .hero-proofbar span {
  border: none;
  border-top: 1px solid rgba(17, 17, 17, 0.22);
  padding-top: 0.38rem;
}

.hero-video.hero-style--option-c .btn-primary {
  background: #171717;
  color: #f5f5f2;
}

.hero-video.hero-style--option-c .btn-primary:hover {
  background: #303030;
}

.hero-video.hero-style--option-c .btn-ghost {
  color: rgba(17, 17, 17, 0.7);
  border-color: rgba(17, 17, 17, 0.26);
}

.hero-video.hero-style--option-c .btn-ghost:hover {
  color: #111;
  border-color: rgba(17, 17, 17, 0.56);
}

.hero-video.hero-style--option-c .hero-video-right {
  margin: 0.6rem 0.8rem 0.6rem 0;
  border-radius: 2px;
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

.hero-video.hero-style--option-c .hero-video-right::after {
  inset: 8px;
  border-color: rgba(255,255,255,0.46);
}

.hero-video.hero-style--option-c .hero-video-right::before {
  background: linear-gradient(140deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}

.hero-video.hero-style--option-c .hero-video-right video,
.hero-video.hero-style--option-c .hero-media {
  filter: grayscale(100%) contrast(1.12) brightness(0.98);
}

.hero-video.hero-style--option-c .hero-video-overlay {
  background: linear-gradient(120deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.02) 65%);
}

@keyframes heroMediaFloat {
  0%, 100% {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.04) translate3d(-10px, -8px, 0);
  }
}

@keyframes heroVideoFloat {
  0%, 100% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.07) translate3d(-10px, -6px, 0);
  }
}

@keyframes heroOverlayPulse {
  0%, 100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes heroLightSweep {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.36;
  }
  50% {
    transform: translate3d(-20px, 14px, 0);
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-right::before,
  .hero-video-right video,
  .hero-media.active,
  .hero-video-overlay {
    animation: none !important;
  }
}

/* --- Tagline Strip --- */
.tagline-strip {
  background: #5d5d58;
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}

.tagline-strip::before,
.tagline-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 2;
}

.tagline-strip::before {
  left: 0;
  background: linear-gradient(to right, #5d5d58, rgba(93,93,88,0));
}

.tagline-strip::after {
  right: 0;
  background: linear-gradient(to left, #5d5d58, rgba(93,93,88,0));
}

.tagline-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.tagline-strip:hover .tagline-track {
  animation-play-state: paused;
}

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

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

.tag-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.tag-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Servicios --- */
.servicios {
  background: var(--white);
  padding: 7rem 6vw;
}

.section-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.section-tag::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--text-light);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.serv-card {
  background: var(--white);
  padding: 3.5rem 2.8rem;
  transition: background 0.35s, transform 0.25s;
  cursor: default;
}

.serv-card:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.serv-card:hover .serv-num { color: rgba(255,255,255,0.92); }
.serv-card:hover .serv-title { color: var(--white); }
.serv-card:hover .serv-subtitle { color: var(--white); }
.serv-card:hover .serv-desc { color: rgba(255,255,255,0.58); }

.serv-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  color: #d7d7d3;
  line-height: 1;
  margin-bottom: 1.8rem;
  transition: color 0.35s;
}

.serv-title {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  margin-bottom: 0.9rem;
  line-height: 1.25;
  transition: color 0.35s;
}

.serv-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.78;
  transition: color 0.35s;
}

.serv-subtitle {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.6rem;
  transition: color 0.35s;
}

/* --- Proceso --- */
.proceso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.proceso-img {
  position: relative;
  overflow: hidden;
}

.proceso-carousel {
  position: absolute;
  inset: 0;
}

.proceso-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.02) brightness(0.74);
  opacity: 0;
  transition: opacity 1.6s ease;
}

.proceso-slide.active {
  opacity: 1;
}

.proceso-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.proceso-content {
  background: var(--black);
  padding: 5rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proceso-content .section-tag { color: rgba(255,255,255,0.45); }
.proceso-content .section-tag::after { background: rgba(255,255,255,0.18); }

.proceso-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3rem;
}

.paso {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}

.paso:last-child { border-bottom: none; }

.paso-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  min-width: 2rem;
  padding-top: 0.15rem;
}

.paso-body strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.paso-body p {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
}

/* --- Form Section --- */
.form-section {
  background: var(--white);
  padding: 7rem 6vw;
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 8vw;
  align-items: start;
}

.form-aside {
  display: flex;
  flex-direction: column;
}

.form-aside .section-tag {
  margin-bottom: 2rem;
}

.form-aside h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.form-aside > p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 0;
}

.aside-data {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.aside-data a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.aside-data a:hover { color: var(--black); }

.aside-data svg {
  width: 15px; height: 15px;
  stroke: var(--black); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* --- Form Elements --- */
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field { display: flex; flex-direction: column; gap: 0.42rem; }
.field.full { grid-column: 1 / -1; }

label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
}

input:not([type="checkbox"]), select, textarea {
  font-family: 'Syne', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text-dark);
  padding: 0.8rem 0;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--black);
}

input::placeholder, textarea::placeholder { color: var(--text-light); }

textarea {
  resize: vertical;
  min-height: 110px;
  border: 1px solid var(--light-gray);
  padding: 1rem;
  background: #fff;
}

textarea:focus { border-color: var(--black); }

.select-wrap { position: relative; }
.select-wrap select { width: 100%; background: transparent; cursor: pointer; }
.select-wrap::after {
  content: '↓';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--black); pointer-events: none; font-size: 0.8rem;
}

.field-privacy {
  margin-top: 0.2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--charcoal);
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--text-dark);
  text-decoration: underline;
}

.form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.8rem;
}

.form-footer small {
  font-size: 0.74rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 320px;
  line-height: 1.6;
}

.btn-submit {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-submit:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.form-success {
  display: none;
  padding: 3rem 2rem;
  border-left: 3px solid var(--black);
  background: rgba(0,0,0,0.03);
  text-align: center;
}

.form-success-check {
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
}

.form-success-check circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: checkCircle 0.6s ease forwards;
}

.form-success-check path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: checkMark 0.4s 0.5s ease forwards;
}

@keyframes checkCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes checkMark {
  to { stroke-dashoffset: 0; }
}

.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-success p { font-size: 0.88rem; font-weight: 300; color: var(--text-mid); }

/* --- Sobre Mi (integrado en form-aside) --- */
.form-aside-who {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.form-aside-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%) contrast(1.02) brightness(0.85);
  flex-shrink: 0;
}

.form-aside-bio strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-aside-bio p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.sobre-mi-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.sobre-mi-link:hover {
  border-color: var(--text-dark);
}

/* --- Site Preview --- */
.site-preview {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 3rem;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s;
}

.site-preview:hover {
  border-color: var(--mid-gray);
}

.site-preview-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}

.site-preview-dots {
  display: flex;
  gap: 4px;
}

.site-preview-dots::before,
.site-preview-dots::after,
.site-preview-dots {
  position: relative;
}

.site-preview-dots::before {
  content: '● ● ●';
  font-size: 7px;
  color: var(--light-gray);
  letter-spacing: 2px;
}

.site-preview-url {
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.site-preview-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 80px;
  overflow: hidden;
  pointer-events: none;
}

.site-preview-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 400%;
  border: none;
  transform: scale(0.25);
  transform-origin: top left;
  pointer-events: none;
}

/* --- Isabela Strip --- */
.isabela-strip {
  background: #5d5d58;
  padding: 4rem 6vw;
}

.isabela-strip-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.isabela-strip-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.02) brightness(0.85);
  flex-shrink: 0;
}

.isabela-strip .section-tag {
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.isabela-strip .section-tag::after {
  background: rgba(255,255,255,0.18);
}

.isabela-strip-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.isabela-strip-text p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.isabela-strip .sobre-mi-link {
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
}

.isabela-strip .sobre-mi-link:hover {
  border-color: var(--white);
}

/* --- Footer --- */
footer {
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,0.03), transparent 38%),
    linear-gradient(180deg, #111111 0%, #0d0d0e 100%);
  padding: 3.8rem 6vw 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-shell {
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: 2.8rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-brand-kicker {
  font-size: 0.67rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
  margin-bottom: 1.05rem;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  max-width: 13ch;
  margin-bottom: 1rem;
}

.footer-brand-copy {
  max-width: 34ch;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.66);
}

.footer-col h3 {
  font-size: 0.68rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
  margin-bottom: 1.1rem;
}

.footer-col-list {
  display: grid;
  gap: 0.9rem;
}

.footer-col-list a,
.footer-col-list p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
}

.footer-col-list a {
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.footer-col-list a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-credit {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.36);
  text-align: center;
  margin-top: 1.3rem;
}

.footer-credit a {
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover { color: var(--white); }

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, bottom 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  padding: 0;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.back-to-top .progress-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.back-to-top .progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3;
}

.back-to-top .progress-circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 131.95;
  stroke-dashoffset: 131.95;
  transition: stroke-dashoffset 0.05s linear;
}

.back-to-top .arrow-icon {
  position: relative;
  z-index: 1;
  width: 38%;
  height: 38%;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes clusterPillIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { min-height: 100vh; padding: 8rem 6vw 5rem; }
  .hero-video { grid-template-columns: 1fr; }
  .hero-video-right { display: none; }
  .hero-video-left {
    min-height: 100vh;
    padding: 7.2rem 6vw 4.2rem;
    background:
      linear-gradient(180deg, rgba(245,245,242,0.08), rgba(245,245,242,0.02)),
      linear-gradient(165deg, #24272b 0%, #1b1e22 100%);
  }
  .hero-video.hero-style--option-a .hero-video-left {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
      linear-gradient(180deg, #111111 0%, #0b0b0c 100%);
  }
  .hero-video-left::before { display: none; }
  .hero-video-left::after { display: none; }
  .hero-mobile-bg {
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    z-index: 0;
    overflow: hidden;
  }
  .hero-mobile-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: grayscale(100%) contrast(1.02) brightness(0.45);
    opacity: 0;
    transition: opacity 1.6s ease;
  }
  .hero-mobile-slide.active {
    opacity: 1;
  }
  .hero-mobile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, var(--charcoal) 100%);
    pointer-events: none;
  }
  .hero-video-left .hero-eyebrow,
  .hero-video-left h1,
  .hero-video-left .hero-variant-kicker,
  .hero-video-left .hero-tagline,
  .hero-video-left .hero-sub,
  .hero-video-left .hero-hint,
  .hero-video-left .hero-btns {
    position: relative;
    z-index: 2;
  }
  .hero-copy {
    transform: translateY(14px);
    background: none;
    border: none;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
  }
  .hero-floating-note { display: none; }
  .hero-proofbar { position: relative; z-index: 2; }
  .proceso { grid-template-columns: 1fr; }
  .proceso-img { min-height: 280px; }
  .servicios-grid { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; gap: 3rem; }
  .isabela-strip-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  form { grid-template-columns: 1fr; }
  footer { padding: 2rem 5vw 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-brand h2 { max-width: 100%; font-size: clamp(1.8rem, 10vw, 2.4rem); }
  .footer-brand-copy { max-width: 100%; }
  .footer-credit { font-size: 0.62rem; }
  .isabela-strip { padding: 3rem 5vw; }
  .isabela-strip-photo { width: 90px; height: 90px; }
  .isabela-strip-text h2 { font-size: 1.2rem; }
  .isabela-strip-text p { font-size: 0.75rem; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-tagline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-hint { margin: -1.2rem 0 1.4rem; font-size: 0.7rem; }
  .hero-main-title { margin-top: 1.2rem; }
  .hero-copy { transform: translateY(8px); }
  .hero-eyebrow { top: 10px; }
}

/* --- Minimal section variants --- */
.benefits-minimal,
.cluster-minimal,
.faq-minimal {
  background: var(--white);
  padding: 5.2rem 6vw;
}

.benefits-shell {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 2.8rem 0;
}

.benefits-title,
.cluster-title,
.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.benefits-intro {
  max-width: 720px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-size: 0.84rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
  padding: 0.6rem 0;
  position: relative;
  padding-left: 1rem;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.02rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark-gray);
}

.cluster-minimal,
.faq-minimal {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.cluster-minimal .section-tag,
.faq-minimal .section-tag {
  margin-bottom: 1.3rem;
}

.cluster-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 2rem;
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
}

.cluster-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.cluster-link:hover {
  color: var(--black);
}

.cluster-arrow {
  font-size: 0.95rem;
  color: var(--text-light);
}

.faq-minimal-list {
  border-top: 1px solid var(--light-gray);
}

.faq-minimal details {
  border-bottom: 1px solid var(--light-gray);
  padding: 0.95rem 0;
}

.faq-minimal summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
  padding-right: 1.8rem;
  position: relative;
}

.faq-minimal summary::-webkit-details-marker {
  display: none;
}

.faq-minimal summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -1px;
  color: var(--text-light);
  font-size: 1rem;
}

.faq-minimal details[open] summary::after {
  content: '−';
}

.faq-minimal p {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 760px;
}

@media (max-width: 900px) {
  .benefits-list,
  .cluster-links {
    grid-template-columns: 1fr;
  }

  .benefits-minimal,
  .cluster-minimal,
  .faq-minimal {
    padding: 3.2rem 6vw;
  }

  .hero-video.hero-style--option-c {
    min-height: 92vh;
    background: linear-gradient(180deg, #ece8df 0%, #ddd8ce 100%);
  }

  .hero-video.hero-style--option-c .hero-copy {
    border-top: 1px solid rgba(17, 17, 17, 0.2);
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
    padding: 0.75rem 0;
  }
}

/* --- Redesign 2026: editorial sections --- */
.editorial-core {
  padding: 6rem 6vw 4.6rem;
  background: linear-gradient(180deg, #f5f5f2 0%, #efefeb 100%);
  position: relative;
  overflow: hidden;
}

.editorial-core::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
  animation: editorialGlow 16s ease-in-out infinite;
}

.editorial-core::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  left: -170px;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 93, 88, 0.09) 0%, rgba(93, 93, 88, 0) 70%);
  pointer-events: none;
  animation: editorialGlow 20s ease-in-out infinite reverse;
}

.editorial-core-head {
  max-width: 920px;
  margin-bottom: 2.4rem;
}

.editorial-core-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.editorial-core-head p {
  max-width: 800px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.editorial-core-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 2.2rem;
  position: relative;
  z-index: 2;
}

.editorial-col-main {
  display: grid;
  gap: 1rem;
}

.editorial-block {
  border: 1px solid rgba(17, 17, 17, 0.11);
  background: rgba(255, 255, 255, 0.5);
  padding: 1.4rem 1.3rem;
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.editorial-core.visible .editorial-block {
  animation: editorialCardIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.editorial-core.visible .editorial-block:nth-child(1) { animation-delay: 80ms; }
.editorial-core.visible .editorial-block:nth-child(2) { animation-delay: 180ms; }
.editorial-core.visible .editorial-block:nth-child(3) { animation-delay: 280ms; }
.editorial-core.visible .editorial-block:nth-child(4) { animation-delay: 380ms; }

.editorial-block:hover {
  border-color: rgba(17, 17, 17, 0.24);
  background: rgba(255, 255, 255, 0.68);
}

.editorial-number {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.editorial-block:hover .editorial-number {
  transform: translateX(4px);
  color: var(--text-mid);
}

.editorial-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.editorial-block p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.editorial-col-side {
  background: #161617;
  color: var(--white);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.editorial-col-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  opacity: 0.75;
  pointer-events: none;
}

.editorial-col-side blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
}

.editorial-core.visible .editorial-col-side blockquote {
  animation: editorialQuoteIn 0.9s ease forwards;
  animation-delay: 260ms;
}

.editorial-col-side ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.editorial-col-side li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.7rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  transform: translateY(10px);
}

.editorial-core.visible .editorial-col-side li {
  animation: editorialMetaIn 0.65s ease forwards;
}

.editorial-core.visible .editorial-col-side li:nth-child(1) { animation-delay: 340ms; }
.editorial-core.visible .editorial-col-side li:nth-child(2) { animation-delay: 430ms; }
.editorial-core.visible .editorial-col-side li:nth-child(3) { animation-delay: 520ms; }

@keyframes editorialCardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes editorialQuoteIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorialMetaIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorialGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
  }
  50% {
    transform: translate3d(14px, -12px, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-core::before,
  .editorial-core::after,
  .editorial-core.visible .editorial-block,
  .editorial-core.visible .editorial-col-side blockquote,
  .editorial-core.visible .editorial-col-side li {
    animation: none !important;
  }

  .editorial-block,
  .editorial-col-side blockquote,
  .editorial-col-side li {
    opacity: 1;
    transform: none;
  }
}

/* --- Pillars section --- */
.pillars-section {
  padding: 5.2rem 6vw;
  background: var(--white);
}

.pillars-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
}

.pillar-lead {
  border-right: 1px solid var(--light-gray);
  padding-right: 2rem;
}

.pillar-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pillar-lead h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.pillar-lead p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 50ch;
}

.pillar-highlight {
  margin-top: 1.6rem;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

.pillar-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.pillar-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 0.8rem;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 0.8rem;
}

.pillar-index {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-top: 0.2rem;
}

.pillar-list li span:last-child {
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.65;
}

.pillar-list li:hover .pillar-index {
  color: var(--white);
}

.pillar-foot {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.pillar-foot p {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* --- Cluster rail --- */
.cluster-rail {
  padding: 5rem 6vw 2.8rem;
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,0.7), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(0,0,0,0.03), transparent 42%),
    var(--off-white);
}

.cluster-rail-head {
  margin-bottom: 1.2rem;
}

.cluster-rail-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 500;
  color: var(--text-dark);
}

.cluster-rail-note {
  margin-top: 0.55rem;
  max-width: 72ch;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
}

.cluster-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 1rem 0 1.2rem;
  padding: 0.2rem 0;
}

.cluster-nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(17,17,17,0.2);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.38rem 0.08rem 0.2rem;
  transition: border-color 0.2s, color 0.2s;
}

.cluster-nav-link:hover {
  border-color: var(--text-dark);
  color: var(--black);
}

.cluster-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border: none;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.62rem 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.cluster-nav-cta::after {
  content: '→';
  margin-left: 0.45rem;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.cluster-nav-cta:hover {
  background: #dbdbd7;
  transform: translateX(3px);
}

.cluster-nav-cta:hover::after {
  transform: translateX(3px);
}

.cluster-rail-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.cluster-pill {
  display: block;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf8 100%);
  padding: 1.05rem 1.1rem 1rem;
  transition: border-color 0.25s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(14px);
}

.cluster-pill::before {
  content: '';
  position: absolute;
  inset: auto -20% -55% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(93,93,88,0.12), rgba(93,93,88,0));
  opacity: 0;
  transform: translate3d(12px, 12px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.cluster-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.65) 48%, transparent 76%);
  transform: translateX(-140%);
  transition: transform 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.cluster-pill,
.cluster-pill:link,
.cluster-pill:visited,
.cluster-pill:hover,
.cluster-pill:active {
  color: inherit;
  text-decoration: none;
}

.cluster-rail.visible .cluster-pill {
  animation: clusterPillIn 0.55s ease forwards;
}

.cluster-rail.visible .cluster-pill:nth-child(2) { animation-delay: 0.06s; }
.cluster-rail.visible .cluster-pill:nth-child(3) { animation-delay: 0.12s; }
.cluster-rail.visible .cluster-pill:nth-child(4) { animation-delay: 0.18s; }
.cluster-rail.visible .cluster-pill:nth-child(5) { animation-delay: 0.24s; }
.cluster-rail.visible .cluster-pill:nth-child(6) { animation-delay: 0.3s; }
.cluster-rail.visible .cluster-pill:nth-child(7) { animation-delay: 0.36s; }
.cluster-rail.visible .cluster-pill:nth-child(8) { animation-delay: 0.42s; }
.cluster-rail.visible .cluster-pill:nth-child(9) { animation-delay: 0.48s; }
.cluster-rail.visible .cluster-pill:nth-child(10) { animation-delay: 0.54s; }
.cluster-rail.visible .cluster-pill:nth-child(11) { animation-delay: 0.6s; }
.cluster-rail.visible .cluster-pill:nth-child(12) { animation-delay: 0.66s; }

.cluster-pill strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.cluster-pill-icon {
  position: absolute;
  right: 0.95rem;
  top: 0.9rem;
  z-index: 1;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-mid);
  opacity: 0.65;
  transform: translateX(0);
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.cluster-pill:visited strong,
.cluster-pill:link strong {
  color: var(--text-dark);
}

.cluster-pill span {
  z-index: 1;
  display: block;
  position: relative;
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-height: 3.2em;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.cluster-pill:visited span,
.cluster-pill:link span {
  color: var(--text-mid);
}

.cluster-pill:hover {
  border-color: var(--dark-gray);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(13,13,14,0.11);
}

.cluster-pill:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.cluster-pill:hover::after {
  transform: translateX(125%);
}

.cluster-pill:hover span {
  max-height: 7.2em;
}

.cluster-pill:hover strong {
  color: var(--black);
  transform: translateX(1px);
}

.cluster-pill:hover .cluster-pill-icon {
  color: var(--black);
  opacity: 1;
  transform: translateX(2px);
}

.cluster-pill:focus-visible {
  outline: 2px solid var(--dark-gray);
  outline-offset: 2px;
}

.cluster-pill:focus-visible span {
  max-height: 7.2em;
}

.cluster-pill:focus-visible::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.cluster-pill:focus-visible::after {
  transform: translateX(125%);
}

.cluster-pill:focus-visible .cluster-pill-icon {
  color: var(--black);
  opacity: 1;
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .cluster-pill,
  .cluster-pill::before,
  .cluster-pill::after,
  .cluster-pill strong,
  .cluster-pill span,
  .cluster-pill-icon {
    transition: none;
    animation: none;
  }
}

/* --- FAQ studio --- */
.faq-studio {
  padding: 4.4rem 6vw;
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.faq-studio-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.faq-studio-side p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-studio-list {
  border-top: 1px solid var(--light-gray);
}

.faq-studio details {
  border-bottom: 1px solid var(--light-gray);
  padding: 0.9rem 0;
}

.faq-studio summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding-right: 2rem;
  position: relative;
}

.faq-studio summary::-webkit-details-marker {
  display: none;
}

.faq-studio summary::after {
  content: '↘';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--text-light);
}

.faq-studio details[open] summary::after {
  content: '↗';
}

.faq-studio p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.65rem;
}

/* --- Contact reframe --- */
.form-section {
  display: block;
  padding: 5.6rem 6vw;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.contact-reframe {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1.6rem;
  margin-bottom: 2rem;
}

.contact-reframe-head {
  max-width: 760px;
}

.contact-reframe-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.contact-reframe-head p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.contact-reframe-meta {
  display: grid;
  gap: 0.45rem;
}

.contact-reframe-meta p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
}

.contact-stage-side {
  background: #141416;
  padding: 1.6rem;
  color: var(--white);
  align-self: start;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.contact-stage-side h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.22;
  margin-bottom: 1rem;
}

.contact-stage-side ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-stage-side li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 0.7rem;
}

.direct-contact-cta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0.65rem;
}

.direct-contact-label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.direct-contact-cta p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

.direct-contact-box {
  margin-top: 0.25rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.direct-contact-item {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 0.08rem;
  padding: 0.2rem 0;
}

.direct-contact-item + .direct-contact-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.5rem;
}

.direct-contact-item span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.direct-contact-item strong {
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  overflow-wrap: anywhere;
}

.direct-contact-item:hover strong {
  color: var(--white);
}

.contact-stage-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 1.7rem;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  position: relative;
}

.contact-stage-form::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

/* --- Slug pages --- */
.slug-main {
  background: var(--white);
}

.slug-hero {
  min-height: 76vh;
  display: flex;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #111111;
  color: var(--white);
}

.slug-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--slug-hero-image);
  background-size: cover;
  background-position: center 42%;
  filter: grayscale(14%) contrast(1.02) brightness(0.94);
  transform: scale(1.02);
  z-index: -2;
  animation: slugHeroPanZoom 28s ease-in-out infinite alternate;
}

.slug-hero.slug-hero--fit-image::before {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 78%;
  transform: scale(1.01);
  animation: slugHeroPanZoom 28s ease-in-out infinite alternate;
}

.slug-hero.slug-hero--fit-image {
  min-height: 64vh;
}

@media (max-width: 1000px) {
  .slug-hero.slug-hero--fit-image {
    min-height: 58vh;
  }
}

.slug-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, rgba(13,13,14,0.72) 0%, rgba(13,13,14,0.46) 28%, rgba(13,13,14,0.13) 56%, rgba(13,13,14,0.22) 100%),
    radial-gradient(circle at 12% 84%, rgba(0,0,0,0.32), rgba(0,0,0,0) 44%),
    radial-gradient(circle at 78% 24%, rgba(255,255,255,0.1), rgba(255,255,255,0) 36%);
  z-index: -1;
  animation: slugHeroOverlayShift 14s ease-in-out infinite alternate;
}

.slug-hero-copy {
  position: relative;
  width: min(100%, 540px);
  margin: clamp(6.8rem, 10vh, 8.4rem) 0 4.2rem 7vw;
  padding: 0 0 0 1.15rem;
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px);
  animation: slugHeroPanelIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.slug-hero-copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.3rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0.08));
}

.slug-hero-copy::after {
  content: '';
  position: absolute;
  left: -3.4rem;
  top: -2.2rem;
  width: 24rem;
  height: 15rem;
  background: radial-gradient(circle at 28% 42%, rgba(11,11,12,0.5), rgba(11,11,12,0.08) 46%, rgba(11,11,12,0) 72%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
  animation: slugHeroAuraPulse 8s ease-in-out 1s infinite alternate;
}

.slug-hero-copy .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.76);
  margin-bottom: 1.1rem;
}

.slug-hero-copy .section-tag::after {
  width: 18px;
  background: rgba(255,255,255,0.38);
}

.slug-hero-copy .section-tag,
.slug-hero-copy h1,
.slug-hero-copy p,
.slug-hero-actions {
  opacity: 0;
  transform: translateY(14px);
  animation: slugHeroTextIn 0.75s ease forwards;
}

.slug-hero-copy h1 { animation-delay: 0.12s; }
.slug-hero-copy p { animation-delay: 0.22s; }
.slug-hero-actions { animation-delay: 0.32s; }

.slug-hero-copy h1 {
  max-width: 14ch;
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.04;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

.slug-hero-copy p {
  max-width: 39ch;
  margin: 0;
  text-shadow: 0 8px 20px rgba(0,0,0,0.48);
}

.slug-hero-lead {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.91);
}

.slug-hero-support {
  margin-top: 0.62rem;
  max-width: 36ch;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

.slug-hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

@keyframes slugHeroPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slugHeroAuraPulse {
  from {
    opacity: 0.78;
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: scale(1.06) translate3d(0.35rem, -0.2rem, 0);
  }
}

.slug-hero-sr-image {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@keyframes slugHeroPanZoom {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(1.2%, -1.2%, 0);
  }
}

@keyframes slugHeroOverlayShift {
  from {
    opacity: 0.94;
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }
  to {
    opacity: 1;
    background-position: 10% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes slugHeroTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slug-intro,
.slug-solve,
.slug-fit,
.slug-photo2,
.slug-process {
  padding: 4.8rem 6vw;
}

.slug-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  background:
    radial-gradient(circle at 10% 16%, rgba(255,255,255,0.8), transparent 36%),
    var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.slug-intro .slug-solve-grid {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
}

.slug-intro-copy {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-left: 3px solid #2f2f30;
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(13,13,14,0.06);
}

.slug-intro-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}

.slug-intro-copy p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.slug-intro-copy p + p {
  margin-top: 0.8rem;
}

.slug-intro-points {
  background: linear-gradient(170deg, #19191b 0%, #121214 100%);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 1.5rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}

.slug-intro-points h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.slug-intro-points ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.slug-intro-points li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 0.65rem;
}

.slug-solve {
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.slug-solve h2,
.slug-fit h2,
.slug-process h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.slug-section-lead {
  max-width: 78ch;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.slug-solve-grid {
  counter-reset: solve;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #d5d5d1;
}

.slug-solve-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  column-gap: 0.9rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d5d5d1;
  border-radius: 0;
  padding: 1rem 0;
  box-shadow: none;
  transition: background 0.2s ease;
}

.slug-solve-card::before {
  counter-increment: solve;
  content: '0' counter(solve);
  position: static;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  color: #7a7a74;
  padding-top: 0.25rem;
}

.slug-solve-card h3 {
  grid-column: 2;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.42rem;
  padding-right: 0;
}

.slug-solve-card p {
  grid-column: 2;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.slug-solve-card:hover {
  background: rgba(255,255,255,0.45);
}

.slug-fit {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.7), rgba(255,255,255,0) 36%),
    linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.slug-fit .section-tag {
  margin-bottom: 0.9rem;
}

.slug-fit-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.9rem;
  align-items: start;
}

.slug-fit-grid--legacy {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.slug-fit-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.slug-fit-layout--with-photo {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
}

.slug-fit-content {
  min-width: 0;
}

.slug-fit-content h2 {
  margin-bottom: 0.75rem;
}

.slug-fit-grid ul,
.slug-fit-content ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem 0 0;
  border-top: 1px solid #d9d9d4;
}

.slug-fit-grid li,
.slug-fit-content li {
  position: relative;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.62;
  border-bottom: 1px solid #dfdfda;
  padding: 0.48rem 0 0.55rem 1.15rem;
  transition: transform 0.22s ease, color 0.22s ease;
}

.slug-fit-grid li::before,
.slug-fit-content li::before {
  content: '';
  position: absolute;
  left: 0.05rem;
  top: 0.92rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #676762;
  box-shadow: 0 0 0 5px rgba(103,103,98,0.1);
}

.slug-fit-grid li:hover,
.slug-fit-content li:hover {
  transform: translateX(3px);
  color: #1a1a1a;
}

.slug-fit-grid--legacy p {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(245,245,241,0.9));
  border: 1px solid #e1e1dc;
  border-left: 3px solid #7b7b74;
  border-radius: 10px;
  padding: 1rem 1rem 1.05rem 1.05rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  box-shadow: 0 10px 26px rgba(13,13,14,0.06);
}

.slug-fit-grid--legacy p::before {
  content: 'Enfoque';
  position: absolute;
  top: -0.55rem;
  left: 0.8rem;
  padding: 0.06rem 0.42rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5f5f59;
  background: #f2f2ee;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
}

.slug-fit-media {
  margin: 0;
  position: relative;
  min-height: 230px;
  align-self: stretch;
  border: 1px solid #dadad4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13,13,14,0.12);
}

.slug-fit-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(13,13,14,0.04), rgba(13,13,14,0.16));
  pointer-events: none;
}

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

.slug-process-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.slug-process-step {
  background: #f8f8f6;
  border: 1px solid var(--light-gray);
  border-top: 3px solid #1e1e20;
  border-radius: 12px;
  padding: 0.95rem 0.95rem 1rem;
}

.slug-process-step span {
  display: inline-block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dark-gray);
  margin-bottom: 0.55rem;
}

.slug-process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.slug-process-step p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .slug-hero {
    align-items: stretch;
    min-height: 72vh;
  }

  .slug-hero-copy {
    width: auto;
    min-height: auto;
    margin: 5.8rem 6vw 2.8rem;
    padding: 0 0 0 0.95rem;
    clip-path: none;
    animation: slugHeroPanelIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }

  .slug-hero-copy::before {
    left: 0;
    top: 0.2rem;
    bottom: 0.3rem;
    width: 1px;
  }

  .slug-hero-copy::after {
    left: -2.2rem;
    top: -1.3rem;
    width: 16rem;
    height: 12rem;
    filter: blur(14px);
  }

  .slug-solve-grid,
  .slug-process-grid,
  .slug-intro,
  .slug-fit-grid,
  .slug-fit-layout {
    grid-template-columns: 1fr;
  }

  .slug-intro .slug-solve-grid {
    grid-column: auto;
  }

  .slug-solve,
  .slug-fit,
  .slug-process,
  .slug-intro {
    padding: 3.6rem 6vw;
  }

  .slug-fit-media {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slug-hero::before,
  .slug-hero::after,
  .slug-hero-copy,
  .slug-hero-copy::after,
  .slug-hero-copy .section-tag,
  .slug-hero-copy h1,
  .slug-hero-copy p,
  .slug-hero-actions {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .editorial-core-grid,
  .pillars-layout,
  .faq-studio,
  .contact-stage {
    grid-template-columns: 1fr;
  }

  .pillar-lead {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
    padding-right: 0;
    padding-bottom: 1.4rem;
  }

  .contact-reframe {
    flex-direction: column;
    align-items: flex-start;
  }

  .cluster-rail-track {
    grid-template-columns: 1fr;
  }

  .cluster-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
  }
}
