/* ============================================================
   EMILY MEROLA — MASTER STYLESHEET
   Brand: #C80F2E Red · #F4F2EA Ivory · #000 Black
          #06927D Teal · #C8A44D Gold
   Fonts: Anton (headings) · Inter (body)
   Refined: premium spacing, perfect responsive, faster reveals
============================================================ */

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

a { text-decoration: none; }
img { display: block; max-width: 100%; }

:root {
  /* ---- Brand Colors ---- */
  --red:           #C80F2E;
  --red-dark:      #a00a24;
  --ivory:         #F4F2EA;
  --ivory-deep:    #EDE9DF;
  --black:         #000000;
  --teal:          #06927D;
  --teal-dark:     #057a68;
  --gold:          #C8A44D;
  --gold-dark:     #b08d3a;
  --gold-light:    #d9bb78;

  /* ---- UI Tokens ---- */
  --bg-primary:    #F4F2EA;
  --bg-secondary:  #EDE9DF;
  --bg-soft:       #FAF8F3;
  --bg-cta:        #E9E5DA;
  --bg-blazer:     #F7F4EE;
  --bg-contact:    #F9F7F2;
  --bg-card:       #FFFFFF;

  --text-primary:  #0D0D0D;
  --text-secondary:#3a3a3a;
  --text-tertiary: #666666;

  --border-light:  rgba(0,0,0,0.06);
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.05);
  --shadow-md:     0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg:     0 24px 60px rgba(0,0,0,0.12);

  --transition:    all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --btn-radius:    10px;
  --btn-radius-sm: 7px;
  --card-radius:   16px;
  --input-radius:  10px;
}

/* ---- DARK MODE ---- */
.dark-mode {
  --bg-primary:    #141414;
  --bg-secondary:  #1c1c1c;
  --bg-soft:       #181818;
  --bg-cta:        #1e1e1e;
  --bg-blazer:     #161616;
  --bg-contact:    #121212;
  --bg-card:       #242424;
  --text-primary:  #F0EDE4;
  --text-secondary:#C8C4BA;
  --text-tertiary: #8a8680;
  --border-light:  rgba(255,255,255,0.05);
  --shadow-sm:     0 4px 16px rgba(0,0,0,0.35);
  --shadow-md:     0 12px 32px rgba(0,0,0,0.5);
  --shadow-lg:     0 24px 60px rgba(0,0,0,0.6);
}

