/*
Theme Name: RootHealthMD
Theme URI: https://roothealthmd.com
Author: iCreate Your Site
Author URI: https://icreateyoursite.com
Description: Custom theme for RootHealthMD - Functional Medicine and Primary Care
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: roothealthmd
*/

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

    :root {
      --forest: #0B6B5A;
      --forest-deep: #084A3E;
      --sage: #5A9E8B;
      --sage-light: #8DC0B0;
      --terracotta: #5E2D14;
      --terracotta-warm: #C4875E;
      --clay: #A07050;
      --cream: #FAF7F3;
      --cream-dark: #F0EBE3;
      --ivory: #FDFCFA;
      --charcoal: #2A2A2A;
      --text-body: #4A4A4A;
      --text-muted: #7A7A7A;

      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body: 'Outfit', system-ui, sans-serif;

      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    }

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

    body {
      font-family: var(--font-body);
      color: var(--charcoal);
      background: var(--cream);
      overflow-x: hidden;
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ========== UTILITY ========== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
    }

    /* ========== REVEAL ANIMATION ========== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
    }
    .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; }

    /* ========== GRAIN OVERLAY ========== */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 200px;
    }

    /* ========== NAVBAR ========== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.25rem 0;
      transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    }
    .navbar.scrolled {
      background: rgba(250, 246, 241, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 0.75rem 0;
      box-shadow: 0 1px 0 rgba(11, 107, 90, 0.08);
    }
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
    }
    .nav-logo img {
      height: 60px;
      width: auto;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--forest-deep);
      letter-spacing: 0.02em;
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--terracotta);
      transition: width 0.4s var(--ease-out-expo);
    }
    .nav-links a:hover { color: var(--terracotta); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--forest);
      color: var(--cream) !important;
      padding: 0.65rem 1.5rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.875rem;
      letter-spacing: 0.02em;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: var(--forest-deep);
      transform: translateY(-1px);
    }

    /* Mobile menu toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--forest);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 50%, #E8DFD3 100%);
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60vw;
      height: 60vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 107, 90, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 40vw;
      height: 40vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196, 135, 94, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding-top: 6rem;
      padding-bottom: 4rem;
      position: relative;
      z-index: 2;
    }
    .hero-content { max-width: 560px; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(11, 107, 90, 0.06);
      border: 1px solid rgba(11, 107, 90, 0.1);
      padding: 0.45rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--forest);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.75rem;
    }
    .hero-tag svg {
      width: 14px;
      height: 14px;
      fill: var(--sage);
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 5vw, 4rem);
      line-height: 1.1;
      color: var(--forest-deep);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--terracotta);
    }
    .hero-desc {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-body);
      margin-bottom: 2.25rem;
      font-weight: 300;
      max-width: 480px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--forest);
      color: var(--cream);
      padding: 1rem 2rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 20px rgba(11, 107, 90, 0.2);
    }
    .btn-primary:hover {
      background: var(--forest-deep);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(11, 107, 90, 0.25);
    }
    .btn-primary svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }
    .btn-primary:hover svg { transform: translateX(3px); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--forest);
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.75rem 0.25rem;
      position: relative;
      transition: color 0.3s ease;
    }
    .btn-secondary::after {
      content: '';
      position: absolute;
      bottom: 0.5rem;
      left: 0.25rem;
      right: 0.25rem;
      height: 1px;
      background: var(--forest);
      opacity: 0.3;
      transition: opacity 0.3s ease;
    }
    .btn-secondary:hover { color: var(--terracotta); }
    .btn-secondary:hover::after { opacity: 0; }

    /* Hero visual */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-image-wrapper {
      position: relative;
      width: 100%;
      max-width: 480px;
      aspect-ratio: 4/5;
      border-radius: 240px 240px 40px 40px;
      overflow: hidden;
      background: var(--sage-light);
      box-shadow: 0 40px 80px rgba(11, 107, 90, 0.15), 0 8px 24px rgba(0,0,0,0.06);
    }
    .hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* Decorative botanical SVG */
    .hero-botanical {
      position: absolute;
      z-index: 2;
      opacity: 0.15;
      pointer-events: none;
    }
    .hero-botanical-1 {
      top: -30px;
      right: -40px;
      width: 180px;
      transform: rotate(15deg);
    }
    .hero-botanical-2 {
      bottom: 40px;
      left: -50px;
      width: 120px;
      transform: rotate(-20deg);
    }
    /* Floating badges */
    .hero-badge {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 1rem 1.25rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
      z-index: 3;
      animation: float 6s ease-in-out infinite;
    }
    .hero-badge-1 {
      top: 15%;
      right: -30px;
      animation-delay: -1s;
    }
    .hero-badge-2 {
      bottom: 20%;
      left: -30px;
      animation-delay: -3s;
    }
    .hero-badge-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
    }
    .hero-badge-icon svg { width: 20px; height: 20px; }
    .hero-badge-label {
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .hero-badge-value {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--forest-deep);
      margin-top: 0.15rem;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* Hero scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--sage);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      z-index: 2;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: var(--sage);
      position: relative;
      overflow: hidden;
    }
    .scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--terracotta);
      animation: scrollDown 2s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0% { top: -100%; }
      50% { top: 100%; }
      100% { top: 100%; }
    }

    /* ========== ABOUT / PHILOSOPHY SECTION ========== */
    .philosophy {
      padding: clamp(5rem, 10vw, 8rem) 0;
      position: relative;
    }
    .philosophy .container {
      display: grid;
      grid-template-columns: 1.1fr 1.2fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: center;
    }
    .philosophy-visual {
      position: relative;
    }
    .philosophy-image {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 32px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--sage-light), var(--sage));
      position: relative;
    }
    .philosophy-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .philosophy-image::after {
      display: none;
    }
    /* Decorative frame */
    .philosophy-frame {
      position: absolute;
      top: -16px;
      left: -16px;
      right: 16px;
      bottom: 16px;
      border: 1.5px solid var(--sage-light);
      border-radius: 32px;
      pointer-events: none;
    }
    .philosophy-content {}
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--terracotta);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 1.25rem;
    }
    .section-label::before {
      content: '';
      width: 32px;
      height: 1.5px;
      background: var(--terracotta);
    }
    .philosophy h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.15;
      color: var(--forest-deep);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .philosophy h2 em {
      font-style: italic;
      color: var(--terracotta);
    }
    .philosophy-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-body);
      font-weight: 300;
    }
    .philosophy-text p + p {
      margin-top: 1.25rem;
    }
    .philosophy-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 2.25rem;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1rem;
      border-radius: 14px;
      background: rgba(11, 107, 90, 0.03);
      border: 1px solid rgba(11, 107, 90, 0.06);
      transition: background 0.3s ease, border-color 0.3s ease;
    }
    .pillar:hover {
      background: rgba(11, 107, 90, 0.06);
      border-color: rgba(11, 107, 90, 0.12);
    }
    .pillar-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--forest);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .pillar-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--cream); stroke-width: 1.5; }
    .pillar-text {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--forest-deep);
      line-height: 1.4;
    }

    /* ========== SERVICES ========== */
    .services {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--forest-deep);
      position: relative;
      overflow: hidden;
    }
    .services::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80vw;
      height: 80vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 107, 90, 0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .services .section-label { color: var(--terracotta-warm); }
    .services .section-label::before { background: var(--terracotta-warm); }
    .services-header {
      max-width: 640px;
      margin-bottom: 4rem;
    }
    .services h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.15;
      color: var(--cream);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .services h2 em {
      font-style: italic;
      color: var(--terracotta-warm);
    }
    .services-intro {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--sage-light);
      font-weight: 300;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      padding: 2rem;
      transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--terracotta), var(--sage));
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .service-card:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: rgba(196, 135, 94, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }
    .service-icon svg { width: 24px; height: 24px; stroke: var(--terracotta-warm); fill: none; stroke-width: 1.5; }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--cream);
      margin-bottom: 0.6rem;
    }
    .service-card p {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--sage-light);
      font-weight: 300;
    }

    /* ========== APPROACH SECTION ========== */
    .approach {
      padding: clamp(5rem, 10vw, 8rem) 0;
      position: relative;
    }
    .approach-header {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 4rem;
    }
    .approach h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      line-height: 1.15;
      color: var(--forest-deep);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .approach h2 em {
      font-style: italic;
      color: var(--terracotta);
    }
    .approach-intro {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--text-body);
      font-weight: 300;
    }
    .approach-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
    }
    /* Connecting line */
    .approach-steps::before {
      content: '';
      position: absolute;
      top: 48px;
      left: calc(16.66% + 1rem);
      right: calc(16.66% + 1rem);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--sage-light), var(--sage-light), transparent);
    }
    .step {
      text-align: center;
      position: relative;
    }
    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--cream);
      border: 2px solid var(--sage-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--forest);
      position: relative;
      z-index: 1;
      transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
    }
    .step:hover .step-number {
      background: var(--forest);
      border-color: var(--forest);
      color: var(--cream);
    }
    .step h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--forest-deep);
      margin-bottom: 0.75rem;
    }
    .step p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-body);
      font-weight: 300;
      max-width: 300px;
      margin: 0 auto;
    }

    /* ========== TESTIMONIAL / QUOTE ========== */
    .quote-section {
      padding: clamp(4rem, 8vw, 6rem) 0;
      background: linear-gradient(135deg, var(--cream-dark) 0%, #E8DFD3 100%);
      position: relative;
      overflow: hidden;
    }
    .quote-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60vw;
      height: 60vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196, 135, 94, 0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .quote-inner {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .quote-mark {
      font-family: var(--font-display);
      font-size: 6rem;
      color: var(--terracotta);
      line-height: 1;
      margin-bottom: -1rem;
      opacity: 0.3;
    }
    .quote-text {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.8vw, 2.1rem);
      line-height: 1.5;
      color: var(--forest-deep);
      font-style: italic;
      margin-bottom: 1.5rem;
    }
    .quote-author {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    /* ========== CTA SECTION ========== */
    .cta {
      padding: clamp(5rem, 10vw, 8rem) 0;
      position: relative;
    }
    .cta-card {
      background: var(--forest);
      border-radius: 32px;
      padding: clamp(3rem, 6vw, 5rem);
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .cta-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 150%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196, 135, 94, 0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-card::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 40%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 107, 90, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-content { position: relative; z-index: 1; }
    .cta h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .cta h2 em {
      font-style: italic;
      color: var(--terracotta-warm);
    }
    .cta-text {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--sage-light);
      margin-bottom: 2rem;
      font-weight: 300;
      max-width: 480px;
    }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--terracotta-warm);
      color: white;
      padding: 1rem 2.25rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 20px rgba(196, 135, 94, 0.35);
    }
    .btn-cta:hover {
      background: #D49A6E;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(196, 135, 94, 0.4);
    }
    .btn-cta svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
    .btn-cta:hover svg { transform: translateX(3px); }
    .cta-details {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .cta-detail {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .cta-detail-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cta-detail-icon svg { width: 20px; height: 20px; stroke: var(--sage-light); fill: none; stroke-width: 1.5; }
    .cta-detail-text h4 {
      font-size: 0.95rem;
      color: var(--cream);
      font-weight: 500;
      margin-bottom: 0.15rem;
    }
    .cta-detail-text p {
      font-size: 0.825rem;
      color: var(--sage);
      font-weight: 300;
    }

    /* ========== FOOTER ========== */
    footer {
      background: var(--forest-deep);
      padding: 4rem 0 2rem;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    .footer-logo img {
      height: 44px;
      width: auto;
      filter: brightness(0) invert(1);
    }
    .footer-tagline {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--sage);
      font-weight: 300;
      max-width: 280px;
    }
    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--sage);
      margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.6rem; }
    .footer-col a {
      font-size: 0.9rem;
      color: var(--sage-light);
      font-weight: 300;
      transition: color 0.3s ease;
    }
    .footer-col a:hover { color: var(--terracotta-warm); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: var(--sage);
      font-weight: 300;
    }
    .footer-social {
      display: flex;
      gap: 0.75rem;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }
    .footer-social a:hover { background: rgba(255,255,255,0.1); }
    .footer-social svg { width: 16px; height: 16px; fill: var(--sage-light); }

    /* ========== DROPDOWN NAV ========== */
    .nav-item { position: relative; }
    .nav-item > a {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    .nav-item > a .chevron {
      width: 10px;
      height: 10px;
      transition: transform 0.3s ease;
    }
    .nav-item:hover > a .chevron { transform: rotate(180deg); }
    .dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 220px;
      background: white;
      border-radius: 14px;
      padding: 0.6rem;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
      z-index: 100;
    }
    .nav-item:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown a {
      display: block;
      padding: 0.6rem 0.9rem;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--text-body);
      transition: background 0.2s ease, color 0.2s ease;
    }
    .dropdown a::after { display: none !important; }
    .dropdown a:hover {
      background: rgba(11, 107, 90, 0.05);
      color: var(--forest);
    }
    .nav-cta-outline {
      color: var(--terracotta-warm) !important;
      border: 1.5px solid var(--terracotta-warm);
      padding: 0.55rem 1.25rem;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.02em;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }
    .nav-cta-outline::after { display: none !important; }
    .nav-cta-outline:hover {
      background: var(--terracotta-warm);
      color: white !important;
      transform: translateY(-1px);
    }

    /* ========== BLANK PAGE HERO ========== */
    .page-hero {
      padding: 10rem 0 4rem;
      background: linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -15%;
      width: 50vw;
      height: 50vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 107, 90, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 4.5vw, 3.5rem);
      color: var(--forest-deep);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .page-hero h1 em {
      font-style: italic;
      color: var(--terracotta);
    }
    .page-hero p {
      font-size: 1.1rem;
      color: var(--text-body);
      font-weight: 300;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .page-content {
      padding: clamp(4rem, 8vw, 6rem) 0;
      min-height: 30vh;
    }
    .coming-soon {
      text-align: center;
      padding: 4rem 0;
    }
    .coming-soon-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(11, 107, 90, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }
    .coming-soon-icon svg { width: 28px; height: 28px; stroke: var(--sage); fill: none; stroke-width: 1.5; }
    .coming-soon h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--forest-deep);
      margin-bottom: 0.5rem;
    }
    .coming-soon p {
      color: var(--text-muted);
      font-weight: 300;
    }

    /* ========== MOBILE ========== */
    @media (max-width: 1024px) {
      .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
      }
      .hero-content { max-width: 100%; margin: 0 auto; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-visual { max-width: 400px; margin: 0 auto; }
      .hero-badge-1 { right: -10px; }
      .hero-badge-2 { left: -10px; }
      .philosophy .container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .philosophy-visual { max-width: 500px; margin: 0 auto; }
      .cta-card { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
        border-radius: 0 0 20px 20px;
      }
      .nav-links.open li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(11, 107, 90, 0.06);
      }
      .nav-links.open li:last-child { border: none; padding-top: 1rem; }
      .nav-toggle { display: flex; }
      .approach-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .approach-steps::before { display: none; }
      .philosophy-pillars { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .hero-badge { display: none; }
      .nav-item:hover .dropdown { display: none; }
      .nav-links.open .dropdown {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 1rem;
        min-width: auto;
      }
      .nav-links.open .nav-item.dropdown-open .dropdown { display: block; }
      .nav-links.open .dropdown a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
      }
      .nav-links.open .nav-item > a .chevron {
        transition: transform 0.3s ease;
      }
      .nav-links.open .nav-item.dropdown-open > a .chevron {
        transform: rotate(180deg);
      }
      .page-hero { padding: 7rem 0 3rem; }
      .nav-links.open .nav-cta {
        display: inline-block;
        margin-top: 0.5rem;
        text-align: center;
        width: 100%;
      }
      .nav-links.open .nav-cta-outline {
        display: inline-block;
        margin-top: 0.25rem;
        text-align: center;
        width: 100%;
        border-radius: 100px;
      }
      .nav-links.open { z-index: 999; }
    }
