/* ==========================================================================
   ETHEREAL DESIGN SYSTEM - Great Leap Solutions
   Version: 1.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   Self-hosted Google Fonts — Latin subset, woff2.
   Eliminates external connections to fonts.googleapis.com / fonts.gstatic.com
   and removes CLS caused by font-swap timing.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/google/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/google/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/google/dm-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/google/dm-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/google/outfit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/google/outfit-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/google/outfit-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/google/outfit-700.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   CSS Variables (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Primary Background Colors — warm navy */
  --bg-dark-1: #1f2b3d;
  --bg-dark-2: #1a2538;
  --bg-dark-3: #1c2a3e;
  --bg-dark-deep: #141c2b;
  --bg-hero: #1c2a3e;
  --bg-page: #1c2a3e;
  --bg-section-alt: #1a2538;
  --bg-card: #1f2b3d;

  /* Accent Colors — single orange accent */
  --accent: #e8734a;
  --accent-hover: #f0845e;
  --accent-gold: #e8734a;
  --accent-gold-light: #f0845e;
  --accent-gold-hover: #f0845e;
  --accent-gold-muted: rgba(232, 115, 74, 0.7);
  --gold-opacity-50: rgba(232, 115, 74, 0.5);
  --gold-opacity-80: rgba(232, 115, 74, 0.8);
  --gold-border: rgba(232, 115, 74, 0.22);
  --accent-orange: #e8734a;
  --accent-coral: #d4633a;

  /* White opacity variants */
  --white-opacity-10: rgba(255, 255, 255, 0.1);
  --white-opacity-20: rgba(255, 255, 255, 0.2);

  /* Text Colors — solid warm grays */
  --text-white: #ffffff;
  --text-cream: #f0ece4;
  --text-cream-muted: #d0cbc3;
  --text-white-muted: #d0cbc3;
  --text-white-subtle: #9a9289;
  --text-primary: #ffffff;
  --text-secondary: #d0cbc3;
  --text-tertiary: #8a8279;
  --text-gold-muted: rgba(232, 115, 74, 0.8);

  /* Semantic Colors */
  --color-warning: #ffc107;

  /* Light Theme */
  --bg-light: #faf9f7;
  --text-dark: #1c2a3e;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
.ethereal-page {
  font-family: var(--font-body);
  color: var(--text-white);
  background: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.ethereal-h1,
.ethereal-h2,
.ethereal-h3,
.ethereal-h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.2;
  margin: 0;
  color: var(--text-cream);
}

.ethereal-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.ethereal-h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.ethereal-h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.ethereal-h4 {
  font-weight: 400;
  font-size: 1.5rem;
}

.ethereal-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-white-muted);
}

.ethereal-body-large {
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-gold {
  color: var(--accent-gold);
}

.text-muted {
  color: var(--text-white-muted);
}

.text-subtle {
  color: var(--text-white-subtle);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.ethereal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 13, 26, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(232, 115, 74, 0);
  padding: 1.2rem 0;
  transition: background .35s ease, backdrop-filter .35s ease, -webkit-backdrop-filter .35s ease, border-color .35s ease;
}

.ethereal-header.scrolled {
  background: rgba(10, 13, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
}

.ethereal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}


/* Logo */
.ethereal-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-cream);
}

.ethereal-logo svg {
  width: 32px;
  height: 32px;
}

.ethereal-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--text-cream);
  text-transform: none;
}

/* Navigation */
.ethereal-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.ethereal-nav-link {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--text-cream-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.ethereal-nav-link:hover {
  color: var(--text-cream);
}

.ethereal-nav-cta {
  background: #e8734a;
  color: var(--bg-page);
  padding: .65rem 1.5rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

.ethereal-nav-cta:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-page);
}

/* Dropdown */
.ethereal-nav-dropdown {
  position: relative;
}

.ethereal-nav-dropdown .ethereal-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform var(--transition-fast);
}

.ethereal-nav-dropdown:hover .dropdown-arrow,
.ethereal-nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.ethereal-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 200px;
  background: rgba(14, 21, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(232, 115, 74, 0.05);
}

/* Decorative arrow pointing up */
.ethereal-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(14, 21, 40, 0.95);
  border-left: 1px solid var(--gold-border);
  border-top: 1px solid var(--gold-border);
}