/* ============================================================
   BASE
============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.45s ease, color 0.3s ease;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, h4, .anton-heading {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

  #preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #080808;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  #preloader::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: glowPulse 2s ease 0.3s forwards;
    pointer-events: none;
  }

  #preloader::after {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(212,175,55,0);
    animation: borderReveal 1.6s ease 0.8s forwards;
    pointer-events: none;
  }

  @keyframes glowPulse {
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  }
  @keyframes borderReveal {
    0%   { border-color: rgba(212,175,55,0); clip-path: inset(50% 50% 50% 50%); }
    100% { border-color: rgba(212,175,55,0.12); clip-path: inset(0% 0% 0% 0%); }
  }

  .preloader-content {
    position: relative;
    width: 90%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .preloader-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .preloader-logo-wrap img {
    height: 200px;
    width: auto;
    max-width: 100%;
    display: block;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    animation: logoReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    filter: brightness(1.05);
  }

  .preloader-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
    transform: translateX(-100%) skewX(-10deg);
    animation: shimmer 1s ease 1.4s forwards;
    pointer-events: none;
  }

  @keyframes logoReveal {
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes shimmer {
    to { transform: translateX(200%) skewX(-10deg); }
  }

  .preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.8) 30%, #d4af37 50%, rgba(212,175,55,0.8) 70%, transparent);
    margin: 28px auto 24px;
    animation: lineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  }

  @keyframes lineExpand {
    to { width: 280px; }
  }

  .preloader-sub {
    color: rgba(255,255,255,0);
    font-size: 0.72rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    animation: textFadeIn 1s ease 1.6s forwards;
  }

  @keyframes textFadeIn {
    to { color: rgba(255,255,255,0.45); }
  }

  .preloader-bar-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
  }

  .preloader-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(212,175,55,0.4), #d4af37, rgba(212,175,55,0.4));
    background-size: 200% 100%;
    animation: barFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards, barShimmer 1.2s linear 0.5s 2;
  }

  @keyframes barFill {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
  }
  @keyframes barShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  .corner {
    position: absolute;
    width: 18px;
    height: 18px;
    opacity: 0;
    animation: cornerFade 0.6s ease forwards;
  }
  .corner--tl { top: 0; left: 0; border-top: 1px solid rgba(212,175,55,0.5); border-left: 1px solid rgba(212,175,55,0.5); animation-delay: 1s; }
  .corner--tr { top: 0; right: 0; border-top: 1px solid rgba(212,175,55,0.5); border-right: 1px solid rgba(212,175,55,0.5); animation-delay: 1.05s; }
  .corner--bl { bottom: 0; left: 0; border-bottom: 1px solid rgba(212,175,55,0.5); border-left: 1px solid rgba(212,175,55,0.5); animation-delay: 1.1s; }
  .corner--br { bottom: 0; right: 0; border-bottom: 1px solid rgba(212,175,55,0.5); border-right: 1px solid rgba(212,175,55,0.5); animation-delay: 1.15s; }

  @keyframes cornerFade { to { opacity: 1; } }

  .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212,175,55,0.5);
    animation: particleFloat linear infinite;
    opacity: 0;
  }

  @keyframes particleFloat {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-120px) translateX(var(--dx)); opacity: 0; }
  }

  #preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s ease;
  }

/* ============================================================
   DARK MODE TOGGLE
============================================================ */
.theme-switch {
  position: relative;
  display: flex;
  justify-content: center;
  direction: rtl;
}

#theme-checkbox { display: none; }

#theme-checkbox + label {
  font-size: 2rem;
  height: 1em;
  width: 2.5em;
  border-radius: 2em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background-color: #d0d0d0;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

#theme-checkbox:checked + label { background-color: #3a3a3a; }

#theme-checkbox + label div {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  position: absolute;
  top: 0.1em;
  left: 0.1em;
  z-index: 10;
  transition: left 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  background-color: #f4f4f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#theme-checkbox:checked + label div { left: 1.6em; background-color: #212121; }

#theme-checkbox + label span {
  display: flex;
  align-items: center;
  justify-content: center;
}

#theme-checkbox + label svg {
  display: inline-block;
  height: 0.8em;
  width: 0.8em;
  padding: 0.1em;
}

#theme-checkbox + label span:first-of-type { color: #3a3a3a; }
#theme-checkbox + label span:last-of-type  { color: #ccc; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  height: 90px;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo img {
  height: 80px;
  width: auto;
  transition: height 0.4s ease;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.btn-primary-nav {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 157, 15, 0.3);
}

/* Scrolled state */
.navbar.scrolled {
  height: 72px;
  background: rgba(244,242,234,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.dark-mode .navbar.scrolled {
  background: rgba(20,20,20,0.94);
}

.navbar.scrolled .logo img { height: 64px; }
.navbar.scrolled .nav-links a { color: var(--text-primary); }
.navbar.scrolled .nav-links a:hover { color: var(--red); }
.navbar.scrolled .nav-links a::after { background: var(--red); }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span { background: var(--text-primary); }

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   GRAIN TEXTURE (subtle)
============================================================ */
.grain-texture::after {
  content: '';
  position: fixed;
  inset: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ============================================================
   HERO (Homepage)
============================================================ */
.hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background-image: url("img/cinematic-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.88) 40%,
    rgba(10,10,10,0.3)  72%,
    rgba(10,10,10,0)   100%);
  z-index: 1;
}

.hero-left {
  width: 55%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 4% 80px 6%;
  z-index: 2;
}

.hero-content { max-width: 560px; }

.headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 16px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 28px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  max-width: 80px;
}

.divider-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.cta-group {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}

/* Primary button */
.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(200, 15, 46, 0.25);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 15, 46, 0.35);
}

