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

:root {
  --black:    #0a0a0a;
  --charcoal: #111111;
  --dark:     #161616;
  --gold:     #c9a84c;
  --gold-lt:  #e5c97a;
  --gold-dk:  #8b6914;
  --silver:   #b8b8c8;
  --white:    #f5f0e8;
  --cream:    #ede8dc;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  cursor: default;
  overflow-x: hidden;
}

/* -- CURSOR -- */
body { cursor: none; }
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
#cursor.hovered { width: 40px; height: 40px; background: var(--gold-lt); }

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

/* -- NAV -- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 4rem;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.97); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: clamp(42px, 5vw, 64px);
  height: auto;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--silver);
}

.nav-links {
  display: flex; gap: 3rem; list-style: none;
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  border: none;
  padding: 0.65rem 1.8rem;
  cursor: none;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
  display: inline-block;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* -- HERO -- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--black);
}

/* Decorative tooth SVG bg */
.hero-tooth {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  opacity: 0.035;
  z-index: 1;
}

.hero-line {
  position: absolute; top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.12;
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-title .name {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--silver);
  letter-spacing: 0.06em;
  margin-bottom: 2.6rem;
}

.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.8rem;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.7);
  max-width: 480px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex; align-items: center; gap: 2.5rem;
}
.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  border: none;
  padding: 1.1rem 2.8rem;
  cursor: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 30px rgba(201,168,76,0.25);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
}
.btn-ghost {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 1.1rem 2.4rem;
  cursor: none;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* Hero stats */
.hero-stats {
  position: absolute; right: 4rem; bottom: 5rem;
  z-index: 2;
  display: flex; flex-direction: column; gap: 2.5rem;
  animation: fadeUp 1.4s 0.3s ease both;
}
.stat {
  text-align: right;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.3rem;
}
.stat-divider {
  width: 30px; height: 1px;
  background: rgba(201,168,76,0.3);
  margin-left: auto;
  margin-top: 1rem;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  animation: fadeUp 1.6s 0.5s ease both;
}
.scroll-cue span {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.6;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* -- MARQUEE -- */
.marquee-wrap {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.1rem 0;
  overflow: hidden;
  background: rgba(201,168,76,0.03);
}
.marquee-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 3rem;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold-dk);
  border-radius: 50%;
  flex-shrink: 0;
}

/* -- SECTIONS -- */
section {
  position: relative; z-index: 2;
}

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-lt); }

/* -- ABOUT -- */
#about {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-frame::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 58% 42%, transparent 0%, rgba(10,10,10,0.18) 78%),
    linear-gradient(180deg, rgba(10,10,10,0.04) 0%, rgba(10,10,10,0.34) 100%);
  pointer-events: none;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.94) contrast(1.04);
}

.about-corner {
  position: absolute;
  z-index: 2;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.about-corner.tl { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
.about-corner.br { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }

.about-badge {
  position: absolute;
  bottom: 2rem; right: -2rem;
  background: var(--black);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 1.2rem 1.6rem;
  text-align: center;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.badge-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.3rem;
}

.about-content {}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-lead {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border-left: 2px solid rgba(201,168,76,0.4);
  padding-left: 1.2rem;
}
.about-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(245,240,232,0.65);
  margin-bottom: 2rem;
}
.about-credentials {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2rem;
}
.credential {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 0.9rem;
}

/* -- SERVICES -- */
#services {
  padding: 8rem 4rem;
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.service-card {
  background: var(--dark);
  padding: 2.8rem 2.4rem;
  border: 1px solid rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s;
  cursor: none;
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-card:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.social-link:focus-visible {
  outline: 1px solid var(--gold-lt);
  outline-offset: 4px;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.25);
  background: #161610;
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.2); }

.service-icon {
  width: 36px; height: 36px;
  margin-bottom: 1.2rem;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.service-card:hover .service-icon { opacity: 1; }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.service-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.5);
}
.service-arrow {
  position: absolute; bottom: 1.8rem; right: 1.8rem;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 0.7; transform: translateX(0); }

