/* ============================================================
   LUMMEN — styles.css
   ============================================================ */

/* ============================================================
   FORIENE FONT
   ============================================================ */
@font-face {
  font-family: 'Foriene';
  src: url('fonts/Foriene-Regular.woff2') format('woff2'),
       url('fonts/Foriene-Regular.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Foriene';
  src: url('fonts/Foriene-Italic.woff2') format('woff2'),
       url('fonts/Foriene-Italic.woff')  format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-base:      #0e0d0c;
  --color-dark-2:    #1a1917;
  --color-dark-3:    #2c2a27;
  --color-cream:     #f4ede3;
  --color-ivory:     #e8e1d5;
  --color-muted:     #8a8378;
  --color-gold:      #b8965a;
  --color-text-dark: #1a1410;
  --color-text-mid:  #6b5e54;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:        72px;
  --pad-section:  clamp(72px, 10vw, 128px);
  --pad-h:        clamp(24px, 6vw, 80px);
  --max-w:        1280px;
  --max-w-narrow: 720px;
  --gap:          clamp(16px, 3vw, 40px);
  --radius:       2px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.76, 0, 0.24, 1);

  --diagonal: clamp(28px, 3.5vw, 52px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--color-base);
  color: var(--color-ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.075;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
}

p { line-height: 1.75; }

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

button { font-family: var(--font-sans); }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   CURSOR  (desktop only — pointer devices)
   ============================================================ */
.cursor { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-ivory);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    will-change: transform;
    transition: width .3s var(--ease-out),
                height .3s var(--ease-out),
                background .3s ease;
  }

  .cursor--image {
    width: 40px;
    height: 40px;
  }

  .cursor--cta {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-h);
  transition: background .4s ease, box-shadow .4s ease, transform .4s var(--ease-in-out);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav--scrolled {
  background: var(--color-base);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}

/* Light nav for cream sections */
.nav--light {
  background: var(--color-cream) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,.08) !important;
}
.nav--light .nav__logo,
.nav--light .nav__links a { color: var(--color-text-dark); }
.nav--light .btn--nav {
  border-color: rgba(26,20,16,.35);
  color: var(--color-text-dark);
}
.nav--light .btn--nav:hover {
  background: var(--color-text-dark);
  color: var(--color-cream);
}
.nav--light .nav__burger span { background: var(--color-text-dark); }

/* Logo */
.nav__logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: .28em;
  color: var(--color-ivory);
  text-transform: uppercase;
  transition: color .4s ease;
}

/* Desktop links */
.nav__links {
  display: none;
  gap: 40px;
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--color-ivory);
  opacity: .75;
  transition: opacity .2s ease, color .4s ease;
}
.nav__links a:hover { opacity: 1; }

/* Nav CTA */
.btn--nav {
  display: none;
}
@media (min-width: 1024px) {
  .btn--nav { display: inline-flex; }
}

/* Hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1024px) {
  .nav__burger { display: none; }
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-ivory);
  transition: transform .35s var(--ease-in-out), opacity .35s ease;
}

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

/* Mobile overlay menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--color-base);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .5s var(--ease-in-out);
}
.nav__mobile.is-open {
  transform: translateX(0);
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 300;
  color: var(--color-ivory);
  transition: color .2s ease;
}
.nav__mobile a:hover { color: var(--color-gold); }

.nav__mobile .btn {
  font-family: var(--font-sans);
  font-size: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}

.btn--nav {
  border-color: rgba(232,225,213,.35);
  color: var(--color-ivory);
  background: transparent;
  font-size: 11px;
  padding: 10px 22px;
}
.btn--nav:hover {
  background: var(--color-ivory);
  color: var(--color-base);
  border-color: var(--color-ivory);
}

.btn--ghost-light {
  border-color: rgba(232,225,213,.45);
  color: var(--color-ivory);
  background: transparent;
}
.btn--ghost-light:hover {
  background: var(--color-ivory);
  color: var(--color-base);
  border-color: var(--color-ivory);
}

.btn--dark {
  border-color: var(--color-text-dark);
  color: var(--color-text-dark);
  background: transparent;
}
.btn--dark:hover {
  background: var(--color-text-dark);
  color: var(--color-cream);
}

.btn--gold-outline {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}
.btn--gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-base);
}

.btn__icon { flex-shrink: 0; }

/* ============================================================
   CONTAINERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  margin-bottom: 24px;
}

.eyebrow--gold {
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow--gold::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
  opacity: .8;
}

/* ============================================================
   LINK STYLES
   ============================================================ */