.ethereal-nav-dropdown:hover .ethereal-dropdown-menu,
.ethereal-nav-dropdown:focus-within .ethereal-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ethereal-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-white-muted);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.ethereal-dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 60%;
  background: var(--accent-gold);
  transition: width 0.2s ease;
}

.ethereal-dropdown-menu a:hover {
  color: var(--text-white);
  background: rgba(232, 115, 74, 0.08);
}

.ethereal-dropdown-menu a:hover::before {
  width: 3px;
}

/* Subtle separator between items */
.ethereal-dropdown-menu a:not(:last-child) {
  border-bottom: 1px solid rgba(232, 115, 74, 0.08);
}

/* Mobile Menu Toggle */
.ethereal-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.ethereal-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.ethereal-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-page);
  overflow: hidden;
  padding: 80px 40px;
}

.ethereal-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow */
.ethereal-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.ethereal-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
}

.ethereal-eyebrow-text {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

/* Hero Heading - MAX 2-3 lines */
.ethereal-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 3px;
  margin-bottom: 28px;
  max-width: 100%;
}

.ethereal-hero h1 .text-gold {
  display: block;
}

.ethereal-hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* CTA Buttons */
.ethereal-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Orbs (Background Effects) - Subtle
   -------------------------------------------------------------------------- */
.ethereal-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ethereal-orb-1 {
  top: -10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 115, 74, 0.1) 0%, transparent 60%);
  filter: blur(80px);
}

.ethereal-orb-2 {
  bottom: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 154, 90, 0.06) 0%, transparent 60%);
  filter: blur(100px);
}

.ethereal-orb-3 {
  top: 40%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(184, 154, 90, 0.05) 0%, transparent 60%);
  filter: blur(80px);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.ethereal-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: .77rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background .25s ease;
  cursor: pointer;
  border: none;
}

.ethereal-btn-primary {
  background: var(--accent-gold);
  color: #ffffff;
}

.ethereal-btn-primary:hover {
  background: var(--accent-gold-hover);
  color: #ffffff;
}

.ethereal-btn-secondary {
  background: transparent;
  color: var(--text-cream);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .25s, gap .25s;
}

.ethereal-btn-secondary:hover {
  color: var(--accent-gold);
  gap: .9rem;
}

.ethereal-btn-secondary::after {
  content: '\2192';
}

/* Focus styles for accessibility */
.ethereal-btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.ethereal-nav-link:focus-visible,
.ethereal-nav-cta:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.ethereal-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.ethereal-section-dark {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--gold-border);
}

.ethereal-section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.ethereal-section-light .ethereal-body {
  color: rgba(26, 26, 46, 0.7);
}

.ethereal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.ethereal-section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.ethereal-section-header h2 {
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Service Cards
   -------------------------------------------------------------------------- */
.ethereal-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ethereal-service-card {
  position: relative;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--gold-border);
  border-radius: 0;
  padding: 3rem 2.5rem;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.ethereal-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #e8734a;
  transition: width .5s ease;
}

.ethereal-service-card:hover::after {
  width: 100%;
}

.ethereal-service-card:hover,
.ethereal-service-card:focus-within {
  background: rgba(255, 255, 255, .025);
  border-color: rgba(232, 115, 74, .4);
  transform: translateY(-5px);
  box-shadow: none;
}

.ethereal-service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 0;
  margin-bottom: 1.6rem;
}

.ethereal-service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
}

.ethereal-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-cream);
}

.ethereal-service-card p {
  color: var(--text-cream-muted);
  margin-bottom: 30px;
  font-size: .88rem;
  line-height: 1.75;
}

.ethereal-service-link {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: auto;
  padding: 0;
  transition: var(--transition-fast);
}

.ethereal-service-link:hover {
  gap: .9rem;
}

/* --------------------------------------------------------------------------
   Page Hero (Subpages)
   -------------------------------------------------------------------------- */
.ethereal-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-page);
  overflow: hidden;
  padding: 160px 20px 80px;
  text-align: center;
}

.ethereal-page-hero h1 {
  position: relative;
  z-index: 2;
}

