/* ========================================
   NATHAN'S OFFICE / EXPOSURE INTELLIGENCE
   CSS STYLESHEET
   Dark Luxury / Cinematic / Reddington Voice
   ======================================== */

/* ========================================
   1. IMPORTS & GOOGLE FONTS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ========================================
   2. CSS RESET & BASE STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #111111;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* ========================================
   3. COLOR & TYPOGRAPHY VARIABLES
   ======================================== */

:root {
  --navy: #1B2A4A;
  --gold: #C4A058;
  --white: #FFFFFF;
  --black: #111111;
  /* Removed: --light-gray, --medium-gray (off-palette) */
  --dark-overlay: rgba(27, 42, 74, 0.75);
  --dark-overlay-strong: rgba(27, 42, 74, 0.85);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Transitions */
  --transition-standard: 0.3s ease;
  --transition-smooth: 0.6s ease;

  /* Z-index layers */
  --z-nav: 1000;
  --z-modal: 2000;
}

/* ========================================
   4. TYPOGRAPHY
   ======================================== */

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: -0.3px;
}

h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.5;
}

h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
}

h5 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-standard);
}

a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ========================================
   5. TEXT UTILITY CLASSES
   ======================================== */

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
}

.gold-text {
  color: var(--gold);
}

.emphasis {
  font-style: italic;
  color: var(--black);
  font-weight: 500;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-light {
  color: var(--white);
}

blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--black);
  border-left: 3px solid var(--gold);
  padding-left: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  line-height: 1.8;
}

/* ========================================
   6. SPACING UTILITIES
   ======================================== */

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

/* ========================================
   7. LAYOUT: CONTAINER & GRID
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.narrow {
  max-width: 800px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

/* ========================================
   8. NAVIGATION / NAVBAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--navy);
  z-index: var(--z-nav);
  padding: 1.5rem var(--spacing-md);
  transition: all var(--transition-standard);
}

.navbar.scrolled {
  background-color: rgba(27, 42, 74, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-logo:hover {
  color: var(--gold);
}

/* Desktop nav styles removed — hamburger menu used on all devices */

/* Hamburger Menu (ALL devices) */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 10;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition-standard);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav menu — hidden by default, slide-down on toggle */
.navbar-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(27, 42, 74, 0.98);
  flex-direction: column;
  gap: 0;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0;
  backdrop-filter: blur(10px);
}

.navbar-menu.active {
  max-height: 400px;
  padding: 1rem 0;
}

.navbar-menu li {
  list-style: none;
}

.navbar-menu a {
  display: block;
  padding: 1rem 2rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 500;
  transition: color var(--transition-standard), background-color var(--transition-standard);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--gold);
  background-color: transparent;
}

.navbar-logo a {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

/* ========================================
   9. HERO SECTIONS
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.75) 0%, rgba(27, 42, 74, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--spacing-md);
  animation: fadeInHero 1.2s ease-out;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  line-height: 1.3;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--spacing-xl);
  letter-spacing: 0.5px;
}

.hero-cta {
  margin-top: var(--spacing-xl);
}

/* Subpage Hero (shorter) */
.hero-subpage {
  min-height: 70vh;
}

.hero-subpage h1 {
  color: var(--white);
}

/* ========================================
   10. SECTIONS
   ======================================== */

.section {
  padding: clamp(60px, 12vw, 100px) var(--spacing-md);
  position: relative;
}

.section--white {
  background-color: var(--white);
  color: var(--black);
}

.section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.section--navy h1,
.section--navy h2,
.section--navy h4 {
  color: var(--white);
}

.section--navy h3 {
  color: var(--gold);
}

.section--navy p {
  color: var(--white);
}

.section--light-gray {
  background-color: var(--white);
  color: var(--black);
}

.section--image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-overlay-strong);
  z-index: 1;
}

.section--image > * {
  position: relative;
  z-index: 2;
}

/* ========================================
   11. DIVIDER / SEPARATOR
   ======================================== */

.divider {
  width: 80px;
  height: 2px;
  background-color: var(--gold);
  margin: var(--spacing-lg) auto;
}

.divider--left {
  margin-left: 0;
  margin-right: auto;
}

.divider--dark {
  background-color: var(--black);
}

/* ========================================
   12. PROOF POINTS / STATS
   ======================================== */

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin: var(--spacing-xl) 0;
}

.proof-point {
  flex: 1;
  min-width: 250px;
  padding-left: var(--spacing-md);
  border-left: 3px solid var(--gold);
}

.proof-point-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.proof-point-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
}

.section--navy .proof-point-heading {
  color: var(--white);
}

.proof-point-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
}

.section--navy .proof-point-text {
  color: var(--white);
}

/* ========================================
   13. DOMAIN CARDS
   ======================================== */

.domains-container {
  max-width: 900px;
  margin: 0 auto;
}

.domain {
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid #C4A058;
}