.link-arrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--color-ivory);
  opacity: .65;
  transition: opacity .2s ease;
}
.link-arrow:hover { opacity: 1; }

.link-story {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 28px;
  transition: gap .3s ease;
}
.link-story:hover { gap: 14px; }

.link-story__line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: var(--color-dark-3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Camera icon via pseudo-elements */
.img-placeholder::before {
  content: '';
  width: 34px;
  height: 28px;
  border: 1.5px solid var(--color-muted);
  border-radius: 3px;
  opacity: .25;
  flex-shrink: 0;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--color-muted);
  border-radius: 50%;
  opacity: .25;
}

/* ============================================================
   TEXT SPLIT — words & chars
   ============================================================ */
.word {
  display: inline-block;
  white-space: nowrap;   /* keeps each word together during animation */
}

.char {
  display: inline-block;
  will-change: transform, opacity;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { position: relative; }

/* ============================================================
   01 — HERO
   ============================================================ */
.section--hero {
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-base);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1d1b18 0%, #2c2a27 60%, #1a1917 100%);
}

/* Placeholder hidden — video poster attribute handles the fallback */
.hero__placeholder {
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,13,12,.52);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-h);
  max-width: 960px;
  width: 100%;
}

.hero__wordmark {
  font-family: 'Foriene', var(--font-serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: .22em;
  margin-right: -.22em; /* absorb trailing letter-spacing so text-align:center lands on glyphs */
  color: var(--color-ivory);
  line-height: 1;
  margin-bottom: clamp(14px, 2.5vw, 28px);
  white-space: nowrap;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 3.5vw, 38px);
  color: var(--color-ivory);
  margin-bottom: clamp(10px, 1.5vw, 18px);
  line-height: 1.3;
}

.hero__subheadline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--color-ivory);
  letter-spacing: .03em;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.hero__cta { margin-bottom: clamp(32px, 5vw, 52px); }

.hero__cities {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-ivory);
  letter-spacing: .08em;
  opacity: .75;
}

/* Scroll hint line */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-muted));
  transform-origin: top;
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%   { opacity: 0; transform: scaleY(0); }
  40%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1) translateY(100%); }
}

/* ============================================================
   02 — MANIFIESTO
   ============================================================ */
.section--manifiesto {
  background: var(--color-cream);
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
  padding-bottom: calc(var(--pad-section) * 1.15);
}

.manifiesto__text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 44px);
  line-height: 1.3;
  color: var(--color-text-dark);
  text-align: center;
  max-width: none;
}

/* ============================================================
   03 — PORTAFOLIO
   ============================================================ */
.section--portfolio {
  background: var(--color-base);
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
  overflow: hidden;
}

.portfolio__header {
  padding: 0 var(--pad-h) clamp(40px, 6vw, 72px);
}

.portfolio__tagline {
  font-size: clamp(20px, 3vw, 34px);
  color: var(--color-ivory);
  max-width: 560px;
  margin-top: 0;
}

/* Horizontal scroll strip — CSS-native, no pin */
.portfolio__outer {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.portfolio__outer::-webkit-scrollbar { display: none; }
.portfolio__outer.is-grabbing { cursor: grabbing; user-select: none; }

.portfolio__track {
  display: flex;
  align-items: stretch;
  gap: clamp(8px, 1.2vw, 18px);
  padding: 0 var(--pad-h) 0 var(--pad-h);
}

.portfolio__item {
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.25s ease;
  will-change: transform;
}

.portfolio__item img,
.portfolio__item .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s var(--ease-out);
}

.portfolio__item:hover img,
.portfolio__item:hover .img-placeholder {
  transform: scale(1.04);
}