.ethereal-page-hero-subtitle {
  position: relative;
  z-index: 2;
  font-size: 1.125rem;
  color: var(--text-white-muted);
  max-width: 600px;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.ethereal-form-group {
  margin-bottom: 24px;
}

.ethereal-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-white-muted);
  margin-bottom: 8px;
}

.ethereal-form-input,
.ethereal-form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.ethereal-form-input:focus,
.ethereal-form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.ethereal-form-input::placeholder,
.ethereal-form-textarea::placeholder {
  color: var(--text-white-subtle);
}

.ethereal-form-textarea {
  min-height: 150px;
  resize: vertical;
}


/* --------------------------------------------------------------------------
   Contact Info
   -------------------------------------------------------------------------- */
.ethereal-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ethereal-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ethereal-contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 115, 74, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.ethereal-contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
}

.ethereal-contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white-subtle);
  margin-bottom: 4px;
}

.ethereal-contact-value {
  font-size: 1rem;
  color: var(--text-white);
}

.ethereal-contact-value a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.ethereal-contact-value a:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ethereal-footer {
  background: var(--bg-section-alt);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.ethereal-footer::before {
  display: none;
}

.ethereal-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.ethereal-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ethereal-footer-brand p {
  color: var(--text-cream-muted);
  font-size: .85rem;
  line-height: 1.7;
  margin: .8rem 0 1.2rem;
  max-width: none;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: var(--text-white-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.ethereal-footer-title {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.ethereal-footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ethereal-footer-links a {
  font-size: .85rem;
  color: var(--text-cream-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.ethereal-footer-links a:hover {
  color: var(--text-cream);
}

.ethereal-footer-links span {
  font-size: .85rem;
  color: var(--text-cream-muted);
}

.ethereal-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  position: relative;
}

.ethereal-footer-bottom::after {
  content: 'Great Leap';
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -.02em;
  color: #f0ece4;
  opacity: .12;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.ethereal-footer-copyright {
  font-size: .75rem;
  color: var(--text-cream-muted);
}

.ethereal-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.ethereal-footer-legal a {
  font-size: .75rem;
  color: var(--text-cream-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.ethereal-footer-legal a:hover {
  color: var(--text-cream);
}

/* --------------------------------------------------------------------------
   Accent Lines
   -------------------------------------------------------------------------- */
.ethereal-accent-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 115, 74, 0.5), transparent);
  margin: 0 auto;
}

.ethereal-accent-line-left {
  background: linear-gradient(90deg, rgba(232, 115, 74, 0.5), transparent);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Section Separators
   -------------------------------------------------------------------------- */
.section-separator {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 50px 0;
  background-color: var(--bg-page);
}

.sep-line {
  flex: 1;
  height: 1px;
  border: none;
  background: transparent;
}

/* Venstre streg - fader ind fra venstre mod orbit */
.sep-line:first-child {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 100%
  );
}

/* Højre streg - fader ud fra orbit mod højre */
.sep-line:last-child {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.15) 0%,
    transparent 100%
  );
}

.sep-orbit {
  width: 50px;
  height: 50px;
  margin: 0 30px;
  flex-shrink: 0;
  position: relative;
}

.sep-orbit svg {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Ethereal CTA Section
   -------------------------------------------------------------------------- */
.ethereal-cta-section {
  position: relative;
  padding: 120px 20px;
  background: var(--bg-page);
  text-align: center;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-orb-1 {
  top: -20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 115, 74, 0.06) 0%, transparent 60%);
  filter: blur(80px);
}

.cta-orb-2 {
  bottom: -15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 115, 74, 0.04) 0%, transparent 60%);
  filter: blur(100px);
}

@media (max-width: 768px) {
  .ethereal-cta-section {
    padding: 80px 20px;
  }

  .cta-orb-1, .cta-orb-2 {
    display: none;
  }
}

/* Orbit background decoration */
.cta-orbit-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: 0.6;
}

.cta-orbit-bg svg {
    width: 100%;
    height: 100%;
}

/* CTA content - above orbit */
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cta-orbit-bg {
        width: 280px;
        height: 280px;
        opacity: 0.4;
    }
}

/* --------------------------------------------------------------------------
   Detail Pages - Service Content
   -------------------------------------------------------------------------- */
