    /* ── TOKENS ── */
    :root {
      --cream:       #FAF7F2;
      --cream-mid:   #F0EAE0;
      --beige:       #E2D9CD;
      --brown:       #3D3530;
      --brown-light: #7A6E66;
      --sage:        #7A9E7E;
      --sage-light:  #B8CEB9;
      --sage-pale:   #E8F0E9;
      --terra:       #C4897B;
      --terra-dark:  #A86E61;
      --terra-pale:  #F5E8E5;
      --white:       #FFFFFF;
      --shadow:      rgba(61,53,48,.08);
      --shadow-md:   rgba(61,53,48,.13);
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--brown);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── TYPOGRAPHY ── */
    .serif { font-family: 'Cormorant Garamond', Georgia, serif; }

    /* ── UTILITIES ── */
    .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
    .tag {
      display: inline-block;
      background: var(--sage-pale);
      color: var(--sage);
      border: 1px solid var(--sage-light);
      border-radius: 99px;
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .04em;
      padding: 4px 14px;
    }
    .tag--terra {
      background: var(--terra-pale);
      color: var(--terra-dark);
      border-color: #DDBCB7;
    }

    /* ── CTA BUTTON ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--terra);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .03em;
      padding: 15px 32px;
      border-radius: 99px;
      border: none;
      cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .25s;
      box-shadow: 0 4px 20px rgba(196,137,123,.35);
    }
    .btn:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,137,123,.45); }
    .btn:active { transform: translateY(0); }
    .btn--outline {
      background: transparent;
      color: var(--terra);
      border: 2px solid var(--terra);
      box-shadow: none;
    }
    .btn--outline:hover { background: var(--terra); color: var(--white); }

    /* ── DECORATIVE LINES ── */
    .deco-line {
      width: 48px; height: 2px;
      background: var(--terra);
      border-radius: 2px;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 18px 0;
      transition: background .3s, box-shadow .3s;
    }
    nav.scrolled {
      background: rgba(250,247,242,.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px var(--shadow);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--brown);
      letter-spacing: .02em;
    }
    .nav-logo span { color: var(--terra); font-style: italic; }
    .nav-links {
      display: flex; align-items: center; gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: .83rem;
      font-weight: 400;
      color: var(--brown-light);
      letter-spacing: .04em;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--brown); }
    .nav-cta { padding: 10px 24px; font-size: .83rem; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 80% at 90% 30%, rgba(122,158,126,.13) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(196,137,123,.10) 0%, transparent 60%),
        var(--cream);
    }
    /* Botanical SVG accents */
    .hero-bg::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 500px; height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(122,158,126,.2);
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: -100px; left: 30%;
      width: 300px; height: 300px;
      border-radius: 50%;
      border: 1px solid rgba(196,137,123,.15);
    }
    .hero-content {
      position: relative; z-index: 1;
      padding: 80px 0 80px 0;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 28px;
    }
    .hero-eyebrow span {
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--terra);
    }
    .hero-eyebrow::before {
      content: '';
      width: 32px; height: 1px;
      background: var(--terra);
    }
    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 500;
      line-height: 1.08;
      color: var(--brown);
      margin-bottom: 20px;
    }
    h1 em {
      font-style: italic;
      color: var(--terra);
    }
    .hero-sub {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--brown-light);
      max-width: 420px;
      margin-bottom: 40px;
      font-weight: 300;
    }
    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
      margin-bottom: 52px;
    }
    .hero-stats {
      display: flex; gap: 32px;
      padding-top: 32px;
      border-top: 1px solid var(--beige);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--brown);
      line-height: 1;
    }
    .stat-label {
      font-size: .9rem;
      color: var(--brown-light);
      margin-top: 4px;
      letter-spacing: .03em;
    }

    /* Hero image panel */
    .hero-visual {
      position: relative; z-index: 1;
      display: flex; justify-content: center; align-items: center;
    }
    .hero-frame {
      position: relative;
      width: 380px;
      max-width: 100%;
    }
    .hero-photo-wrap {
      position: relative;
      border-radius: 200px 200px 160px 160px;
      overflow: hidden;
      background: var(--sage-pale);
      aspect-ratio: 4/5;
      box-shadow: 0 24px 60px var(--shadow-md);
    }
    .hero-photo-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .hero-photo-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: flex-end;
      background: linear-gradient(160deg, var(--sage-pale) 0%, var(--beige) 100%);
      padding-bottom: 40px;
    }
    .hero-photo-placeholder svg { opacity: .35; }

    /* Floating badge */
    .badge {
      position: absolute;
      background: var(--white);
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 8px 32px var(--shadow-md);
      display: flex; align-items: center; gap: 12px;
    }
    .badge--rating {
      bottom: 32px; left: -28px;
    }
    .badge--exp {
      top: 40px; right: -24px;
    }
    .badge-icon {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .badge-icon--gold { background: #FEF3C7; }
    .badge-icon--sage { background: var(--sage-pale); }
    .badge-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 600;
      line-height: 1; color: var(--brown);
    }
    .badge-sub { font-size: .7rem; color: var(--brown-light); }

    /* ── SECTION WRAPPER ── */
    section { padding: 96px 0; }

    .section-label {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 16px;
    }
    .section-label span {
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--terra);
    }
    .section-label::before {
      content: ''; width: 28px; height: 1px; background: var(--terra);
    }
    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 500;
      line-height: 1.15;
      color: var(--brown);
      margin-bottom: 20px;
    }
    h2 em { font-style: italic; color: var(--terra); }

    /* ── ABOUT ── */
    #about { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-text p {
      font-size: .97rem;
      line-height: 1.82;
      color: var(--brown-light);
      font-weight: 300;
      margin-bottom: 18px;
    }
    .about-text p:last-of-type { margin-bottom: 32px; }
    .about-text strong { color: var(--brown); font-weight: 500; }
    .about-visual { position: relative; }
    .about-card {
      background: var(--cream);
      border-radius: 24px;
      padding: 40px;
      border: 1px solid var(--beige);
    }
    .about-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--brown);
      margin-bottom: 24px;
    }
    .credential {
      display: flex; gap: 16px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--beige);
    }
    .credential:last-child { border: none; padding-bottom: 0; }
    .credential-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--sage-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: .95rem; flex-shrink: 0; margin-top: 2px;
    }
    .credential-name {
      font-size: .87rem; font-weight: 500;
      color: var(--brown); margin-bottom: 2px;
    }
    .credential-place {
      font-size: .78rem; color: var(--brown-light);
    }
    .cedula-chip {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--sage-pale);
      border: 1px solid var(--sage-light);
      border-radius: 8px;
      padding: 10px 16px;
      font-size: .8rem;
      color: var(--sage);
      font-weight: 500;
      margin-top: 24px;
    }

    /* ── AREAS ── */
    #areas { background: var(--cream); }
    .areas-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
    .areas-header .section-label { justify-content: center; }
    .areas-header .section-label::before { display: none; }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }
    .area-card {
      background: var(--white);
      border: 1px solid var(--beige);
      border-radius: 20px;
      padding: 28px 24px;
      transition: transform .25s, box-shadow .25s, border-color .25s;
      cursor: default;
    }
    .area-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px var(--shadow);
      border-color: var(--sage-light);
    }
    .area-icon {
      font-size: 1.6rem; margin-bottom: 14px;
    }
    .area-name {
      font-size: .9rem; font-weight: 500; color: var(--brown);
    }

    /* ── EXPERIENCE ── */
    #experience { background: var(--white); }
    .exp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 56px;
    }
    .exp-col h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 500;
      color: var(--brown);
      margin-bottom: 28px;
      display: flex; align-items: center; gap: 10px;
    }
    .timeline {
      display: flex; flex-direction: column; gap: 0;
    }
    .timeline-item {
      display: flex; gap: 20px;
      padding-bottom: 28px;
      position: relative;
    }
    .timeline-item:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 11px; top: 24px; bottom: 0;
      width: 1px; background: var(--beige);
    }
    .timeline-dot {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--cream);
      border: 2px solid var(--sage-light);
      flex-shrink: 0; z-index: 1;
      display: flex; align-items: center; justify-content: center;
    }
    .timeline-dot::after {
      content: '';
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--sage);
    }
    .timeline-body {}
    .timeline-title {
      font-size: .9rem; font-weight: 500;
      color: var(--brown); margin-bottom: 4px;
    }
    .timeline-sub {
      font-size: .78rem; color: var(--brown-light);
    }

    /* ── PHILOSOPHY ── */
    #philosophy {
      background: linear-gradient(135deg, #3D3530 0%, #5A4A42 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    #philosophy::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(122,158,126,.2) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(196,137,123,.15) 0%, transparent 55%);
    }
    .philosophy-inner {
      position: relative; z-index: 1;
      max-width: 740px; margin: 0 auto; text-align: center;
    }
    .big-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      color: rgba(255,255,255,.9);
      margin-bottom: 28px;
    }
    .big-quote strong {
      font-weight: 600;
      font-style: normal;
      color: var(--terra);
    }
    .philosophy-caption {
      font-size: .82rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.45);
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--cream); }
    .testi-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
    .rating-big {
      display: flex; align-items: center; gap: 16px;
    }
    .rating-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 600;
      color: var(--brown); line-height: 1;
    }
    .stars { color: #F59E0B; font-size: 1.1rem; }
    .rating-label { font-size: .78rem; color: var(--brown-light); margin-top: 4px; }

    /* Testimonials Grid */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    .testi-card {
      background: var(--white);
      border-radius: 20px;
      padding: 28px;
      border: 1px solid var(--beige);
      transition: transform .25s, box-shadow .25s, opacity .3s;
      display: flex;
      flex-direction: column;
    }
    .testi-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px var(--shadow);
    }
    .testi-card.hidden {
      display: none;
    }
    .testi-card.show-more {
      animation: fadeInUp 0.4s ease forwards;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .testi-stars {
      color: #F59E0B;
      font-size: .9rem;
      margin-bottom: 14px;
    }
    .testi-text {
      font-size: .9rem;
      line-height: 1.7;
      color: var(--brown-light);
      font-weight: 300;
      margin-bottom: 20px;
      font-style: italic;
      flex-grow: 1;
    }
    .testi-author {
      font-size: .8rem;
      font-weight: 500;
      color: var(--brown);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .testi-author::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--terra);
    }
    .testi-more {
      text-align: center;
      margin-top: 16px;
    }
    .btn-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--terra);
      border: 2px solid var(--terra);
      font-family: 'DM Sans', sans-serif;
      font-size: .88rem;
      font-weight: 500;
      padding: 12px 28px;
      border-radius: 99px;
      cursor: pointer;
      transition: all .25s;
    }
    .btn-more:hover {
      background: var(--terra);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(196,137,123,.3);
    }
    .btn-more.hidden {
      display: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .testi-grid { grid-template-columns: 1fr; }
      .testi-card.hidden-mobile { display: none; }
    }

    /* ── CTA SECTION ── */
    #cta { background: var(--cream); }
    .cta-box {
      background: var(--white);
      border-radius: 32px;
      padding: 72px 60px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      border: 1px solid var(--beige);
      box-shadow: 0 16px 60px var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--sage) 0%, var(--terra) 100%);
    }
    .cta-box::after {
      content: '';
      position: absolute; bottom: -60px; right: -40px;
      width: 240px; height: 240px; border-radius: 50%;
      border: 1px solid rgba(122,158,126,.18);
    }
    .cta-content {}
    .cta-content h2 { margin-bottom: 16px; }
    .cta-content p {
      font-size: .97rem;
      line-height: 1.75;
      color: var(--brown-light);
      font-weight: 300;
      max-width: 460px;
      margin-bottom: 0;
    }
    .cta-actions {
      display: flex; flex-direction: column; gap: 14px;
      align-items: center; min-width: 220px;
    }
    .cta-price {
      text-align: center;
      font-size: .8rem; color: var(--brown-light);
      margin-top: 8px;
    }
    .cta-price strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--brown);
    }

    /* ── FAQ ── */
    #faq { background: var(--white); }
    .faq-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
    .faq-item {
      background: var(--cream);
      border: 1px solid var(--beige);
      border-radius: 16px;
      padding: 28px 32px;
      transition: box-shadow .25s, transform .25s;
    }
    .faq-item:hover { box-shadow: 0 8px 28px var(--shadow); transform: translateY(-2px); }
    .faq-question {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--brown);
      margin-bottom: 12px;
    }
    .faq-answer {
      font-size: .92rem;
      line-height: 1.75;
      color: var(--brown-light);
      font-weight: 300;
    }
    .faq-answer strong { color: var(--brown); font-weight: 500; }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(61,53,48,.55);
      backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .3s;
      padding: 24px;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: var(--white);
      border-radius: 28px;
      padding: 48px 40px;
      max-width: 460px; width: 100%;
      position: relative;
      transform: translateY(20px);
      transition: transform .3s;
      text-align: center;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal-icon { font-size: 3rem; margin-bottom: 16px; }
    .modal h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 500;
      color: var(--brown); margin-bottom: 12px;
    }
    .modal p {
      font-size: .9rem; line-height: 1.7;
      color: var(--brown-light); margin-bottom: 28px;
    }
    .modal-close {
      position: absolute; top: 16px; right: 20px;
      background: none; border: none; font-size: 1.4rem;
      color: var(--brown-light); cursor: pointer;
      line-height: 1; padding: 4px;
    }
    .modal-close:hover { color: var(--brown); }

    /* ── FOOTER ── */
    footer {
      background: var(--brown);
      color: rgba(255,255,255,.6);
      padding: 48px 0;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 500;
      color: var(--white);
      margin-bottom: 12px;
    }
    .footer-logo span { color: var(--terra); font-style: italic; }
    footer p { font-size: .8rem; line-height: 1.8; }
    .footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 20px; }
    .footer-links a { font-size: .78rem; color: rgba(255,255,255,.45); transition: color .2s; }
    .footer-links a:hover { color: rgba(255,255,255,.8); }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* Hero entrance */
    .hero-content > * { opacity: 0; transform: translateY(20px); }
    .hero-content.loaded > * { transition: opacity .7s ease, transform .7s ease; opacity: 1; transform: translateY(0); }
    .hero-content.loaded > *:nth-child(1) { transition-delay: .1s; }
    .hero-content.loaded > *:nth-child(2) { transition-delay: .2s; }
    .hero-content.loaded > *:nth-child(3) { transition-delay: .3s; }
    .hero-content.loaded > *:nth-child(4) { transition-delay: .4s; }
    .hero-content.loaded > *:nth-child(5) { transition-delay: .55s; }
    .hero-visual { opacity: 0; transform: scale(.96); transition: opacity .9s ease .3s, transform .9s ease .3s; }
    .hero-visual.loaded { opacity: 1; transform: scale(1); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      #hero { grid-template-columns: 1fr; min-height: auto; padding: 35px 0 60px; }
      .hero-content { padding-bottom: 25px; }
      .hero-visual { display: none !important; }
      .hero-visual-mobile { display: block !important; }
      .hero-frame { width: 100%; }
      .badge { display: none; }
      .about-grid, .exp-grid { grid-template-columns: 1fr; gap: 40px; }
      .cta-box { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
      .cta-actions { flex-direction: row; flex-wrap: wrap; min-width: auto; }
      .testi-header { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 640px) {
      section { padding: 64px 0; }
      .nav-links { display: none; }
      h1 { font-size: 2.4rem; }
      .hero-stats { gap: 20px; flex-wrap: wrap; }
    }

    /* ── FLOATING WHATSAPP BUTTON (Mobile only) ── */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
      z-index: 999;
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
    }
    .whatsapp-float svg {
      width: 32px;
      height: 32px;
      fill: white;
    }
    @media (max-width: 900px) {
      .whatsapp-float {
        display: flex;
      }
    }

/* === CR-006: multi-page additions === */
.nav-link-active { color: var(--brown); font-weight: 500; }
.nav-link-active::after { content: ""; display: block; width: 100%; height: 2px; background: var(--terra); margin-top: 4px; }

/* Mobile hamburger (CSS-only via hidden checkbox) */
.nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; }
@media (max-width: 640px) {
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 102;
    margin-left: auto;
    margin-right: 14px;
  }
  .nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center;
  }
  nav#navbar .nav-links {
    display: none;
    position: fixed;
    top: 58px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(250,247,242,.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px var(--shadow);
    border-top: 1px solid var(--beige);
  }
  nav#navbar .nav-links li { padding: 14px 0; border-bottom: 1px solid var(--beige); }
  nav#navbar .nav-links li:last-child { border-bottom: none; }
  nav#navbar .nav-links a { font-size: 1rem; color: var(--brown); letter-spacing: .02em; }
  nav#navbar .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
  nav#navbar .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav#navbar .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  nav#navbar .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav#navbar .nav-cta { padding: 8px 16px; font-size: .78rem; }
}
.page-hero { padding: 32px 0 80px; background: var(--cream); }
.page-hero .page-sub { margin-top: 0; margin-bottom: 40px; font-size: 1rem; line-height: 1.75; color: var(--brown-light); max-width: 680px; font-weight: 300; }
.page-hero .page-sub strong { color: var(--brown); font-weight: 500; }
.page-section { padding: 96px 0; }
.page-section p { font-size: .97rem; line-height: 1.82; color: var(--brown-light); font-weight: 300; margin-top: 14px; max-width: 780px; }
.page-section p strong { color: var(--brown); font-weight: 500; }
.page-section ul.lead-list { list-style: none; padding: 0; margin-top: 20px; display: grid; gap: 12px; }
.page-section ul.lead-list li { padding: 12px 0 12px 28px; position: relative; line-height: 1.65; color: var(--brown-light); }
.page-section ul.lead-list li::before { content: "→"; position: absolute; left: 0; top: 12px; color: var(--terra); font-weight: 600; }
.breadcrumb-nav { position: static; padding: 112px 0 0; font-size: .85rem; color: var(--brown-light); }
.breadcrumb-nav ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb-nav li::after { content: "/"; margin-left: 8px; opacity: .4; }
.breadcrumb-nav li:last-child::after { content: ""; }
.breadcrumb-nav a { color: var(--brown-light); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--terra); text-decoration: underline; }
.related-pages { padding: 80px 0; background: var(--cream); }
.related-pages h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--brown); margin-bottom: 28px; }
.related-pages ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.related-pages li a { display: block; padding: 24px 26px; background: var(--white); border: 1px solid var(--beige); border-radius: 20px; color: var(--brown); text-decoration: none; transition: transform .25s, box-shadow .25s, border-color .25s; }
.related-pages li a:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--shadow); border-color: var(--sage-light); }
.related-pages li strong { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; color: var(--brown); display: block; margin-bottom: 8px; }
.related-pages li span { font-size: .88rem; line-height: 1.65; color: var(--brown-light); font-weight: 300; }