/* Desktop item sizes */
@media (min-width: 769px) {
  .section--portfolio { overflow: visible; }

  .portfolio__item {
    height: clamp(360px, 68vh, 620px);
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .portfolio__item--tall {
    width: calc(clamp(360px, 68vh, 620px) * 3 / 4);
  }

  .portfolio__item--wide {
    width: calc(clamp(360px, 68vh, 620px) * 4 / 3);
  }

  .portfolio__item--sq {
    width: clamp(360px, 68vh, 620px);
  }
}

/* Mobile: 2-column grid */
@media (max-width: 768px) {
  .portfolio__track {
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 var(--pad-h);
  }

  .portfolio__item {
    flex: 0 0 calc(50% - 3px);
    width: calc(50% - 3px);
  }

  .portfolio__item .img-placeholder {
    aspect-ratio: 3 / 4;
    height: auto;
  }
}

.portfolio__cta {
  padding: clamp(28px, 4vw, 48px) var(--pad-h) 0;
  text-align: right;
}

/* ============================================================
   04 — REEL
   ============================================================ */
.section--reel {
  background: var(--color-dark-2);
  padding: var(--pad-section) 0;
}

.section--reel .container { text-align: center; }

.reel__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: clamp(28px, 4vw, 52px) 0;
  border: 1px solid var(--color-dark-3);
  overflow: hidden;
}

.reel__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel__placeholder {
  position: absolute;
  inset: 0;
  background: var(--color-dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel__play-btn {
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(232,225,213,.4);
  border-radius: 50%;
  background: rgba(14,13,12,.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ivory);
  padding-left: 3px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  backdrop-filter: blur(4px);
}

.reel__play-btn:hover {
  background: rgba(232,225,213,.12);
  border-color: var(--color-ivory);
  transform: scale(1.08);
}

.reel__caption {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.5vw, 28px);
  color: var(--color-ivory);
  opacity: .8;
  font-weight: 300;
}

/* ============================================================
   05 — EXPERIENCIA LUMMEN
   ============================================================ */
.section--experiencia {
  background: var(--color-base);
  padding: var(--pad-section) 0;
}

.experiencia__inner {
  padding: 0 var(--pad-h);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Desktop: sticky left header + scrolling columns on right */
@media (min-width: 1024px) {
  .experiencia__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }

  .experiencia__sticky {
    position: sticky;
    top: calc(var(--nav-h) + 40px);
  }
}

.experiencia__title {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700;
  color: var(--color-ivory);
  margin-bottom: 20px;
}

.experiencia__subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--color-muted);
  line-height: 1.7;
}

/* Mobile: stacked header + columns */
@media (max-width: 1023px) {
  .experiencia__sticky {
    margin-bottom: clamp(40px, 7vw, 72px);
  }
}

.experiencia__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
}

@media (min-width: 600px) and (max-width: 1023px) {
  .experiencia__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 32px);
  }
}

.experiencia__num {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.experiencia__col-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--color-ivory);
  margin-bottom: 14px;
}

.experiencia__col-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-ivory);
  line-height: 1.8;
}

/* ============================================================
   06 — SERVICIOS
   ============================================================ */
.section--servicios {
  background: var(--color-cream);
  padding: var(--pad-section) 0;
}

.section--servicios .eyebrow { color: var(--color-text-mid); }

.servicios__intro {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 480px;
}

.servicios__grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(26,20,16,.12);
  margin-bottom: clamp(48px, 7vw, 80px);
}

.servicios__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: clamp(28px, 4.5vw, 52px) 0;
  border-bottom: 1px solid rgba(26,20,16,.12);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: none;
  overflow: visible;
}

@media (min-width: 680px) {
  .servicios__card {
    grid-template-columns: min-content 1fr 1.8fr;
    gap: 0 clamp(28px, 4vw, 56px);
    align-items: baseline;
  }
}

.servicios__card:hover { background: transparent; }
.servicios__card--featured { background: none; }

.servicios__card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.servicios__card-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-dark);
  line-height: 1.85;
}

.servicios__cta { text-align: center; }

/* ============================================================
   07 — BODAS DESTACADAS
   ============================================================ */
.section--bodas {
  background: var(--color-base);
  padding: var(--pad-section) 0;
}

