/* ================================================================
   AURELIA METHOD — styles.css
================================================================ */


/* ================================================================
   1. CSS VARIABLES
================================================================ */
:root {
  --black:        #050505;
  --black-2:      #0a0a0a;
  --black-3:      #0f0f0f;
  --black-4:      #151515;
  --black-5:      #1a1a1a;
  --border:       #1e1e1e;
  --border-light: #2c2c2c;
  --border-gold:  rgba(193,155,90,0.2);
  --white:        #f0ece4;
  --white-dim:    #c8bfb5;
  --white-dimmer: #8a7f75;
  --gold:         #d4a84b;
  --gold-bright:  #f0c96a;
  --gold-dim:     #9a7340;
  --gold-glow:    rgba(212,168,75,0.18);
  --glow-text:    0 0 8px rgba(240,185,80,0.55), 0 0 22px rgba(220,160,55,0.3), 0 0 48px rgba(200,140,40,0.12);
  --glow-text-lg: 0 0 12px rgba(240,185,80,0.65), 0 0 32px rgba(220,160,55,0.38), 0 0 70px rgba(200,140,40,0.15);
  --glow-white:   0 0 8px rgba(240,236,228,0.4), 0 0 22px rgba(240,236,228,0.18);

  --font-display: 'Cinzel', Georgia, serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, sans-serif;

  --section-py: clamp(5rem, 10vw, 9rem);
  --container:  1240px;
  --radius:     0px;

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur:      0.35s;
}


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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}


/* ================================================================
   3. UTILITY
================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.w-full { width: 100%; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(212,168,75,0.7);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  text-shadow: var(--glow-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--white-dim);
  max-width: 48ch;
  line-height: 1.85;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .section-eyebrow {
  justify-content: center;
}

.section-header .section-eyebrow::before {
  display: none;
}

.section-header .section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(212,168,75,0.7);
  flex-shrink: 0;
}

.section-header .section-subtitle {
  margin-inline: auto;
}


/* ================================================================
   4. BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,168,75,0.45), 0 0 30px rgba(240,185,80,0.25);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240,236,228,0.2);
}
.btn--outline:hover {
  border-color: rgba(240,236,228,0.55);
  background: rgba(240,236,228,0.04);
}

.btn--ghost {
  background: transparent;
  color: rgba(240,236,228,0.8);
  border: 1px solid rgba(240,236,228,0.2);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  transition: all var(--dur) var(--ease);
}
.btn--ghost:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  text-shadow: var(--glow-text);
  box-shadow: 0 0 18px rgba(212,168,75,0.15), inset 0 0 18px rgba(212,168,75,0.04);
}

.btn--lg {
  padding: 1.2rem 3.5rem;
  font-size: 0.75rem;
}


/* ================================================================
   5. NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--dur) var(--ease);
  z-index: 101;
  position: relative;
}
.nav__logo:hover { opacity: 0.65; }

.nav__logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.82);
  transition: color var(--dur) var(--ease), text-shadow var(--dur) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  transition: width var(--dur) var(--ease-out);
}
.nav__link:hover {
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
}
.nav__link:hover::after { width: 100%; }

.nav__cta { margin-left: 1rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 101;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              width var(--dur) var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================================
   6. HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(5rem, 10vw, 9rem);
  padding-top: 8rem;
  background-image: url('public/thegirl.jpg');
  background-size: cover;
  background-position: center 20%;
  background-color: #090909;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 60%, rgba(5,5,5,0.45) 100%),
    linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.2) 45%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: #ffffff;
  text-shadow: var(--glow-white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
  max-width: 13ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.35s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  text-shadow: var(--glow-text-lg);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.hero__body {
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  color: var(--white-dimmer);
  max-width: 42ch;
  line-height: 1.95;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.65s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 5vw, 3rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.3s forwards;
}
.hero__scroll span {
  font-family: var(--font-display);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dimmer);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  box-shadow: 0 0 8px rgba(240,185,80,0.5);
  animation: scrollPulse 2.5s ease-in-out 1.5s infinite;
}

/* Hero stat bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  border-top: 1px solid rgba(240,236,228,0.06);
  background: linear-gradient(to top, rgba(5,5,5,0.85), transparent);
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1s forwards;
}

.hero__stat {
  flex: 1;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(240,236,228,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dimmer);
}


/* ================================================================
   7. INTRO STRIP
================================================================ */
.intro {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 150% at 50% 50%, rgba(193,155,90,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.intro__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
  line-height: 1.4;
  position: relative;
}

.intro__quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold-dim);
  opacity: 0.3;
  position: absolute;
  top: -2rem;
  left: -1rem;
  line-height: 1;
  font-family: var(--font-serif);
  pointer-events: none;
}