.section--navy .domain {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.domain:last-child {
  border-bottom: none;
}

.domain-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 80px;
  text-align: right;
}

.domain-content {
  flex: 1;
}

.domain-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.section--navy .domain-heading {
  color: var(--white);
}

.domain-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin: var(--spacing-lg) 0;
  line-height: 1.6;
  font-style: italic;
}

.section--navy .domain-question {
  color: var(--white);
}

.domain-divider {
  width: 100%;
  height: 1px;
  background-color: var(--black);
  margin: var(--spacing-lg) 0;
}

.section--navy .domain-divider {
  background-color: rgba(255, 255, 255, 0.2);
}

.domain-closer {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  margin-top: var(--spacing-lg);
}

.section--navy .domain-closer {
  color: var(--gold);
}

/* ========================================
   14. CASE STUDIES / TESTIMONIALS
   ======================================== */

.case-study {
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid #C4A058;
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.section--navy .case-study {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.case-study:last-child {
  border-bottom: none;
}

.case-study-meta {
  min-width: 150px;
}

.case-study-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}

.case-study-body {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.section--navy .case-study-body {
  color: var(--white);
}

.case-study-outcome {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--black);
  font-size: 1rem;
}

.section--navy .case-study-outcome {
  color: var(--white);
}

/* ========================================
   15. CONTACT FORM
   ======================================== */

.contact-form {
  max-width: 600px;
  margin: var(--spacing-xl) auto 0;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.section--navy .form-label {
  color: var(--gold);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid var(--medium-gray);
  background-color: transparent;
  color: var(--black);
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color var(--transition-standard);
}

.section--navy .form-input,
.section--navy .form-textarea {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: 'Inter', system-ui, sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--black);
}

.section--navy .form-input::placeholder,
.section--navy .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   16. BUTTONS / CTA
   ======================================== */

.cta,
.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-standard);
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
}

.cta:hover,
.btn:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 160, 88, 0.3);
}

.cta:active,
.btn:active {
  transform: translateY(0);
}

.cta--navy {
  background-color: var(--navy);
  color: var(--white);
}

.cta--navy:hover {
  background-color: var(--navy);
}

.cta--secondary {
  background-color: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 38px;
}

.cta--secondary:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* ========================================
   17. FOR PROFESSIONALS SECTION
   ======================================== */

.professionals-section {
  border-top: 2px solid var(--gold);
  padding-top: var(--spacing-2xl);
  background-color: var(--white);
}

/* ========================================
   18. LOGOS BAR / FEATURED IN
   ======================================== */

.logos-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  margin: var(--spacing-2xl) 0;
  padding: var(--spacing-xl) 0;
}

.logo-item {
  max-height: 50px;
  display: flex;
  align-items: center;
}

.logo-item img {
  max-height: 50px;
  width: auto;
  opacity: 0.7;
  transition: all var(--transition-standard);
  filter: grayscale(100%);
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========================================
   19. FOOTER
   ======================================== */

.footer {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  letter-spacing: 1px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}

.footer-location {
  font-size: 14px;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: var(--spacing-lg) auto;
}

.footer-copyright {
  font-size: 12px;
  color: var(--gold);
  margin-top: var(--spacing-lg);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-standard);
}

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

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-standard);
}

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

/* ========================================
   20. ANIMATIONS
   ======================================== */

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   21. RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar-menu {
    gap: 2rem;
  }

  .proof-points {
    gap: var(--spacing-lg);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .domain {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .domain-number {
    text-align: left;
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
  }

  .hero-subpage {
    min-height: 50vh;
  }

  .hero-headline {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }

  /* Sections */
  .section {
    padding: 60px var(--spacing-md);
  }

  h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  }

  p {
    font-size: 16px;
  }

  /* Grid */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Proof Points */
  .proof-points {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .proof-point {
    min-width: 100%;
  }

  /* Domains */
  .domain {
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
  }

  .domain-number {
    text-align: left;
    min-width: auto;
  }

  /* Case Studies */
  .case-study {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .case-study-meta {
    min-width: auto;
  }

  /* Logos */
  .logos-bar {
    gap: var(--spacing-md);
  }

  .logo-item img {
    max-height: 40px;
  }

  /* Footer */
  .footer {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-links {
    gap: var(--spacing-md);
  }

  /* Form */
  .form-input,
  .form-textarea {
    font-size: 16px;
  }
}

/* Very small mobile (< 480px) */
@media (max-width: 480px) {
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
  }

  .navbar {
    padding: 1rem var(--spacing-sm);
  }

  .navbar-logo {
    font-size: 1.4rem;
  }

  .hero-headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  }

  h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  h2 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
  }

  .cta {
    padding: 12px 32px;
    font-size: 12px;
  }

  blockquote {
    padding-left: var(--spacing-md);
    font-size: 1.1rem;
  }

  .proof-point-number {
    font-size: 2rem;
  }

  .domain-number {
    font-size: 2.2rem;
  }

  .domain-heading {
    font-size: 1.4rem;
  }
}