.section--bodas .container { margin-bottom: clamp(40px, 5vw, 64px); }

.bodas__intro {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(18px, 2.8vw, 30px);
  color: var(--color-ivory);
  max-width: 560px;
}

/* Slider */
.bodas__slider { overflow: hidden; position: relative; }

.bodas__track {
  display: flex;
  transition: transform .65s var(--ease-in-out);
}

.bodas__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding: 0 var(--pad-h);
  align-items: center;
}

@media (min-width: 768px) {
  .bodas__slide {
    grid-template-columns: 55fr 45fr;
    gap: clamp(32px, 5vw, 72px);
  }
}

.bodas__slide-media { overflow: hidden; }

.bodas__slide-media .img-placeholder,
.bodas__slide-media img {
  aspect-ratio: 3 / 4;
  max-height: 68vh;
  height: auto;
  width: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .bodas__slide-media .img-placeholder,
  .bodas__slide-media img {
    aspect-ratio: unset;
    height: clamp(380px, 65vh, 620px);
    max-height: none;
    width: 100%;
  }
}

.bodas__city {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.bodas__couple {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  color: var(--color-ivory);
  line-height: 1.1;
  margin-bottom: 12px;
}

.bodas__venue {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-muted);
}

.bodas__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 48px);
}

.bodas__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--color-muted);
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}

.bodas__dot--active {
  background: var(--color-gold);
  transform: scale(1.4);
}

/* ============================================================
   08 — SOBRE LUMMEN
   ============================================================ */
.section--about {
  background: var(--color-cream);
  padding: var(--pad-section) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (min-width: 768px) {
  .about__inner { grid-template-columns: 4fr 6fr; }
}

.about__photo .img-placeholder,
.about__photo img {
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: 580px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.section--about .eyebrow { color: var(--color-text-mid); }

.about__title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.about__body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--color-text-dark);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about__body:last-child { margin-bottom: 0; }

/* ============================================================
   09 — PRUEBA SOCIAL
   ============================================================ */
.section--prueba {
  background: var(--color-dark-2);
  padding: var(--pad-section) 0;
}

.prueba__metricas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 48px);
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.prueba__num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 120px);
  color: var(--color-ivory);
  line-height: 1;
  margin-bottom: 10px;
}

.prueba__label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--color-ivory);
  letter-spacing: .04em;
}

.prueba__testimonio {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--color-dark-3);
}

.prueba__comilla {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(72px, 12vw, 128px);
  color: var(--color-gold);
  line-height: .5;
  margin-bottom: 32px;
  opacity: .7;
}

.prueba__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.8vw, 26px);
  color: var(--color-ivory);
  line-height: 1.55;
  margin-bottom: 24px;
}

.prueba__cite {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-muted);
  font-style: normal;
}

/* ============================================================
   10 — FAQ
   ============================================================ */
.section--faq {
  background: var(--color-cream);
  padding: var(--pad-section) 0;
}

.faq__title {
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: clamp(40px, 6vw, 64px);
  text-align: center;
}

.faq__list {
  border-top: 1px solid rgba(26,20,16,.12);
}

.faq__item {
  border-bottom: 1px solid rgba(26,20,16,.12);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2.5vw, 22px) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--color-text-dark);
  text-align: left;
  transition: color .2s ease;
}

.faq__question:hover { color: var(--color-text-dark); }

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(26,20,16,.2);
  border-radius: 50%;
  position: relative;
  transition: border-color .3s ease;
}

.faq__question:hover .faq__icon { border-color: rgba(26,20,16,.5); }

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-text-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease-out), opacity .3s ease;
}

.faq__icon::before { width: 8px; height: 1px; }
.faq__icon::after  { width: 1px; height: 8px; }

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__question[aria-expanded="true"] .faq__icon {
  border-color: rgba(26,20,16,.5);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s var(--ease-out);
}

.faq__answer.is-open {
  max-height: 400px;
}

.faq__answer p {
  padding-bottom: clamp(16px, 2.5vw, 24px);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.8;
}

/* ============================================================
   11 — CTA FINAL
   ============================================================ */
.section--cta-final {
  background: var(--color-base);
  padding: calc(var(--pad-section) * 1.4) 0;
  position: relative;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
}