.ethereal-service-detail {
  padding: 80px 0;
}

.ethereal-service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ethereal-service-detail-visual {
  min-height: 0;
}

.ethereal-service-detail-content h2 {
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: 1px;
}

.ethereal-service-detail-content p {
  color: var(--text-white-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.ethereal-feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.ethereal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-white-muted);
  position: relative;
}

.ethereal-feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(232, 115, 74, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.ethereal-feature-list li::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.ethereal-check-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 115, 74, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.ethereal-check-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--accent-gold);
  stroke-width: 3;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ethereal-text-center {
  text-align: center;
}

.ethereal-mt-0 { margin-top: 0; }
.ethereal-mb-0 { margin-bottom: 0; }
.ethereal-mt-20 { margin-top: 20px; }
.ethereal-mb-20 { margin-bottom: 20px; }
.ethereal-mt-40 { margin-top: 40px; }
.ethereal-mb-40 { margin-bottom: 40px; }
.ethereal-mt-60 { margin-top: 60px; }
.ethereal-mb-60 { margin-bottom: 60px; }

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive Styles
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .ethereal-header-inner {
    padding: 16px 24px;
  }

  .ethereal-nav {
    gap: 24px;
  }

  .ethereal-hero {
    min-height: 100vh;
    padding: 60px 20px;
  }

  .ethereal-services-grid {
    gap: 30px;
  }

  .ethereal-service-card {
    padding: 40px 30px;
  }

  .ethereal-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ethereal-service-detail-grid {
    gap: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .ethereal-header-inner {
    padding: 16px 20px;
  }

  .ethereal-logo-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .ethereal-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-page);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }

  .ethereal-nav.active {
    display: flex;
  }

  .ethereal-nav-link {
    font-size: 1.25rem;
  }

  .ethereal-nav.active .ethereal-nav-link,
  .ethereal-nav.active .ethereal-nav-cta {
    display: flex !important;
    visibility: visible !important;
  }

  /* Sikr ALLE direkte børn vises */
  .ethereal-nav.active > * {
    display: flex !important;
    visibility: visible !important;
  }

  /* Sikr dropdown og alle children vises */
  .ethereal-nav.active .ethereal-nav-dropdown,
  .ethereal-nav.active .ethereal-nav-dropdown .ethereal-nav-link,
  .ethereal-nav.active .ethereal-dropdown-menu,
  .ethereal-nav.active .ethereal-dropdown-menu a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .ethereal-nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static !important;
  }

  .ethereal-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    margin-top: 8px;
    padding: 0;
    min-width: auto;
  }

  .ethereal-dropdown-menu a {
    font-size: 1rem;
    color: var(--text-white-subtle);
  }

  .dropdown-arrow {
    display: none;
  }

  .ethereal-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .ethereal-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .ethereal-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .ethereal-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .ethereal-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 60px 20px;
  }

  .ethereal-hero h1 {
    font-size: 2rem;
  }

  .ethereal-hero-subtitle {
    font-size: 1rem;
    margin: 24px auto 40px;
  }

  .ethereal-eyebrow {
    flex-wrap: wrap;
  }

  .ethereal-eyebrow-line {
    width: 40px;
  }

  .ethereal-eyebrow-text {
    font-size: 0.6875rem;
  }

  .ethereal-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .ethereal-btn {
    width: 100%;
    max-width: min(280px, calc(100% - 40px));
    text-align: center;
  }

  .ethereal-orb-1 {
    width: 300px;
    height: 300px;
    top: 0;
    right: -10%;
  }

  .ethereal-orb-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: -15%;
  }

  .ethereal-orb-3 {
    display: none;
  }

  .ethereal-services-grid {
    grid-template-columns: 1fr;
  }

  .ethereal-service-card {
    padding: 30px 24px;
  }

  .ethereal-page-hero {
    min-height: 40vh;
    padding: 120px 20px 60px;
  }

  .ethereal-service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Responsive buttons in service detail */
  .ethereal-service-detail-content [style*="display: flex"] {
    flex-direction: column;
    align-items: stretch;
  }

  .ethereal-service-detail-content .ethereal-btn {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.8125rem;
  }

  .ethereal-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ethereal-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  /* Hide "Great Leap" watermark on mobile — conflicts with legal links */
  .ethereal-footer-bottom::after { display: none; }

  .ethereal-footer-legal {
    justify-content: center;
  }

  .ethereal-footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ethereal-logo svg {
    width: 28px;
    height: 28px;
  }

  .ethereal-logo-text {
    font-size: 0.625rem;
  }

  .ethereal-hero h1 {
    font-size: 1.75rem;
    letter-spacing: 2px;
  }

  .ethereal-h2 {
    font-size: 1.5rem;
  }

  .ethereal-service-card {
    padding: 24px 20px;
  }

  .ethereal-service-detail-content .ethereal-btn {
    padding: 12px 20px;
  }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.3;
  }
}

