/* ===================================================================
   AUREUM ESTATES — Ultra-Premium Real Estate Brand
   Design System & Component Styles
   =================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ===================================================================
   DESIGN TOKENS
   =================================================================== */
:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a26;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);

  --accent-gold: #c9a86c;
  --accent-gold-light: #dfc49a;
  --accent-gold-dark: #a88a50;
  --accent-gold-glow: rgba(201, 168, 108, 0.15);
  --accent-gold-gradient: linear-gradient(135deg, #c9a86c 0%, #dfc49a 50%, #c9a86c 100%);

  --text-primary: #f5f0e8;
  --text-secondary: #8a8a9a;
  --text-muted: #5a5a6a;
  --text-gold: #c9a86c;

  --border-glass: rgba(201, 168, 108, 0.12);
  --border-glass-hover: rgba(201, 168, 108, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.06);

  --danger: #e74c3c;
  --success: #2ecc71;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-header: 0.12em;
  --letter-spacing-label: 0.25em;

  /* Spacing */
  --section-padding: clamp(100px, 12vw, 60px);
  --container-width: min(1320px, 92vw);

  /* Transitions */
  --transition-premium: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;

  /* Glassmorphism */
  --glass-blur: blur(16px);
  --glass-border-radius: 16px;

  /* Shadows */
  --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 40px rgba(201, 168, 108, 0.08);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===================================================================
   BASE RESET & TYPOGRAPHY
   =================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===================================================================
   SPLASH SCREEN (Logo Video Intro)
   =================================================================== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.splash-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splash-screen.hidden {
  display: none;
}

body.splash-active {
  overflow: hidden;
}

/* ===================================================================
   INFOGRAPHIC SHOWCASE (Image-based sections)
   =================================================================== */
.infographic-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 3rem;
}

.infographic-item {
  border-radius: var(--glass-border-radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: var(--transition-premium);
  position: relative;
}

.infographic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.15), transparent, rgba(201, 168, 108, 0.08)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.infographic-item:hover::after {
  opacity: 1;
}

.infographic-item:hover {
  border-color: rgba(201, 168, 108, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
  transform: translateY(-4px);
}

.infographic-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.infographic-item:hover img {
  transform: scale(1.02);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 .editorial-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent-gold);
  font-weight: var(--font-weight-regular);
  display: inline-block;
  position: relative;
}

h1 .editorial-text::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.3;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.container {
  width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.text-gold {
  color: var(--accent-gold);
}

.text-center {
  text-align: center;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.6;
}

.section-label.centered {
  justify-content: center;
}

.section-label.centered::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.6;
}

.section-title {
  margin-bottom: 2rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--text-secondary);
  font-style: italic;
  max-width: 750px;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin: 0 auto;
}

/* Divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--accent-gold-gradient);
  margin: 2rem 0;
  border: none;
}

.gold-divider.centered {
  margin: 2rem auto;
}

/* ===================================================================
   GLASSMORPHISM CARD
   =================================================================== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--glass-border-radius);
  transition: var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.2), transparent, rgba(201, 168, 108, 0.1)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(201, 168, 108, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
  transform: translateY(-8px);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-header);
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-premium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gold-gradient);
  background-size: 200% 100%;
  color: var(--bg-primary);
  background-position: 100% 0;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(201, 168, 108, 0.4);
  background-position: 0 0;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.8s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid rgba(201, 168, 108, 0.5);
}

.btn-outline:hover {
  background: rgba(201, 168, 108, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201, 168, 108, 0.1);
  color: var(--accent-gold-light);
}

.btn-icon {
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover .btn-icon {
  transform: translateX(6px);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-glass);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.brand-logo-img:hover {
  transform: scale(1.05);
}

.header-logo-right {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.brand-name {
  font-family: 'Kingthings Petrock', var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
  color: var(--bg-primary);
}

.nav-cta .btn:hover {
  color: var(--bg-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 100px 40px 40px;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--accent-gold);
  padding-left: 16px;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(10, 10, 15, 0.5) 0%,
      rgba(10, 10, 15, 0.65) 40%,
      rgba(10, 10, 15, 0.85) 75%,
      rgba(10, 10, 15, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 60px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-description {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ===================================================================
   POSITIONING SECTION
   =================================================================== */