.cta-final__bg-img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset !important;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,13,12,.68);
}

.cta-final__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-final__content .eyebrow { margin-bottom: 28px; }

.cta-final__headline {
  font-size: clamp(36px, 8vw, 100px);
  color: var(--color-ivory);
  margin-bottom: clamp(20px, 3vw, 36px);
  letter-spacing: -.01em;
}

.cta-final__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.cta-final__btn { margin-bottom: 20px; }

.cta-final__microcopy {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: .04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-base);
  border-top: 1px solid var(--color-dark-3);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 600px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-muted);
}

.footer__social {
  display: flex;
  gap: 24px;
}

.footer__social-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: .04em;
  transition: color .2s ease;
}

.footer__social-link:hover { color: var(--color-ivory); }

/* ============================================================
   DIAGONAL SECTION TRANSITIONS
   Cream sections overlap the previous dark section with a
   diagonal clip-path — editorial magazine effect.
   ============================================================ */
.section--manifiesto,
.section--servicios,
.section--about,
.section--faq,
.section--prensa {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--diagonal));
  padding-top: calc(var(--pad-section) + var(--diagonal));
  clip-path: polygon(0 var(--diagonal), 100% 0, 100% 100%, 0 100%);
}

/* The dark sections that precede cream ones need a lower z */
.section--hero,
.section--portfolio,
.section--reel,
.section--experiencia,
.section--bodas,
.section--prueba,
.section--cta-final {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SERVICE CARDS — HOVER MICRO-INTERACTION
   Gold shimmer sweep + underline on title
   ============================================================ */
.servicios__card {
  position: relative;
  overflow: hidden;
}

.servicios__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(184,150,90,.05) 50%,
    transparent 100%);
  transform: translateX(-110%);
  transition: transform .6s var(--ease-out);
  pointer-events: none;
}

.servicios__card:hover::after { transform: translateX(0); }

.servicios__card-title {
  position: relative;
}

.servicios__card-title::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  margin-top: 10px;
  transition: width .4s var(--ease-out);
}

.servicios__card:hover .servicios__card-title::after { width: 32px; }

/* ============================================================
   PORTFOLIO PROGRESS BAR
   ============================================================ */
.portfolio__progress {
  height: 1px;
  background: var(--color-dark-3);
  margin: clamp(20px, 3vw, 36px) var(--pad-h) 0;
}

.portfolio__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  transform-origin: left;
  transition: width .1s linear;
}

@media (max-width: 768px) {
  .portfolio__progress { display: none; }
}

/* ============================================================
   PRESS / CONFIANZA SECTION
   ============================================================ */
.section--prensa {
  background: var(--color-dark-2);
  padding-bottom: var(--pad-section);
}

.prensa__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 8px;
}

.prensa__logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--color-muted);
  letter-spacing: .1em;
  opacity: .5;
  transition: opacity .3s ease;
  text-decoration: none;
  cursor: pointer;
}

.prensa__logo:hover { opacity: .9; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-base);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease .1s, visibility .6s ease .1s;
}

.preloader__logo {
  font-family: 'Foriene', var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: .3em;
  margin-right: -.3em;
  color: var(--color-ivory);
  opacity: 0;
  transform: translateY(16px);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}

.modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,13,12,.82);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  background: var(--color-base);
  border: 1px solid var(--color-dark-3);
  padding: clamp(32px, 5vw, 56px);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform .4s var(--ease-out);
}

.modal.is-open .modal__box { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color .2s ease;
}

.modal__close:hover { color: var(--color-ivory); }

.modal__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--color-ivory);
  margin: 8px 0 10px;
}

.modal__sub {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.modal__form { display: flex; flex-direction: column; gap: 20px; }

.modal__field { display: flex; flex-direction: column; gap: 8px; }

.modal__field label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.modal__field input[type="text"] {
  background: var(--color-dark-2);
  border: 1px solid var(--color-dark-3);
  color: var(--color-ivory);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color .25s ease;
  width: 100%;
}

.modal__field input[type="text"]:focus {
  border-color: var(--color-gold);
}

.modal__field input[type="text"]::placeholder { color: var(--color-dark-3); }

.modal__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal__option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-ivory);
  cursor: pointer;
}

