
  :root {
    --cream: #F5F0E8;
    --forest: #2D4A35;
    --gold: #C9A84C;
    --charcoal: #2C2C2C;
    --sage: #8FAF8A;
    --parchment: #EDE6D6;
    --forest-light: #3D6147;
    --gold-light: #E8C97A;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* â”€â”€ LANGUAGE TOGGLE â”€â”€ */
  .lang-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45,74,53,0.1);
  }

  .logo-nav {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.04em;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover { opacity: 1; color: var(--forest); }

  .nav-auth {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    text-transform: none;
    letter-spacing: 0.02em;
  }

  .x-verified-wrap {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 2px;
  }

  .x-verified {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    vertical-align: middle;
  }

  .x-verified-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1D9BF0;
    line-height: 1;
  }

  .lang-toggle {
    display: flex;
    background: var(--parchment);
    border: 1px solid rgba(45,74,53,0.2);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
  }

  .lang-btn {
    padding: 5px 14px;
    font-size: 0.72rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--charcoal);
    opacity: 0.5;
    transition: all 0.25s;
  }

  .lang-btn.active {
    background: var(--forest);
    color: var(--cream);
    opacity: 1;
    border-radius: 18px;
  }

  /* â”€â”€ HERO â”€â”€ */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: 24px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.75;
    max-width: 420px;
    margin-bottom: 40px;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 14px 32px;
    background: var(--forest);
    color: var(--cream);
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--forest-light); transform: translateY(-1px); }

  .btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: var(--forest);
    border: 1px solid var(--forest);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
  }
  .btn-ghost:hover { background: var(--forest); color: var(--cream); }

  /* â”€â”€ ROOT ANIMATION â”€â”€ */
  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    position: relative;
    overflow: hidden;
  }

  .root-svg-wrap {
    width: 100%;
    min-height: 480px;
    position: relative;
    overflow: hidden;
  }

  .root-svg {
    width: 340px;
    height: 480px;
    opacity: 0.9;
  }

  .root-path {
    stroke: var(--sage);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawRoot 3s ease forwards;
  }

  .root-path-2 { animation-delay: 0.4s; stroke: var(--gold); stroke-width: 1; }
  .root-path-3 { animation-delay: 0.8s; stroke: var(--sage); stroke-width: 0.8; opacity: 0.6; }
  .root-path-4 { animation-delay: 1.1s; stroke: var(--gold); stroke-width: 0.6; opacity: 0.5; }
  .root-path-5 { animation-delay: 1.4s; stroke: var(--sage); stroke-width: 0.6; opacity: 0.4; }

  @keyframes drawRoot {
    to { stroke-dashoffset: 0; }
  }

  .leaf {
    fill: var(--sage);
    opacity: 0;
    animation: fadeLeaf 0.6s ease forwards;
  }
  .leaf-1 { animation-delay: 1.8s; }
  .leaf-2 { animation-delay: 2.1s; fill: var(--gold-light); opacity: 0; }
  .leaf-3 { animation-delay: 2.3s; }

  @keyframes fadeLeaf {
    to { opacity: 0.7; }
  }

  .hero-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-badge span {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1;
  }
  .hero-badge small {
    font-family: 'DM Mono', monospace;
    color: var(--gold);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 2px;
  }

  /* â”€â”€ SECTIONS â”€â”€ */
  section { padding: 100px 80px; }

  .section-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--forest);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .section-title em { font-style: italic; }

  .section-body {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.75;
    max-width: 560px;
  }

  /* â”€â”€ ABOUT â”€â”€ */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 80px;
  }

  .about-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .credential {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--parchment);
    border-left: 2px solid var(--gold);
  }

  .cred-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
  }

  .credential-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--charcoal);
    opacity: 0.8;
  }

  .about-visual {
    position: relative;
    min-height: 480px;
    background: var(--parchment);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
  }

  .about-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 24px;
    background: rgba(45, 74, 53, 0.06);
    box-shadow: 0 8px 32px rgba(45, 74, 53, 0.12);
  }

  .about-photo,
  .about-photo-wrap > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center 22%;
    display: block;
  }

  .hero-photo-wrap,
  .root-svg-wrap {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    border-radius: 12px;
  }

  .hero-photo,
  .root-svg-wrap > .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
    display: block;
  }

  .site-photo-fit {
    object-fit: cover;
    object-position: center 20%;
  }

  .about-botanical {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quote-block {
    padding: 16px 24px 32px;
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--forest);
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .quote-attr {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* â”€â”€ VIDEO HUB â”€â”€ */
  #videos {
    background: var(--forest);
    padding: 100px 80px;
  }

  #videos .section-eyebrow { color: var(--gold); }
  #videos .section-title { color: var(--cream); }
  #videos .section-body { color: rgba(245,240,232,0.7); }

  .video-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 40px 0;
  }

  .filter-btn {
    padding: 8px 20px;
    border: 1px solid rgba(245,240,232,0.25);
    border-radius: 20px;
    background: transparent;
    color: rgba(245,240,232,0.6);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s;
  }

  .filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest);
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }

  .video-card {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
  }
  .video-card:hover { transform: translateY(-4px); border-color: var(--gold); }

  .video-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .thumb-bg-nutrition { background: linear-gradient(135deg, #2D4A35 0%, #1a2e20 100%); }
  .thumb-bg-development { background: linear-gradient(135deg, #3D3020 0%, #5a4830 100%); }
  .thumb-bg-dental { background: linear-gradient(135deg, #1a2e3a 0%, #2d4a5a 100%); }
  .thumb-bg-picky { background: linear-gradient(135deg, #3a2020 0%, #5a3030 100%); }
  .thumb-bg-parenting { background: linear-gradient(135deg, #302040 0%, #4a3060 100%); }
  .thumb-bg-plant { background: linear-gradient(135deg, #1a3020 0%, #2d5040 100%); }

  .play-btn {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
  }
  .video-card:hover .play-btn {
    background: var(--gold);
    border-color: var(--gold);
  }

  .video-thumb-icon {
    position: absolute;
    opacity: 0.15;
    font-size: 5rem;
  }

  .video-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--forest);
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
  }

  .video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
  }

  .video-info {
    padding: 20px;
  }

  .video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .video-desc {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.5);
    line-height: 1.5;
  }

  /* â”€â”€ RAÃZ SUPPLEMENTS â”€â”€ */
  #raiz {
    padding: 100px 80px;
    background: var(--cream);
  }

  .raiz-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }

  .raiz-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 16px;
  }

  .raiz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .supplement-card {
    background: var(--parchment);
    border: 1px solid rgba(45,74,53,0.1);
    border-radius: 4px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .supplement-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .supplement-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,74,53,0.12); }
  .supplement-card:hover::before { transform: scaleX(1); }

  .supplement-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .supplement-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 6px;
  }

  .supplement-sub {
    font-size: 0.75rem;
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .supplement-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 20px;
  }

  .supplement-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--forest);
    font-weight: 300;
  }

  .supplement-price span {
    font-size: 0.7rem;
    font-family: 'DM Sans', sans-serif;
    opacity: 0.5;
    vertical-align: super;
  }

  .btn-add {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: var(--forest);
    color: var(--cream);
    border: none;
    border-radius: 2px;
    font-size: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-add:hover { background: var(--forest-light); }

  /* â”€â”€ AGE FINDER â”€â”€ */
  .age-finder {
    background: var(--forest);
    border-radius: 4px;
    padding: 40px 48px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
  }

  .age-finder-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 8px;
  }

  .age-finder-sub {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.5;
  }

  .age-selector {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .age-select {
    padding: 12px 20px;
    background: rgba(245,240,232,0.08);
    border: 1px solid rgba(245,240,232,0.2);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    border-radius: 2px;
    cursor: pointer;
    appearance: none;
    min-width: 160px;
  }

  /* ── DOCTORS (homepage profiles) ── */
  #doctors {
    padding: 100px 80px;
    background: var(--cream);
  }

  .doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
  }

  .home-doctor-card {
    background: #fff;
    border: 1px solid rgba(45,74,53,0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .home-doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45,74,53,0.1);
  }

  .home-doctor-cover {
    height: 120px;
    background-size: cover;
    background-position: center;
  }
  .home-doctor-cover--default {
    background: linear-gradient(135deg, var(--forest) 0%, #3d6248 50%, rgba(201,168,76,0.5) 100%);
  }

  .home-doctor-body { padding: 0 24px 24px; }

  .home-doctor-avatar-link {
    display: block;
    width: fit-content;
    margin-top: -44px;
    margin-bottom: 12px;
    text-decoration: none;
  }

  .home-doctor-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(45,74,53,0.15);
    object-fit: cover;
  }
  .home-doctor-avatar.x-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest);
    color: var(--cream);
    font-size: 1.8rem;
    font-weight: 600;
  }

  .home-doctor-name-link { text-decoration: none; color: inherit; }
  .home-doctor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: var(--forest);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.2;
  }
  .home-doctor-name .x-verified { width: 16px; height: 16px; }

  .home-doctor-handle {
    font-size: 0.82rem;
    opacity: 0.55;
    margin-top: 2px;
    font-family: 'DM Mono', monospace;
  }

  .home-doctor-headline {
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 8px;
    color: var(--charcoal);
  }

  .home-doctor-bio {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-top: 8px;
    opacity: 0.78;
  }

  .home-doctor-meta {
    font-size: 0.82rem;
    margin-top: 8px;
    opacity: 0.7;
  }

  .home-doctor-stats {
    font-size: 0.82rem;
    margin-top: 10px;
    opacity: 0.65;
  }
  .home-doctor-stats strong { color: var(--forest); }

  .home-doctor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .home-doctor-btn {
    font-size: 0.72rem;
    padding: 10px 16px;
    text-decoration: none;
    text-align: center;
  }

  .home-doctor-follow {
    border: 1px solid var(--forest);
    background: var(--forest);
    color: var(--cream);
    border-radius: 2px;
    padding: 10px 16px;
    font-size: 0.72rem;
    font-family: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }
  .home-doctor-follow.is-following,
  .home-doctor-follow:hover {
    background: transparent;
    color: var(--forest);
  }

  .home-doctors-note {
    margin-top: 28px;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }

  /* ── TOOLS ── */
  #tools {
    padding: 100px 80px;
    background: var(--parchment);
  }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .tool-card {
    background: var(--cream);
    border: 1px solid rgba(45,74,53,0.12);
    padding: 36px 28px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    text-decoration: none;
    display: block;
  }
  .tool-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(45,74,53,0.1); border-color: var(--gold); }

  .tool-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(45,74,53,0.06);
  }
  .tool-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .tool-card--has-thumb { padding-top: 28px; }

  .tool-icon {
    width: 44px;
    height: 44px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
  }

  .tool-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--forest);
    margin-bottom: 8px;
  }

  .tool-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.65;
  }

  .tool-arrow {
    display: inline-block;
    margin-top: 16px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* â”€â”€ BOOKING â”€â”€ */
  #booking {
    padding: 100px 80px;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-field label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    opacity: 0.6;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 12px 16px;
    background: var(--parchment);
    border: 1px solid rgba(45,74,53,0.15);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--forest);
  }

  .form-field textarea { resize: vertical; min-height: 100px; }

  .booking-form-status {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .booking-form-status.ok {
    background: rgba(143,175,138,0.2);
    border: 1px solid rgba(45,74,53,0.2);
    color: var(--forest);
  }

  .booking-form-status.err {
    background: rgba(180,40,40,0.08);
    border: 1px solid rgba(180,40,40,0.25);
    color: #8b2020;
  }

  .booking-submit:disabled {
    opacity: 0.65;
    cursor: wait;
  }

  .booking-doctoralia-link {
    border: 1px solid rgba(45,74,53,0.2);
    color: var(--forest);
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
  }

  .booking-doctoralia-link:hover {
    background: rgba(45,74,53,0.06);
  }

  .booking-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }

  .info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .info-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .info-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--forest);
    margin-bottom: 4px;
  }

  .info-item-desc {
    font-size: 0.8rem;
    color: var(--charcoal);
    opacity: 0.65;
    line-height: 1.5;
  }

  /* â”€â”€ FOOTER â”€â”€ */
  footer {
    background: var(--forest);
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 12px;
  }

  .footer-desc {
    font-size: 0.8rem;
    color: rgba(245,240,232,0.5);
    line-height: 1.6;
    max-width: 280px;
  }

  .footer-col-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cream); }

  .footer-cofepris {
    background: #1a2e20;
    padding: 10px 80px;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.2);
  }

  .footer-cofepris p {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(201,168,76,0.7);
    margin: 0;
  }

  .booking-map {
    margin-top: 16px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(45,74,53,0.15);
  }

  .btn-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
  }

  .btn-whatsapp:hover {
    background: #1fb855 !important;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 150;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  }

  body.has-page-editor .whatsapp-float {
    bottom: 88px;
  }

  .footer-bottom {
    background: var(--forest);
    padding: 20px 80px;
    border-top: 1px solid rgba(245,240,232,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.35);
    font-family: 'DM Mono', monospace;
  }

  /* â”€â”€ VIDEO MODAL â”€â”€ */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    align-items: center;
    justify-content: center;
  }
  .modal-overlay.open { display: flex; }

  .modal-box {
    background: var(--forest);
    border-radius: 4px;
    max-width: 700px;
    width: 92%;
    overflow: hidden;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(245,240,232,0.1);
    border: none;
    color: var(--cream);
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
  }
  .modal-close:hover { background: rgba(245,240,232,0.2); }

  .modal-video {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .modal-animation {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
  }

  .pulse-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
    opacity: 0;
  }

  .pulse-ring:nth-child(2) { animation-delay: 0.7s; }
  .pulse-ring:nth-child(3) { animation-delay: 1.4s; }

  @keyframes pulseRing {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
  }

  .modal-content {
    padding: 28px 32px 32px;
  }

  .modal-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 12px;
  }

  .modal-body {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(245,240,232,0.7);
    margin-bottom: 24px;
  }

  .modal-coming {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* â”€â”€ SCROLL ANIMATIONS â”€â”€ */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* â”€â”€ RESPONSIVE â”€â”€ */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 300px; }
    #about { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .raiz-grid { grid-template-columns: 1fr 1fr; }
    .tools-grid { grid-template-columns: 1fr 1fr; }
    #booking { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr; }
    section, #about, #doctors, #videos, #raiz, #tools, #booking { padding: 60px 32px; }
    .lang-bar { padding: 14px 24px; }
    .nav-links { display: none; }
    .footer-bottom { padding: 16px 32px; flex-direction: column; gap: 8px; }
    .age-finder { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .video-grid { grid-template-columns: 1fr; }
    .raiz-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .raiz-header { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