/* ========================================
   22. UTILITY & ACCESSIBILITY
   ======================================== */

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.no-scroll {
  overflow: hidden;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

/* ========================================
   23. PRINT STYLES
   ======================================== */

@media print {
  body {
    background: var(--white);
    color: var(--black);
  }

  .navbar,
  .footer {
    display: none;
  }

  a {
    text-decoration: underline;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    color: var(--black);
  }

  p {
    page-break-inside: avoid;
  }
}

/* ========================================
   24. SUBPAGE HERO
   ======================================== */

.hero--sub {
  min-height: 70vh;
}

.hero--sub h1 {
  color: var(--white);
}

/* ========================================
   25. CONTAINER NARROW
   ======================================== */

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ========================================
   26. SECTION LABEL & TEXT
   ======================================== */

.section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--spacing-lg);
}

.section-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.section--navy .section-text {
  color: var(--white);
}

.section-text--larger {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}

.section-text--signature {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--gold);
}

.section--navy .section-text--signature {
  color: var(--gold);
}

/* ========================================
   27. DOMAIN NAME & MIDDLE
   ======================================== */

.domain-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.domain-middle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black);
  margin: var(--spacing-sm) 0;
  font-style: italic;
}

/* ========================================
   28. INTRO TEXT
   ======================================== */

.intro-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
}

/* ========================================
   29. SPRINT SECTION
   ======================================== */

.sprint-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.sprint-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.sprint-subtext {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--spacing-lg);
}

/* ========================================
   30. SCROLL INDICATOR
   ======================================== */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  color: var(--white);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   31. CONTACT PAGE — TWO-COLUMN FORM
   ======================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-form {
  max-width: 100%;
  margin: 0;
}

.contact-form .form-group {
  margin-bottom: var(--spacing-md);
}

.contact-form .form-label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  border: none;
  border-radius: 8px;
  background-color: var(--white);
  color: var(--black);
  transition: box-shadow var(--transition-standard), background-color var(--transition-standard);
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  background-color: var(--white);
  box-shadow: 0 0 0 2px rgba(196, 160, 88, 0.3);
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: var(--gold);
  font-weight: 300;
}

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

.contact-form .btn-submit {
  display: block;
  width: 100%;
  padding: 16px 40px;
  background-color: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-standard);
  margin-top: var(--spacing-md);
}

.contact-form .btn-submit:hover {
  background-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.3);
}

.contact-expect h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.contact-expect p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.contact-expect .expect-divider {
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  margin: var(--spacing-lg) 0;
}

.contact-expect .expect-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
}

.contact-intro {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
}

.contact-intro p {
  margin: 0;
}

.form-note {
  font-size: 0.85rem;
  color: var(--black);
  text-align: center;
  margin-top: var(--spacing-lg);
  font-style: italic;
}

/* ========================================
   32. FOR PROFESSIONALS SECTION
   ======================================== */

.section--professionals {
  background-color: var(--white);
  border-top: 2px solid var(--gold);
}

.professionals-header {
  margin-bottom: var(--spacing-lg);
}

.professionals-subheading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
  margin-top: var(--spacing-sm);
}

.professionals-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.professionals-emphasis {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}

/* ========================================
   33. IMAGE OVERLAY CONTENT
   ======================================== */

.image-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.image-text-primary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.image-text-secondary {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================
   34. RECOGNITION SECTION (GAVIN NATHAN)
   ======================================== */

.section--recognition {
  background-color: #FFFFFF;
  padding: 100px 40px;
}

.recognition__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.recognition__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
}

.recognition__awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
}

.recognition__awards img {
  height: 90px;
  width: auto;
}

.recognition__divider {
  width: 120px;
  height: 1px;
  background-color: #C4A058;
  margin: 0 auto 60px auto;
}

.recognition__media-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 35px;
}

.recognition__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.recognition__media img {
  height: 35px;
  width: auto;
}

@media (max-width: 768px) {
  .section--recognition {
    padding: 70px 30px;
  }

  .recognition__awards {
    flex-direction: column;
    gap: 30px;
  }

  .recognition__divider {
    margin-bottom: 40px;
  }

  .recognition__media {
    flex-direction: column;
    gap: 35px;
  }
}

/* ========================================
   35. SKIP TO CONTENT (Accessibility)
   ======================================== */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================================
   36. KEYBOARD FOCUS STYLES (Accessibility)
   ======================================== */

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.navbar-menu a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.btn:focus-visible,
.btn-submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ========================================
   37. DOMAIN VISUAL ANCHORING (Enhancement)
   ======================================== */

.domains-list .domain {
  border-bottom-color: rgba(196, 160, 88, 0.2);
}

/* ========================================
   END OF STYLESHEET
   ======================================== */