.positioning {
  background: var(--bg-primary);
  position: relative;
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.positioning-content .highlight-text {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

.positioning-content p {
  margin-bottom: 1rem;
}

.positioning-visual {
  position: relative;
}

.positioning-visual .accent-box {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glass);
  border-radius: var(--glass-border-radius);
  padding: 48px;
  position: relative;
}

.accent-box .big-quote {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--accent-gold);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.accent-box blockquote {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.accent-box .filter-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
}

/* ===================================================================
   HERITAGE (5 TINAIS) SECTION
   =================================================================== */
.heritage {
  position: relative;
  background:
    radial-gradient(circle at 18% 28%, rgba(95, 126, 119, 0.16), transparent 18%),
    radial-gradient(circle at 70% 22%, rgba(61, 123, 144, 0.12), transparent 22%),
    linear-gradient(180deg, #090a10 0%, #0c0c12 55%, #08080d 100%);
  overflow: hidden;
}

.heritage-infographic-section {
  padding: clamp(34px, 4vw, 54px) clamp(18px, 2.5vw, 38px);
}

.heritage-infographic-section::before,
.heritage-infographic-section::after {
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 108, 0.16), transparent);
  pointer-events: none;
}

.heritage-infographic-section::before { top: 0; }
.heritage-infographic-section::after { bottom: 0; }

.biome-stage {
  position: relative;
  max-width: 1832px;
  min-height: 560px;
  margin: 0 auto;
  padding: 18px 0 22px;
  border-radius: 8px;
  isolation: isolate;
}

.biome-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 84px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 42%, rgba(0, 0, 0, 0.38));
}

.biome-sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(144, 177, 187, 0.45) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(214, 196, 140, 0.35) 0 1px, transparent 2px);
  background-position: 40px 36px, 210px 64px;
  background-size: 138px 116px, 226px 148px;
  opacity: 0.44;
  mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 86%);
}

.biome-title {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(221, 226, 227, 0.76);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
}

.biome-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 485px;
}

.biome-card-wrap {
  flex: 1;
  position: relative;
  min-width: 240px;
  margin-left: -14px; /* Leaves a 14px gap (-28 overlap + 14 gap) */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Use stacked drop-shadows keyed to the biome color to create a continuous glowing border */
  filter: drop-shadow(0 0 1px var(--biome-hex, rgba(213,218,222,0.4))) drop-shadow(0 0 1px var(--biome-hex, rgba(213,218,222,0.4))) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.biome-card-wrap:nth-child(1) { z-index: 5; margin-left: 0; }
.biome-card-wrap:nth-child(2) { z-index: 4; }
.biome-card-wrap:nth-child(3) { z-index: 3; }
.biome-card-wrap:nth-child(4) { z-index: 2; }
.biome-card-wrap:nth-child(5) { z-index: 1; }

.biome-card-wrap:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 0 2px var(--biome-hex)) drop-shadow(0 0 4px var(--biome-hex)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
  z-index: 10;
}

.biome-card {
  width: 100%;
  height: 100%;
  padding: 10px 20px 18px 44px;
  background:
    linear-gradient(180deg, rgba(var(--biome-c, 230, 200, 150), 0.12) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0) 100%),
    rgba(14, 15, 22, 0.9); 
  clip-path: polygon(0% 0%, calc(100% - 28px) 0%, 100% 50%, calc(100% - 28px) 100%, 0% 100%, 28px 50%);
  transition: background 0.4s ease;
}

.biome-card-wrap:first-child .biome-card {
  clip-path: polygon(0% 0%, calc(100% - 28px) 0%, 100% 50%, calc(100% - 28px) 100%, 0% 100%);
  padding-left: 20px;
}

.biome-card-wrap:last-child .biome-card {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 28px 50%);
  padding-right: 16px;
}

.biome-card-wrap:hover .biome-card {
  background:
    linear-gradient(180deg, rgba(var(--biome-c, 230, 200, 150), 0.22) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0) 100%),
    rgba(20, 22, 30, 0.98);
}