/* Service detail pages */
.service-detail-body {
  min-height: 100vh;
}
.service-detail-main {
  position: relative;
  z-index: 2;
}
.service-hero {
  min-height: 78vh;
  padding: 9rem 4rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 5rem;
  align-items: end;
  background:
    radial-gradient(circle at 75% 25%, rgba(201,168,76,0.16), transparent 30%),
    linear-gradient(180deg, rgba(17,17,17,0.96) 0%, var(--black) 100%);
}
.service-breadcrumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(184,184,200,0.62);
  text-decoration: none;
  cursor: none;
}
.service-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.9;
  color: var(--white);
  margin: 1.4rem 0 1.6rem;
}
.service-hero-title em {
  color: var(--gold-lt);
  font-style: italic;
}
.service-hero-lead {
  max-width: 700px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.65;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
}
.service-hero-panel {
  border-left: 1px solid rgba(201,168,76,0.25);
  padding-left: 2rem;
}
.service-hero-panel p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.58);
  margin-bottom: 1.6rem;
}
.service-detail-section {
  padding: 7rem 4rem;
  background: var(--black);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 4rem;
  align-items: start;
}
.service-kicker {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.service-copy {
  display: grid;
  gap: 1.3rem;
}
.service-copy p {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.62);
}
.service-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: rgba(201,168,76,0.12);
}
.service-step {
  background: var(--dark);
  padding: 2rem;
  min-height: 220px;
}
.service-step span {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.service-step h3 {
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.service-step p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.55);
}
.service-results {
  padding: 7rem 4rem;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3rem;
}
.results-note {
  max-width: 420px;
  color: rgba(245,240,232,0.58);
  font-size: 1rem;
  line-height: 1.8;
}
.results-carousel-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.14);
}
.result-slot {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.08), transparent 42%),
    var(--dark);
  border: 1px solid rgba(201,168,76,0.08);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.result-slot::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(201,168,76,0.22);
}
.result-slot span {
  position: relative;
  z-index: 1;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.service-cta-band {
  padding: 5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.service-cta-band h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
}
.service-cta-band p {
  max-width: 480px;
  margin-top: 1rem;
  color: rgba(245,240,232,0.58);
  line-height: 1.75;
}

/* Success cases */
#cases {
  padding: 8rem 4rem;
  background:
    linear-gradient(180deg, var(--black) 0%, rgba(17,17,17,0.96) 48%, var(--black) 100%);
}
.cases-header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.cases-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.62);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.case-card {
  min-height: 360px;
  padding: 1rem 1rem 2.2rem;
  background:
    linear-gradient(160deg, rgba(201,168,76,0.08) 0%, transparent 42%),
    var(--dark);
  border: 1px solid rgba(201,168,76,0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.case-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(201,168,76,0.12);
  background: var(--black);
  filter: saturate(0.92) contrast(1.04);
  margin-bottom: 1.7rem;
}
.case-lightbox-source {
  cursor: none;
}
.case-lightbox-source:focus-visible {
  outline: 1px solid var(--gold-lt);
  outline-offset: 4px;
}
.case-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/12;
  margin-bottom: 1.7rem;
  border: 1px solid rgba(201,168,76,0.12);
  background: var(--black);
  overflow: hidden;
}
.case-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.case-carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.45s ease, transform 0.45s ease;
  filter: saturate(0.94) contrast(1.04);
  pointer-events: none;
}
.case-carousel-image.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.case-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10,10,10,0.32) 100%);
  pointer-events: none;
}
.case-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border: 1px solid rgba(201,168,76,0.36);
  background: rgba(10,10,10,0.68);
  color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}
.case-carousel-btn.prev { left: 0.75rem; }
.case-carousel-btn.next { right: 0.75rem; }
.case-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  transform: translateX(-50%);
}
.case-carousel-dot {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(229,201,122,0.82);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: none;
}
.case-carousel-dot.active { background: var(--gold-lt); }
.case-card::after {
  content: '';
  position: absolute;
  inset: auto 2.4rem 0 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.case-card:hover::after { opacity: 1; }
.case-card.featured {
  border-color: rgba(201,168,76,0.28);
  background:
    radial-gradient(ellipse 80% 70% at 70% 10%, rgba(201,168,76,0.14) 0%, transparent 62%),
    var(--dark);
}
.case-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.case-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 2.3rem 1.4rem 1rem;
}
.case-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.58);
  margin: 0 1.4rem 2rem;
}
.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid rgba(201,168,76,0.12);
  margin: 0 1.4rem;
  padding-top: 1.2rem;
}
.case-results div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.case-results strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--gold-lt);
}
.case-results span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.56rem;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(184,184,200,0.68);
}
.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 50% 38%, rgba(70,70,70,0.34), transparent 34%),
    linear-gradient(135deg, rgba(5,5,5,0.96) 0%, rgba(18,18,18,0.97) 52%, rgba(0,0,0,0.94) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.case-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.case-lightbox-image {
  display: block;
  max-width: min(92vw, 1120px);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(229,201,122,0.36);
  background: var(--black);
  box-shadow: 0 28px 90px rgba(0,0,0,0.58);
  transform: scale(0.96);
  transition: transform 0.28s ease;
}
.case-lightbox.active .case-lightbox-image {
  transform: scale(1);
}
.case-lightbox-close {
  position: fixed;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 1001;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229,201,122,0.42);
  background: rgba(10,10,10,0.66);
  color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.case-lightbox-close:hover,
.case-lightbox-close:focus-visible {
  border-color: var(--gold-lt);
  background: rgba(10,10,10,0.86);
  transform: translateY(-1px);
  outline: none;
}
.case-lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 1001;
  width: clamp(42px, 6vw, 58px);
  height: clamp(42px, 6vw, 58px);
  transform: translateY(-50%);
  border: 1px solid rgba(245,240,232,0.22);
  background: rgba(10,10,10,0.58);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.case-lightbox-nav.prev {
  left: clamp(1rem, 4vw, 3rem);
}
.case-lightbox-nav.next {
  right: clamp(1rem, 4vw, 3rem);
}
.case-lightbox-nav:hover,
.case-lightbox-nav:focus-visible {
  border-color: rgba(245,240,232,0.52);
  background: rgba(10,10,10,0.82);
  transform: translateY(-50%) scale(1.04);
  outline: none;
}

/* -- EXPERIENCE / WHY -- */
#why {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.why-content .section-title { margin-bottom: 1.5rem; }
.why-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,240,232,0.6);
  margin-bottom: 3rem;
}
.why-features {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.why-feature {
  display: flex; gap: 1.4rem;
  align-items: flex-start;
}
.feature-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-icon-wrap svg { width: 18px; height: 18px; }
.feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.feature-text p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.5);
}