/* Secondary button */
.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--btn-radius);
  padding: 13px 26px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Gold outline button */
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  border-radius: var(--btn-radius);
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: #000;
}

/* Gold outline dark (on light bg) */
.btn-gold-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold-dark);
  border-radius: var(--btn-radius);
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: transparent;
  transition: var(--transition);
}

.btn-gold-outline-dark:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* Teal button */
.btn-teal-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-teal-solid:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6,146,125,0.3);
}

/* Gold solid */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,164,77,0.3);
}

.bullets { list-style: none; margin-top: 8px;  display: flex;}

.bullets li {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  letter-spacing: 0.01em;

}

.bullets li::before {
  content: "✦";
  color: var(--gold);
  font-weight: 400;
}

.hero-right {
  width: 45%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  padding-bottom: 0;
}

.hero-right img {
  width: 100%;
  width: 1500px;
  object-fit: contain;
  object-position: bottom;
}

/* ============================================================
   PROBLEM SECTION
============================================================ */
.problem-section {
  background: var(--ivory);
  padding: 110px 5%;
  transition: background 0.4s ease;
}

.dark-mode .problem-section { background: #1a1917; }

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.problem-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
}

.problem-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
}

.problem-image img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   PAIN SECTION
============================================================ */
.pain-section {
  background: var(--bg-soft);
  padding: 110px 5%;
}

.pain-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.pain-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.pain-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
}

.pain-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pain-card-result::before { background: var(--gold); }

.pain-card-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  color: rgba(200,15,46,0.1);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pain-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ============================================================
   PREMISE SECTION
============================================================ */
.premise-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 76vh;
  background: #000;
}

.premise-image {
  position: relative;
  overflow: hidden;
}

.premise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.premise-image:hover img { transform: scale(1.03); }

.premise-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premise-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.premise-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.gold-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.6rem;
}

/* ============================================================
   FRAMEWORK SECTION
============================================================ */
.framework-section {
  background: #0d0d0d;
  padding: 120px 5%;
}

.framework-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.framework-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: #fff;
  letter-spacing: 0.04em;
}

.framework-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  font-weight: 300;
}

.framework-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.framework-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.framework-step:last-child { border-bottom: none; }

.framework-step:hover { padding-left: 12px; }

.step-letter {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  min-width: 60px;
  opacity: 0.9;
}

.step-body h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.step-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.framework-closing {
  max-width: 700px;
  margin: 4rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  line-height: 1.8;
}

/* ============================================================
   PAYOFF SECTION
============================================================ */
.payoff-section {
  background: var(--bg-primary);
  padding: 120px 5%;
}

.payoff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.payoff-left h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.payoff-list { list-style: none; }

.payoff-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.payoff-check {
  width: 26px;
  height: 26px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   TESTIMONIALS MASTER
============================================================ */
.testimonials-master {
  background: var(--bg-primary);
  padding: 120px 0;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.section-sub {
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem;
  display: block;
}

.gold-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 120px;
  margin: 0 auto 3rem;
}

.gold-divider hr {
  flex: 1;
  height: 1px;
  background: var(--gold);
  border: none;
}

.gold-divider span { color: var(--gold); font-size: 1rem; }

.client-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 4rem;
}

.client-testi-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.client-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.client-testi-featured {
  background: var(--red);
  border-color: var(--red);
}