.ethereal-orb-1 {
  animation: pulse 8s ease-in-out infinite;
}

.ethereal-orb-2 {
  animation: pulse 10s ease-in-out infinite 2s;
}

.ethereal-orb-3 {
  animation: pulse 12s ease-in-out infinite 4s;
}

/* --------------------------------------------------------------------------
   Why Us Section (3 columns)
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--bg-page);
  border-top: 1px solid var(--gold-border);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 0;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.why-us-item {
  text-align: left;
  padding: 2rem;
  border-left: 1px solid var(--gold-border);
}

.why-us-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(232, 115, 74, .2);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-us-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: .7rem;
  letter-spacing: normal;
  text-transform: none;
}

.why-us-item p {
  font-size: .88rem;
  color: var(--text-cream-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .why-us-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --------------------------------------------------------------------------
   Testimonial Section
   -------------------------------------------------------------------------- */
.testimonial-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  background: var(--bg-section-alt);
  border-top: 1px solid var(--gold-border);
  text-align: center;
}

.testimonial-quote {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.testimonial-decorative-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: .5;
  color: var(--accent-gold);
  opacity: .2;
  margin-bottom: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.testimonial-quote blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-quote blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-cream);
  letter-spacing: normal;
  max-width: 780px;
  margin: 0 auto;
}

.testimonial-separator {
  width: 48px;
  height: 1px;
  background: var(--accent-gold);
  margin: 2rem auto;
}

.testimonial-quote figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonial-name {
  display: block;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-cream);
  letter-spacing: .1em;
}

.testimonial-role {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--text-cream-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 20px;
  }

  .testimonial-decorative-mark {
    font-size: 5rem;
    margin-bottom: -8px;
  }

  .testimonial-separator {
    margin: 24px auto;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 60px 20px;
  }

  .testimonial-decorative-mark {
    font-size: 4rem;
  }
}

/* Star rating */
.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-star {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

/* Google review badge */
.testimonial-source {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--text-cream-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Compact inline testimonial (contact page) */
.testimonial-inline {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 2rem;
}

.testimonial-inline blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.6;
  margin: 0;
}

.testimonial-inline-footer {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-inline-stars {
  color: var(--accent-gold);
  font-size: .9rem;
  letter-spacing: 2px;
}

.testimonial-inline-cite {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--text-cream-muted);
  letter-spacing: .08em;
}

/* --------------------------------------------------------------------------
   Process Section (Timeline)
   -------------------------------------------------------------------------- */
.process-section {
  padding: 120px 20px;
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 60%);
  filter: blur(100px);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding: 0;
}

.process-step {
  display: flex;
  gap: 32px;
}

.process-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  flex-shrink: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,169,98,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent-gold);
}

.step-line {
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(180deg, rgba(201,169,98,0.3) 0%, rgba(201,169,98,0.05) 100%);
  margin: 8px 0;
}

.process-step-content {
  padding-bottom: 48px;
}

.process-step-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 8px;
}

.process-step-content p {
  font-size: 15px;
  color: var(--text-cream-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 20px;
  }

  .process-step {
    gap: 20px;
  }

  .process-step-content {
    padding-bottom: 32px;
  }
}