.why-visual {
  position: relative;
}
.why-panel {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 3rem;
  position: relative;
}
.why-panel::after {
  content: '';
  position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1px solid rgba(201,168,76,0.07);
  z-index: -1;
}
.panel-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.panel-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -1.5rem;
  margin-right: 0.2rem;
}
.panel-author {
  display: flex; align-items: center; gap: 1rem;
}
.author-line { width: 30px; height: 1px; background: var(--gold); }
.author-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.why-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1.5px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.metric {
  background: var(--dark);
  padding: 1.8rem 2rem;
  border: 1px solid rgba(201,168,76,0.06);
}
.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-lt);
}
.metric-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.2rem;
}

/* -- TESTIMONIALS -- */
#testimonials {
  padding: 8rem 4rem;
  background: var(--charcoal);
  text-align: center;
}
.testimonials-header { margin-bottom: 4rem; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem;
  text-align: left;
  position: relative;
}
.testimonial-stars {
  display: flex; gap: 0.3rem; margin-bottom: 1.2rem;
}
.star {
  width: 12px; height: 12px;
  fill: var(--gold);
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,240,232,0.8);
  margin-bottom: 1.5rem;
}
.testimonial-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--silver);
  opacity: 0.6;
  margin-top: 0.2rem;
}

/* -- CONTACT -- */
#contacto {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-content .section-title { margin-bottom: 1.2rem; }
.contact-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,240,232,0.6);
  margin-bottom: 3rem;
}
.contact-items {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-item {
  display: flex; gap: 1.2rem; align-items: center;
}
.contact-location { align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-item-icon svg { width: 16px; height: 16px; }
.contact-item-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item-val {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 300;
}
.contact-map {
  width: min(100%, 420px);
  aspect-ratio: 16/9;
  margin-top: 0.85rem;
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--dark);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.85) invert(0.9) contrast(0.95) saturate(0.75);
}

.contact-form {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(184,184,200,0.3); }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* -- FOOTER -- */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 3rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--black);
}
.footer-brand {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--silver);
  margin-top: 0.2rem;
}
.footer-copy {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: rgba(184,184,200,0.4);
}
.footer-social {
  display: flex; gap: 1.2rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
  cursor: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 14px; height: 14px; }

/* -- ANIMATIONS -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); transform-origin: top; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  nav { padding: 1.4rem 2rem; }
  .nav-logo-img { width: 42px; }
  .nav-logo-name { font-size: 0.66rem; letter-spacing: 0.24em; }
  .nav-logo-sub { font-size: 0.58rem; letter-spacing: 0.12em; }
  .nav-links { display: none; }
  #hero { padding: 0 2rem; }
  .hero-stats { display: none; }
  #about { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .about-badge { right: 0; }
  #services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  #cases { padding: 5rem 2rem; }
  .cases-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { min-height: auto; }
  #why { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 4rem; }
  #testimonials { padding: 5rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  #contacto { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .service-hero {
    min-height: auto;
    padding: 8rem 2rem 4rem;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
  }
  .service-hero-panel {
    border-left: 0;
    border-top: 1px solid rgba(201,168,76,0.25);
    padding-left: 0;
    padding-top: 2rem;
  }
  .service-detail-section,
  .service-results,
  .service-cta-band { padding: 5rem 2rem; }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-step-grid,
  .results-carousel-placeholder {
    grid-template-columns: 1fr;
  }
  .results-header,
  .service-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .result-slot { min-height: 260px; }
  footer { flex-direction: column; gap: 1.5rem; padding: 2rem; text-align: center; }
}
