
  :root {
    --cream: #FAF6EF;
    --cream-2: #F2EBDD;
    --ink: #16201E;
    --ink-soft: #2B3633;
    --muted: #6B746F;
    --line: #E2D9C7;
    --forest: #1F3A37;
    --forest-deep: #142624;
    --sage: #4F6E66;
    --gold: #B5854A;
    --gold-soft: #D4B284;
    --rose: #C46A5C;
    --shadow: 0 1px 2px rgba(20,38,36,.04), 0 8px 24px rgba(20,38,36,.06);
    --shadow-lg: 0 4px 8px rgba(20,38,36,.05), 0 24px 60px rgba(20,38,36,.12);
    --radius: 14px;
    --radius-lg: 24px;
    --container: 1200px;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 .5em;
    color: var(--ink);
  }
  h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 400; }
  h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 400; }
  h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); font-weight: 500; }
  p { margin: 0 0 1em; color: var(--ink-soft); }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
  .eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 3px;
  }

  
  /* ---------- HEADER ---------- */
  header.site {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(250,246,239,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .site-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
  .brand { display: flex; align-items: center; }
  .brand-logo { height: 52px; width: auto; display: block; }
  nav.primary ul {
    display: flex; gap: 30px; list-style: none; padding: 0; margin: 0;
    font-size: 14px; font-weight: 500;
  }
  nav.primary a { position: relative; padding: 6px 0; transition: color .2s; }
  nav.primary a:hover { color: var(--gold); }
  nav.primary a::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width .25s ease;
  }
  nav.primary a:hover::after { width: 100%; }
  .header-cta { display: flex; gap: 10px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font: 600 13px/1 'Manrope', sans-serif;
    letter-spacing: .03em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
  }
  .btn-primary { background: var(--forest); color: var(--cream); }
  .btn-primary:hover { background: var(--forest-deep); transform: translateY(-1px); }
  .btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--cream); }
  .btn-gold { background: var(--gold); color: var(--cream); }
  .btn-gold:hover { background: #9d6f3a; }
  .btn-outline { background: var(--cream); border-color: var(--forest); color: var(--forest); }
  .btn-outline:hover { background: var(--forest); color: var(--cream); }
  .menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; color: var(--forest); }
  .menu-toggle svg { width: 26px; height: 26px; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,178,132,.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(31,58,55,.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
  .hero h1 .ital { font-style: italic; font-weight: 300; color: var(--forest); }
  .hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
  .hero-trust {
    display: flex; gap: 28px; flex-wrap: wrap;
    padding-top: 28px; border-top: 1px solid var(--line);
    font-size: 13px; color: var(--muted);
  }
  .hero-trust div { display: flex; align-items: center; gap: 8px; }
  .hero-trust .num { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; color: var(--ink); line-height: 1; }
  .hero-trust .star { color: var(--gold); }

  .hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-2);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
  }
  .hero-visual::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 15%, rgba(181,133,74,.12), transparent 55%),
      radial-gradient(ellipse at 80% 85%, rgba(31,58,55,.08), transparent 55%);
  }
  .hero-visual img.hero-logo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 40px;
  }
  .hero-card {
    position: absolute;
    background: var(--cream);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
    font-size: 13px;
    display: flex; gap: 12px; align-items: center;
  }
  .hero-card .icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--cream-2);
    display: grid; place-items: center;
    color: var(--forest);
  }
  .hero-card strong { display: block; font-family: 'Fraunces', serif; font-weight: 500; color: var(--ink); font-size: 15px; }
  .hero-card span { color: var(--muted); font-size: 12px; }
  .hero-card.card-1 { top: 30px; left: -20px; animation: float 6s ease-in-out infinite; }
  .hero-card.card-2 { bottom: 40px; right: -10px; animation: float 6s ease-in-out infinite reverse; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ---------- QUICK ACTIONS BAR ---------- */
  .quick-actions {
    background: var(--forest);
    color: var(--cream);
    padding: 36px 0;
  }
  .quick-actions .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .qa-item {
    display: flex; align-items: center; gap: 14px;
    padding: 8px 22px;
    border-right: 1px solid rgba(212,178,132,.2);
    cursor: pointer;
    transition: background .2s ease;
  }
  .qa-item:last-child { border-right: 0; }
  .qa-item:hover { background: rgba(255,255,255,.04); }
  .qa-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(212,178,132,.15);
    display: grid; place-items: center;
    color: var(--gold-soft);
    flex-shrink: 0;
  }
  .qa-item strong { display: block; font-family: 'Fraunces', serif; font-weight: 500; font-size: 16px; }
  .qa-item span { font-size: 12px; color: rgba(250,246,239,.7); }

  /* ---------- SECTION ---------- */
  section.block { padding: 110px 0; position: relative; }
  .block-head { max-width: 700px; margin-bottom: 60px; }
  .block-head.center { margin: 0 auto 60px; text-align: center; }
  .block-head p.sub { font-size: 17px; color: var(--muted); max-width: 540px; }
  .block-head.center p.sub { margin-left: auto; margin-right: auto; }

  /* ---------- ABOUT ---------- */
  .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
  .about-image-wrap { position: relative; }
  .about-image {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .about-image .about-photo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .about-stats {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 22px 28px;
    box-shadow: var(--shadow-lg);
    display: flex; gap: 28px;
  }
  .about-stats .stat { text-align: center; }
  .about-stats .stat-num {
    display: block;
    font-family: 'Fraunces', serif; font-weight: 500;
    font-size: 30px; color: var(--forest); line-height: 1;
  }
  .about-stats .stat-label { font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
  .about-credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
  .credential-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--cream-2);
    border-radius: 999px;
    font-size: 13px; font-weight: 500;
    color: var(--ink-soft);
  }
  .credential-chip .check { color: var(--forest); }

  /* ---------- SERVICES ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(20,38,36,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
  }
  .service:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(20,38,36,.15);
  }
  .service-img {
    overflow: hidden;
    flex-shrink: 0;
    height: 220px;
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease;
  }
  .service:hover .service-img img { transform: scale(1.05); }
  .service-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .service h3 { color: var(--gold); margin-bottom: 10px; font-size: 18px; }
  .service p { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; flex: 1; line-height: 1.65; }
  .service .price-range {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .04em;
    margin-bottom: 10px;
  }
  .service .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--forest);
    transition: gap .2s ease, color .2s;
    margin-top: auto;
  }
  .service .service-link:hover { gap: 12px; color: var(--gold); }

  /* ---------- BOOKING ---------- */
  .booking {
    background: var(--cream-2);
    position: relative;
  }
  .booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
  .booking-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-lg);
  }
  .booking-step { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
  .step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: grid; place-items: center;
    font: 500 14px/1 'Fraunces', serif;
  }
  .booking-step strong { display: block; font-family: 'Fraunces', serif; font-weight: 500; font-size: 17px; margin-bottom: 4px; }
  .booking-step span { font-size: 14px; color: var(--muted); }

  .booking-form { display: grid; gap: 14px; }
  .booking-form label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
  .booking-form select, .booking-form input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font: 500 14px 'Manrope', sans-serif;
    background: var(--cream);
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
  }
  .booking-form select:focus, .booking-form input:focus {
    outline: 0;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(31,58,55,.1);
  }
  .slot-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .slot {
    text-align: center;
    padding: 10px 6px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--cream);
    font: 600 13px 'Manrope', sans-serif;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .2s;
  }
  .slot:hover { border-color: var(--forest); color: var(--forest); }
  .slot.is-selected { background: var(--forest); border-color: var(--forest); color: var(--cream); }
  .slot.is-disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

  /* ---------- WHY ---------- */
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
  .why-item { text-align: center; }
  .why-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--forest);
    display: grid; place-items: center;
    margin: 0 auto 18px;
  }
  .why-item h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; margin-bottom: 8px; }
  .why-item p { font-size: 14px; color: var(--muted); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials { background: var(--forest); color: var(--cream); position: relative; overflow: hidden; }
  .testimonials::before {
    content: "“";
    position: absolute;
    top: 30px; right: 80px;
    font-family: 'Fraunces', serif;
    font-size: 400px;
    line-height: 1;
    color: rgba(212,178,132,.08);
    pointer-events: none;
  }
  .testimonials h2 { color: var(--cream); }
  .testimonials .eyebrow { color: var(--gold-soft); }
  .testimonials .block-head p.sub { color: rgba(250,246,239,.7); }
  .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
  .review {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,178,132,.18);
    border-radius: var(--radius);
    padding: 30px 28px;
    backdrop-filter: blur(10px);
  }
  .review .stars { color: var(--gold-soft); margin-bottom: 14px; letter-spacing: 2px; }
  .review p { color: rgba(250,246,239,.85); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
  .review .author { display: flex; gap: 12px; align-items: center; }
  .review .avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest-deep);
    display: grid; place-items: center;
    font: 600 14px 'Fraunces', serif;
  }
  .review .author strong { font-family: 'Fraunces', serif; font-weight: 500; font-size: 15px; color: var(--cream); display: block; }
  .review .author span { font-size: 12px; color: rgba(250,246,239,.5); }

  /* ---------- GALLERY ---------- */
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .gallery-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(20,38,36,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
  }
  .gallery-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(20,38,36,.15); }
  .gallery-imgs { display: flex; flex-direction: column; flex-shrink: 0; }
  .gallery-img-wrap { position: relative; overflow: hidden; height: 180px; }
  .gallery-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .45s ease;
  }
  .gallery-card:hover .gallery-img { transform: scale(1.05); }
  .gallery-tag {
    position: absolute; top: 8px; left: 8px; z-index: 1;
    font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: #fff;
    background: rgba(30,30,30,.82);
    padding: 5px 12px; border-radius: 4px;
  }
  .gallery-body { padding: 16px 20px 20px; }
  .gallery-process {
    font-family: 'Fraunces', serif;
    color: var(--gold);
    font-size: 17px;
    font-weight: 500;
    margin: 0;
  }

  /* ---------- PRICING ---------- */
  .pricing-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
  .price-tab {
    padding: 10px 22px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--line);
    font: 600 13px 'Manrope', sans-serif;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .2s;
  }
  .price-tab:hover { border-color: var(--forest); }
  .price-tab.is-active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
  .price-table {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .price-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
  }
  .price-row:last-child { border-bottom: 0; }
  .price-row:hover { background: var(--cream-2); }
  .price-row .name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 17px; color: var(--ink); }
  .price-row .desc { font-size: 13px; color: var(--muted); margin-top: 2px; }
  .price-row .amt { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; color: var(--forest); }
  .price-row .book {
    padding: 8px 18px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--ink);
    font: 600 12px 'Manrope', sans-serif;
    color: var(--ink);
    cursor: pointer;
    transition: all .2s;
  }
  .price-row .book:hover { background: var(--ink); color: var(--cream); }
  .price-note {
    background: rgba(196,106,92,.08);
    border-left: 3px solid var(--rose);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 24px;
  }

  /* ---------- MEDICAL AIDS ---------- */
  .aids { background: var(--cream-2); padding: 70px 0; }
  .aids-row {
    display: flex; flex-wrap: wrap; gap: 30px;
    align-items: center; justify-content: center;
    margin-top: 30px;
  }
  .aid-logo {
    padding: 14px 22px;
    background: var(--cream);
    border-radius: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    transition: all .2s;
  }
  .aid-logo:hover { color: var(--forest); border-color: var(--forest); }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--ink);
    list-style: none;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q .plus {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    transition: all .25s ease;
    flex-shrink: 0;
    margin-left: 16px;
  }
  details[open] .faq-q .plus { background: var(--forest); border-color: var(--forest); color: var(--cream); transform: rotate(135deg); }
  .faq-item p { padding-top: 14px; font-size: 15px; color: var(--ink-soft); margin: 0; }

  /* ---------- LOCATION ---------- */
  .location-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: stretch; }
  .map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
    background: var(--cream-2);
    position: relative;
  }
  .map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 420px; display: block; }
  .location-info h3 { margin-bottom: 8px; }
  .info-block { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; gap: 16px; }
  .info-block:last-child { border-bottom: 0; }
  .info-block .icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--cream-2);
    color: var(--forest);
    display: grid; place-items: center;
  }
  .info-block strong { display: block; font-family: 'Fraunces', serif; font-weight: 500; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
  .info-block span, .info-block a { font-size: 14px; color: var(--ink-soft); display: block; line-height: 1.6; }
  .info-block a:hover { color: var(--gold); }
  .hours-grid { display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

  /* ---------- CONTACT FORM ---------- */
  .contact-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
  .contact-form-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
  }
  .contact-form { display: grid; gap: 16px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-form input, .contact-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font: 500 14px 'Manrope', sans-serif;
    background: var(--cream);
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
  }
  .contact-form input:focus, .contact-form textarea:focus {
    outline: 0;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(31,58,55,.08);
  }
  .contact-form textarea { resize: vertical; min-height: 120px; }
  .form-success {
    display: none;
    background: rgba(79,110,102,.12);
    border: 1px solid var(--sage);
    color: var(--forest);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
  }
  .form-success.show { display: block; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--forest-deep);
    color: rgba(250,246,239,.75);
    padding: 80px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  footer h5 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--gold-soft);
    margin: 0 0 18px;
    letter-spacing: .04em;
  }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li { margin-bottom: 10px; }
  footer ul a { font-size: 14px; transition: color .2s; }
  footer ul a:hover { color: var(--gold-soft); }
  footer p { color: rgba(250,246,239,.6); font-size: 14px; margin: 0 0 12px; }
  .footer-brand .brand-mark { background: var(--gold); color: var(--forest-deep); }
  .footer-brand .brand-name strong, .footer-brand .brand-name span { color: var(--cream); }
  .socials { display: flex; gap: 10px; margin-top: 18px; }
  .socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: grid; place-items: center;
    color: var(--cream);
    transition: all .2s;
  }
  .socials a:hover { background: var(--gold); color: var(--forest-deep); }
  .lang-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
  .lang-chip {
    padding: 4px 10px;
    background: rgba(255,255,255,.06);
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: .04em;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(250,246,239,.45);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom .built-by { color: var(--gold-soft); font-weight: 500; }
  .footer-legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .footer-legal a { color: rgba(250,246,239,.55); transition: color .2s; }
  .footer-legal a:hover { color: var(--gold-soft); }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    z-index: 800;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    text-decoration: none;
    cursor: pointer;
  }
  .wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,.6); }
  .wa-float svg { width: 30px; height: 30px; }

  /* "Chat with us" label — slides in from the right on hover */
  .wa-float::before {
    content: "Chat with us";
    position: absolute;
    right: calc(100% + 12px);
    top: 50%; transform: translateY(-50%) translateX(6px);
    background: white;
    color: var(--forest-deep);
    font-family: var(--font-body, sans-serif);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(20,38,36,.14);
    opacity: 0;
    transition: opacity .25s, transform .25s;
    pointer-events: none;
  }
  .wa-float:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* ripple ring */
  .wa-float::after {
    content: "";
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: .45;
    animation: wa-ripple 2.4s infinite ease-out;
    pointer-events: none;
  }
  @keyframes wa-ripple {
    0%   { transform: scale(1);   opacity: .45; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 960px) {
    .hero { padding: 60px 0 80px; }
    .hero .container, .about-grid, .booking-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .services-grid, .review-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-actions .grid { grid-template-columns: repeat(2, 1fr); }
    .qa-item { border-right: 0; border-bottom: 1px solid rgba(212,178,132,.2); padding: 14px 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    nav.primary, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .hero-card { padding: 10px 12px; gap: 8px; border-radius: 10px; }
    .hero-card .icon { width: 28px; height: 28px; border-radius: 7px; }
    .hero-card .icon svg { width: 14px; height: 14px; }
    .hero-card strong { font-size: 12px; }
    .hero-card span { font-size: 11px; }
    .hero-card.card-1 { top: 12px; left: 8px; }
    .hero-card.card-2 { bottom: 12px; right: 8px; }
    section.block { padding: 70px 0; }
    .about-stats { right: 0; bottom: -20px; padding: 14px 18px; gap: 18px; }
    .about-stats .stat-num { font-size: 22px; }
  }
  @media (max-width: 600px) {
    .services-grid, .review-grid, .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .quick-actions .grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .price-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
    .booking-card, .contact-form-card { padding: 24px; }
    .hero h1 { font-size: 2.4rem; }
.audit-body, .audit-head { padding-left: 22px; padding-right: 22px; }
}

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 16px 0 20px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0 24px; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child { border-bottom: 0; padding: 16px 0 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font: 500 15px 'Manrope', sans-serif;
  color: var(--ink);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font: 600 14px 'Manrope', sans-serif;
  letter-spacing: .03em;
  transition: background .2s, transform .2s;
}
.mobile-nav .mobile-call:hover { background: var(--forest-deep); transform: translateY(-1px); color: var(--cream); }

/* ---------- UTILITY ---------- */
.hidden { display: none !important; }
.bg-cream-2 { background: var(--cream-2); }
.btn-full { width: 100%; justify-content: center; }
.qa-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }

/* ---------- ABOUT BODY ---------- */
.about-body { display: flex; flex-direction: column; justify-content: center; }

/* ---------- CONTACT ---------- */
.contact-wa { margin-top: 24px; font-size: 14px; }
.contact-wa a { color: var(--forest); font-weight: 600; border-bottom: 1px solid var(--gold); }

/* ---------- AIDS ---------- */
.aids-head { text-align: center; }
.aids-head p { color: var(--muted); font-size: 14px; }

@media (max-width: 960px) {
  .qa-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .qa-grid { grid-template-columns: 1fr; }
}

/* ---------- LEGAL PAGES ---------- */
.legal-wrap { padding: 80px 0 100px; }
.legal-date { color: var(--muted); font-size: 13px; margin: -8px 0 40px; }
.legal-content h1 { margin-bottom: 6px; }
.legal-content h2 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin: 40px 0 12px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.legal-content h3 { font-size: 1rem; font-family: 'Manrope', sans-serif; font-weight: 700; margin: 24px 0 8px; color: var(--ink); }
.legal-content p, .legal-content li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin: 0 0 1em; }
.legal-content li { margin-bottom: 6px; }
.legal-content hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 14px; border: 1px solid var(--line); }
.legal-content th { background: var(--cream-2); font-weight: 600; color: var(--ink); }
.legal-content a { color: var(--forest); border-bottom: 1px solid var(--gold); }
