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

      :root {
        --white: #f8faf9;
        --blue: #2a6ea6;
        --blue-light: #e8f1f9;
        --blue-mid: #b8d4ec;
        --green: #3a8c6e;
        --green-light: #e5f3ed;
        --green-mid: #a8d5c2;
        --ink: #1a2520;
        --ink-soft: #4a5e57;
        --ink-muted: #8a9e97;
        --border: #d5e5de;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--white);
        color: var(--ink);
        overflow-x: hidden;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 4rem;
        background: rgba(248, 250, 249, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
      }
      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.6rem;
        font-weight: 300;
        letter-spacing: 0.05em;
        color: var(--ink);
        text-decoration: none;
      }
      .nav-logo span {
        color: var(--green);
      }
      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.82rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--ink-soft);
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--green);
      }
      .nav-cta {
        background: var(--green) !important;
        color: white !important;
        padding: 0.6rem 1.4rem;
        border-radius: 100px;
      }

      /* ── PAGE HEADER ── */
      .page-header {
        padding: 9rem 4rem 4rem;
        background: var(--ink);
        position: relative;
        overflow: hidden;
      }
      .page-header::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(58, 140, 110, 0.12) 0%,
          transparent 70%
        );
        top: 50%;
        left: 10%;
        transform: translate(-50%, -50%);
      }
      .page-header::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(42, 110, 166, 0.1) 0%,
          transparent 70%
        );
        top: 20%;
        right: 8%;
      }
      .header-inner {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .header-tag {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--green-mid);
        font-weight: 500;
        margin-bottom: 1rem;
        display: block;
      }
      .header-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.5rem, 4vw, 3.8rem);
        font-weight: 300;
        color: white;
        line-height: 1.1;
        margin-bottom: 1rem;
      }
      .header-title em {
        font-style: italic;
        color: var(--green-mid);
      }
      .header-meta {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
      }
      .header-date {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
      }
      .header-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(58, 140, 110, 0.15);
        border: 1px solid rgba(58, 140, 110, 0.3);
        color: var(--green-mid);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.3rem 0.8rem;
        border-radius: 100px;
      }

      /* ── LAYOUT ── */
      .doc-layout {
        max-width: 1100px;
        margin: 0 auto;
        padding: 4rem 2rem 6rem;
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 4rem;
        align-items: start;
      }

      /* ── SIDEBAR TOC ── */
      .toc {
        position: sticky;
        top: 6rem;
      }
      .toc-title {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 500;
        color: var(--ink-muted);
        margin-bottom: 1rem;
      }
      .toc-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
      }
      .toc-list a {
        display: block;
        padding: 0.45rem 0.8rem;
        font-size: 0.8rem;
        color: var(--ink-muted);
        text-decoration: none;
        font-weight: 300;
        border-left: 2px solid transparent;
        transition: all 0.2s;
        border-radius: 0 0.4rem 0.4rem 0;
        line-height: 1.4;
      }
      .toc-list a:hover {
        color: var(--green);
        border-left-color: var(--green);
        background: var(--green-light);
        padding-left: 1rem;
      }
      .toc-list a.active {
        color: var(--green);
        border-left-color: var(--green);
        font-weight: 500;
      }
      .toc-divider {
        height: 1px;
        background: var(--border);
        margin: 0.8rem 0;
      }
      .toc-contact {
        margin-top: 1.5rem;
        padding: 1rem;
        background: var(--green-light);
        border-radius: 0.75rem;
        font-size: 0.78rem;
        color: var(--ink-soft);
        font-weight: 300;
        line-height: 1.6;
      }
      .toc-contact strong {
        font-weight: 500;
        color: var(--green);
        display: block;
        margin-bottom: 0.4rem;
      }
      .toc-contact a {
        color: var(--green);
        text-decoration: none;
      }

      /* ── DOCUMENT CONTENT ── */
      .doc-content {
        min-width: 0;
      }

      .doc-intro {
        background: white;
        border: 1px solid var(--border);
        border-radius: 1rem;
        padding: 2rem;
        margin-bottom: 3rem;
        font-size: 0.9rem;
        line-height: 1.7;
        color: var(--ink-soft);
        font-weight: 300;
      }
      .doc-intro strong {
        font-weight: 500;
        color: var(--ink);
      }

      .contact-block {
        background: var(--green-light);
        border-left: 3px solid var(--green);
        border-radius: 0 0.5rem 0.5rem 0;
        padding: 1rem 1.2rem;
        margin-top: 1rem;
        font-size: 0.85rem;
        color: var(--ink-soft);
        font-weight: 300;
        line-height: 1.8;
      }
      .contact-block a {
        color: var(--green);
        text-decoration: none;
      }

      /* Section */
      .doc-section {
        margin-bottom: 3rem;
        scroll-margin-top: 7rem;
      }
      .section-num {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--green);
        font-weight: 500;
        margin-bottom: 0.5rem;
        display: block;
      }
      .section-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.5rem;
        font-weight: 300;
        color: var(--ink);
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid var(--border);
      }
      .doc-p {
        font-size: 0.9rem;
        line-height: 1.8;
        color: var(--ink-soft);
        font-weight: 300;
        margin-bottom: 1rem;
      }
      .doc-p:last-child {
        margin-bottom: 0;
      }
      .doc-p strong {
        font-weight: 500;
        color: var(--ink);
      }
      .doc-p a {
        color: var(--green);
        text-decoration: none;
      }
      .doc-p a:hover {
        text-decoration: underline;
      }

      .doc-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin: 0.8rem 0 1rem;
      }
      .doc-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        font-size: 0.88rem;
        color: var(--ink-soft);
        font-weight: 300;
        line-height: 1.6;
      }
      .doc-list li::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--green);
        flex-shrink: 0;
        margin-top: 0.55rem;
      }

      /* Special boxes */
      .policy-box {
        border-radius: 0.75rem;
        padding: 1.2rem 1.5rem;
        margin: 1rem 0;
        font-size: 0.87rem;
        line-height: 1.7;
        font-weight: 300;
      }
      .policy-box.green {
        background: var(--green-light);
        border: 1px solid var(--green-mid);
        color: var(--ink-soft);
      }
      .policy-box.blue {
        background: var(--blue-light);
        border: 1px solid var(--blue-mid);
        color: var(--ink-soft);
      }
      .policy-box.amber {
        background: #fef9ec;
        border: 1px solid #f0d080;
        color: #6b5a1a;
      }
      .policy-box strong {
        font-weight: 500;
        display: block;
        margin-bottom: 0.3rem;
      }

      /* Cancellation & Refund highlight table */
      .policy-table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        font-size: 0.85rem;
      }
      .policy-table th {
        text-align: left;
        padding: 0.7rem 1rem;
        background: var(--ink);
        color: white;
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .policy-table th:first-child {
        border-radius: 0.5rem 0 0 0;
      }
      .policy-table th:last-child {
        border-radius: 0 0.5rem 0 0;
      }
      .policy-table td {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid var(--border);
        color: var(--ink-soft);
        font-weight: 300;
        vertical-align: top;
        line-height: 1.6;
      }
      .policy-table tr:last-child td {
        border-bottom: none;
      }
      .policy-table tr:nth-child(even) td {
        background: var(--white);
      }
      .policy-table tr:nth-child(odd) td {
        background: white;
      }
      .badge-yes {
        display: inline-block;
        background: var(--green-light);
        color: var(--green);
        font-size: 0.72rem;
        font-weight: 500;
        padding: 0.15rem 0.6rem;
        border-radius: 100px;
        border: 1px solid var(--green-mid);
      }
      .badge-no {
        display: inline-block;
        background: #fef0f0;
        color: #c0392b;
        font-size: 0.72rem;
        font-weight: 500;
        padding: 0.15rem 0.6rem;
        border-radius: 100px;
        border: 1px solid #f5b7b1;
      }
      .badge-partial {
        display: inline-block;
        background: var(--blue-light);
        color: var(--blue);
        font-size: 0.72rem;
        font-weight: 500;
        padding: 0.15rem 0.6rem;
        border-radius: 100px;
        border: 1px solid var(--blue-mid);
      }

      /* ── FOOTER ── */
      .doc-footer {
        background: var(--ink);
        padding: 3rem 4rem;
        text-align: center;
      }
      .doc-footer-inner {
        max-width: 600px;
        margin: 0 auto;
      }
      .doc-footer-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.5rem;
        font-weight: 300;
        color: white;
        margin-bottom: 0.5rem;
      }
      .doc-footer-sub {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
        margin-bottom: 1.5rem;
      }
      .doc-footer-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .doc-footer-link {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.2s;
      }
      .doc-footer-link:hover {
        color: var(--green-mid);
      }

      /* ── MOBILE NAV ── */
      .mobile-nav {
        display: none;
        position: fixed;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 200;
        background: rgba(26, 37, 32, 0.92);
        backdrop-filter: blur(16px);
        border-radius: 100px;
        padding: 0.75rem 1.5rem;
        align-items: center;
        gap: 1.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
        white-space: nowrap;
      }
      .mobile-nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1rem;
        font-weight: 300;
        color: white;
        text-decoration: none;
      }
      .mobile-nav-logo span {
        color: var(--green-mid);
      }
      .mobile-nav-divider {
        width: 1px;
        height: 1.2rem;
        background: rgba(255, 255, 255, 0.15);
      }
      .mobile-menu-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.8);
        font-family: "DM Sans", sans-serif;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        padding: 0;
      }
      .mobile-menu-icon {
        display: flex;
        flex-direction: column;
        gap: 3px;
      }
      .mobile-menu-icon span {
        display: block;
        width: 16px;
        height: 1.5px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 2px;
        transition: all 0.25s;
      }
      .mobile-menu-btn.open .mobile-menu-icon span:nth-child(1) {
        transform: translateY(4.5px) rotate(45deg);
      }
      .mobile-menu-btn.open .mobile-menu-icon span:nth-child(2) {
        opacity: 0;
      }
      .mobile-menu-btn.open .mobile-menu-icon span:nth-child(3) {
        transform: translateY(-4.5px) rotate(-45deg);
      }
      .mobile-menu-drawer {
        position: fixed;
        bottom: 5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 199;
        background: rgba(26, 37, 32, 0.97);
        backdrop-filter: blur(20px);
        border-radius: 1.2rem;
        padding: 1.2rem;
        min-width: 220px;
        display: none;
        flex-direction: column;
        gap: 0.3rem;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
      }
      .mobile-menu-drawer.open {
        display: flex;
      }
      .drawer-link {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
        text-decoration: none;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 300;
        transition:
          background 0.15s,
          color 0.15s;
      }
      .drawer-link:hover {
        background: rgba(58, 140, 110, 0.2);
        color: white;
      }
      .drawer-link-icon {
        font-size: 1rem;
        width: 1.5rem;
        text-align: center;
      }
      .drawer-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
        margin: 0.3rem 0;
      }
      .drawer-book-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem;
        border-radius: 100px;
        background: var(--green);
        color: white;
        text-decoration: none;
        font-size: 0.88rem;
        font-weight: 500;
        margin-top: 0.3rem;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        nav {
          padding: 1.2rem 1.5rem;
        }
        .nav-links {
          display: none;
        }
        .mobile-nav {
          display: flex;
        }
        .page-header {
          padding: 7rem 1.5rem 3rem;
        }
        .doc-layout {
          grid-template-columns: 1fr;
          padding: 2rem 1.5rem 5rem;
          gap: 0;
        }
        .toc {
          display: none;
        }
        .doc-footer {
          padding: 2.5rem 1.5rem;
        }
      }