/* ================================================================
   8. ABOUT
================================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 50%;
  height: 50%;
  border-right: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  pointer-events: none;
  opacity: 0.4;
}

.about__body {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--white-dim);
  line-height: 1.95;
  margin-bottom: 2.25rem;
}

.check-list {
  margin-bottom: 2.75rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
  color: var(--white-dim);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold-bright);
  border-bottom: 1.5px solid var(--gold-bright);
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 4px rgba(240,185,80,0.6));
}


/* ================================================================
   9. PROCESS
================================================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.process__step {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.75rem);
  background: var(--black-3);
  border-right: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
  overflow: hidden;
}
.process__step:last-child { border-right: none; }

.process__step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  box-shadow: 0 0 12px rgba(240,185,80,0.6);
  transition: width 0.55s var(--ease-out);
}
.process__step:hover { background: var(--black-4); }
.process__step:hover::after { width: 100%; }

.process__step::before {
  content: attr(data-step);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(30, 30, 30, 1);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.process__icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold-bright);
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 0 6px rgba(240,185,80,0.5)) drop-shadow(0 0 18px rgba(212,168,75,0.25));
}
.process__icon svg { width: 100%; height: 100%; }

.process__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.process__desc {
  font-size: clamp(0.8125rem, 1.3vw, 0.875rem);
  color: var(--white-dim);
  line-height: 1.85;
}


/* ================================================================
   10. SERVICES
================================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--black);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.5vw, 3rem);
  background: var(--black-3);
  border-right: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--black-4); }

.service-card--featured {
  background: var(--black-4);
}
.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 16px rgba(240,185,80,0.5);
}

.service-card__tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__top {
  margin-bottom: 1.75rem;
  padding-top: 0.5rem;
}

.service-card__duration {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
  display: block;
  margin-bottom: 0.75rem;
}

.service-card__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.price-main {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.price-note {
  font-size: 0.6875rem;
  color: var(--white-dimmer);
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: clamp(0.8125rem, 1.3vw, 0.875rem);
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.service-card__list {
  flex: 1;
  margin-bottom: 2.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.service-card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  color: var(--white-dimmer);
  margin-bottom: 0.75rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1px;
  background: var(--gold-dim);
}

.services__disclaimer {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--white-dimmer);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.85;
  letter-spacing: 0.03em;
}


/* ================================================================
   11. RESULTS
================================================================ */
.results {
  padding: var(--section-py) 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.result-card {
  background: var(--black-3);
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--border);
}
.result-card:last-child { border-right: none; }

.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0);
  transition: background 0.5s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.result-card:hover::before { background: rgba(5,5,5,0.1); }

.result-img--full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
  transition: transform 0.9s var(--ease);
}
.result-card:hover .result-img--full { transform: scale(1.025); }

.result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
}

.result-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dimmer);
  background: rgba(5,5,5,0.8);
  padding: 0.3rem 0.65rem;
  z-index: 2;
}

.result-card__caption {
  padding: 1.1rem 1.25rem;
  font-size: 0.75rem;
  color: var(--white-dim);
  line-height: 1.6;
  border-top: 1px solid var(--border);
}


/* ================================================================
   12. GLOW
================================================================ */
.glow {
  padding: var(--section-py) 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193,155,90,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.glow__inner {
  display: flex;
  justify-content: center;
  position: relative;
}

.glow__content {
  max-width: 600px;
  text-align: center;
}

.glow__body {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--white-dim);
  line-height: 1.95;
  margin-bottom: 1.75rem;
}

.glow__note {
  font-size: 0.75rem;
  color: var(--white-dimmer);
  font-style: italic;
  line-height: 1.85;
  letter-spacing: 0.02em;
}


