*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --dark: #1a1a18;
    --teal: #1e5f52;
    --teal-light: #2a7a6a;
    --gold: #f0a500;
    --gold-dark: #d48f00;
    --cream: #f7f5f0;
    --text: #2c2c2a;
    --muted: #6b6b68;
    --white: #ffffff;
    --nav-h: 64px;
    --teal-pale: #e8f2f0;
    --border: #e0ddd8;
    --radius: 10px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    background: rgba(20,20,18,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.45rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    user-select: none;
    transition: color .2s;
    cursor: pointer;
    text-decoration: none;
  }
  .logo span { display: block; }
  .logo:hover { color: var(--gold); }

  .nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links .has-arrow::after { content: ' ▾'; font-size: 0.75rem; }

  .nav-right {
    display: flex; align-items: center; gap: 22px;
  }
  .nav-icon-link {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color .2s;
  }
  .nav-icon-link:hover { color: var(--white); }
  .nav-icon-link svg { width: 16px; height: 16px; }

  .btn-book {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .btn-book:hover { background: var(--gold-dark); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh; min-height: 620px;
    display: flex; align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1400&q=75') center/cover no-repeat;
    filter: brightness(0.45);
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 80px;
    max-width: 700px;
    animation: fadeUp .9s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 28px;
  }

  .hero-headline .rotating-word {
    color: var(--gold);
    display: inline-block;
    min-width: 320px;
  }

  .hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
    font-weight: 300;
  }

  .hero-form {
    display: flex; gap: 0;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    width: 120%; max-width: 1000px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .hero-form input {
    flex: 1;
    border: none; outline: none;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: transparent;
  }
  .hero-form input::placeholder { color: var(--muted); }
  .hero-form .divider { width: 1px; background: #e0ddd8; margin: 10px 0; }
  .hero-form button {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 14px 26px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
  }
  .hero-form button:hover { background: var(--teal-light); }

  .hero-company-note {
    margin-top: 16px;
    color: rgba(255,255,255,0.65);
    font-size: 0.83rem;
  }
  .hero-company-note a { color: rgba(255,255,255,0.85); }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--dark);
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0 48px;
    padding: 13px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .trust-strip span {
    color: rgba(255,255,255,0.68);
    font-size: 0.82rem; font-weight: 500;
    padding: 5px 0; white-space: nowrap;
  }
  .trust-strip span::before { content: '✓ '; color: var(--gold); }

  /* ── INTRO ── */
  .intro {
    background: var(--cream);
    padding: 88px 80px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
  }
  .intro h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 20px;
  }
  .intro p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.97rem;
    font-weight: 300;
  }
  .intro-img {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .intro-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ── SERVICES ── */
  .services {
    padding: 88px 80px;
    background: var(--white);
  }
  .section-header {
    text-align: center;
    margin-bottom: 52px;
  }
  .section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    color: var(--text);
    margin-bottom: 14px;
  }
  .section-header p {
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
    font-size: 0.95rem;
    font-weight: 300;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    border-radius: 6px;
    overflow: hidden;
    background: var(--cream);
    text-decoration: none;
    color: var(--text);
    transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column;
  }
  .service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
  .service-card img {
    width: 100%; height: 190px; object-fit: cover;
    transition: transform .4s;
  }
  .service-card:hover img { transform: scale(1.04); }
  .service-card .card-body { padding: 22px 24px 26px; }
  .service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
  .service-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; font-weight: 300; }
  .service-card .read-more {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 12px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--teal);
  }
  .service-card .read-more::after { content: '→'; }

  /* ── VALUES ── */
  .values {
    background: var(--dark);
    padding: 88px 80px;
    color: var(--white);
  }
  .values .section-header h2 { color: var(--white); }
  .values .section-header p { color: rgba(255,255,255,0.55); }

  .values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 52px;
  }
  .value-item { display: flex; flex-direction: column; gap: 14px; }
  .value-icon {
    width: 48px; height: 48px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .value-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .value-item h3 { font-size: 1.1rem; font-weight: 600; }
  .value-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

  /* ── FAQ ── */
  .faq {
    padding: 88px 80px;
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 72px; align-items: start;
  }
  .faq-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 16px;
  }
  .faq-left p { color: var(--muted); line-height: 1.65; font-size: 0.95rem; font-weight: 300; }
  .faq-left .btn-faq {
    display: inline-block;
    margin-top: 28px;
    background: var(--teal);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background .2s;
  }
  .faq-left .btn-faq:hover { background: var(--teal-light); }

  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0;
  }
  .faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 4px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
    gap: 16px;
  }
  .faq-q .faq-toggle {
    width: 26px; height: 26px; flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--teal);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
    font-size: 1.1rem;
    transition: transform .2s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    color: var(--muted); font-size: 0.9rem; line-height: 1.7;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-weight: 300;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; padding-left: 4px; }

  /* ── CTA ── */
  .cta-section {
    position: relative;
    padding: 88px 80px;
    background: var(--teal);
    overflow: hidden;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .cta-section::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
  }
  .cta-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    color: var(--white);
    margin-bottom: 14px;
  }
  .cta-text p {
    color: rgba(255,255,255,0.72);
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 480px;
    font-weight: 300;
  }
  .cta-actions {
    display: flex; 
    gap: 16px; 
    flex-shrink: 0; 
    align-items: center; 
    position: relative;
    z-index: 1;
    }
  .btn-white {
    background: var(--white);
    color: var(--teal);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform .2s;
    white-space: nowrap;
  }
  .btn-white:hover { transform: translateY(-2px); }
  .btn-outline-white {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color .2s, background .2s;
    white-space: nowrap;
  }
  .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 64px 80px 40px;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 52px;
  }
  .footer-brand .logo { font-size: 1rem; margin-bottom: 16px; }
  .footer-brand p { line-height: 1.7; font-weight: 300; max-width: 220px; }
  .footer-col h4 {
    color: var(--white); font-size: 0.83rem;
    font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 0.8rem; }

  /* Typing animation */
  .rotating-word { border-right: 2px solid var(--gold); }


  /* ── HAMBURGER TOGGLE ── */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
    line-height: 0;
    flex-shrink: 0;
  }

  /* ── MOBILE NAV DRAWER ── */
  .nav-mobile {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100dvh;
    background: var(--dark);
    z-index: 300;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .nav-mobile.open { transform: translateX(0); }

  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
  }
  .nav-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
    line-height: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .nav-mobile-close:hover { opacity: 1; }

  .nav-mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .nav-mobile-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-mobile-links a {
    display: block;
    padding: 16px 4px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    transition: color 0.2s;
  }
  .nav-mobile-links a:hover { color: var(--white); }

  .nav-mobile-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .nav-mobile-cta .btn-book { text-align: center; padding: 14px 24px; }
  .nav-mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .nav-mobile-phone svg { width: 16px; height: 16px; }
  .nav-mobile-phone:hover { color: var(--white); }

  /* ── NAV OVERLAY ── */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  /* ── MOBILE NAV SERVICES SUB-MENU ── */
  .nav-mobile-services { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-mobile-services-toggle {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.82); font-size: 1.05rem; font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 16px 4px; text-align: left;
    transition: color 0.2s;
  }
  .nav-mobile-services-toggle:hover { color: var(--white); }
  .services-arrow { transition: transform 0.25s ease; flex-shrink: 0; }
  .nav-mobile-services.open .services-arrow { transform: rotate(90deg); }
  .nav-mobile-services-list {
    list-style: none;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-mobile-services.open .nav-mobile-services-list { max-height: 400px; }
  .nav-mobile-services-list li { border-top: 1px solid rgba(255,255,255,0.05); }
  .nav-mobile-services-list a {
    display: block; padding: 12px 4px 12px 18px;
    color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.95rem;
    transition: color 0.2s;
  }
  .nav-mobile-services-list a:hover { color: var(--white); }

  /* ── MEGA MENU ── */
  .nav-links li { position: relative; }
  .services-menu { position: static; height: var(--nav-h); display: flex; align-items: center; }
  .services-menu > a { height: 100%; display: flex; align-items: center; }
  .mega-menu { position: fixed; top: var(--nav-h); left: 50%; transform: translateX(-50%) translateY(14px); width: min(1120px, calc(100vw - 64px)); background: var(--white); border-radius: 0 0 18px 18px; box-shadow: 0 24px 70px rgba(0,0,0,0.18); display: grid; grid-template-columns: 1fr 3fr; opacity: 0; visibility: hidden; pointer-events: none; overflow: hidden; transition: opacity .22s ease, transform .22s ease, visibility .22s ease; border: 1px solid rgba(0,0,0,0.06); }
  .services-menu:hover .mega-menu, .services-menu:focus-within .mega-menu, .services-menu.open .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .mega-copy { background: var(--teal); color: var(--white); padding: 34px; display: flex; flex-direction: column; min-height: 320px; }
  .mega-copy h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 2.2vw, 2.2rem); line-height: 1.08; margin-bottom: 14px; }
  .mega-copy p { color: rgba(255,255,255,0.78); line-height: 1.65; font-weight: 300; font-size: .95rem; }
  .mega-copy .btn-book { margin-top: auto; align-self: flex-start; color: var(--dark); }
  .mega-services { padding: 26px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; background: var(--cream); }
  .mega-service-card { background: var(--white); border-radius: 14px; overflow: hidden; text-decoration: none; color: var(--text) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
  .mega-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.1); }
  .mega-service-card img { height: 120px; width: 100%; object-fit: cover; }
  .mega-service-card div { padding: 16px; }
  .mega-service-card h3 { font-size: .98rem; margin-bottom: 8px; color: var(--text); }
  .mega-service-card p { font-size: .8rem; color: var(--muted); line-height: 1.5; }
  @media (max-width: 900px) { .mega-menu { display: none; } }

  /* ── SUBPAGES ── */
  .page-hero { position: relative; min-height: 445px; display: flex; align-items: flex-end; padding: calc(var(--nav-h) + 80px) 80px 78px; overflow: hidden; color: var(--white); }
  .page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.52); z-index: 1; }
  .page-hero::after { content: ''; position: absolute; top: var(--nav-h); left: 80px; right: 80px; height: 1px; background: rgba(255,255,255,.55); z-index: 2; }
  .page-hero-bg { position:absolute; inset:0; background-size: cover; background-position: center; z-index:0; }
  .page-hero-content { position: relative; z-index: 3; max-width: 820px; }
  .page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 22px; font-weight: 500; }
  .page-hero p { font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,.9); max-width: 840px; }
  .about-story { padding: 82px 80px; max-width: 1180px; margin: 0 auto; }
  .about-story h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; margin-bottom: 28px; }
  .about-story p { max-width: 980px; font-size: 1.08rem; line-height: 1.8; margin-bottom: 20px; color: var(--text); }
  .about-story strong { display:block; margin: 28px 0 8px; font-size: 1.1rem; }
  /* ── FAQ PAGE ── */
  .faq-page-content { background: var(--cream); padding: 72px 80px; }
  .faq-page-wrap { max-width: 780px; margin: 0 auto; }
  .faq-category { margin-bottom: 52px; }
  .faq-category-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem; color: var(--text);
    padding-bottom: 14px; margin-bottom: 4px;
    border-bottom: 2px solid var(--teal);
  }

  /* ── PRICING PAGE ── */
  .pricing-page { background: var(--white); padding: 72px 80px; }
  .pricing-wrap { max-width: 960px; margin: 0 auto; }
  .pricing-intro { text-align: center; max-width: 620px; margin: 0 auto 56px; }
  .pricing-intro h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
  .pricing-intro p { color: var(--muted); line-height: 1.7; font-weight: 300; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
  .pricing-card {
    border: 1.5px solid var(--border); border-radius: 16px; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
    background: var(--cream); transition: box-shadow .2s, transform .2s;
  }
  .pricing-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.08); transform: translateY(-3px); }
  .pricing-card.pricing-card--featured {
    border-color: var(--teal); background: var(--white);
    box-shadow: 0 8px 28px rgba(30,95,82,0.12);
  }
  .pricing-card-badge {
    display: inline-block; background: var(--gold); color: var(--dark);
    font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
    letter-spacing: 0.04em; align-self: flex-start; text-transform: uppercase;
  }
  .pricing-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; }
  .pricing-card .price { font-size: 2.2rem; font-weight: 700; color: var(--teal); line-height: 1; }
  .pricing-card .price span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
  .pricing-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; font-weight: 300; }
  .pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 4px 0; }
  .pricing-card ul li { font-size: 0.88rem; color: var(--text); padding-left: 18px; position: relative; }
  .pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
  .pricing-card .btn-submit { margin-top: auto; }
  .pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 56px; }
  .pricing-table th, .pricing-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
  .pricing-table th { background: var(--dark); color: var(--white); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
  .pricing-table tr:last-child td { border-bottom: none; }
  .pricing-table tr:nth-child(even) td { background: var(--cream); }
  .pricing-note { background: var(--teal-pale); border-left: 3px solid var(--teal); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.9rem; color: var(--teal); line-height: 1.65; }
  .pricing-note strong { font-weight: 600; }

  .contact-page-bg { background: linear-gradient(to bottom, var(--teal) 0, var(--teal) 62%, var(--white) 62%, var(--white) 100%); min-height: 100vh; padding-top: var(--nav-h); }
  .contact-title { color: var(--white); text-align:center; padding: 130px 24px 190px; }
  .contact-title h1 { font-size: clamp(2.2rem, 4vw, 3.7rem); font-weight: 500; line-height: 1.15; max-width: 720px; margin: 0 auto; }
  .contact-card-wrap { max-width: 1120px; margin: -105px auto 80px; padding: 0 24px; }
  .contact-card { display: grid; grid-template-columns: .95fr 2fr; background: #fbf6f1; box-shadow: 0 8px 22px rgba(0,0,0,.08); padding: 16px; gap: 36px; }
  .contact-info-panel { background: #c9dcd8; padding: 34px; color: #06483f; }
  .contact-info-panel h2 { font-size: 1.25rem; margin-bottom: 14px; }
  .contact-info-panel p { font-size: .9rem; line-height: 1.65; margin-bottom: 28px; }
  .contact-info-panel h3 { font-size: .95rem; margin: 22px 0 10px; }
  .contact-info-panel a { color:#06483f; font-size:.88rem; }
  .contact-form { padding: 44px 58px 28px 28px; }
  .contact-form-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 18px 16px; }
  .contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #ddd8d2; border-radius: 8px; background: transparent; padding: 14px 16px; font-family: 'DM Sans', sans-serif; font-size:.92rem; color: var(--text); }
  .contact-form textarea { min-height: 112px; resize: vertical; grid-column: 1 / -1; }
  .contact-form button { margin-top: 18px; background: var(--teal); color: var(--white); border:none; border-radius: 50px; padding: 13px 28px; font-weight: 600; cursor:pointer; }
  @media (max-width: 760px) { .contact-card, .contact-form-grid { grid-template-columns: 1fr; } .contact-form { padding: 24px; } .page-hero, .about-story { padding-left: 28px; padding-right: 28px; } }

  /* ── BOOKING PAGE ── */
  .booking-wrap { max-width: 900px; margin: 0 auto; padding: 52px 24px 80px; }

  .step-intro {
    background: var(--white); border-radius: 16px; padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07); margin-bottom: 28px;
    animation: fadeUp .5s ease both;
  }
  .step-intro h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 8px; color: var(--text); }
  .step-intro p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; font-weight: 300; }

  .step-entry { display: flex; gap: 12px; align-items: center; margin-top: 28px; }
  .step-entry input {
    flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 14px 18px; font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
    color: var(--text); background: var(--cream); outline: none; transition: border-color .2s;
  }
  .step-entry input:focus { border-color: var(--teal); }
  .btn-continue {
    background: var(--teal); color: var(--white); border: none; border-radius: 50px;
    padding: 14px 30px; font-size: 0.9rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
    cursor: pointer; white-space: nowrap; transition: background .2s, transform .15s;
  }
  .btn-continue:hover { background: var(--teal-light); transform: translateY(-1px); }

  .service-tabs-section { animation: fadeUp .5s .08s ease both; }
  .tabs-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
  .tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
  .tab {
    background: var(--white); border: 1.5px solid var(--border); border-radius: 50px;
    padding: 10px 22px; font-size: 0.875rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
    color: var(--muted); cursor: pointer; transition: all .2s;
  }
  .tab:hover { border-color: var(--teal); color: var(--teal); }
  .tab.tab--active { background: var(--teal); border-color: var(--teal); color: var(--white); }

  .panel { display: none; }
  .panel.panel--active { display: block; animation: fadeUp .35s ease both; }

  .form-card { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
  .form-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.45rem; margin-bottom: 8px; }
  .service-desc {
    color: var(--muted); font-size: 0.9rem; line-height: 1.65; font-weight: 300;
    margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
  }
  .service-desc strong { color: var(--text); font-weight: 600; }

  .field-group { margin-bottom: 22px; }
  .field-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text); margin-bottom: 10px; letter-spacing: 0.01em; }
  .field-sub { font-size: 0.78rem; color: var(--muted); font-weight: 400; margin-left: 6px; }

  .radio-cards { display: flex; gap: 10px; flex-wrap: wrap; }
  .radio-card {
    flex: 1; min-width: 130px; border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 14px 18px; cursor: pointer; transition: all .2s; position: relative;
  }
  .radio-card:hover { border-color: var(--teal); }
  .radio-card.card--selected { border-color: var(--teal) !important; background: var(--teal-pale) !important; }
  .radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
  .radio-card-label { font-size: 0.9rem; font-weight: 500; color: var(--text); display: block; margin-bottom: 2px; }
  .radio-card-sub { font-size: 0.78rem; color: var(--muted); font-weight: 300; }
  .popular-badge {
    position: absolute; top: -1px; right: 10px; background: var(--gold); color: var(--dark);
    font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 0 0 6px 6px; letter-spacing: 0.03em;
  }

  .checkbox-cards { display: flex; gap: 10px; flex-wrap: wrap; }
  .checkbox-card {
    border: 1.5px solid var(--border); border-radius: var(--radius); padding: 13px 18px;
    cursor: pointer; transition: all .2s; position: relative;
    display: flex; align-items: center; gap: 10px; min-width: 140px;
  }
  .checkbox-card:hover { border-color: var(--teal); }
  .checkbox-card.card--selected { border-color: var(--teal) !important; background: var(--teal-pale) !important; }
  .checkbox-card input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--teal); flex-shrink: 0; }
  .checkbox-card span { font-size: 0.9rem; font-weight: 500; }

  .day-pills { display: flex; gap: 8px; flex-wrap: wrap; }
  .day-pill {
    border: 1.5px solid var(--border); border-radius: 50px; padding: 9px 18px;
    cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 8px;
    font-size: 0.875rem; font-weight: 500; color: var(--text);
  }
  .day-pill:hover { border-color: var(--teal); }
  .day-pill.card--selected { border-color: var(--teal) !important; background: var(--teal-pale) !important; color: var(--teal); }
  .day-pill input { position: absolute; opacity: 0; width: 0; height: 0; }

  .date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .date-row label { display: flex; flex-direction: column; gap: 6px; }
  .date-row span { font-size: 0.82rem; font-weight: 600; color: var(--text); }
  .date-row input[type="date"], input[type="date"] {
    border: 1.5px solid var(--border); border-radius: var(--radius); padding: 12px 14px;
    font-size: 0.9rem; font-family: 'DM Sans', sans-serif; color: var(--text);
    background: var(--cream); outline: none; transition: border-color .2s; width: 100%;
  }
  .date-row input[type="date"]:focus { border-color: var(--teal); }

  .text-input {
    width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 13px 16px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
    color: var(--text); background: var(--cream); outline: none; transition: border-color .2s;
  }
  .text-input:focus { border-color: var(--teal); }
  textarea.text-input { min-height: 90px; resize: vertical; }

  .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .input-row .field-group { margin-bottom: 0; }

  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%236b6b68' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    background-color: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 12px 40px 12px 14px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
    color: var(--text); outline: none; cursor: pointer; transition: border-color .2s; width: 100%;
  }
  select:focus { border-color: var(--teal); }

  .window-details {
    background: var(--teal-pale); border: 1px solid rgba(30,95,82,0.2); border-radius: var(--radius);
    padding: 18px 20px; margin-top: 14px; font-size: 0.85rem; color: var(--teal); display: none;
  }
  .window-details.open { display: block; animation: fadeUp .25s ease; }
  .window-details ul { padding-left: 18px; margin: 8px 0; }
  .window-details li { margin-bottom: 4px; }
  .btn-text {
    background: none; border: none; cursor: pointer; color: var(--teal);
    font-size: 0.83rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
    padding: 0; text-decoration: underline; text-underline-offset: 3px;
  }

  .window-sub { display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; margin-top: 10px; }
  .window-sub .field-group { flex: 1; min-width: 160px; margin-bottom: 0; }

  .field-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

  .toggle-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; cursor: pointer; }
  .toggle-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--teal); flex-shrink: 0; }
  .toggle-row span { font-size: 0.9rem; font-weight: 500; }

  .terms-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
  .terms-row input { width: 16px; height: 16px; accent-color: var(--teal); flex-shrink: 0; margin-top: 2px; }
  .terms-row a { color: var(--teal); }

  .btn-submit {
    width: 100%; background: var(--teal); color: var(--white); border: none; border-radius: 50px;
    padding: 16px 28px; font-size: 1rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
    cursor: pointer; margin-top: 20px; transition: background .2s, transform .15s;
  }
  .btn-submit:hover { background: var(--teal-light); transform: translateY(-1px); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .form-message { padding: 14px 18px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; margin-top: 16px; animation: fadeUp .3s ease; }
  .form-message--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
  .form-message--error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

  .info-note {
    background: var(--teal-pale); border-left: 3px solid var(--teal);
    padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.875rem; color: var(--teal); line-height: 1.6; margin-bottom: 22px;
  }
  .info-note strong { font-weight: 600; }

  .footer-brand .logo-footer {
    font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--white);
    letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; display: block;
  }

  @media (max-width: 1024px) {
    nav { padding: 0 20px; }
    .nav-links, .nav-right { display: none; }
    .nav-toggle { display: flex; }
  }

  @media (max-width: 640px) {
    /* ── HERO ── */
    .hero-content { padding: 0 24px; max-width: 100%; }
    .hero-headline { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero-headline .rotating-word { min-width: unset; }
    .hero-sub br { display: none; }
    .hero-form {
      width: 100%;
      flex-direction: column;
      border-radius: var(--radius);
      overflow: hidden;
    }
    .hero-form input { padding: 14px 18px; border-bottom: 1px solid var(--border); }
    .hero-form .divider { display: none; }
    .hero-form button { border-radius: 0; padding: 16px; }

    /* ── INTRO ── */
    .intro {
      grid-template-columns: 1fr;
      padding: 48px 24px;
      gap: 32px;
    }
    .intro-img { max-height: 240px; }

    /* ── TRUST STRIP ── */
    .trust-strip { padding: 10px 24px; gap: 0; flex-direction: column; }
    .trust-strip span { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .trust-strip span:last-child { border-bottom: none; }

    /* ── SERVICES ── */
    .services { padding: 48px 24px; }
    .service-grid { grid-template-columns: 1fr; gap: 16px; }

    /* ── VALUES ── */
    .values { padding: 48px 24px; }
    .values-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; }

    /* ── FAQ ── */
    .faq {
      grid-template-columns: 1fr;
      padding: 48px 24px;
      gap: 36px;
    }

    /* ── CTA ── */
    .cta-section {
      flex-direction: column;
      padding: 48px 24px;
      align-items: flex-start;
      gap: 28px;
    }
    .cta-actions { flex-direction: column; width: 100%; }
    .btn-white, .btn-outline-white { text-align: center; width: 100%; box-sizing: border-box; }

    /* ── PAGE HERO (subpages) ── */
    .page-hero { padding: calc(var(--nav-h) + 40px) 24px 40px; }
    .page-hero::after { left: 24px; right: 24px; }

    /* ── BOOKING ── */
    .booking-wrap { padding: 32px 16px 60px; }
    .step-intro, .form-card { padding: 24px; }
    .step-entry { flex-direction: column; }
    .btn-continue { width: 100%; text-align: center; border-radius: var(--radius); }
    .input-row, .date-row { grid-template-columns: 1fr; }

    /* ── FAQ & PRICING PAGES ── */
    .faq-page-content { padding: 48px 24px; }
    .pricing-page { padding: 48px 24px; }
    .pricing-grid { grid-template-columns: 1fr; }

    /* ── FOOTER ── */
    footer { padding: 48px 24px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* ── PROMOTIONAL POPUP ── */
  .promo-overlay {
    position: fixed; bottom: 32px; right: 32px; z-index: 900;
    width: 300px;
    opacity: 0; pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .promo-overlay--visible {
    opacity: 1; pointer-events: auto;
    transform: translateY(0);
  }
  .promo-modal {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .promo-accent {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
  }
  .promo-close {
    position: absolute; top: 12px; right: 12px;
    background: none; border: none; cursor: pointer;
    color: var(--muted); padding: 4px;
    border-radius: 4px; line-height: 0;
    transition: color 0.2s, background 0.2s;
  }
  .promo-close:hover { color: var(--dark); background: var(--cream); }
  .promo-headline {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem; line-height: 1.3;
    color: var(--dark);
    margin-bottom: 10px;
    padding-right: 20px;
  }
  .promo-body {
    font-size: 0.875rem; line-height: 1.6;
    color: var(--muted);
    margin-bottom: 18px;
  }
  .promo-cta {
    display: block; text-align: center;
    background: var(--teal); color: var(--white);
    font-size: 0.875rem; font-weight: 600;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .promo-cta:hover { background: var(--teal-light); }

  @media (max-width: 480px) {
    .promo-overlay { bottom: 16px; right: 16px; left: 16px; width: auto; }
  }