    :root {
      --bg: #f6f8ff;
      --surface: #ffffff;
      --surface-soft: #eff3ff;
      --text: #4b5370;
      --text-strong: #252f4a;
      --accent: #8196c7;
      --accent-soft: rgba(129, 150, 199, 0.2);
      --line: rgba(89, 104, 147, 0.18);
      --radius: 18px;
      --shadow: 0 14px 38px rgba(67, 79, 120, 0.12);
      --container: min(1120px, 92vw);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      background:
        radial-gradient(1200px 500px at 90% -10%, rgba(171, 188, 236, 0.34), rgba(246, 248, 255, 0) 60%),
        radial-gradient(900px 420px at -10% 22%, rgba(188, 211, 241, 0.34), rgba(246, 248, 255, 0) 62%),
        linear-gradient(180deg, #f8faff 0%, #f4f7ff 100%);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: var(--radius);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .section {
      padding: 4.5rem 0;
    }

    .section-title {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: clamp(2rem, 4.8vw, 3.15rem);
      line-height: 1.1;
      margin-bottom: 1rem;
      letter-spacing: 0.01em;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: "✦";
      font-size: 0.7em;
      color: rgba(129, 150, 199, 0.68);
      margin-left: 0.35rem;
    }

    .section-subtitle {
      max-width: 56ch;
      font-size: 1.02rem;
      color: #5f6987;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.45rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .btn-primary {
      background: linear-gradient(135deg, #8da3d5, #7f95c9);
      color: #f8fbff;
      box-shadow: 0 10px 26px rgba(107, 126, 176, 0.35);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.7);
      color: #394468;
      border-color: rgba(129, 150, 199, 0.34);
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(246, 248, 255, 0.78);
      border-bottom: 1px solid rgba(129, 150, 199, 0.2);
    }

    .header-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.95rem;
      font-weight: 700;
      color: var(--text-strong);
      letter-spacing: 0.3px;
    }

    .nav-toggle {
      display: inline-flex;
      flex-direction: column;
      gap: 4px;
      background: transparent;
      border: 1px solid var(--line);
      padding: 0.52rem;
      border-radius: 10px;
    }

    .nav-toggle span {
      width: 18px;
      height: 2px;
      background: var(--text-strong);
      border-radius: 10px;
    }

    .site-nav {
      position: absolute;
      inset: 74px 0 auto;
      background: var(--surface);
      border-bottom: 1px solid var(--line);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
    }

    .site-nav.open {
      max-height: 350px;
    }

    .menu {
      list-style: none;
      display: grid;
      gap: 0.2rem;
      padding: 0.6rem 4vw 1rem;
    }

    .menu a {
      display: inline-block;
      padding: 0.62rem 0;
      color: var(--text-strong);
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .menu a:hover {
      color: #6b81b5;
    }

    .menu-item-has-dropdown {
      position: relative;
    }

    .menu-parent {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      width: 100%;
      border: none;
      background: transparent;
      color: var(--text-strong);
      font-weight: 500;
      font-size: 1rem;
      padding: 0.62rem 0;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
    }

    .menu-caret {
      font-size: 0.72rem;
      color: #6c7aa3;
      transition: transform 0.22s ease;
    }

    .menu-item-has-dropdown.open .menu-caret {
      transform: rotate(180deg);
    }

    .sub-menu {
      list-style: none;
      display: grid;
      gap: 0.1rem;
      padding: 0 0 0 0.8rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.24s ease;
    }

    .menu-item-has-dropdown.open .sub-menu {
      max-height: 420px;
    }

    .sub-menu a {
      font-size: 0.95rem;
      color: #5e6988;
      padding: 0.4rem 0;
    }

    .sub-menu a:hover {
      color: #6b81b5;
    }

    .header-cta {
      display: none;
    }

    .hero {
      padding: 3rem 0 2.5rem;
    }

    .hero-grid {
      display: grid;
      gap: 1.8rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.95rem;
      color: #6d7393;
      font-size: 0.87rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
    }

    .eyebrow::before {
      content: "";
      width: 2.2rem;
      height: 1px;
      background: var(--accent);
    }

    .hero h1 {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: clamp(2.1rem, 6.5vw, 4rem);
      line-height: 1.02;
      margin-bottom: 1.2rem;
      max-width: 18ch;
      text-wrap: balance;
    }

    .hero p {
      max-width: 52ch;
      font-size: 1.06rem;
      margin-bottom: 1.5rem;
      color: #5b6585;
    }

    .hero-grid > div:first-child {
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(129, 150, 199, 0.24);
      border-radius: 20px;
      padding: 1.2rem;
      box-shadow: 0 14px 32px rgba(78, 95, 143, 0.1);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .hero-visual {
      position: relative;
      isolation: isolate;
    }

    .hero-visual::before,
    .hero-visual::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      z-index: -1;
      filter: blur(3px);
    }

    .hero-visual::before {
      width: 210px;
      height: 210px;
      background: rgba(168, 185, 231, 0.5);
      top: -26px;
      right: -16px;
    }

    .hero-visual::after {
      width: 140px;
      height: 140px;
      background: rgba(186, 205, 238, 0.52);
      left: -20px;
      bottom: -18px;
    }

    .hero-visual img {
      object-fit: cover;
      aspect-ratio: 4/5;
      box-shadow: var(--shadow);
    }

    .services-layout {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .service-card {
      background: #fff;
      border: 1px solid rgba(129, 150, 199, 0.22);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 26px rgba(85, 102, 149, 0.12);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .service-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 34px rgba(85, 102, 149, 0.18);
    }

    .service-media {
      aspect-ratio: 4 / 4;
      overflow: hidden;
      border-bottom: 1px solid rgba(129, 150, 199, 0.22);
      background: linear-gradient(180deg, #f7faff, #edf3ff);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      transition: transform 0.35s ease;
    }

    .service-card:hover .service-media img {
      transform: scale(1.02);
    }

    .service-body {
      padding: 1rem 1rem 1.05rem;
    }

    .service-tag {
      display: inline-flex;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #6a79a4;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    .service-card h3 {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: 1.55rem;
      line-height: 1.1;
      margin-bottom: 0.35rem;
    }

    .service-card p {
      color: #55607f;
      font-size: 0.95rem;
      line-height: 1.55;
    }

    .trust-grid {
      margin-top: 1.4rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .trust-section .container {
      position: relative;
      isolation: isolate;
    }

    .trust-section .container::before {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: -1;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .trust-section .container::before {
      width: min(340px, 62vw);
      height: min(450px, 70vw);
      right: -20px;
      top: -90px;
      transform: rotate(33deg);
      background-image: url("../assets/img/decor-1.png");
    }

    .trust-card {
      background: linear-gradient(160deg, #ffffff, #f3f7ff);
      border: 1px solid rgba(129, 150, 199, 0.22);
      border-radius: 16px;
      padding: 1rem;
      box-shadow: 0 10px 24px rgba(84, 101, 148, 0.08);
    }

    .trust-card h3 {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: 1.45rem;
      margin-bottom: 0.35rem;
    }

    .trust-card ul {
      list-style: none;
      display: grid;
      gap: 0.35rem;
      margin-top: 0.55rem;
    }

    .trust-card li {
      position: relative;
      padding-left: 1rem;
      color: #55607f;
      font-size: 0.95rem;
    }

    .trust-card li::before {
      content: "✧";
      position: absolute;
      left: 0;
      top: 0;
      color: #7d90bf;
      font-size: 0.85rem;
    }

    .trust-note {
      margin-top: 1rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 255, 0.94));
      border: 1px solid rgba(129, 150, 199, 0.45);
      border-radius: 16px;
      padding: 1rem 1.1rem;
      color: #4b587f;
      font-size: 1rem;
      line-height: 1.65;
      font-weight: 600;
      box-shadow: 0 14px 30px rgba(85, 102, 149, 0.14);
      position: relative;
      overflow: hidden;
    }

    .trust-note::before {
      content: "✦";
      position: absolute;
      right: 12px;
      top: 8px;
      color: rgba(129, 150, 199, 0.55);
      font-size: 1.05rem;
    }

    .trust-note strong {
      color: #2f3f69;
      font-size: 1.06rem;
      font-weight: 700;
    }

    .about-wrap {
      margin-top: 1.35rem;
      background: var(--surface);
      border: 1px solid rgba(129, 150, 199, 0.2);
      border-radius: var(--radius);
      padding: 1.4rem 1.1rem;
      box-shadow: var(--shadow);
    }

    .about-wrap p + p {
      margin-top: 0.9rem;
    }

    .about-note {
      margin-top: 1rem;
      font-weight: 700;
      color: var(--text-strong);
    }

    .process-wrap {
      margin-top: 1.6rem;
      position: relative;
      padding: 1.2rem 0.2rem;
    }

    .process-wrap::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 46px;
      height: 1px;
      background: linear-gradient(90deg, rgba(129, 150, 199, 0.06), rgba(129, 150, 199, 0.54), rgba(129, 150, 199, 0.06));
      z-index: 0;
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.9rem;
      position: relative;
      z-index: 1;
    }

    .process-step {
      background: linear-gradient(160deg, #ffffff, #f2f6ff);
      border: 1px solid rgba(129, 150, 199, 0.2);
      border-radius: 16px;
      padding: 1.1rem 1rem;
      box-shadow: 0 10px 25px rgba(85, 102, 149, 0.1);
    }

    .process-thumb {
      margin-bottom: 0.7rem;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(129, 150, 199, 0.26);
      background: #eef2ff;
    }

    .process-thumb img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0;
    }

    .process-step strong {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 33px;
      height: 33px;
      border-radius: 50%;
      border: 1px solid rgba(129, 150, 199, 0.62);
      color: #60709d;
      font-size: 0.95rem;
      margin-bottom: 0.7rem;
      background: rgba(255, 255, 255, 0.92);
    }

    .process-step h3 {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: 1.45rem;
      margin-bottom: 0.35rem;
      line-height: 1.1;
    }

    .reviews-shell {
      margin-top: 1.8rem;
      position: relative;
      overflow: visible;
    }

    .reviews-viewport {
        overflow-x: hidden;
      padding: 0.35rem;
      margin: -0.35rem;
      border-radius: calc(var(--radius) + 6px);
    }

    .reviews-track {
      display: flex;
      gap: 1rem;
      transition: transform 0.42s ease;
      will-change: transform;
    }

    .review {
      min-width: calc(100% - 0px);
      flex: 0 0 calc(100% - 0px);
      background: var(--surface);
      border: 1px solid rgba(129, 150, 199, 0.22);
      border-radius: var(--radius);
      padding: 1.4rem 1.2rem;
      box-shadow: 0 9px 24px rgba(84, 101, 148, 0.12);
    }

    .review p {
      font-size: 1.01rem;
      color: #556180;
      margin-bottom: 1.1rem;
    }

    .review strong {
      color: var(--text-strong);
      font-weight: 700;
    }

    .slider-controls {
      margin-top: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
    }

    .slider-buttons {
      display: flex;
      gap: 0.55rem;
    }

    .slider-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(129, 150, 199, 0.3);
      background: rgba(255, 255, 255, 0.88);
      color: #4d5f8f;
      font-size: 1rem;
      cursor: pointer;
    }

    .slider-dots {
      display: flex;
      gap: 0.5rem;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: none;
      background: rgba(124, 138, 171, 0.35);
      cursor: pointer;
      padding: 0;
    }

    .dot.active {
      background: var(--accent);
      transform: scale(1.12);
    }

    .faq-shell {
      margin-top: 1.7rem;
      background: linear-gradient(155deg, rgba(255, 255, 255, 0.84), rgba(238, 243, 255, 0.7));
      border: 1px solid rgba(129, 150, 199, 0.22);
      border-radius: 20px;
      padding: 1rem;
      box-shadow: 0 14px 30px rgba(76, 94, 140, 0.1);
      display: grid;
      gap: 1rem;
    }

    .faq-intro h2 {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: clamp(2rem, 4.8vw, 3rem);
      line-height: 1.06;
      margin-bottom: 0.7rem;
    }

    .faq-intro p {
      color: #5b6585;
      max-width: 34ch;
    }

    .faq-list {
      display: grid;
      gap: 0.7rem;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(129, 150, 199, 0.25);
      border-radius: 14px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      border: none;
      background: transparent;
      padding: 0.9rem 0.95rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      text-align: left;
      color: var(--text-strong);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
    }

    .faq-question span {
      pointer-events: none;
    }

    .faq-icon {
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(129, 150, 199, 0.35);
      color: #556691;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      line-height: 1;
    }

    .faq-question[aria-expanded="true"] .faq-icon {
      background: rgba(129, 150, 199, 0.18);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.26s ease;
    }

    .faq-answer p {
      padding: 0 0.95rem 0.95rem;
      color: #55607f;
      font-size: 0.95rem;
      line-height: 1.58;
    }

    .footer {
      margin-top: 1rem;
      border-top: 1px solid rgba(129, 150, 199, 0.2);
      padding: 2.2rem 0 2.6rem;
      background: linear-gradient(180deg, rgba(246, 248, 255, 0) 0%, rgba(167, 184, 227, 0.16) 100%);
    }

    .footer-grid {
      display: grid;
      gap: 1.3rem;
    }

    .footer h3 {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: 1.45rem;
      margin-bottom: 0.5rem;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 0.4rem;
    }

    .contact-list a {
      text-decoration: underline;
      text-decoration-color: rgba(129, 150, 199, 0.66);
      text-underline-offset: 4px;
    }

    .copyright {
      margin-top: 1rem;
      font-size: 0.93rem;
      color: #6f7680;
    }

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

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    .booking-modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 120;
    }

    .booking-modal.open {
      display: grid;
      place-items: center;
    }

    .booking-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(24, 31, 53, 0.45);
      backdrop-filter: blur(3px);
    }

    .booking-dialog {
      position: relative;
      width: min(460px, 92vw);
      background: #fff;
      border: 1px solid rgba(129, 150, 199, 0.28);
      border-radius: 16px;
      padding: 1rem 1rem 1.1rem;
      box-shadow: 0 24px 50px rgba(53, 67, 100, 0.25);
      z-index: 1;
    }

    .booking-title {
      font-family: "Cormorant Garamond", serif;
      color: var(--text-strong);
      font-size: 1.85rem;
      line-height: 1.05;
      margin-bottom: 0.4rem;
    }

    .booking-text {
      color: #5b6585;
      font-size: 0.95rem;
      margin-bottom: 0.85rem;
    }

    .booking-close {
      position: absolute;
      right: 0.55rem;
      top: 0.5rem;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(129, 150, 199, 0.3);
      background: #fff;
      color: #4d5f8f;
      font-size: 1.1rem;
      cursor: pointer;
    }

    .booking-form {
      display: grid;
      gap: 0.6rem;
    }

    .booking-input {
      width: 100%;
      border: 1px solid rgba(129, 150, 199, 0.35);
      border-radius: 10px;
      background: #f9fbff;
      color: var(--text-strong);
      font-size: 0.95rem;
      padding: 0.72rem 0.82rem;
    }

    .booking-input:focus {
      outline: 2px solid rgba(129, 150, 199, 0.45);
      outline-offset: 1px;
      border-color: transparent;
    }

    .booking-success {
      margin-top: 0.45rem;
      color: #45628f;
      font-size: 0.92rem;
      min-height: 1.2em;
    }
    @media (min-width: 720px) {
      .hero {
        padding: 4.1rem 0 3.2rem;
      }

      .hero-grid > div:first-child {
        padding: 1.65rem;
      }

      .services-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about-wrap {
        padding: 2rem;
      }

      .review {
        padding: 1.6rem;
        min-width: calc((100% - 1rem) / 2);
        flex: 0 0 calc((100% - 1rem) / 2);
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
      }

      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-note {
        padding: 1.15rem 1.3rem;
      }

      .faq-shell {
        padding: 1.35rem;
      }
    }

    @media (min-width: 980px) {
      .nav-toggle {
        display: none;
      }

      .header-cta {
        display: inline-flex;
      }

      .site-nav {
        position: static;
        max-height: none;
        background: transparent;
        border: none;
        overflow: visible;
      }

      .menu {
        padding: 0;
        display: flex;
        align-items: center;
        gap: 1.4rem;
      }

      .menu a {
        padding: 0;
      }

      .menu-parent {
        width: auto;
        padding: 0;
      }

      .sub-menu {
        position: absolute;
        left: 0;
        top: calc(100% + 0.65rem);
        min-width: 220px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(129, 150, 199, 0.26);
        border-radius: 12px;
        box-shadow: 0 14px 28px rgba(70, 85, 127, 0.16);
        padding: 0.55rem 0.75rem;
        max-height: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(4px);
        transition: opacity 0.2s ease, transform 0.2s ease;
      }

      .menu-item-has-dropdown.open .sub-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .header-inner {
        gap: 1.7rem;
      }

      .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
      }

      .hero-grid > div:first-child {
        padding: 2rem;
      }

      .services-layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .review {
        min-width: calc((100% - 2rem) / 3);
        flex: 0 0 calc((100% - 2rem) / 3);
      }

      .trust-section .container::before {
        right: -8px;
        top: -120px;
      }

      .faq-shell {
        grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
        align-items: start;
        gap: 1.4rem;
      }
    }



.booking-decor {
  display: block;
  width: 100%;
  padding: 34px;
}

.footer-prices-link {
  margin-top: 0.6rem;
}

.footer-prices-link a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* unified header/nav behavior with index */
.site-header .header-cta {
  display: none !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0.9rem 1.45rem !important;
  font-size: 0.95rem !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.site-header .header-inner .btn {
  width: auto !important;
}

@media (min-width: 980px) {
  .site-header .header-cta {
    display: inline-flex !important;
  }
}