.modal__option input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.modal__submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ============================================================
   PAGE SCROLL PROGRESS BAR (top of viewport)
   ============================================================ */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-gold);
  z-index: 102;
  transform-origin: left;
  pointer-events: none;
  transition: width .08s linear;
}

/* ============================================================
   HERO — ANIMATED GRADIENT + BOTTOM FADE
   ============================================================ */
@keyframes heroBreath {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero__placeholder {
  background: linear-gradient(-45deg, #0e0d0c 0%, #1c1a17 25%, #2e2b26 50%, #1c1a17 75%, #0e0d0c 100%);
  background-size: 400% 400%;
  animation: heroBreath 14s ease infinite;
}

.section--hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent, var(--color-base));
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   SERVICE CARD NUMBERS
   ============================================================ */
.servicios__card-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.01em;
  color: var(--color-gold);
  opacity: .5;
  line-height: 1;
  white-space: nowrap;
}

/* ============================================================
   CAROUSEL PREV / NEXT ARROWS
   ============================================================ */
.bodas__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(14,13,12,.6);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--color-muted);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.bodas__arrow:hover {
  color: var(--color-ivory);
  border-color: rgba(255,255,255,.2);
  background: rgba(14,13,12,.85);
}

.bodas__arrow--prev { left: 20px; }
.bodas__arrow--next { right: 20px; }

@media (max-width: 768px) {
  .bodas__arrow { display: none; }
}

/* ============================================================
   PORTFOLIO COUNTER
   ============================================================ */
.portfolio__counter {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--color-muted);
  margin-top: 12px;
  display: none;
}

@media (min-width: 769px) {
  .portfolio__counter { display: block; }
}

.portfolio__counter-sep { margin: 0 6px; opacity: .4; }

#portfolioCurrentNum {
  color: var(--color-gold);
  font-size: 15px;
}

/* ============================================================
   PLACEHOLDER SHIMMER (mientras llegan las fotos reales)
   ============================================================ */
@keyframes shimmerSlide {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.img-placeholder {
  background: linear-gradient(
    90deg,
    var(--color-dark-2)   0%,
    var(--color-dark-3)  30%,
    #3a3733              50%,
    var(--color-dark-3)  70%,
    var(--color-dark-2) 100%
  );
  background-size: 200% 100%;
  animation: shimmerSlide 4s ease infinite;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--color-dark-2);
  border: 1px solid var(--color-dark-3);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease, color .2s ease, border-color .2s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 16px; }
}

/* ============================================================
   FOOTER WORDMARK
   ============================================================ */
.footer {
  text-align: center;
}

.footer__inner {
  flex-direction: column;
  gap: 12px;
}

.footer__wordmark {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: .35em;
  color: var(--color-ivory);
  opacity: .12;
  margin-bottom: 8px;
}

/* ============================================================
   BUTTON — FILL HOVER ANIMATION
   ============================================================ */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
  z-index: -1;
}

.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--color-base); border-color: var(--color-gold); }
.btn--ghost-light:hover { color: var(--color-base); }

/* ============================================================
   CUSTOM CURSOR — ocultar cursor del sistema en desktop
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  html, html * { cursor: none !important; }
}

/* ============================================================
   FOOTER BADGE
   ============================================================ */
.footer__badge {
  margin-top: 20px;
  opacity: .85;
  transition: opacity .3s ease;
}

.footer__badge:hover { opacity: 1; }

.footer__badge img {
  height: auto;
  max-width: 180px;
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .cursor { display: none !important; }
  .hero__scroll-hint { display: none; }
}

/* ============================================================
   PORTFOLIO — NAV ARROWS
   ============================================================ */
.portfolio__nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.portfolio__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(232, 225, 213, .25);
  border-radius: 50%;
  background: transparent;
  color: var(--color-ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease, background .25s ease;
  flex-shrink: 0;
}

.portfolio__arrow:hover {
  border-color: var(--color-gold);
  background: rgba(184, 150, 90, .08);
  color: var(--color-gold);
}

.portfolio__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
