    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --white:       #f8faf9;
      --surface:     #ffffff;
      --green:       #3a8c6e;
      --green-light: #e5f3ed;
      --green-mid:   #a8d5c2;
      --green-dark:  #2a6a52;
      --blue:        #2a6ea6;
      --blue-light:  #e8f1f9;
      --blue-mid:    #b8d4ec;
      --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-links a.active { color: var(--green); font-weight: 500; }
    .nav-cta { background: var(--green) !important; color: white !important; padding: 0.6rem 1.4rem; border-radius: 100px; }

    /* PAGE HEADER */
    .page-header { padding: 9rem 4rem 5rem; 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: 5%; transform: translateY(-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: 10%; right: 5%; }
    .header-inner { max-width: 1100px; 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.8rem, 5vw, 4.5rem); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 1rem; }
    .header-title em { font-style: italic; color: var(--green-mid); }
    .header-sub { font-size: 1rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; max-width: 50ch; }

    /* QUICK CONTACT STRIP */
    .quick-strip { background: var(--green); padding: 1.2rem 4rem; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
    .quick-item { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; transition: opacity 0.2s; }
    .quick-item:hover { opacity: 0.85; }
    .quick-icon { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
    .quick-detail { display: flex; flex-direction: column; gap: 0.1rem; }
    .quick-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); font-weight: 500; }
    .quick-value { font-size: 0.88rem; color: white; font-weight: 400; }
    .quick-sep { width: 1px; height: 2rem; background: rgba(255,255,255,0.2); }

    /* MAIN LAYOUT */
    .page-layout { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem 6rem; display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start; }

    /* LEFT — CONTACT INFO */
    .contact-info { display: flex; flex-direction: column; gap: 2.5rem; padding-right: 1rem; }

    .info-block { display: flex; flex-direction: column; gap: 0.5rem; align-items: left; }
    .info-block-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--green); font-weight: 500; }
    .info-block-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--ink); margin-bottom: 0.3rem; }
    .info-block-body { font-size: 0.9rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

    /* CONTACT METHODS */
    .contact-methods { display: flex; flex-direction: column; gap: 0.8rem;}
    .contact-method { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 0.9rem; text-decoration: none; transition: all 0.2s; }
    .contact-method:hover { border-color: var(--green); background: var(--green-light); transform: translateX(4px); }
    .cm-icon { width: 2.8rem; height: 2.8rem; border-radius: 0.7rem; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
    .cm-icon.whatsapp { background: #e8f8ef; }
    .cm-icon.email    { background: var(--blue-light); }
    .cm-icon.phone    { background: var(--green-light); }
    .cm-icon.location { background: #fff3e8; }
    .cm-text { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
    .cm-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); font-weight: 500; }
    .cm-value { font-size: 0.92rem; color: var(--ink); font-weight: 400; }
    .cm-note  { font-size: 0.75rem; color: var(--ink-muted); font-weight: 300; }
    .cm-arrow { font-size: 0.85rem; color: var(--ink-muted); transition: transform 0.2s; flex-shrink: 0; }
    .contact-method:hover .cm-arrow { transform: translateX(3px); color: var(--green); }

    /* OPENING HOURS */
    .hours-table { width: 100%; border-collapse: collapse; }
    .hours-row { border-bottom: 1px solid var(--border); }
    .hours-row:last-child { border-bottom: none; }
    .hours-row td { padding: 0.6rem 0; font-size: 0.87rem; }
    .hours-row td:first-child { color: var(--ink-soft); font-weight: 400; }
    .hours-row td:last-child { text-align: right; color: var(--ink); font-weight: 300; }
    .hours-row.today td { color: var(--green); font-weight: 500; }
    .hours-closed-text { color: var(--ink-muted) !important; }
    .open-now-badge { display: inline-flex; align-items: center; gap: 0.3rem; background: var(--green-light); color: var(--green); font-size: 0.65rem; font-weight: 500; padding: 0.15rem 0.6rem; border-radius: 100px; border: 1px solid var(--green-mid); margin-left: 0.5rem; }
    .open-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

    /* SERVICE AREAS */
    .area-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
    .area-pill { font-size: 0.78rem; padding: 0.3rem 0.9rem; border-radius: 100px; border: 1px solid var(--border); color: var(--ink-soft); font-weight: 300; background: var(--surface); }
    .area-pill.primary { background: var(--green-light); border-color: var(--green-mid); color: var(--green); font-weight: 400; }

    /* RIGHT — FORM CARD */
    .form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2.5rem; margin-right: 0.9rem; position: sticky; top: 7rem; box-shadow: 0 8px 40px rgba(26,37,32,0.06); }
    .form-card-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--green); font-weight: 500; margin-bottom: 0.4rem; display: block; }
    .form-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--ink); margin-bottom: 0.4rem; }
    .form-card-title em { font-style: italic; color: var(--green); }
    .form-card-sub { font-size: 0.83rem; color: var(--ink-muted); font-weight: 300; margin-bottom: 2rem; line-height: 1.6; }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
    .form-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; color: var(--ink-soft); }
    .form-label span { color: var(--green); }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 0.82rem 1rem;
      border: 1.5px solid var(--border); border-radius: 0.65rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      font-weight: 300; color: var(--ink); background: var(--white);
      outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(58,140,110,0.1);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--ink-muted); }
    .form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a9e97' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; }
    .form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

    .form-submit { width: 100%; padding: 1rem; background: var(--green); color: white; border: none; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
    .form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
    .form-submit:active { transform: translateY(0); }

    .form-divider { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0; }
    .form-divider-line { flex: 1; height: 1px; background: var(--border); }
    .form-divider-text { font-size: 0.72rem; color: var(--ink-muted); font-weight: 300; white-space: nowrap; }

    .whatsapp-btn { width: 100%; padding: 0.9rem; background: #25d366; color: white; border: none; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.6rem; text-decoration: none; }
    .whatsapp-btn:hover { background: #1dab52; }

    .form-note { font-size: 0.72rem; color: var(--ink-muted); font-weight: 300; text-align: center; margin-top: 0.8rem; line-height: 1.5; }
    .form-note a { color: var(--green); text-decoration: none; }

    /* SUCCESS STATE */
    .form-success { display: none; text-align: center; padding: 2rem 1rem; }
    .form-success-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
    .form-success-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
    .form-success-body { font-size: 0.87rem; color: var(--ink-muted); font-weight: 300; line-height: 1.6; }

    /* MAP SECTION */
    .map-section { max-width: 1100px; margin: 0 auto 5rem; padding: 0 2rem; }
    .map-section-header { margin-bottom: 1.5rem; }
    .map-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--ink); }
    .map-section-title em { font-style: italic; color: var(--green); }
    .map-section-sub { font-size: 0.87rem; color: var(--ink-muted); font-weight: 300; margin-top: 0.3rem; }
    .map-embed { width: 100%; height: 380px; border-radius: 1.2rem; border: 1px solid var(--border); overflow: hidden; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
    .map-placeholder { text-align: center; padding: 2rem; }
    .map-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
    .map-placeholder-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
    .map-placeholder-addr { font-size: 0.87rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; margin-bottom: 1.2rem; }
    .map-directions-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; background: var(--green); color: white; border-radius: 100px; font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: background 0.2s; }
    .map-directions-btn:hover { background: var(--green-dark); }

    /* FAQ SECTION */
    .faq-section { max-width: 1100px; margin: 0 auto 5rem; padding: 0 2rem; }
    .faq-header { margin-bottom: 2rem; }
    .faq-header-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--ink); }
    .faq-header-title em { font-style: italic; color: var(--green); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 0.9rem; overflow: hidden; }
    .faq-question { padding: 1.1rem 1.4rem; font-size: 0.88rem; font-weight: 500; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: background 0.15s; user-select: none; }
    .faq-question:hover { background: var(--green-light); }
    .faq-chevron { font-size: 0.7rem; color: var(--ink-muted); transition: transform 0.25s; flex-shrink: 0; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner { padding: 0 1.4rem 1.2rem; font-size: 0.85rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7; border-top: 1px solid var(--border); padding-top: 0.9rem; }

    /* FOOTER */
    footer { background: var(--ink); padding: 3rem 4rem 2rem; }
    .footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 2rem; flex-wrap: wrap; }
    .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 300; color: white; margin-bottom: 0.4rem; }
    .footer-brand-name span { color: var(--green-mid); }
    .footer-brand-sub { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 300; max-width: 28ch; }
    .footer-links-group { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links-title { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); margin-bottom: 0.3rem; font-weight: 500; }
    .footer-link { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 300; transition: color 0.2s; }
    .footer-link:hover { color: var(--green-mid); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

    /* 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: 240px; 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; }
    .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; }

    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      .mobile-nav { display: flex; }
      .page-header { padding: 7rem 1.5rem 3.5rem; }
      .quick-strip { padding: 1rem 1.5rem; gap: 1rem; }
      .quick-sep { display: none; }
      .page-layout { grid-template-columns: 1fr; padding: 3rem 1.5rem 4rem; gap: 3rem; }
      .form-card { position: static; }
      .form-row { grid-template-columns: 1fr; }
      .map-section, .faq-section { padding: 0 1.5rem; }
      .faq-grid { grid-template-columns: 1fr; }
      footer { padding: 2.5rem 1.5rem 1.5rem; }
      .footer-top { flex-direction: column; gap: 2rem; }
    }