/* ================================================================
   13. CTA BANNER
================================================================ */
.cta-banner {
  padding: clamp(5rem, 12vw, 11rem) 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(193,155,90,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.cta-banner__body {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--white-dim);
  margin-bottom: 3rem;
  line-height: 1.9;
}


/* ================================================================
   14. CONTACT
================================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--black);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact__body {
  font-size: clamp(0.875rem, 1.5vw, 0.9875rem);
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.contact__meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__meta-label {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
}

.contact__meta-value {
  font-size: 0.9rem;
  color: var(--white-dim);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.5);
  transition: color var(--dur) var(--ease);
}

.form-group:focus-within .form-label {
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
}

.form-optional {
  color: var(--white-dimmer);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sans);
}

.form-input {
  width: 100%;
  padding: 1rem 1.1rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--black-4);
  box-shadow: 0 0 0 1px rgba(212,168,75,0.15), 0 0 18px rgba(212,168,75,0.08);
}
.form-input::placeholder {
  color: var(--white-dimmer);
  opacity: 0.55;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(212,168,75,0.35);
  box-shadow: 0 0 24px rgba(212,168,75,0.08);
}
.form-success.visible { display: block; }


/* ================================================================
   15. FOOTER
================================================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
  opacity: 0.65;
  transition: opacity var(--dur) var(--ease);
}
.footer__logo-img:hover { opacity: 1; }

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.625rem;
  color: var(--white-dimmer);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer__link {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.5);
  transition: color var(--dur) var(--ease);
}
.footer__link:hover {
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
}

.footer__bottom {
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer__copy {
  font-family: var(--font-display);
  font-size: 0.625rem;
  color: var(--white-dimmer);
  letter-spacing: 0.08em;
  opacity: 0.6;
}


/* ================================================================
   16. EDITORIAL BREAK
================================================================ */
.editorial-break {
  width: 100%;
  overflow: hidden;
}

.editorial-break__inner {
  position: relative;
  height: clamp(320px, 45vw, 600px);
  overflow: hidden;
}

.editorial-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transform: scale(1.05);
  transition: transform 1.6s var(--ease);
}

.editorial-break:hover .editorial-break__img {
  transform: scale(1.0);
}

.editorial-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,5,5,0.9) 0%,
    rgba(5,5,5,0.4) 50%,
    rgba(5,5,5,0.6) 100%
  );
  display: flex;
  align-items: center;
  padding-inline: clamp(1.25rem, 7vw, 6rem);
}

.editorial-break__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  max-width: 20ch;
  letter-spacing: -0.02em;
}


/* ================================================================
   17. QR SECTION
================================================================ */
.qr-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 0;
}

.qr-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.qr-section__body {
  color: var(--white-dim);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.95;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.qr-section__code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.qr-section__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border-light);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  display: block;
}

.qr-section__caption {
  font-family: var(--font-display);
  color: var(--gold-bright);
  text-shadow: var(--glow-text);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}


/* ================================================================
   18. PLACEHOLDERS
================================================================ */
.placeholder-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--black-3);
  border: 1px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.placeholder-box--tall { aspect-ratio: 3/4; }

.placeholder-label {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--white-dimmer);
  line-height: 1.6;
}

.result-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


/* ================================================================
   19. ANIMATIONS
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.06); }
}

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


/* ================================================================
   20. RESPONSIVE — TABLET
================================================================ */
@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  .about__accent { display: none; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .qr-section__inner {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  .qr-section__code { align-items: flex-start; }

  .hero__stats {
    display: none;
  }
}

@media (max-width: 800px) {
  .services__grid {
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
  }
  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .service-card:last-child { border-bottom: none; }

  .results__grid {
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
  }
  .result-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .result-card:last-child { border-bottom: none; }

  .result-img--full {
    min-height: 380px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
  }
  .process__step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .process__step:last-child { border-bottom: none; }
}


/* ================================================================
   21. RESPONSIVE — MOBILE
================================================================ */
@media (max-width: 640px) {
  :root {
    --section-py: clamp(4rem, 12vw, 6rem);
  }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 99;
  }
  .nav__menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
  }

  .nav__cta { margin-left: 0; }

  .hero {
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .hero__title {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
    max-width: 100%;
  }

  .hero__body { max-width: 100%; }

  .hero__actions {
    flex-direction: column;
    gap: 0.875rem;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1.05rem 1.5rem;
  }

  .hero__scroll { display: none; }

  .intro__quote::before { display: none; }

  .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about__img { max-height: 420px; }

  .service-card__name {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .price-main { font-size: 1.875rem; }

  .result-img--full { min-height: 300px; }

  .editorial-break__quote {
    font-size: clamp(1.4rem, 6vw, 2rem);
    max-width: 100%;
  }

  .cta-banner__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer__nav {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .footer__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn.w-full {
    width: 100%;
    justify-content: center;
  }

  .contact__meta { gap: 1.25rem; }

  .glow__content { text-align: left; }
  .glow__content .section-eyebrow {
    justify-content: flex-start;
  }
  .glow__content .section-eyebrow::before {
    display: block;
  }
  .glow__content .section-eyebrow::after {
    display: none;
  }
}


/* ================================================================
   22. TINY SCREENS
================================================================ */
@media (max-width: 380px) {
  .hero__title { font-size: 2.5rem; }
  .section-title { font-size: 1.875rem; }
  .btn { padding: 0.9rem 1.5rem; font-size: 0.625rem; }
}
