/*
Theme Name: Dr. Melissa Drake OB/GYN
Theme URI: https://melissadrakeobgyn.com
Author: Plowman Capital
Author URI: https://plowman.ai
Description: Custom WordPress theme for Dr. Melissa Drake, MD â Concierge OB/GYN, Santa Barbara
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
License: Private
Text Domain: drake-melissadrake
*/

/* ============================================
   GOOGLE FONTS are enqueued via functions.php
   Cormorant Garamond + Outfit
   ============================================ */


  :root {
    --ivory: #FAF8F5;
    --warm-white: #FFFDF9;
    --sand: #E8E0D4;
    --taupe: #C4B5A3;
    --sage: #8A9A7B;
    --sage-light: #B5C4A8;
    --sage-dark: #6B7D5E;
    --charcoal: #2C2C2C;
    --deep-brown: #3D3228;
    --espresso: #2A1F17;
    --soft-black: #1A1A1A;
    --rose: #C4A08A;
    --rose-light: #E8D5C8;
    --gold: #B8965A;
    --gold-light: #D4BC8E;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
  body {
    font-family: 'Outfit', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ANNOUNCEMENT BAR */
  .announcement-bar {
    background: var(--deep-brown);
    color: var(--sand);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
  }

  /* NAVIGATION */
  .nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 190, 175, 0.3);
  }
  nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo img {
    height: 42px;
    width: auto;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
  }
  .nav-links li a {
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links li a:hover { color: var(--sage-dark); }
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage);
    transition: width 0.3s ease;
  }
  .nav-links li a:hover::after { width: 100%; }
  .nav-links > li a.nav-cta,
  .nav-links > li:last-child a {
    background: var(--deep-brown);
    color: var(--ivory) !important;
    padding: 10px 24px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    line-height: 1.4;
    text-decoration: none;
  }
  .nav-links > li a.nav-cta:hover,
  .nav-links > li:last-child a:hover {
    background: var(--espresso);
    color: var(--ivory) !important;
    transform: translateY(-1px);
  }
  .nav-links > li a.nav-cta::after,
  .nav-links > li:last-child a::after { display: none; }

  /* HEADER CTA -- standalone pill button, always visible right side */
  .nav-header-cta {
    display: inline-flex;
    align-items: center;
    background: var(--sage-dark);
    color: var(--ivory) !important;
    padding: 10px 26px;
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    line-height: 1.4;
    margin-left: 12px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .nav-header-cta:hover {
    background: var(--deep-brown);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(61, 50, 40, 0.15);
  }
  /* On mobile: show CTA before hamburger */
  @media (max-width: 900px) {
    .nav-header-cta {
      padding: 8px 18px;
      font-size: 0.6rem;
      margin-left: auto;
      margin-right: 12px;
    }
  }
  @media (max-width: 380px) {
    .nav-header-cta { display: none; }
  }

  /* TESTIMONIALS CAROUSEL */
  .testimonial-track { position: relative; min-height: 160px; }
  .testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0; left: 0; right: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }
  .testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
  }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }
  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--taupe);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .testimonial-dot.active {
    background: var(--sage-dark);
    transform: scale(1.3);
  }
  .testimonial-dot:hover { background: var(--sage); }

  /* NAV DROPDOWN (Offerings) */
  .nav-dropdown { position: relative; }
  .nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .nav-chevron {
    transition: transform 0.25s ease;
    margin-top: 1px;
  }
  .nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown-trigger::after { display: none !important; }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    min-width: 260px;
    background: var(--warm-white);
    border: 1px solid rgba(200, 190, 175, 0.35);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(61, 50, 40, 0.1);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 2000;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-dropdown-menu li { padding: 0; }
  .nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }
  .nav-dropdown-menu li a::after { display: none !important; }
  .nav-dropdown-menu li a:hover {
    background: rgba(181, 196, 168, 0.12);
    color: var(--sage-dark);
  }

  /* MOBILE NAV TOGGLE */
  .nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 11px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
  }
  .nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* MOBILE NAV OVERLAY */
  .nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-mobile-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--ivory);
    padding: 60px 32px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  }
  .nav-mobile-overlay.active .nav-mobile-inner {
    transform: translateX(0);
  }
  .nav-mobile-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
  }
  .nav-mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-mobile-links li a {
    display: block;
    padding: 14px 0;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 190, 175, 0.2);
    transition: color 0.2s ease;
  }
  .nav-mobile-links li a:hover { color: var(--sage-dark); }
  .nav-mobile-section-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 600;
    padding: 20px 0 6px;
  }
  .nav-mobile-divider {
    height: 1px;
    background: var(--sand);
    margin: 8px 0;
  }
  .nav-mobile-cta {
    display: inline-block !important;
    margin-top: 12px;
    background: var(--deep-brown) !important;
    color: var(--ivory) !important;
    padding: 14px 28px !important;
    border-radius: 100px !important;
    text-align: center;
    font-weight: 500 !important;
    border-bottom: none !important;
    transition: background 0.3s ease !important;
  }
  .nav-mobile-cta:hover { background: var(--sage-dark) !important; }

  /* Responsive: show mobile nav, hide desktop nav */
  @media (max-width: 900px) {
    .nav-links { display: none !important; }
    .nav-mobile-toggle { display: flex; }
  }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px 80px 100px;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--sage);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.08;
    color: var(--soft-black);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--sage-dark);
  }
  .hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5A5550;
    max-width: 480px;
    margin-bottom: 48px;
    font-weight: 300;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--deep-brown);
    color: var(--ivory);
    padding: 18px 40px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.4s ease;
  }
  .btn-primary:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 50, 40, 0.15);
  }
  .btn-primary svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    word-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 18px 0;
    border-bottom: 1px solid var(--taupe);
    transition: all 0.3s ease;
  }
  .btn-secondary:hover { color: var(--sage-dark); border-color: var(--sage); }

  .hero-image {
    position: relative;
    overflow: hidden;
  }
  /* Ken Burns: slow gentle zoom, zero performance cost, no JS, no extra HTTP requests */
  @keyframes hero-kenburns {
    0%   { transform: scale(1.0);   transform-origin: 55% 30%; }
    100% { transform: scale(1.06);  transform-origin: 50% 25%; }
  }
  .hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: hero-kenburns 9s ease-in-out infinite alternate;
    will-change: transform;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-image img { animation: none; }
  }

  .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
  }
  .hero-scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: var(--taupe);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sage-dark);
    animation: scrollDown 2s infinite;
  }
  @keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--deep-brown);
    padding: 40px 60px;
  }
  .trust-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
  }
  .trust-item { text-align: center; color: var(--sand); }
  .trust-item .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
  }
  .trust-item .label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.7;
  }
  .trust-divider { width: 1px; height: 40px; background: rgba(196, 181, 163, 0.2); }

  /* ABOUT */
  .about-section {
    padding: 140px 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
  }
  .about-image-col { position: relative; }
  .about-image-frame {
    aspect-ratio: 3/4;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(0%);
    transition: filter 0.5s ease;
  }
  .about-image-frame:hover img {
    filter: grayscale(0%) brightness(1.02);
  }
  .about-accent-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--sage);
    padding: 32px 36px;
    border-radius: 2px;
    max-width: 260px;
    z-index: 2;
  }
  .about-accent-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: white;
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
  }
  .about-content .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .about-content .section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--sage);
  }
  .about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--soft-black);
    margin-bottom: 32px;
  }
  .about-content h2 em { font-style: italic; color: var(--sage-dark); }
  .about-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5A5550;
    margin-bottom: 24px;
    font-weight: 300;
  }
  .about-content .body-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #706B65;
    margin-bottom: 36px;
    font-weight: 300;
  }
  .credentials-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--sand);
  }
  .credential { display: flex; flex-direction: column; gap: 4px; }
  .credential .cred-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 500;
  }
  .credential .cred-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--charcoal);
    font-weight: 500;
  }

  /* SERVICES */
  .services-section {
    padding: 120px 60px;
    background: var(--warm-white);
    position: relative;
  }
  .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
  }
  .services-header {
    max-width: 1400px;
    margin: 0 auto 80px;
    text-align: center;
  }
  .services-header .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 16px;
  }
  .services-header p {
    font-size: 1rem;
    color: #706B65;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }
  .services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: white;
    padding: 48px 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(200, 190, 175, 0.2);
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(61, 50, 40, 0.08);
    border-color: var(--sage-light);
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--sage);
    transition: height 0.5s ease;
  }
  .service-card:hover::before { height: 100%; }
  .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--sand);
    transition: all 0.4s ease;
  }
  .service-card:hover .service-icon {
    background: var(--sage);
    border-color: var(--sage);
  }
  .service-icon svg {
    width: 20px;
    height: 20px;
    color: var(--sage-dark);
    transition: color 0.4s ease;
  }
  .service-card:hover .service-icon svg { color: white; }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--soft-black);
    margin-bottom: 12px;
  }
  .service-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #706B65;
    font-weight: 300;
    margin-bottom: 20px;
  }
  .service-link {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }
  .service-card:hover .service-link { gap: 14px; }
  .service-link svg { width: 12px; height: 12px; }

  /* CONCIERGE */
  .concierge-section {
    padding: 140px 60px;
    background: var(--deep-brown);
    position: relative;
    overflow: hidden;
  }
  .concierge-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 154, 123, 0.08) 0%, transparent 70%);
  }
  .concierge-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .concierge-content .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-light);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .concierge-content .section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--sage);
  }
  .concierge-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.15;
    margin-bottom: 32px;
  }
  .concierge-content h2 em { font-style: italic; color: var(--gold-light); }
  .concierge-content .body-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--taupe);
    font-weight: 300;
    margin-bottom: 24px;
  }
  .concierge-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
  }
  .concierge-feature { display: flex; gap: 20px; align-items: flex-start; }
  .concierge-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid rgba(138, 154, 123, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .concierge-feature-icon svg { width: 14px; height: 14px; color: var(--sage-light); }
  .concierge-feature h4 { font-size: 0.95rem; color: var(--ivory); font-weight: 500; margin-bottom: 4px; }
  .concierge-feature p { font-size: 0.85rem; color: var(--taupe); font-weight: 300; line-height: 1.6; }

  .concierge-tiers { display: flex; flex-direction: column; gap: 20px; }
  .tier-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196, 181, 163, 0.12);
    padding: 36px;
    border-radius: 4px;
    transition: all 0.4s ease;
  }
  .tier-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(138, 154, 123, 0.3); }
  .tier-card.featured {
    border-color: var(--sage);
    background: rgba(138, 154, 123, 0.06);
    position: relative;
  }
  .tier-badge {
    position: absolute;
    top: -10px;
    right: 24px;
    background: var(--sage);
    color: white;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 2px;
  }
  .tier-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--ivory);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .tier-card p { font-size: 0.85rem; color: var(--taupe); line-height: 1.6; font-weight: 300; }

  /* TESTIMONIAL */
  .testimonial-section { padding: 120px 60px; background: var(--ivory); text-align: center; }
  .testimonial-inner { max-width: 800px; margin: 0 auto; }
  .testimonial-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--sage-light);
    line-height: 0.5;
    margin-bottom: 24px;
  }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 36px;
  }
  .testimonial-attr {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 500;
  }
  .testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 32px; }
  .testimonial-stars svg { width: 18px; height: 18px; color: var(--gold); }

  /* FULL-WIDTH IMAGE BREAK */
  .image-break {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  .image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px 80px;
  }
  .image-break-overlay p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    font-weight: 300;
    font-style: italic;
    max-width: 600px;
  }

  /* EDUCATION */
  .education-section {
    padding: 120px 60px;
    background: var(--warm-white);
    position: relative;
  }
  .education-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
  }
  .education-inner { max-width: 1400px; margin: 0 auto; }
  .education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }
  .education-header-text .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .education-header-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--soft-black);
  }
  .education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .education-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(200,190,175,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .education-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(61,50,40,0.08);
  }
  .education-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sand) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .education-card:hover .play-btn { transform: scale(1.1); }
  .play-btn svg { width: 20px; height: 20px; color: var(--sage-dark); margin-left: 3px; }
  .education-card-body { padding: 28px; }
  .education-tag {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 10px;
  }
  .education-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--soft-black);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .education-card p { font-size: 0.85rem; color: #706B65; font-weight: 300; line-height: 1.6; }

  /* CONTACT */
  .contact-section { padding: 120px 60px; background: var(--ivory); }
  .contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-info .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .contact-info .section-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--sage);
  }
  .contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 32px;
    line-height: 1.15;
  }
  .contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .contact-detail { display: flex; gap: 16px; align-items: flex-start; }
  .contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-detail-icon svg { width: 16px; height: 16px; color: white; }
  .contact-detail-text .detail-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .contact-detail-text .detail-value { font-size: 1rem; color: var(--charcoal); font-weight: 400; }
  .contact-form-wrapper {
    background: white;
    padding: 56px;
    border-radius: 4px;
    border: 1px solid rgba(200,190,175,0.2);
  }
  .contact-form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--soft-black);
    margin-bottom: 32px;
    font-weight: 500;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    border: 1px solid var(--sand);
    border-radius: 2px;
    background: var(--ivory);
    color: var(--charcoal);
    transition: border-color 0.3s ease;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--sage); }
  .form-group textarea { height: 100px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit {
    width: 100%;
    padding: 18px;
    background: var(--deep-brown);
    color: var(--ivory);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--sage-dark); }

  /* FOOTER */
  footer {
    background: var(--soft-black);
    padding: 80px 60px 40px;
  }
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(196,181,163,0.1);
  }
  .footer-brand .footer-logo img {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(0.75) sepia(0.2);
  }
  .footer-brand p {
    font-size: 0.85rem;
    color: var(--taupe);
    font-weight: 300;
    line-height: 1.7;
    max-width: 300px;
  }
  .footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--taupe);
    font-weight: 300;
    transition: color 0.3s ease;
  }
  .footer-col ul li a:hover { color: var(--ivory); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
  }
  .footer-bottom p { font-size: 0.75rem; color: rgba(196,181,163,0.4); font-weight: 300; }
  .footer-bottom .social-links { display: flex; gap: 16px; }
  .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(196,181,163,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .social-links a:hover { border-color: var(--sage); background: rgba(138,154,123,0.1); }
  .social-links a svg { width: 14px; height: 14px; color: var(--taupe); }

  

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * { animation: fadeUp 0.8s ease forwards; }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.2s; }
  .hero-description { animation-delay: 0.3s; }
  .hero-actions { animation-delay: 0.4s; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    nav { padding: 16px 30px; }
    .nav-links { gap: 20px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 80px 40px; }
    .hero h1 { font-size: 3rem; }
    .hero-image { height: 500px; position: relative; }
    .hero-image img { position: absolute; }
    .about-section { grid-template-columns: 1fr; gap: 60px; padding: 80px 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .concierge-inner { grid-template-columns: 1fr; }
    .education-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .hero h1 { font-size: 2.4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .education-grid { grid-template-columns: 1fr; }
    .trust-bar-inner { flex-direction: column; gap: 24px; }
    .trust-divider { width: 40px; height: 1px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .image-break { height: 280px; }
  }


/* ============================================
   INTERIOR PAGE STYLES
   ============================================ */


  :root {
    --ivory: #FAF8F5;
    --warm-white: #FFFDF9;
    --sand: #E8E0D4;
    --taupe: #C4B5A3;
    --sage: #8A9A7B;
    --sage-light: #B5C4A8;
    --sage-dark: #6B7D5E;
    --charcoal: #2C2C2C;
    --deep-brown: #3D3228;
    --espresso: #2A1F17;
    --soft-black: #1A1A1A;
    --rose: #C4A08A;
    --rose-light: #E8D5C8;
    --gold: #B8965A;
    --gold-light: #D4BC8E;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
  body {
    font-family: 'Outfit', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .announcement-bar {
    background: var(--deep-brown);
    color: var(--sand);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
  }
  .nav-wrapper {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 190, 175, 0.3);
  }
  nav {
    max-width: 1400px; margin: 0 auto; padding: 12px 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo img { height: 42px; width: auto; }
  .nav-links {
    display: flex; gap: 28px; list-style: none; align-items: center;
  }
  .nav-links li a {
    text-decoration: none; font-size: 0.76rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--charcoal); font-weight: 400;
    transition: color 0.3s ease; position: relative;
  }
  .nav-links li a:hover { color: var(--sage-dark); }
  .nav-links li a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--sage); transition: width 0.3s ease;
  }
  .nav-links li a:hover::after { width: 100%; }
  .nav-links > li a.nav-cta,
  .nav-links > li:last-child a {
    background: var(--deep-brown); color: var(--ivory) !important; padding: 10px 24px;
    border-radius: 100px; letter-spacing: 0.08em; font-size: 0.7rem;
    text-transform: uppercase; font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block; line-height: 1.4; text-decoration: none;
  }
  .nav-links > li a.nav-cta:hover,
  .nav-links > li:last-child a:hover { background: var(--espresso); color: var(--ivory) !important; transform: translateY(-1px); }
  .nav-links > li a.nav-cta::after,
  .nav-links > li:last-child a::after { display: none; }
  .nav-links li a.active { color: var(--sage-dark); font-weight: 500; }
  .nav-links li a.active::after { width: 100%; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--deep-brown); color: var(--ivory); padding: 18px 40px;
    text-decoration: none; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 500; border-radius: 2px;
    transition: all 0.4s ease;
  }
  .btn-primary:hover {
    background: var(--sage-dark); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 50, 40, 0.15);
  }
  .btn-primary svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--charcoal); text-decoration: none; font-size: 0.75rem;
    letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
    padding: 18px 0; border-bottom: 1px solid var(--taupe); transition: all 0.3s ease;
  }
  .btn-secondary:hover { color: var(--sage-dark); border-color: var(--sage); }
  .btn-white {
    display: inline-flex; align-items: center; gap: 12px;
    background: white; color: var(--deep-brown); padding: 18px 40px;
    text-decoration: none; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 500; border-radius: 2px;
    transition: all 0.4s ease;
  }
  .btn-white:hover { background: var(--ivory); transform: translateY(-2px); }
  .btn-white svg { width: 14px; height: 14px; }

  .section-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--sage-dark); font-weight: 500; margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-eyebrow::before {
    content: ''; width: 30px; height: 1px; background: var(--sage);
  }

  /* Page Hero Banner */
  .page-hero {
    padding: 100px 60px 80px;
    background: var(--deep-brown);
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(138,154,123,0.08) 0%, transparent 70%);
  }
  .page-hero-inner {
    max-width: 1400px; margin: 0 auto; position: relative; z-index: 2;
  }
  .page-hero .section-eyebrow { color: var(--sage-light); }
  .page-hero .section-eyebrow::before { background: var(--sage-light); }
  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
    font-weight: 300; color: var(--ivory); line-height: 1.15; margin-bottom: 20px;
  }
  .page-hero h1 em { font-style: italic; color: var(--gold-light); }
  .page-hero p {
    font-size: 1.1rem; color: var(--taupe); font-weight: 300;
    line-height: 1.8; max-width: 600px;
  }

  /* Content Sections */
  .content-section {
    padding: 100px 60px; max-width: 1400px; margin: 0 auto;
  }
  .content-section.alt { background: var(--warm-white); max-width: 100%; }
  .content-section.alt .content-inner { max-width: 1400px; margin: 0 auto; }
  .content-section h2 {
    font-family: 'Cormorant Garamond', serif; font-size: 2.6rem;
    font-weight: 300; color: var(--soft-black); line-height: 1.2; margin-bottom: 24px;
  }
  .content-section h2 em { font-style: italic; color: var(--sage-dark); }
  .content-section h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
    font-weight: 500; color: var(--soft-black); margin-bottom: 12px;
  }
  .content-section p {
    font-size: 1rem; line-height: 1.9; color: #5A5550; font-weight: 300;
  }
  .content-section p + p { margin-top: 16px; }

  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .image-frame {
    border-radius: 4px; overflow: hidden; position: relative;
  }
  .image-frame img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .image-frame.portrait { aspect-ratio: 3/4; }
  .image-frame.landscape { aspect-ratio: 4/3; }

  /* Service List Cards */
  .service-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
  .service-list-item {
    background: white; padding: 32px 36px; border-radius: 4px;
    border: 1px solid rgba(200,190,175,0.2); transition: all 0.4s ease;
    cursor: pointer; display: flex; gap: 20px; align-items: flex-start;
  }
  .service-list-item:hover {
    transform: translateX(8px); border-color: var(--sage-light);
    box-shadow: 0 8px 30px rgba(61,50,40,0.06);
  }
  .service-list-item .sli-icon {
    width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
    background: var(--ivory); border: 1px solid var(--sand);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s ease;
  }
  .service-list-item:hover .sli-icon { background: var(--sage); border-color: var(--sage); }
  .service-list-item .sli-icon svg { width: 16px; height: 16px; color: var(--sage-dark); transition: color 0.4s ease; }
  .service-list-item:hover .sli-icon svg { color: white; }
  .service-list-item h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
    color: var(--soft-black); font-weight: 500; margin-bottom: 6px;
  }
  .service-list-item p { font-size: 0.88rem; color: #706B65; line-height: 1.6; }

  /* Tier Cards */
  .tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
  .tier-card-full {
    background: white; border: 1px solid rgba(200,190,175,0.2);
    border-radius: 4px; padding: 48px 40px; position: relative;
    transition: all 0.4s ease; display: flex; flex-direction: column;
  }
  .tier-card-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(61,50,40,0.08);
    border-color: var(--sage-light);
  }
  .tier-card-full.featured {
    border-color: var(--sage); background: linear-gradient(180deg, rgba(138,154,123,0.04) 0%, white 100%);
  }
  .tier-card-full .tier-label {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sage-dark); font-weight: 500; margin-bottom: 12px;
  }
  .tier-card-full .featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--sage); color: white; font-size: 0.6rem;
    letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 20px;
    border-radius: 2px; font-weight: 500;
  }
  .tier-card-full h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
    color: var(--soft-black); font-weight: 500; margin-bottom: 16px;
  }
  .tier-card-full .tier-desc {
    font-size: 0.9rem; color: #706B65; line-height: 1.7; font-weight: 300;
    margin-bottom: 28px;
  }
  .tier-card-full .tier-features {
    list-style: none; display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 32px; flex-grow: 1;
  }
  .tier-card-full .tier-features li {
    font-size: 0.88rem; color: #5A5550; font-weight: 300;
    padding-left: 24px; position: relative; line-height: 1.5;
  }
  .tier-card-full .tier-features li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 10px; height: 10px; border-radius: 50%;
    border: 1.5px solid var(--sage); background: transparent;
  }
  .tier-card-full.featured .tier-features li::before {
    background: var(--sage); border-color: var(--sage);
  }
  .tier-card-full .tier-cta {
    display: block; text-align: center; padding: 16px;
    background: var(--ivory); color: var(--deep-brown); text-decoration: none;
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 500; border-radius: 2px; transition: all 0.3s ease;
    border: 1px solid var(--sand);
  }
  .tier-card-full .tier-cta:hover { background: var(--deep-brown); color: var(--ivory); border-color: var(--deep-brown); }
  .tier-card-full.featured .tier-cta {
    background: var(--deep-brown); color: var(--ivory); border-color: var(--deep-brown);
  }
  .tier-card-full.featured .tier-cta:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

  /* Credentials grid */
  .cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
  .cred-card {
    text-align: center; padding: 32px 20px;
    border: 1px solid rgba(200,190,175,0.15); border-radius: 4px;
  }
  .cred-card .cred-icon {
    width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%;
    background: var(--sage); display: flex; align-items: center; justify-content: center;
  }
  .cred-card .cred-icon svg { width: 20px; height: 20px; color: white; }
  .cred-card h4 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
    color: var(--soft-black); font-weight: 500; margin-bottom: 6px;
  }
  .cred-card p { font-size: 0.8rem; color: #706B65; font-weight: 300; line-height: 1.5; }

  /* CTA Banner */
  .cta-banner {
    background: var(--sage-dark); padding: 80px 60px; text-align: center;
  }
  .cta-banner h2 {
    font-family: 'Cormorant Garamond', serif; font-size: 2.8rem;
    font-weight: 300; color: white; margin-bottom: 16px;
  }
  .cta-banner p {
    font-size: 1rem; color: rgba(255,255,255,0.75); font-weight: 300;
    margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto;
  }

  /* Divider */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
    max-width: 1400px; margin: 0 auto;
  }

  /* Footer */
  footer { background: var(--soft-black); padding: 80px 60px 40px; }
  .footer-inner { max-width: 1400px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px; border-bottom: 1px solid rgba(196,181,163,0.1);
  }
  .footer-brand .footer-logo img { height: 36px; width: auto; margin-bottom: 20px; }
  .footer-brand p { font-size: 0.85rem; color: var(--taupe); font-weight: 300; line-height: 1.7; max-width: 300px; }
  .footer-col h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); font-weight: 500; margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a { text-decoration: none; font-size: 0.85rem; color: var(--taupe); font-weight: 300; transition: color 0.3s ease; }
  .footer-col ul li a:hover { color: var(--ivory); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; }
  .footer-bottom p { font-size: 0.75rem; color: rgba(196,181,163,0.4); font-weight: 300; }
  .footer-bottom .social-links { display: flex; gap: 16px; }
  .social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(196,181,163,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
  .social-links a:hover { border-color: var(--sage); background: rgba(138,154,123,0.1); }
  .social-links a svg { width: 14px; height: 14px; color: var(--taupe); }

  

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .page-hero > * { animation: fadeUp 0.8s ease forwards; }

  @media (max-width: 1024px) {
    nav { padding: 16px 30px; }
    .nav-links { gap: 20px; }
    .two-col, .two-col-text { grid-template-columns: 1fr; }
    .tiers-grid { grid-template-columns: 1fr; }
    .cred-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding: 80px 40px 60px; }
    .page-hero h1 { font-size: 2.6rem; }
    .content-section { padding: 80px 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .cred-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
  }

  /* CONTACT FORM STATE STYLES */
  .dcf-success {
    background: rgba(138,154,123,0.12);
    border: 1px solid var(--sage);
    color: var(--sage-dark);
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .dcf-error {
    background: rgba(196,100,100,0.08);
    border: 1px solid rgba(196,100,100,0.3);
    color: #8B3A3A;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .dcf-required { color: var(--sage-dark); }
  .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

  /* =========================================================
     CONTACT FORM 7 -- Drake Design System Overrides
     ========================================================= */
  .contact-form-wrapper .wpcf7 { width: 100%; }
  .contact-form-wrapper .wpcf7-form p { margin-bottom: 20px; }
  .contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
  }
  .contact-form-wrapper .wpcf7-form-control:not([type="submit"]) {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    border: 1px solid var(--sand);
    border-radius: 2px;
    background: var(--ivory);
    color: var(--charcoal);
    transition: border-color 0.3s ease;
    outline: none;
    box-sizing: border-box;
  }
  .contact-form-wrapper .wpcf7-form-control:not([type="submit"]):focus {
    border-color: var(--sage);
  }
  .contact-form-wrapper .wpcf7-form textarea.wpcf7-form-control {
    height: 100px;
    resize: vertical;
  }
  .contact-form-wrapper .wpcf7-form input[type="submit"],
  .contact-form-wrapper .wpcf7-submit {
    width: 100%;
    padding: 18px;
    background: var(--deep-brown);
    color: var(--ivory);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 8px;
  }
  .contact-form-wrapper .wpcf7-form input[type="submit"]:hover,
  .contact-form-wrapper .wpcf7-submit:hover { background: var(--sage-dark); }
  .contact-form-wrapper .wpcf7-response-output {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    border-width: 1px;
    border-style: solid;
  }
  .contact-form-wrapper .wpcf7-mail-sent-ok {
    background: rgba(138,154,123,0.12);
    border-color: var(--sage);
    color: var(--sage-dark);
  }
  .contact-form-wrapper .wpcf7-mail-sent-ng,
  .contact-form-wrapper .wpcf7-validation-errors,
  .contact-form-wrapper .wpcf7-spam-blocked {
    background: rgba(196,100,100,0.08);
    border-color: rgba(196,100,100,0.3);
    color: #8B3A3A;
  }
  .contact-form-wrapper .wpcf7-not-valid-tip {
    color: #8B3A3A;
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
    font-family: 'Outfit', sans-serif;
  }
  .contact-form-wrapper .wpcf7-form-control.wpcf7-not-valid {
    border-color: rgba(196,100,100,0.5);
  }
  /* Spinner hide -- Drake doesn't use CF7's default spinner */
  .contact-form-wrapper .wpcf7-spinner { display: none; }

  /* ============================================
     BOOK A VISIT SECTION
     ============================================ */
  .book-visit-section {
    background: var(--deep-brown);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
  }
  .book-visit-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(138, 154, 123, 0.06);
    pointer-events: none;
  }
  .book-visit-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .book-visit-text .section-eyebrow {
    color: var(--sage-light);
  }
  .book-visit-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--warm-white);
    margin: 16px 0 28px;
    letter-spacing: -0.01em;
  }
  .book-visit-text h2 em {
    font-style: italic;
    color: var(--sage-light);
  }
  .book-visit-text .body-text {
    color: var(--sand);
    line-height: 1.85;
    font-size: 1.05rem;
    max-width: 500px;
    margin-bottom: 40px;
  }
  .book-visit-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .book-visit-actions .btn-primary {
    background: var(--sage-dark);
  }
  .book-visit-actions .btn-primary:hover {
    background: var(--sage);
  }
  .book-visit-actions .btn-secondary {
    color: var(--sand);
    border-color: rgba(200, 190, 175, 0.35);
  }
  .book-visit-actions .btn-secondary:hover {
    color: var(--ivory);
    border-color: var(--sand);
  }
  .book-visit-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .book-visit-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--taupe);
  }
  .book-visit-trust-item svg {
    color: var(--sage-light);
    flex-shrink: 0;
  }
  .book-visit-image {
    position: relative;
  }
  .book-visit-image-frame {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 560px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  }
  .book-visit-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }
  .book-visit-accent {
    position: absolute;
    bottom: -20px;
    left: -32px;
    background: var(--ivory);
    padding: 20px 24px;
    border-radius: 4px;
    max-width: 280px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  .book-visit-accent p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--deep-brown);
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .book-visit-accent span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 500;
  }

  /* Book a Visit -- Responsive */
  @media (max-width: 900px) {
    .book-visit-section { padding: 70px 32px; }
    .book-visit-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .book-visit-image { order: -1; }
    .book-visit-image-frame { max-height: 380px; aspect-ratio: 16/9; }
    .book-visit-accent { left: 16px; bottom: -16px; max-width: 240px; }
    .book-visit-text h2 { font-size: 2.5rem; }
    .book-visit-actions { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .book-visit-section { padding: 56px 20px; }
    .book-visit-text h2 { font-size: 2rem; }
    .book-visit-accent { display: none; }
  }

  /* ============================================
     CONCIERGE TIER CARDS (four-section layout)
     page-concierge-membership.php
     ============================================ */
  .concierge-tiers-section {
    padding: 80px 60px;
    background: var(--ivory);
  }
  .concierge-tiers-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .concierge-tiers-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
  }
  .concierge-tiers-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--soft-black);
    margin: 12px 0 20px;
    letter-spacing: -0.01em;
  }
  .concierge-tiers-intro h2 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .concierge-tiers-intro p {
    color: #706B65;
    line-height: 1.8;
    font-size: 1rem;
  }

  /* Card grid: 2-up on desktop, stacked on mobile */
  .concierge-tier-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .concierge-tier-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
  }
  .concierge-tier-card:hover {
    box-shadow: 0 12px 48px rgba(61, 50, 40, 0.09);
    transform: translateY(-3px);
  }

  /* Featured card */
  .concierge-tier-card.featured {
    background: var(--deep-brown);
    border-color: var(--deep-brown);
  }
  .concierge-tier-card.featured h3,
  .concierge-tier-card.featured .tier-card-desc,
  .concierge-tier-card.featured .tier-card-features li,
  .concierge-tier-card.featured .tier-card-number,
  .concierge-tier-card.featured .tier-card-label {
    color: var(--ivory);
  }
  .concierge-tier-card.featured .tier-card-features li::before {
    background: var(--sage-light);
  }

  /* Add-on card */
  .concierge-tier-card.addon {
    background: var(--ivory);
    border: 1px dashed var(--taupe);
  }

  /* Featured badge */
  .tier-card-featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--sage-dark);
    color: var(--ivory);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 0 0 0 4px;
  }

  /* Add-on badge */
  .tier-card-addon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--sand);
    color: var(--deep-brown);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 0 0 0 4px;
  }

  .tier-card-header {
    padding: 32px 32px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .tier-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--sand);
    flex-shrink: 0;
    margin-top: -8px;
  }
  .concierge-tier-card.featured .tier-card-number {
    color: rgba(250, 248, 245, 0.25);
  }
  .tier-card-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--sage-dark);
    padding-top: 8px;
  }

  .tier-card-body {
    padding: 20px 32px 24px;
    flex: 1;
  }
  .tier-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--deep-brown);
    margin-bottom: 16px;
  }
  .tier-card-desc {
    font-size: 0.9rem;
    line-height: 1.85;
    color: #706B65;
    margin-bottom: 24px;
  }
  .concierge-tier-card.featured .tier-card-desc {
    color: var(--sand);
  }
  .tier-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .tier-card-features li {
    font-size: 0.82rem;
    color: var(--charcoal);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
  }
  .tier-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 1px;
    background: var(--sage);
  }

  .tier-card-footer {
    padding: 0 32px 32px;
    margin-top: auto;
  }
  .tier-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--deep-brown);
    border-bottom: 1px solid var(--taupe);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease, gap 0.2s ease;
  }
  .tier-card-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
  }
  .tier-card-cta:hover {
    color: var(--sage-dark);
    border-color: var(--sage);
    gap: 14px;
  }
  .tier-card-cta:hover svg { transform: translateX(4px); }
  .concierge-tier-card.featured .tier-card-cta {
    color: var(--ivory);
    border-color: rgba(250, 248, 245, 0.35);
  }
  .concierge-tier-card.featured .tier-card-cta:hover {
    color: var(--sage-light);
    border-color: var(--sage-light);
  }

  /* Concierge tiers responsive */
  @media (max-width: 900px) {
    .concierge-tiers-section { padding: 60px 32px; }
    .concierge-tier-cards { grid-template-columns: 1fr; gap: 20px; }
    .concierge-tiers-intro h2 { font-size: 2.2rem; }
  }
  @media (max-width: 480px) {
    .concierge-tiers-section { padding: 48px 20px; }
    .tier-card-header { padding: 24px 24px 0; }
    .tier-card-body { padding: 16px 24px 20px; }
    .tier-card-footer { padding: 0 24px 24px; }
    .tier-card-body h3 { font-size: 1.4rem; }
  }

  /* ============================================
     ADVANCED CANCER SCREENING CALLOUT
     page-menopause-hormonal-transitions.php
     ============================================ */
  .cancer-screening-callout {
    padding: 80px 60px;
    background: var(--warm-white);
  }
  .cancer-screening-inner {
    max-width: 960px;
    margin: 0 auto;
    background: var(--ivory);
    border: 1px solid var(--sand);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(61, 50, 40, 0.05);
  }
  .cancer-screening-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(184, 150, 90, 0.04);
    pointer-events: none;
  }
  .cancer-screening-content .section-eyebrow {
    color: var(--gold);
    font-weight: 600;
  }
  .cancer-screening-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--deep-brown);
    margin: 12px 0 20px;
  }
  .cancer-screening-content h2 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .cancer-screening-content p {
    color: #706B65;
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 580px;
  }
  .cancer-screening-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--deep-brown);
    background: rgba(184, 150, 90, 0.1);
    padding: 14px 28px;
    border-radius: 2px;
    border: 1px solid rgba(184, 150, 90, 0.25);
    transition: all 0.3s ease;
  }
  .cancer-screening-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
  }
  .cancer-screening-cta:hover {
    background: var(--deep-brown);
    color: var(--ivory);
    border-color: var(--deep-brown);
  }
  .cancer-screening-cta:hover svg { transform: translateX(4px); }
  .cancer-screening-icon {
    width: 100px;
    height: 100px;
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
  }
  .cancer-screening-icon svg {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 900px) {
    .cancer-screening-callout { padding: 60px 32px; }
    .cancer-screening-inner {
      grid-template-columns: 1fr;
      padding: 36px 32px;
    }
    .cancer-screening-icon { display: none; }
  }
  @media (max-width: 480px) {
    .cancer-screening-callout { padding: 48px 20px; }
    .cancer-screening-inner { padding: 28px 24px; }
    .cancer-screening-content h2 { font-size: 1.6rem; }
  }

  /* =====================================================
     PRICING TABLE â contact page
     ===================================================== */
  .pricing-overview-section {
    background: var(--ivory);
    padding: 100px 60px;
  }
  .pricing-overview-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .pricing-overview-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .pricing-overview-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
  }
  .pricing-overview-header h2 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .pricing-overview-sub {
    font-size: 0.9rem;
    color: var(--taupe-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
  }

  .pricing-table-grid {
    border: 1px solid rgba(180, 168, 152, 0.4);
    border-radius: 2px;
    overflow: hidden;
  }
  .pricing-table-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 3fr;
    border-bottom: 1px solid rgba(180, 168, 152, 0.25);
  }
  .pricing-table-row:last-child { border-bottom: none; }
  .pricing-table-header {
    background: var(--deep-brown);
  }
  .pricing-table-header .pricing-cell {
    color: var(--ivory);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-sans);
    padding: 14px 24px;
  }
  .pricing-cell {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--charcoal);
    line-height: 1.65;
    border-right: 1px solid rgba(180, 168, 152, 0.2);
  }
  .pricing-cell:last-child { border-right: none; }
  .pricing-table-row:nth-child(even) .pricing-cell {
    background: rgba(245, 241, 235, 0.5);
  }
  .pricing-service-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
  }
  .pricing-service-type {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe-dark);
    font-family: var(--font-sans);
  }
  .pricing-fee {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--sage-dark);
    font-style: italic;
  }
  .pricing-overview-footer {
    margin-top: 32px;
    padding: 24px 28px;
    background: rgba(180, 168, 152, 0.12);
    border-radius: 2px;
    border-left: 3px solid var(--sage);
  }
  .pricing-overview-footer p {
    font-size: 0.83rem;
    color: var(--taupe-dark);
    line-height: 1.75;
  }

  @media (max-width: 900px) {
    .pricing-overview-section { padding: 60px 32px; }
    .pricing-table-row { grid-template-columns: 1fr 1fr; }
    .pricing-cell-note { display: none; }
  }
  @media (max-width: 600px) {
    .pricing-overview-section { padding: 48px 20px; }
    .pricing-table-row { grid-template-columns: 1fr; }
    .pricing-table-header .pricing-cell:not(:first-child) { display: none; }
    .pricing-cell { padding: 16px 20px; }
    .pricing-cell-fee { border-top: none; }
  }

  /* =====================================================
     FOOTER CREDIT
     ===================================================== */
  .footer-credit {
    font-size: 0.7em;
    opacity: 0.55;
    letter-spacing: 0.05em;
  }

  /* =====================================================
     CALENDLY EMBED â contact page
     ===================================================== */
  .calendly-section {
    background: var(--sand);
    padding: 80px 60px;
    text-align: center;
  }
  .calendly-section-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .calendly-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
  }
  .calendly-section h2 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .calendly-section p {
    font-size: 0.9rem;
    color: var(--taupe-dark);
    margin-bottom: 40px;
    line-height: 1.7;
  }
  .calendly-embed-container {
    min-height: 660px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(61, 50, 40, 0.08);
  }
  @media (max-width: 900px) {
    .calendly-section { padding: 60px 28px; }
    .calendly-embed-container { min-height: 800px; }
  }
  @media (max-width: 600px) {
    .calendly-section { padding: 48px 20px; }
    .calendly-embed-container { min-height: 1000px; }
  }

  /* =====================================================
     SCROLL REVEAL ANIMATIONS
     ===================================================== */
  .fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .fade-on-scroll { opacity: 1; transform: none; transition: none; }
  }

  /* ABOUT PAGE HERO — text contrast over photo */
  .about-hero { background: var(--deep-brown); }
  .about-hero h1,
  .about-hero .page-hero-inner h1 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  }
  .about-hero .page-hero-inner h1 em {
    color: #D4BC8E !important;
  }
  .about-hero .section-eyebrow {
    color: rgba(255,255,255,0.75) !important;
  }
  .about-hero p {
    color: rgba(255,255,255,0.85) !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  }

  /* ── CF7 CONTACT FORM — Drake design system ─────────────────────────── */
  .drake-form-wrap { max-width: 660px; }
  .drake-form-wrap .form-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .wpcf7-form label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
  }
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form textarea,
  .wpcf7-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--sand);
    border-radius: 4px;
    background: var(--warm-white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 300;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
  }
  .wpcf7-form input[type="text"]:focus,
  .wpcf7-form input[type="email"]:focus,
  .wpcf7-form input[type="tel"]:focus,
  .wpcf7-form textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(138,154,123,0.12);
  }
  .wpcf7-form input[type="text"]::placeholder,
  .wpcf7-form input[type="email"]::placeholder,
  .wpcf7-form textarea::placeholder {
    color: var(--taupe);
    font-weight: 300;
  }
  .wpcf7-form textarea { resize: vertical; min-height: 120px; }
  .wpcf7-form input[type="submit"],
  .wpcf7-submit {
    background: var(--deep-brown);
    color: var(--ivory);
    border: none;
    padding: 16px 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
  }
  .wpcf7-form input[type="submit"]:hover,
  .wpcf7-submit:hover {
    background: var(--soft-black);
    transform: translateY(-1px);
  }
  .wpcf7-response-output {
    font-size: 0.85rem;
    padding: 12px 16px;
    border-radius: 4px;
    margin-top: 8px;
    border: 1px solid transparent;
  }
  .wpcf7-mail-sent-ok {
    background: rgba(138,154,123,0.1);
    border-color: var(--sage);
    color: var(--sage-dark);
  }
  .wpcf7-validation-errors,
  .wpcf7-spam-blocked {
    background: rgba(196,160,138,0.1);
    border-color: var(--rose);
    color: var(--deep-brown);
  }
  .wpcf7-not-valid-tip {
    font-size: 0.75rem;
    color: var(--rose);
    margin-top: 4px;
  }
  /* Hide the CF7 response output until submission */
  .wpcf7-response-output:empty { display: none; }

  /* ── NAV SOCIAL ICONS ───────────────────────────────────────────────── */
  .nav-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
    flex-shrink: 0;
  }
  .nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(196, 181, 163, 0.45);
    color: var(--charcoal);
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  }
  .nav-social-link:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
    background: rgba(138, 154, 123, 0.08);
  }
  .nav-social-link svg { display: block; }
  @media (max-width: 900px) {
    .nav-social-icons { display: none; }
  }


/* ============================================
   ABOG BOARD CERTIFICATION BADGE - HERO WATERMARK
   ============================================ */

/* Ensure hero sections support absolute positioning for badge */
.page-hero,
.hero-section {
  position: relative;
}

/* Hero watermark badge - bottom-right overlay */
.abog-hero-badge {
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 70px;
  height: 70px;
  object-fit: contain;
  opacity: 0.88;
  z-index: 10;
  pointer-events: none;
  animation: none !important;
  transition: none !important;
}

/* Trust bar badge item (homepage trust bar) */
.trust-item--badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.trust-item--badge .abog-badge {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}