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

:root {
  --fuchsia-dark:   #7B0044;
  --raspberry:      #C2185B;
  --blush:          #F8BBD0;
  --white:          #FFFFFF;
  --off-white:      #FAF6F8;
  --text-light:     rgba(255,255,255,0.92);
  --text-light-sub: rgba(255,255,255,0.65);
  --text-dark:      rgba(30,10,20,0.88);
  --text-dark-sub:  rgba(30,10,20,0.60);

  --font-script:    'Allura', cursive;
  --font-body:      'Montserrat', sans-serif;

  --section-pad-v:  clamp(5rem, 10vw, 9rem);
  --section-pad-h:  clamp(1.5rem, 5vw, 5rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  background: #3d0028;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   BACKGROUND LAYER
═══════════════════════════════════════════════════════════ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Subtle vignette to improve legibility without hiding the image */
.bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 25% 50%, rgba(60,0,30,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(255,200,220,0.10) 0%, transparent 70%),
    linear-gradient(to bottom,
      rgba(20,0,12,0.40) 0%,
      rgba(20,0,12,0.06) 20%,
      rgba(20,0,12,0.06) 80%,
      rgba(20,0,12,0.60) 100%
    );
}

/* Every section sits above the fixed bg */
section, footer {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   INITIAL LETTER (Allura)
═══════════════════════════════════════════════════════════ */
.initial {
  font-family: var(--font-script);
  font-size: 1.45em;
  line-height: 0.8;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.02em;
  color: inherit;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-pad-v) var(--section-pad-h);
}

.hero-inner {
  max-width: 780px;
}

.hero-eyebrow {
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light-sub);
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

.hero-subline {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-light-sub);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   SPLIT SECTION
═══════════════════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto;
  align-items: start;
  min-height: 100svh;
  padding: var(--section-pad-v) 0;
  gap: 0;
}

/* ── Left column ── */
.split-left {
  grid-column: 1;
  grid-row: 1;
  padding: 0 var(--section-pad-h) 0 clamp(1.5rem, 6vw, 7rem);
}

/* ── Brand Signature center ── */
.brand-signature {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  width: clamp(200px, 22vw, 300px);
  position: relative;
  z-index: 2;
}

/* ── Right column ── */
.split-right {
  grid-column: 3;
  grid-row: 1;
  padding: 0 clamp(1.5rem, 6vw, 7rem) 0 var(--section-pad-h);
  position: relative;
}

/* Subtle light overlay for readability on the bright side */
.split-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,230,240,0.22) 0%,
    rgba(255,240,248,0.18) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.split-right > * {
  position: relative;
  z-index: 1;
}

/* ── Shared column styles ── */
.split-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content {
  max-width: 420px;
}

.split-left .split-content {
  margin-left: auto;
}

.split-right .split-content {
  margin-right: auto;
}

.col-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-light-sub);
  margin-bottom: 1.6rem;
}

.split-right .col-label {
  color: rgba(20,0,12,0.55);
}

.split-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;
  color: var(--white);
  text-shadow: 0 1px 24px rgba(0,0,0,0.25);
}

.split-right .split-headline {
  color: rgba(20,0,12,0.95);
  text-shadow: 0 1px 12px rgba(255,200,220,0.30);
}

.split-body {
  font-size: clamp(0.85rem, 1.3vw, 0.96rem);
  line-height: 1.9;
}

.split-body p {
  margin-bottom: 1.2rem;
}

.split-body ul {
  list-style: none;
  margin: 0 0 1.4rem 0;
  padding: 0;
}

.split-body ul li {
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-weight: 400;
}

.split-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-light-sub);
  font-weight: 300;
}

.split-right .split-body ul li::before {
  color: rgba(20,0,12,0.45);
}

.split-left .split-body {
  color: var(--text-light);
}

.split-right .split-body {
  color: rgba(20,0,12,0.85);
}

.closing-line {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════
   BRAND SIGNATURE BOXES
═══════════════════════════════════════════════════════════ */
.brand-box {
  width: 100%;
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.2rem, 2vw, 1.8rem);
  border-radius: 2px;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand-box:hover {
  transform: translateY(-3px);
}

/* Dark box – over fuchsia side */
.brand-box--dark {
  background: rgba(30, 0, 18, 0.42);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 40px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.08);
  color: var(--white);
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

/* Light box – over raspberry/blush side */
.brand-box--light {
  background: rgba(255, 240, 246, 0.38);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 8px 40px rgba(180,50,100,0.15), inset 0 1px 0 rgba(255,255,255,0.55);
  color: rgba(30,10,20,0.90);
  margin-top: -2.5rem;
  margin-left: 2rem;
  position: relative;
  z-index: 2;
}

.brand-icon {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  line-height: 1;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  opacity: 0.80;
}

.brand-link {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-bottom: 0.3rem;
  transition: opacity 0.2s ease;
}

.brand-box--dark .brand-link {
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.20);
  padding-bottom: 0.15rem;
  width: fit-content;
}

.brand-box--dark .brand-link:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.55);
}

.brand-box--light .brand-link {
  color: rgba(30,10,20,0.65);
  border-bottom: 1px solid rgba(30,10,20,0.20);
  padding-bottom: 0.15rem;
  width: fit-content;
}

.brand-box--light .brand-link:hover {
  color: rgba(30,10,20,0.90);
  border-bottom-color: rgba(30,10,20,0.50);
}

.brand-link--email {
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-section {
  min-height: 60svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-pad-v) var(--section-pad-h);
}

.cta-inner {
  max-width: 600px;
}

.cta-pre {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--text-light-sub);
  margin-bottom: 1.8rem;
}

.cta-headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.30);
}

.cta-email {
  display: inline-block;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.cta-email:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.70);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem var(--section-pad-h);
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.site-footer a:hover {
  color: rgba(255,255,255,0.75);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }

  .split-left {
    grid-column: 1;
    grid-row: 1;
    padding: var(--section-pad-v) 2rem 3rem clamp(1.5rem, 4vw, 3rem);
  }

  .split-right {
    grid-column: 2;
    grid-row: 1;
    padding: var(--section-pad-v) clamp(1.5rem, 4vw, 3rem) 3rem 2rem;
  }

  .brand-signature {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 0 2rem 4rem;
    gap: 2rem;
  }

  .brand-box {
    width: 280px;
    flex-shrink: 0;
  }

  .brand-box--light {
    margin-top: 2rem;
    margin-left: 0;
  }

  .split-left .split-content,
  .split-right .split-content {
    max-width: 100%;
    margin: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  :root {
    --section-pad-h: 1.4rem;
    --section-pad-v: 4rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  /* Mobile: full-width stacked columns */
  .split-section {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .split-left {
    padding: 4rem var(--section-pad-h) 3rem;
  }

  .split-right {
    padding: 3rem var(--section-pad-h) 4rem;
  }

  .split-left .split-content,
  .split-right .split-content {
    max-width: 100%;
    margin: 0;
  }

  .split-headline {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  /* Brand boxes stacked, centered */
  .brand-signature {
    order: 3;
    flex-direction: column;
    align-items: center;
    padding: 1rem var(--section-pad-h) 4rem;
    gap: 0;
    width: 100%;
  }

  .brand-box {
    width: 100%;
    max-width: 340px;
  }

  .brand-box--light {
    margin-top: -1.5rem;
    margin-left: 1.5rem;
  }

  .cta-headline {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