.client-testi-featured .voice-text,
.client-testi-featured .voice-author,
.client-testi-featured .quote-mark { color: #fff; }

.quote-mark {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

/* Testimonial author row with headshot */
.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.client-testi-featured .testi-author-row { border-top-color: rgba(255,255,255,0.15); }

.testi-headshot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.client-testi-featured .testi-headshot { border-color: rgba(255,255,255,0.5); }

.testi-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.testi-headshot-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 1.2rem;
}

.client-testi-featured .testi-headshot-placeholder {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

.testi-author-info { flex: 1; }

.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.client-testi-featured .testi-name { color: #fff; }

.voice-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.voice-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Presence row */
.presence-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin: 4rem 0;
  align-items: center;
}

.presence-left h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.presence-left p {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.presence-right {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.presence-card {
  flex: 1;
  min-width: 220px;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 1.8rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.presence-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.presence-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
}

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.featured-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,164,77,0.3);
}

.featured-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  font-style: italic;
}

.featured-author {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Signature block */
.signature-block {
  text-align: center;
  margin-top: 5rem;
  padding: 3.5rem 2rem;
  background: var(--bg-secondary);
  border-radius: 28px;
  border: 1px solid rgba(200,164,77,0.15);
}

.signature-block h4 {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.signature-block p {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.signature-tags {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

/* ============================================================
   SERVICES SECTION — Crocodile Texture Cards
============================================================ */
.services-section {
  background: #0a0a0a;
  padding: 120px 5%;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.services-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #fff;
  letter-spacing: 0.04em;
}

.services-header .section-label { color: var(--gold); }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

/* --- Croc texture card base --- */
.service-block {
  background-color: #131313;
  /* background-image: url('img/croc-scales.svg'); */
  background-size: 50px 60px;
  border-radius: var(--card-radius);
  padding: 2.2rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Colored top accent bar (unique per card using nth-child) */
.service-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transition: height 0.3s ease;
}

.service-block:nth-child(2)::before { background: var(--gold); }
.service-block:nth-child(3)::before { background: var(--red); height: 100%; opacity: 0.92; }
.service-block:nth-child(4)::before { background: var(--teal); }
.service-block:nth-child(5)::before { background: var(--gold); }

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.14);
}

/* Featured card — red solid overlay */
.service-block-featured {
  border-color: rgba(200,15,46,0.5);
}

.service-block-featured h4,
.service-block-featured p { position: relative; z-index: 1; color: #fff; }

.service-block-featured .service-link {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.85);
}
.service-block-featured .service-link:hover { color: #fff; }

.service-block-featured .service-block-icon {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.95);
}

.service-block-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.service-block:nth-child(1) .service-block-icon { color: var(--red); }
.service-block:nth-child(2) .service-block-icon { color: var(--gold); }
.service-block:nth-child(4) .service-block-icon { color: var(--teal); }
.service-block:nth-child(5) .service-block-icon { color: var(--gold); }

.service-block h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.service-block p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.service-block:nth-child(2) .service-link { color: var(--gold); }
.service-block:nth-child(4) .service-link { color: var(--teal); }
.service-block:nth-child(5) .service-link { color: var(--gold); }

.service-link:hover { gap: 10px; }

/* --- Emily Script Signature Section --- */
.script-accent-section {
  background: #000;
  padding: 50px 5%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.script-signature-img {
  max-width: 440px;
  width: 65%;
  margin: 0 auto;
  display: block;
  border-radius: 0;
}

/* ============================================================
   CTA FUTURE SECTION
============================================================ */
.cta-future-section {
  background: #000;
  padding: 100px 5%;
  text-align: center;
}

.cta-future-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.cta-future-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INVITATION SECTION
============================================================ */
.invitation-section {
  background: var(--red);
  padding: 120px 5%;
}

.invitation-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.invitation-quote {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-weight: 300;
  border: none;
  margin: 1.5rem 0;
}

.invitation-sig {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 2rem;
  opacity: 0.9;
}

/* ============================================================
   BIO SECTION
============================================================ */
.bio-section {
  background: var(--bg-primary);
  padding: 120px 5%;
}

.bio-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.bio-image {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.bio-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.bio-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.bio-title-text {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.bio-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
}

.bio-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.bio-contact-line {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bio-contact-line i { color: var(--red); }

/* ============================================================
   CONTACT SECTION (homepage mini)
============================================================ */
.contact-section {
  background: var(--bg-contact);
  padding: 120px 5%;
}

.contact-heading h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.contact-divider hr {
  width: 80px;
  border: none;
  height: 1px;
  background: var(--gold);
}

.contact-divider span { color: var(--gold); font-size: 1rem; }

.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.vertical-gold-line {
  background: var(--gold);
  width: 1px;
  align-self: stretch;
  min-height: 360px;
  opacity: 0.4;
}

.form-title, .details-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-title h3, .details-title h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.gold-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.input-group {
  position: relative;
  margin-bottom: 1.2rem;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
}

.input-group input {
  width: 100%;
  padding: 15px 15px 15px 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--input-radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.input-group input::placeholder { color: var(--text-tertiary); }

.input-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,15,46,0.07);
}

.btn-send {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.8rem;
  transition: var(--transition);
}

.btn-send:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200,15,46,0.25);
}

.contact-info { margin-bottom: 2rem; }

.info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-text {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.follow-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-item { text-align: center; }

.social-circle {
  width: 48px;
  height: 48px;
  background: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.2rem;
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}

.social-circle:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.social-label {
  font-size: 0.7rem;
  margin-top: 5px;
  color: var(--text-tertiary);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #0D0D0D;
  padding: 80px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo { margin-bottom: 1.2rem; }

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.4rem;
  letter-spacing: 0.06em;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 1rem; }

.footer-social a {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ============================================================
   SECTION LABELS & UTILITIES
============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.section-label-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.8rem;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.hero-subhead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2rem;
}

/* Gold diamond divider */
.gold-diamond {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.gold-diamond hr {
  flex: 1;
  max-width: 60px;
  border: none;
  height: 1px;
  background: var(--gold);
}

.gold-diamond span { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background-image: url("img/cinematic-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.88) 40%,
    rgba(10,10,10,0.3)  72%,
    rgba(10,10,10,0)   100%);
  z-index: 1;
}

.about-hero-left {
  width: 55%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 4% 80px 6%;
  z-index: 2;
}

.about-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 16px;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-story {
  padding: 120px 5%;
  background: var(--bg-soft);
}

.about-two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-story-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
}

.about-timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(200,164,77,0.3);
}

.about-timeline-item {
  margin-bottom: 2.5rem;
  position: relative;
}

.about-timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-soft);
}

.about-timeline-year {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.about-timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

.about-mission {
  padding: 100px 5%;
  background: var(--black);
  text-align: center;
}

.about-mission h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.about-mission p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.8;
}

.about-values {
  padding: 120px 5%;
  background: var(--bg-primary);
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.about-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-card-content {
  padding: 2.5rem 2rem;
  text-align: center;
}

.about-card-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.about-card-content h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.about-card-content p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

.about-authority {
  padding: 120px 5%;
  background: var(--bg-secondary);
}

.about-authority-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-bullets { list-style: none; }

.about-bullets li {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-bullets li::before {
  content: "•";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-authority-visual img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
}

.about-cta-full {
  padding: 120px 5%;
  background: var(--red);
  text-align: center;
}

.about-cta-full h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

/* Editorial about section */
.about-editorial {
  background: var(--bg-primary);
  padding: 100px 5%;
}

.about-editorial-inner { max-width: 1100px; margin: 0 auto; }

.about-pull-quote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 3rem;
  border-left: 4px solid var(--gold);
  padding-left: 2rem;
  letter-spacing: 0.03em;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-credentials {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.about-credentials h4 {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-credentials ul { list-style: none; }

.about-credentials ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.about-credentials ul li i { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   WORK WITH EMILY PAGE
============================================================ */
.wwe-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.wwe-obstacle {
  background: var(--bg-secondary);
  padding: 4rem 5%;
  text-align: center;
}

.wwe-obstacle p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--text-secondary);
}

.wwe-pain-list {
  background: var(--bg-primary);
  padding: 4.5rem 5%;
}

.wwe-pain-list ul {
  max-width: 800px;
  margin: 1.5rem auto 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wwe-pain-list li {
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

.wwe-premise {
  background: #000;
  padding: 6.5rem 5%;
  text-align: center;
}

.wwe-premise p {
  max-width: 780px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

/* 4 service cards */
.wwe-services-section {
  background: var(--bg-primary);
  padding: 120px 5%;
}

.wwe-services-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.wwe-service-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 2.8rem 2.4rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wwe-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.wwe-service-card:nth-child(2)::after { background: var(--gold); }
.wwe-service-card:nth-child(3)::after { background: var(--teal); }
.wwe-service-card:nth-child(4)::after { background: #000; }

.wwe-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,15,46,0.15);
}

.wwe-card-num {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  color: rgba(200,15,46,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wwe-service-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.wwe-service-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.wwe-service-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.wwe-service-card ul li {
  font-size: 0.87rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wwe-service-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   BLAZER SOCIETY PAGE
============================================================ */
.bs-what-inside {
  background: var(--bg-primary);
  padding: 6rem 5%;
}

.bs-inside-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.8rem;
}

.bs-inside-item {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.bs-inside-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.bs-inside-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.bs-inside-item h4 {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.bs-inside-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-page-hero {
  background: #000;
  padding: 11rem 5% 6rem;
  text-align: center;
}

.contact-page-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.contact-page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.contact-page-body {
  background: var(--bg-primary);
  padding: 7rem 5%;
}

.contact-page-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form-block h3,
.contact-info-block h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 1.6rem;
}

.contact-page-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  transition: var(--transition);
  outline: none;
}

.contact-page-input::placeholder { color: var(--text-tertiary); }

.contact-page-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,15,46,0.07);
}

.contact-page-textarea { height: 130px; resize: vertical; }

.contact-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-icon-circle {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.92rem;
  color: var(--text-primary);
}

.contact-invitation {
  background: var(--red);
  padding: 7rem 5%;
  text-align: center;
}

.contact-invitation h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.contact-invitation p {
  max-width: 780px;
  margin: 1rem auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  font-style: italic;
}

/* ============================================================
   SOCIETY FEATURES
============================================================ */
.society-what {
  padding: 100px 5%;
  background: var(--bg-primary);
}

.society-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.society-what-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  letter-spacing: 0.04em;
}

.society-what-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.society-what-image img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
}

.society-audience {
  padding: 100px 5%;
  background: var(--bg-secondary);
}

.society-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.society-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.society-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,164,77,0.2);
}

.society-card-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.society-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.society-card p {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

.society-benefits,
.society-features {
  padding: 100px 5%;
}

.society-features {
  background: var(--bg-soft);
}

.society-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.society-cta {
  padding: 100px 5%;
  background: var(--black);
  text-align: center;
}

.society-cta h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.society-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.btn-large {
  font-size: 1rem;
  padding: 16px 44px;
}

/* Step cards */
.step-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 2.5rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border-light);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.step-icon { font-size: 2.2rem; color: var(--gold); min-width: 60px; display: flex; align-items: center; justify-content: center; }

.step-card h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* Logo cloud */
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  opacity: 0.55;
}

.logo-cloud span {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
}

/* Misc */
.section-padding { padding: 100px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-cta { background: var(--bg-cta); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.steps-row { display: flex; gap: 2rem; justify-content: center; }
.steps-row > * { flex: 1; }

/* ============================================================
   RESPONSIVE
============================================================ */

/* 1280px */
@media (max-width: 1280px) {
  .container, .about-container { max-width: 1060px; padding: 0 32px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 1024px */
@media (max-width: 1024px) {
  .container, .about-container { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .society-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .presence-row { grid-template-columns: 1fr; }
  .client-testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* 900px */
@media (max-width: 900px) {
  .problem-inner,
  .premise-section,
  .payoff-inner,
  .bio-inner,
  .about-story-grid,
  .about-two-col,
  .about-authority-grid,
  .about-story-grid,
  .wwe-services-grid,
  .contact-page-grid,
  .society-grid-2,
  .society-grid-3 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .premise-image { min-height: 45vw; }
  .premise-image img { height: 100%; }
  .about-credentials { position: static; }
  .client-testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 768px — MOBILE */
@media (max-width: 768px) {
  /* Container */
  .container, .about-container { padding: 0 20px; }

  /* Navbar */
  .navbar {
    height: 72px;
    padding: 0 5%;
    flex-wrap: nowrap;
  }

  .navbar.scrolled { height: 64px; }

  .logo img { height: 60px; }
  .navbar.scrolled .logo img { height: 54px; }

  .nav-center {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
  }

  .nav-center.active,
  body.menu-open .nav-center { left: 0; }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-links a { font-size: 1.3rem; color: rgba(255,255,255,0.9) !important; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold) !important; }

  .nav-actions {
    display: none;
  }

  .menu-toggle { display: flex; }

  /* Hero */
  .hero, .about-hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left, .about-hero-left {
    width: 100%;
    padding: 100px 5% 3rem;
    text-align: center;
    justify-content: center;
  }

  .hero-content, .about-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .headline, .about-headline {
    font-size: clamp(34px, 8vw, 46px);
    margin-top: 0;
  }

  .hero-subhead, .wwe-hero-sub { margin-left: auto; margin-right: auto; }

  .divider { justify-content: center; }
  .divider-line { max-width: 50px; }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-group .btn-primary,
  .cta-group .btn-secondary,
  .cta-group .btn-gold-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .bullets { text-align: left; max-width: 300px; margin: 1rem auto 0; }

  .hero-right {
    width: 100%;
    min-height: 300px;
    justify-content: center;
    padding-bottom: 2rem;
  }

  .hero-right img { max-width: 70%; }

  /* Sections */
  .problem-section,
  .pain-section,
  .framework-section,
  .payoff-section,
  .testimonials-master,
  .services-section,
  .cta-future-section,
  .invitation-section,
  .bio-section,
  .contact-section,
  .about-story,
  .about-mission,
  .about-values,
  .about-authority,
  .about-cta-full,
  .wwe-services-section,
  .society-what,
  .society-audience,
  .society-benefits,
  .society-features,
  .society-cta,
  .contact-page-body,
  .contact-invitation {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .about-cards-grid,
  .society-grid-4 {
    grid-template-columns: 1fr;
  }

  /* Pain cards */
  .pain-cards { grid-template-columns: 1fr; }

  /* Featured */
  .featured-grid { grid-template-columns: 1fr; }

  /* CTA future */
  .cta-future-btns { flex-direction: column; align-items: center; }
  .cta-future-btns .btn-primary,
  .cta-future-btns .btn-secondary,
  .cta-future-btns .btn-teal-solid { width: 100%; max-width: 300px; justify-content: center; }

  /* Contact */
  .contact-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .vertical-gold-line { display: none; }

  /* Presence section */
  .presence-right { flex-direction: column; }

  /* Bio */
  .bio-image img { height: 380px; }
  .bio-ctas { flex-direction: column; }
  .bio-ctas .btn-primary, .bio-ctas .btn-gold-outline-dark { justify-content: center; }

  /* About */
  .about-hero-left { width: 100%; }

  /* Typography */
  .section-title { font-size: 1.8rem; }
  .society-cta h2 { font-size: 2.5rem; }
  .cta-future-section h2 { font-size: 2.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-col { text-align: center; }
  .footer-social { justify-content: center; }

  /* Steps */
  .steps-row { flex-direction: column; }
  .grid-2 { grid-template-columns: 1fr; }

  /* Society */
  .society-grid-3 { grid-template-columns: 1fr; }

  /* WW Emily */
  .wwe-services-grid { grid-template-columns: 1fr; }
}

/* 480px */
@media (max-width: 480px) {
  .preloader-name img { height: 130px; }
  .hero-right img { max-width: 85%; }
  .headline, .about-headline { font-size: 30px; }
  .about-pull-quote { font-size: 1.5rem; }
  .featured-text { font-size: 0.9rem; }
  .btn-primary, .btn-secondary, .btn-gold-outline { padding: 12px 22px; font-size: 0.85rem; }
}