.biome-kurinji { --biome-c: 174, 182, 189; --biome-hex: #aeb6bd; color: #aeb6bd; }
.biome-mullai { --biome-c: 106, 164, 108; --biome-hex: #6aa46c; color: #6aa46c; }
.biome-marutham { --biome-c: 188, 166, 80; --biome-hex: #bca650; color: #bca650; }
.biome-neithal { --biome-c: 95, 166, 187; --biome-hex: #5fa6bb; color: #5fa6bb; }
.biome-palai { --biome-c: 199, 149, 103; --biome-hex: #c79567; color: #c79567; }

.biome-scene {
  position: relative;
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.biome-icon-img {
  max-width: 200px;
  /* position: relative; */
  /* top: -40px; */
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.biome-card:hover .biome-icon-img {
  transform: translateY(-10px) scale(1.05);
}

.biome-copy {
  position: relative;
  z-index: 2;
  min-height: 164px;
  text-align: center;
}

.biome-tamil {
  margin-bottom: 2px;
  font-family: var(--font-accent);
  font-size: clamp(1.55rem, 1.7vw, 2rem);
  line-height: 1;
  color: currentColor;
  text-shadow: 0 0 18px color-mix(in srgb, currentColor 30%, transparent);
}

.biome-copy h3 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 1.45vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #f0ece4;
  text-transform: uppercase;
}

.biome-subtitle {
  margin: 8px 0 24px;
  font-size: clamp(0.66rem, 0.74vw, 0.82rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, currentColor 68%, #808895);
  text-transform: uppercase;
}

.biome-text {
  max-width: 230px;
  margin: 0 auto;
  text-align: left;
  font-size: clamp(0.82rem, 0.94vw, 1rem);
  line-height: 1.35;
  color: rgba(213, 215, 218, 0.78);
}

.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;
}

@media (max-width: 1280px) {
  .heritage-infographic-section {
    overflow-x: auto;
  }

  .biome-stage {
    min-width: 1180px;
  }

  .biome-card {
    padding-inline: 16px;
  }
}

@media (max-width: 768px) {
  .heritage-infographic-section {
    padding: 24px 12px;
  }

  .biome-stage {
    min-width: 0px;
    min-height: 540px;
  }
}

/* ===================================================================
   TARGET AUDIENCE SECTION
   =================================================================== */
.audience {
  background: var(--bg-secondary);
  position: relative;
}

.audience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold-glow), transparent);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 3rem;
}

.audience-list {
  list-style: none;
}

.audience-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.audience-list li:hover {
  padding-left: 10px;
  color: var(--accent-gold-light);
}

.audience-list li .list-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.audience-card {
  padding: 40px;
}

.audience-card h3 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

/* .do-not-list h3 {
  color: var(--text-muted);
} */

/* .do-not-list li {
  color: var(--text-muted);
} */

.do-not-list li .list-icon {
  color: rgba(231, 76, 60, 0.6);
}

/* ===================================================================
   OFFERINGS SECTION
   =================================================================== */
.offerings {
  background: var(--bg-primary);
  position: relative;
}

.offerings-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offerings-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 16px; /* slightly smaller gap to accommodate 5 items comfortably */
}

.offering-card {
  flex: 1;
  min-width: 0; /* Ensures flex shrink works nicely down to narrow sizes */
  padding: 0;
  overflow: hidden;
  cursor: default;
}

.offering-card .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.offering-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offering-card:hover .card-image img {
  transform: scale(1.08);
}

.offering-card .card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, var(--bg-secondary), transparent);
}

.offering-card .card-body {
  padding: 28px 28px 32px;
}

.offering-card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.offering-card h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.offering-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================================================================
   DIFFERENTIATION SECTION
   =================================================================== */
.differentiation {
  background: var(--bg-secondary);
  position: relative;
}

.diff-header {
  text-align: center;
  margin-bottom: 4rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.diff-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.diff-card .diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(201, 168, 108, 0.08);
  border: 1px solid rgba(201, 168, 108, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.diff-card:hover .diff-icon {
  background: rgba(201, 168, 108, 0.15);
  border-color: var(--accent-gold);
  box-shadow: 0 0 30px rgba(201, 168, 108, 0.15);
}

.diff-card h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1rem;
}

.diff-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===================================================================
   PROCESS SECTION
   =================================================================== */
.process {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px; /* 80px circle / 2 */
  left: 10%; /* Center of 1st column (20% / 2 = 10%) */
  width: 80%; /* Spacing between centers of 1st and 5th columns */
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-glow), var(--accent-gold), var(--accent-gold-glow));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 108, 0.15);
}

.process-step:hover .step-number {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 40px rgba(201, 168, 108, 0.3);
}

.process-step h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  max-width: 240px;
  margin: 0 auto;
}

/* ===================================================================
   TESTIMONIALS SECTION
   =================================================================== */