.ethereal-text-link {
  color: var(--accent-gold);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.ethereal-text-link:hover {
  text-decoration: underline;
}


/* --------------------------------------------------------------------------
   Blog Teaser Section
   -------------------------------------------------------------------------- */
.blog-teaser-section {
  padding: 100px 0;
  background: var(--bg-page);
}

.blog-teaser-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.blog-teaser-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, var(--bg-dark-3) 50%, var(--bg-dark-1) 100%);
  border: 1px solid var(--white-opacity-10);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.blog-teaser-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201,169,98,0.1) 0%, transparent 50%);
}

.blog-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.blog-teaser-card:hover .blog-teaser-image img {
  transform: scale(1.03);
}

.blog-teaser-content {
  padding: 20px 0;
}

.blog-category {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.blog-teaser-content h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-cream);
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-teaser-content p {
  color: var(--text-cream-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  font-size: 14px;
  color: var(--text-cream-muted);
}

@media (max-width: 768px) {
  .blog-teaser-section {
    padding: 80px 20px;
  }

  .blog-teaser-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-teaser-content h3 {
    font-size: 26px;
  }
}

@media (min-width: 769px) {
    .blog-teaser-section {
        padding-bottom: 200px;
    }
}

/* Old hero section removed — index.html uses inline hero styles */

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms & Conditions)
   ========================================================================== */

.legal-page-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: var(--bg-section-alt);
}

.legal-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-white);
  margin-bottom: 10px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.legal-content .updated {
  color: var(--text-white-subtle);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-content > p:first-of-type {
  font-size: 1.1rem;
  line-height: 1.9;
}

.legal-content h2 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--accent-gold);
}

.legal-content h3 {
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
  color: var(--text-white-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  margin: 15px 0 20px 25px;
  list-style-type: disc;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content strong {
  color: var(--text-white);
  font-weight: 600;
}

.legal-content a {
  color: var(--accent-gold);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(22, 33, 62, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.legal-content th,
.legal-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content th {
  background: rgba(232, 115, 74, 0.15);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.legal-content td {
  color: var(--text-white-muted);
  font-size: 0.9rem;
}

.legal-content tr:last-child td {
  border-bottom: none;
}

.legal-content .info-box {
  background: rgba(232, 115, 74, 0.08);
  border-left: 3px solid var(--accent-gold);
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

.legal-content .info-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

.legal-content .warning-box {
  background: rgba(255, 193, 7, 0.08);
  border-left: 3px solid var(--color-warning);
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

.legal-content .warning-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-warning);
}

.legal-content .contact-section {
  background: rgba(22, 33, 62, 0.5);
  padding: 30px;
  border-radius: 8px;
  margin-top: 50px;
}

.legal-content .contact-section h2 {
  margin-top: 0;
  border-left: none;
  padding-left: 0;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 14px 28px;
  background: var(--accent-gold);
  color: var(--bg-page);
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.legal-back-link:hover {
  background: var(--accent-gold-hover);
}

.legal-content .legal-back-link {
  color: var(--bg-dark-1);
}

@media (max-width: 768px) {
  .legal-page-hero {
    padding: 120px 15px 40px;
  }

  .legal-content {
    padding: 40px 15px 80px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .legal-content table {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .legal-content th,
  .legal-content td {
    padding: 10px 12px;
  }

  .legal-content .info-box,
  .legal-content .warning-box {
    padding: 15px 20px;
  }
}

/* ==========================================================================
   SPRING CTA SECTION
   ========================================================================== */

.spring-cta-section {
    position: relative;
    background-image: url('../images/great_leap.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-top: 1px solid var(--gold-border);
}

.spring-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 13, 26, 0.2) 0%,
        rgba(10, 13, 26, 0.4) 30%,
        rgba(10, 13, 26, 0.7) 60%,
        rgba(10, 13, 26, 0.9) 100%
    );
}

.spring-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 60px 20px 80px;
    text-align: center;
}

.spring-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.spring-cta-content p {
    font-family: var(--font-body);
    color: var(--text-white);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile: Disable fixed attachment (doesn't work on iOS) */
@media (max-width: 768px) {
    .spring-cta-section {
        background-attachment: scroll;
        min-height: 450px;
    }

    .spring-cta-content {
        padding: 40px 20px 60px;
    }

    .spring-cta-content h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   ACTIVE NAV STATE
   ========================================================================== */

.ethereal-nav-link.active {
    color: var(--accent-gold);
}