/* === CR-006 polish: section ornaments, FAQ contrast, CTA-box, page-hero ornaments === */

/* Decorative terra line above each H2 in new-page sections (mirrors home's .section-label) */
.page-section > .container > h2::before,
.page-section > .container > div > h2:first-child::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
  margin-bottom: 24px;
}
.page-section[style*="text-align:center"] > .container > h2::before,
.page-section.cta-final h2::before { margin-left: auto; margin-right: auto; }

/* FAQ section always needs white bg so cream cards show */
.page-section:has(.faq-list) { background: var(--white) !important; }
.page-section:has(.faq-list) > .container > h2::before { margin-left: auto; margin-right: auto; }
.page-section:has(.faq-list) > .container > h2 { text-align: center; margin-bottom: 48px; }

/* Alternating backgrounds for a section rhythm similar to home */
.page-section.alt { background: var(--cream); }

/* Page-hero ornaments — subtle decorative circles like home hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 90% 20%, rgba(122,158,126,.13) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 10% 90%, rgba(196,137,123,.10) 0%, transparent 60%),
    var(--cream);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(122,158,126,.18);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 30%;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(196,137,123,.15);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 22px; }

/* CTA final section — wraps content in a .cta-box card like home's #cta */
.page-section.cta-final { background: var(--cream); padding: 96px 0; }
.page-section.cta-final .cta-box h2 { margin-bottom: 16px; text-align: left; }
.page-section.cta-final .cta-box p {
  font-size: .97rem;
  line-height: 1.75;
  color: var(--brown-light);
  font-weight: 300;
  max-width: 460px;
  margin: 0;
}
.page-section.cta-final .cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; min-width: 220px; }
.page-section.cta-final .cta-price { text-align: center; font-size: .8rem; color: var(--brown-light); margin-top: 8px; }
.page-section.cta-final .cta-price strong { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--brown); }
@media (max-width: 900px) {
  .page-section.cta-final .cta-box { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
  .page-section.cta-final .cta-actions { flex-direction: row; flex-wrap: wrap; min-width: auto; }
}

/* Make related-pages feel like area-grid — add icon-like decoration */
.related-pages li a { position: relative; overflow: hidden; }
.related-pages li a::after {
  content: "→";
  position: absolute;
  top: 20px; right: 22px;
  color: var(--terra);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
}
.related-pages li a:hover::after { opacity: 1; transform: translateX(0); }