.testimonials {
  background: var(--bg-secondary);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 44px;
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent-gold);
  opacity: 0.12;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}

.testimonial-card .quote-text {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-line {
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
}

.author-info .author-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-info .author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===================================================================
   INVESTMENT ZONES SECTION
   =================================================================== */
.zones {
  background: var(--bg-primary);
  position: relative;
}

.zones-header {
  text-align: center;
  margin-bottom: 4rem;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.zone-card {
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
}

.zone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.zone-card:hover::before {
  transform: scaleX(1);
}

.zone-card .zone-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}

.zone-card h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.zone-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.zone-card .zone-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(201, 168, 108, 0.08);
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}

/* ===================================================================
   URGENCY SECTION
   =================================================================== */
.urgency {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}

.urgency-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.urgency-content h2 {
  margin-bottom: 1.5rem;
}

.urgency-content p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.urgency-content .urgency-highlight {
  color: var(--accent-gold);
  font-weight: 500;
  font-style: italic;
}

.urgency-cta {
  margin-top: 2.5rem;
}

/* ===================================================================
   QUALIFICATION FORM SECTION
   =================================================================== */
.qualification {
  background: var(--bg-secondary);
  position: relative;
}

.qualification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold-glow), transparent);
}

.qualification-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
}

.form-card {
  padding: 48px;
  position: relative;
}

/* Progress bar */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.progress-step {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-subtle);
  transition: var(--transition-smooth);
}

.progress-step.active {
  background: var(--accent-gold);
  box-shadow: 0 0 12px rgba(201, 168, 108, 0.3);
}

.progress-step.completed {
  background: var(--accent-gold-dark);
}

/* Form steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Form fields */
.form-group {
  margin-bottom: 24px;
}

/* Form labels and layout */
.form-card {
  padding: 60px;
}

/* Radio / Checkbox options - CARD STYLE */
.option-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.option-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-premium);
}

.option-label:hover {
  border-color: rgba(201, 168, 108, 0.4);
  background: rgba(201, 168, 108, 0.02);
  transform: translateY(-2px);
}

.option-item input:checked + .option-label {
  border-color: var(--accent-gold);
  background: rgba(201, 168, 108, 0.05);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.option-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  margin-bottom: 4px;
}

.option-item input:checked + .option-label .option-dot {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold-glow);
}

.form-group label .required {
  color: var(--danger);
  margin-left: 4px;
}

.form-input {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-glass);
  border-radius: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-bottom-color: var(--accent-gold);
  box-shadow: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
  border: 1px solid var(--border-glass);
  padding: 18px;
  border-radius: 8px;
  margin-top: 10px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a86c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}

select.form-input option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Radio / Checkbox options */
.option-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-item {
  position: relative;
}

.option-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.option-label:hover {
  border-color: rgba(201, 168, 108, 0.3);
  background: rgba(201, 168, 108, 0.03);
}

.option-item input:checked+.option-label {
  border-color: var(--accent-gold);
  background: rgba(201, 168, 108, 0.06);
  color: var(--accent-gold-light);
}

.option-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-glass);
  flex-shrink: 0;
  position: relative;
  transition: var(--transition-fast);
}

.option-item input:checked+.option-label .option-dot {
  border-color: var(--accent-gold);
}

