:root {
    --teal: #5BBCBE;
    --teal-dark: #3a9a9c;
    --teal-deep: #2a7a7c;
    --teal-light: #a8dfe0;
    --teal-pale: #e8f6f7;
    --sand: #f5f0e8;
    --white: #ffffff;
    --text-dark: #2c3e35;
    --text-mid: #4a6060;
    --text-light: #7a9898;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

  .wood-bg {
    background-color: var(--sand);
    background-image:
      repeating-linear-gradient(88deg, transparent, transparent 2px, rgba(180,150,100,0.04) 2px, rgba(180,150,100,0.04) 4px),
      repeating-linear-gradient(92deg, transparent, transparent 30px, rgba(160,130,80,0.03) 30px, rgba(160,130,80,0.03) 31px);
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #1e3535;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0 40px; height: 82px;
    display: flex; align-items: center; justify-content: space-between;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
  .nav-logo { cursor: pointer; display: flex; align-items: center; text-decoration: none; }
  .nav-logo img { height: 62px; width: auto; display: block; }
  .nav-links { display: flex; gap: 4px; list-style: none; }
  .nav-links li { position: relative; }
  .nav-links > li > a, .nav-links > li > span {
    font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.85); text-decoration: none; padding: 12px 14px; cursor: pointer;
    transition: color 0.2s; min-height: 44px; display: flex; align-items: center;
  }
  .nav-links > li > a:hover, .nav-links > li > span:hover { color: var(--teal-light); }
  .dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: white; border: 1px solid var(--teal-light); border-radius: 8px;
    min-width: 210px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); z-index: 100; overflow: hidden;
  }
  /* Hover-open only on true pointer devices; touch devices use JS toggleDropdown() */
  @media (hover: hover) and (pointer: fine) {
    .nav-links li:hover .dropdown { display: block; }
  }
  .nav-links .dropdown.dd-open { display: block; }
  .dropdown a {
    padding: 14px 20px; font-size: 12px; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-mid); text-decoration: none;
    transition: background 0.2s, color 0.2s; cursor: pointer; min-height: 44px;
    display: flex; align-items: center;
  }
  .dropdown a:hover { background: var(--teal-pale); color: var(--teal-deep); }
  .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; margin: -8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: white; }

  /* PAGES — SEO: all content remains in the DOM and is crawlable.
     Inactive pages are visually hidden but NOT removed from the render tree,
     so search engines can index every section. */
  .page {
    display: block;
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
  }
  .page.active {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    overflow: visible;
    visibility: visible;
    pointer-events: auto;
  }

  /* PAGE HEADER */
  .page-header { padding: 120px 40px 50px; background: var(--teal-pale); text-align: center; }
  .page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 56px); font-weight: 300; color: var(--text-dark); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--teal-pale) 0%, var(--sand) 60%, rgba(91,188,190,0.08) 100%);
    display: flex; align-items: center; padding: 100px 40px 60px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(91,188,190,0.12) 0%, transparent 70%);
  }
  .hero-content { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; font-weight: 500; }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5vw, 58px); font-weight: 300; line-height: 1.15; color: var(--text-dark); margin-bottom: 24px; }
  .hero-title em { font-style: italic; color: var(--teal-deep); }
  .hero-body { font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 16px; }
  .hero-note { display: inline-block; background: var(--teal); color: white; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 4px; margin: 16px 0; font-weight: 500; }
  .hero-location { font-size: 14px; color: var(--text-light); margin-top: 8px; }
  .hero-image-wrap img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

  /* SECTION */
  section { padding: 70px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  /* BTN */
  .btn { display: inline-block; padding: 13px 30px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border-radius: 4px; cursor: pointer; transition: all 0.3s; text-decoration: none; border: none; font-family: 'Jost', sans-serif; }
  .btn-primary { background: var(--teal); color: white; }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,188,190,0.3); }

  /* CONTENT BLOCK */
  .content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .content-block img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
  .block-text p { font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 14px; }
  .block-text em { font-style: italic; }
  .block-text strong { font-weight: 600; color: var(--text-dark); }

  /* CARD */
  .card { background: white; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); padding: 40px; }

  /* PRICE TABLE */
  .price-table { width: 100%; border-collapse: collapse; margin-bottom: 10px; }
  .price-table th { background: var(--teal-deep); color: white; padding: 14px 20px; text-align: left; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
  .price-table td { padding: 14px 20px; font-size: 14px; color: var(--text-mid); border-bottom: 1px solid var(--teal-pale); vertical-align: top; line-height: 1.6; }
  .price-table tr:hover td { background: var(--teal-pale); }
  .price-table td:last-child { font-weight: 600; color: var(--teal-deep); text-align: right; white-space: nowrap; }
  .price-note { font-size: 13px; color: var(--text-light); margin-bottom: 20px; font-style: italic; }

  /* POLICY BOX */
  .policy-box { background: var(--sand); border-radius: 10px; padding: 28px; margin-bottom: 24px; border-left: 3px solid var(--teal); }
  .policy-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 14px; color: var(--text-dark); }
  .policy-box p, .policy-box li { font-size: 14px; line-height: 1.85; color: var(--text-mid); margin-bottom: 8px; }
  .policy-box ul { padding-left: 20px; }
  .policy-box em { font-style: italic; }

  /* INFO GRID */
  .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
  .info-card { background: white; border-radius: 10px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-top: 3px solid var(--teal); }
  .info-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--text-dark); margin-bottom: 14px; }
  .info-card p, .info-card li { font-size: 14px; line-height: 1.7; color: var(--text-mid); }
  .info-card ul { list-style: none; padding: 0; }
  .info-card li { padding: 5px 0; border-bottom: 1px solid var(--teal-pale); }
  .info-card li:last-child { border-bottom: none; }
  .info-card em { font-style: italic; color: var(--text-light); }

  /* SHELLEY */
  .shelley-grid { display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: start; }
  .shelley-img-wrap img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
  .shelley-bio ul { list-style: none; padding: 0; margin-bottom: 28px; }
  .shelley-bio > ul > li { padding: 10px 0 10px 22px; border-bottom: 1px solid var(--teal-pale); font-size: 15px; color: var(--text-mid); line-height: 1.7; position: relative; }
  .shelley-bio > ul > li::before { content: '✦'; color: var(--teal); position: absolute; left: 0; font-size: 10px; top: 13px; }
  .shelley-bio p { font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 16px; }

  /* ACCORDION */
  .accordion-item { border: 1px solid rgba(91,188,190,0.2); border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
  .accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; cursor: pointer; background: var(--teal-pale); transition: background 0.2s; }
  .accordion-header:hover { background: rgba(91,188,190,0.18); }
  .accordion-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--text-dark); }
  .accordion-icon { font-size: 22px; color: var(--teal); transition: transform 0.3s; flex-shrink: 0; }
  .accordion-item.open .accordion-icon { transform: rotate(45deg); }
  .accordion-body { display: none; padding: 30px 28px; background: white; border-top: 1px solid rgba(91,188,190,0.15); }
  .accordion-item.open .accordion-body { display: block; }
  .accordion-body p { font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 14px; }
  .accordion-body ul { padding-left: 20px; margin-bottom: 14px; }
  .accordion-body li { font-size: 14px; line-height: 1.85; color: var(--text-mid); margin-bottom: 6px; }
  .accordion-body em { font-style: italic; }
  .accordion-body strong { font-weight: 600; color: var(--text-dark); }

  /* CONDITIONS TABLE */
  .cond-table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; }
  .cond-table td { padding: 10px 16px; font-size: 14px; color: var(--text-mid); border-bottom: 1px solid var(--teal-pale); vertical-align: top; line-height: 1.7; }
  .cond-table tr:hover td { background: var(--teal-pale); }
  .cond-table td:first-child { font-weight: 600; color: var(--text-dark); width: 200px; }

  /* CONTRA */
  .contra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; }
  .contra-box { background: var(--sand); border-radius: 10px; padding: 24px; }
  .contra-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--text-dark); margin-bottom: 12px; border-bottom: 2px solid var(--teal-light); padding-bottom: 8px; }
  .contra-box ul { list-style: none; padding: 0; margin-top: 10px; }
  .contra-box li { font-size: 13px; color: var(--text-mid); padding: 5px 0 5px 18px; border-bottom: 1px solid rgba(91,188,190,0.15); position: relative; line-height: 1.6; }
  .contra-box li:last-child { border-bottom: none; }
  .contra-box li::before { content: '–'; position: absolute; left: 0; color: var(--teal); }
  .contra-box em { font-style: italic; font-size: 12px; display: block; margin-bottom: 10px; color: var(--text-light); }

  /* TESTIMONIALS */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .t-card { background: white; border-radius: 12px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-top: 3px solid var(--teal-light); display: flex; flex-direction: column; }
  .t-quote { font-family: 'Cormorant Garamond', serif; font-size: 52px; color: var(--teal-light); line-height: 0.5; margin-bottom: 16px; }
  .t-card p { font-size: 14px; line-height: 1.8; color: var(--text-mid); font-style: italic; flex: 1; }
  .t-author { margin-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-deep); font-style: normal; }

  /* CONTACT */
  .contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: start; max-width: 620px; margin: 0 auto; }
  .contact-info p { font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }
  .contact-detail { display: flex; gap: 16px; margin-bottom: 18px; align-items: flex-start; }
  .contact-icon { width: 40px; height: 40px; background: var(--teal-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .contact-detail-text p { font-size: 13px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
  .contact-detail-text a { font-size: 15px; color: var(--text-dark); text-decoration: none; }
  .contact-detail-text a:hover { color: var(--teal); }

  /* FOOTER */
  footer { background: #1e3535; color: rgba(255,255,255,0.8); padding: 50px 40px 30px; }
  .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; opacity: 0.7; }
  .footer-col h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 8px; cursor: pointer; }
  .footer-col a:hover { color: white; }
  .footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12px; opacity: 0.5; }

  /* WHATSAPP */
  .whatsapp-btn { position: fixed; bottom: 24px; right: 24px; z-index: 999; background: #25D366; color: white; border-radius: 50px; padding: 12px 20px; display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 13px; font-weight: 500; font-family: 'Jost', sans-serif; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; letter-spacing: 0.5px; }
  .whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

  /* FADE IN */
  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  .btn:disabled { opacity:0.6; cursor:not-allowed; transform:none !important; }

  /* TABLET */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: absolute; top: 82px; left: 0; right: 0;
      background: #1e3535; padding: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1); gap: 0; z-index: 999;
    }
    .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-links.open > li > a,
    .nav-links.open > li > span { font-size: 14px; padding: 14px 8px; }
    .nav-links.open .dropdown {
      display: none; position: static; background: rgba(0,0,0,0.2);
      border: none; border-radius: 0; box-shadow: none; min-width: unset;
    }
    .nav-links.open .dropdown.dd-open { display: block; }
    .nav-links.open .dropdown a { padding: 10px 24px; font-size: 13px; color: rgba(255,255,255,0.65); }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
    .info-grid { grid-template-columns: 1fr; }
    .content-block { grid-template-columns: 1fr; }
    .content-block img { height: auto; }
    .shelley-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; }
    .contra-grid { grid-template-columns: 1fr; }
    section { padding: 50px 20px; }
    .page-header { padding: 100px 20px 40px; }
    .hero { padding: 90px 20px 50px; }
  }

  /* MOBILE */
  @media (max-width: 600px) {
    /* Nav */
    nav { height: 68px; padding: 0 16px; }
    .nav-logo img { height: 48px; }
    .nav-links.open { top: 68px; padding: 8px 0 16px; }
    .nav-links.open > li > a,
    .nav-links.open > li > span { font-size: 13px; padding: 13px 16px; }
    .nav-links.open .dropdown a { padding: 10px 32px; }

    /* Hero */
    .hero { padding: 84px 16px 44px; min-height: auto; }
    .hero-title { font-size: clamp(30px, 8vw, 42px); margin-bottom: 18px; }
    .hero-body { font-size: 14px; line-height: 1.75; }
    .hero-note { font-size: 10px; padding: 7px 12px; }
    .hero-location { font-size: 13px; }

    /* Page header */
    .page-header { padding: 86px 16px 32px; }
    .page-header h1 { font-size: clamp(28px, 8vw, 40px); }

    /* Section */
    section { padding: 36px 16px; }
    .section-inner { width: 100%; }

    /* Typography scale-down */
    .block-text p { font-size: 14px; }
    .accordion-header h3 { font-size: 17px; }
    .accordion-header { padding: 16px 18px; }
    .accordion-body { padding: 20px 18px; }
    .accordion-body p, .accordion-body li { font-size: 14px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

    /* Cards */
    .card { padding: 24px 16px; }
    .info-card { padding: 20px; }
    .t-card { padding: 20px; }

    /* Price table – allow wrapping on small screens */
    .price-table { font-size: 13px; }
    .price-table th, .price-table td { padding: 10px 12px; }
    .price-table td:last-child { white-space: normal; }

    /* Testimonials single column */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Shelley photo full width */
    .shelley-grid { grid-template-columns: 1fr; gap: 28px; }
    .shelley-img-wrap img { max-height: 380px; object-fit: cover; object-position: top; }

    /* Policy boxes */
    .policy-box { padding: 20px 16px; }
    .policy-box h3 { font-size: 18px; }

    /* Cond table wrap */
    .cond-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .cond-table td:first-child { width: 140px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 0; }
    .footer-brand { grid-column: auto; }
    footer { padding: 36px 16px 24px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .footer-brand img { height: 52px; }

    /* WhatsApp button – compact on small screens */
    .whatsapp-btn { bottom: 16px; right: 16px; padding: 10px 14px; font-size: 12px; gap: 7px; }

    /* Buttons full-width */
    .btn { padding: 14px 20px; font-size: 11px; }

    /* Contra boxes */
    .contra-box { padding: 18px 14px; }
    .contra-box li { font-size: 13px; }
  }

  /* Very small screens */
  @media (max-width: 380px) {
    .hero-title { font-size: 26px; }
    .hero-eyebrow { font-size: 10px; }
    .page-header h1 { font-size: 26px; }
    .price-table th, .price-table td { padding: 8px 10px; font-size: 12px; }
  }