.option-item input:checked+.option-label .option-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
}

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.form-nav .step-indicator {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.btn-back {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-back:hover {
  color: var(--text-primary);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form-success.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.form-success h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.form-success p {
  max-width: 400px;
  margin: 0 auto;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--bg-primary);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-brand .brand-name {
  font-family: 'Kingthings Petrock', var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.footer-brand .brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.footer-brand .footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 108, 0.05);
  border: 1px solid rgba(201, 168, 108, 0.2);
  color: var(--accent-gold);
  transition: var(--transition-fast);
  padding: 0;
  margin: 0;
}

.social-links a:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
  padding-left: 0;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}


/* ===================================================================
   NEW SECTIONS: Property Management, CEO, Philosophy, Team, Strips
   =================================================================== */

/* Property Management */
.prop-mgmt .tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.tier-card {
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
}

.tier-badge.premium { color: #5fa6bb; border-color: rgba(95, 166, 187, 0.3); }
.tier-badge.investor { color: #c9a86c; border-color: rgba(201, 168, 108, 0.3); }
.tier-badge.ultra { color: #c79567; border-color: rgba(199, 149, 103, 0.3); }

.tier-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.tier-card h4 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.tier-features {
  list-style: none;
}

.tier-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  padding-left: 18px;
}

.tier-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.prop-clients {
  margin-top: 40px;
  background: var(--bg-tertiary);
  padding: 30px;
  border-radius: var(--glass-border-radius);
  border: 1px solid var(--border-glass);
  text-align: center;
}

.prop-clients h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.clients-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.clients-tags span {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.clients-tags span:hover {
  background: var(--bg-glass-hover);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Testimonial Strip */
.testimonial-strip {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.strip-quote {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--accent-gold);
}

.strip-quote .quote-text {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.strip-quote .quote-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CEO Section */
.ceo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.ceo-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ceo-bio {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.ceo-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.ceo-monogram {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px var(--accent-gold-glow);
}

.ceo-monogram::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 108, 0.15);
}

.ceo-monogram span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.ceo-philosophy {
  position: relative;
  text-align: center;
  background: var(--bg-glass);
  padding: 30px;
  border-radius: var(--glass-border-radius);
  border: 1px solid var(--border-glass);
}

.ceo-philosophy .big-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.1;
  position: absolute;
  top: 10px;
  left: 20px;
}

.ceo-philosophy blockquote {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
}

.ceo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.pillar-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.pillar-box:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.pillar-box h4 {
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.pillar-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ceo-focus {
  background: rgba(201, 168, 108, 0.03);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: 8px;
}

.ceo-focus-tag {
  color: var(--accent-gold);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Philosophy */
.criteria-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.pillar-card {
  background: var(--bg-tertiary);
  padding: 40px 30px;
  border-radius: 8px;
  border-top: 3px solid var(--accent-gold);
  text-align: center;
  transition: var(--transition-premium);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-gold);
  opacity: 0.2;
  display: block;
  margin-bottom: 15px;
}

.pillar-card h4 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.criteria-note {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-gold);
}

/* Team */
.team-capabilities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cap-card {
  background: var(--bg-glass);
  padding: 30px 20px;
  border-radius: var(--glass-border-radius);
  border: 1px solid var(--border-glass);
  text-align: center;
  transition: var(--transition-smooth);
}

.cap-card:hover {
  border-color: var(--accent-gold);
  background: var(--bg-glass-hover);
  transform: translateY(-5px);
}

.cap-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cap-card h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.team-footer .team-note {
  color: var(--text-muted);
  font-style: italic;
  margin-top: 10px;
}

/* How We Work */
.hww-footer {
  margin-top: 40px;
}

.hww-note {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 25px;
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */
@media (max-width: 1200px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .prop-mgmt .tier-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ceo-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .criteria-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .team-capabilities {
    grid-template-columns: 1fr 1fr;
  }

  .offerings-grid {
    flex-wrap: wrap; /* Re-enable wrap for responsive breakpoint */
    justify-content: center;
  }

  .offering-card {
    flex: 0 0 calc(50% - 12px); /* 2 items per row */
  }

  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-timeline::before {
    display: none;
  }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .prop-mgmt .tier-grid {
    grid-template-columns: 1fr;
  }
  .strip-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ceo-pillars {
    grid-template-columns: 1fr;
  }
  .criteria-pillars {
    grid-template-columns: 1fr;
  }
  .team-capabilities {
    grid-template-columns: 1fr;
  }

  .biome-grid {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .biome-card-wrap {
    margin-left: 0;
    margin-top: -16px;
    min-width: auto;
    width: 100%;
    max-width: 340px;
  }

  .biome-card-wrap:first-child {
    margin-top: 0;
  }

  .biome-card {
    clip-path: polygon(0% 0%, 50% 28px, 100% 0%, 100% calc(100% - 28px), 50% 100%, 0% calc(100% - 28px));
    padding: 44px 20px 44px 20px; 
  }

  .biome-card-wrap:first-child .biome-card {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 28px), 50% 100%, 0% calc(100% - 28px));
    padding: 20px 20px 44px 20px;
  }

  .biome-card-wrap:last-child .biome-card {
    clip-path: polygon(0% 0%, 50% 28px, 100% 0%, 100% 100%, 0% 100%);
    padding: 44px 20px 20px 20px;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .infographic-showcase {
    grid-template-columns: 1fr;
  }

  .offering-card {
    flex: 0 0 100%; /* 1 item per row */
  }

  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 24px;
  }

  .option-group {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }
}
