﻿:root {
      --maroon: #b94700;
      --ruby: #f06418;
      --saffron: #ff8a00;
      --gold: #ffd166;
      --lotus: #ff6a3d;
      --teal: #047f8f;
      --green: #27865f;
      --indigo: #45368b;
      --ink: #24160f;
      --text: #50372a;
      --muted: #7c675b;
      --cream: #fff4e2;
      --paper: #fffdf7;
      --white: #ffffff;
      --line: rgba(185, 71, 0, 0.16);
      --shadow: 0 24px 70px rgba(134, 63, 10, 0.18);
      --radius: 8px;
      --section: clamp(66px, 8vw, 116px);
      --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      --font-display: "Fraunces", Georgia, "Times New Roman", serif;
      font-family: var(--font-body);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 9%, rgba(255, 138, 0, 0.32), transparent 24rem),
        radial-gradient(circle at 94% 7%, rgba(4, 127, 143, 0.22), transparent 25rem),
        linear-gradient(180deg, #fff8eb 0%, #fff0d9 34%, #fffdf8 100%);
      font-size: 0.97rem;
      line-height: 1.58;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.38;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(185, 71, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 71, 0, 0.04) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, #000, transparent 78%);
    }

    img,
    video {
      display: block;
      max-width: 100%;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    b,
    strong {
      font-weight: 600;
    }

    .page-shell {
      overflow: hidden;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    .top-strip {
      color: #fff;
      background: #732e04;
      font-size: 0.82rem;
      border-bottom: 1px solid rgba(255, 138, 0, 0.28);
    }

    .top-strip__inner {
      min-height: 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .top-strip__links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-weight: 600;
    }

    .top-strip__item {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 32px;
      color: rgba(255, 255, 255, 0.95);
      white-space: nowrap;
      font-weight: 500;
    }

    .top-strip__item .icon {
      color: var(--gold);
    }

    .top-strip__item .icon,
    .top-strip__social .icon {
      width: 17px;
      height: 17px;
      flex: 0 0 17px;
      fill: currentColor;
    }

    .top-strip__socials {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .top-strip__social {
      width: 32px;
      height: 32px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgb(196 79 0);
      border-radius: 50%;
      color: #fff;
      background: rgba(255, 138, 0, 0.1);
      transition: transform 180ms ease, background 180ms ease;
    }

    .top-strip__social:hover {
      transform: translateY(-2px);
      color: #fff;
      background: rgba(255, 138, 0, 0.28);
    }

    .site-header {
      position: sticky;
      z-index: 80;
      top: 0;
      border-bottom: 1px solid rgba(185, 71, 0, 0.13);
      background: rgba(255, 253, 247, 0.94);
      box-shadow: 0 18px 46px rgba(134, 63, 10, 0.1);
      backdrop-filter: blur(20px);
    }

    .nav {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 250px;
    }

    .brand__mark {
      width: 160px;
      height: 120px;
      display: grid;
      place-items: center;
      overflow: hidden;
      
      
    }

    .brand__mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 5px;
    }

    .brand__text strong {
      display: block;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(0.96rem, 1.4vw, 1.18rem);
      line-height: 1;
      letter-spacing: 0;
    }

    .brand__text span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.67rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav__links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: #4b2d1c;
      font-size: 0.84rem;
      font-weight: 600;
      margin-left: auto;
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(185, 71, 0, 0.18);
      border-radius: 14px;
      color: var(--maroon);
      background: #fff;
      box-shadow: 0 12px 26px rgba(134, 63, 10, 0.1);
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
    }

    .nav-toggle:hover {
      transform: translateY(-1px);
      color: #fff;
      background: linear-gradient(135deg, var(--maroon), var(--ruby));
      box-shadow: 0 16px 30px rgba(185, 71, 0, 0.22);
    }

    .nav-toggle__icon {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .nav-toggle__icon--close {
      display: none;
    }

    .site-header.nav-open .nav-toggle__icon--menu {
      display: none;
    }

    .site-header.nav-open .nav-toggle__icon--close {
      display: block;
    }

    .nav__links > a,
    .nav-dropdown__trigger {
      position: relative;
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 10px 11px;
      border-radius: var(--radius);
      white-space: nowrap;
      transition: color 180ms ease, background 180ms ease;
    }

    .nav__links > a::after,
    .nav-dropdown__trigger::after {
      content: "";
      position: absolute;
      left: 11px;
      right: 11px;
      bottom: 6px;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      background: var(--saffron);
      transition: transform 180ms ease;
    }

    .nav__links > a:hover,
    .nav-dropdown:hover .nav-dropdown__trigger,
    .nav-dropdown:focus-within .nav-dropdown__trigger {
      color: var(--maroon);
      background: rgba(255, 138, 0, 0.1);
    }

    .nav__links > a:hover::after,
    .nav-dropdown:hover .nav-dropdown__trigger::after,
    .nav-dropdown:focus-within .nav-dropdown__trigger::after {
      transform: scaleX(1);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown__icon {
      width: 17px;
      height: 17px;
      fill: currentColor;
      transition: transform 180ms ease;
    }

    .nav-dropdown:hover .nav-dropdown__icon,
    .nav-dropdown:focus-within .nav-dropdown__icon {
      transform: rotate(180deg);
    }

    .nav-dropdown__menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      width: 260px;
      padding: 10px;
      display: grid;
      gap: 4px;
      border: 1px solid rgba(185, 71, 0, 0.16);
      border-radius: var(--radius);
      background: #fffdf7;
      box-shadow: 0 24px 60px rgba(70, 35, 12, 0.18);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 10px);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-dropdown__menu::before {
      content: "";
      position: absolute;
      left: 50%;
      top: -7px;
      width: 14px;
      height: 14px;
      border-left: 1px solid rgba(185, 71, 0, 0.16);
      border-top: 1px solid rgba(185, 71, 0, 0.16);
      background: #fffdf7;
      transform: translateX(-50%) rotate(45deg);
    }

    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .nav-dropdown__menu a {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      min-height: 40px;
      padding: 9px 12px;
      border-radius: 6px;
      color: #4b2d1c;
      font-size: 0.9rem;
      font-weight: 600;
      transition: color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    .nav-dropdown__menu a:hover {
      color: var(--maroon);
      background: rgba(255, 138, 0, 0.12);
      transform: translateX(3px);
    }

    .nav__book {
      min-width: 130px;
      min-height: 50px;
      border: 1px solid rgba(255, 255, 255, 0.32);
      box-shadow: 0 16px 32px rgba(185, 71, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 12px 18px;
      border: 0;
      border-radius: var(--radius);
      font-weight: 700;
      line-height: 1.15;
      cursor: pointer;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

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

    .btn--primary {
      color: #fff;
      background: linear-gradient(135deg, var(--maroon), var(--ruby));
      box-shadow: 0 14px 26px rgba(185, 71, 0, 0.24);
    }

    .btn--secondary {
      color: var(--maroon);
      background: #fff;
      border: 1px solid rgba(185, 71, 0, 0.18);
    }

    .btn--gold {
      color: #351722;
      background: linear-gradient(135deg, var(--gold), var(--saffron));
      box-shadow: 0 16px 30px rgba(247, 148, 29, 0.26);
    }

    .hero {
      position: relative;
      min-height: clamp(640px, calc(100svh - 126px), 760px);
      isolation: isolate;
      color: #16110f;
      overflow: hidden;
      background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.6) 0 8%, transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(255, 160, 66, 0.32) 0 10%, transparent 34%),
        linear-gradient(135deg, #fffdf9 0%, #fff4e6 28%, #ffe1bd 52%, #ffb76f 78%, #e35f00 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(90deg, rgb(96 40 1) 0%, rgb(196 79 0) 22%, rgb(196 79 0) 40%, rgb(131 91 42 / 24%) 58%, rgb(177 74 0 / 2%) 74%, rgb(60 25 7) 100%);
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-particles {
      position: absolute;
      inset: -8%;
      z-index: 1;
      pointer-events: none;
      opacity: 0.72;
      background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1.6px, transparent 2.2px),
        radial-gradient(circle, rgba(255, 182, 84, 0.85) 0 1.1px, transparent 1.8px),
        radial-gradient(circle, rgba(255, 138, 0, 0.28) 0 2px, transparent 3.6px);
      background-size: 156px 156px, 112px 112px, 248px 248px;
      background-position: 0 0, 36px 50px, 74px 20px;
      animation: heroParticles 18s linear infinite;
      mix-blend-mode: screen;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: -18%;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.22) 46%, transparent 56%),
        radial-gradient(circle at 78% 76%, rgba(255, 120, 0, 0.2), transparent 34%),
        radial-gradient(circle at 22% 78%, rgba(255, 255, 255, 0.22), transparent 26%);
      background-size: 180% 180%, 100% 100%, 100% 100%;
      mix-blend-mode: screen;
      animation: heroGlowSweep 16s ease-in-out infinite alternate;
      opacity: 0.9;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 780ms ease;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center right;
      transform: scale(1.06);
      transition: transform 5200ms ease, filter 5200ms ease;
      filter: saturate(1.12) contrast(1.06) brightness(0.95);
    }

    .hero-slide.is-active {
      opacity: 1;
    }

    .hero-slide.is-active img {
      transform: scale(1);
      filter: saturate(1.08) contrast(1.02) brightness(0.98);
    }

    .hero__inner {
      position: relative;
      z-index: 2;
      min-height: clamp(640px, calc(100svh - 126px), 760px);
      padding: clamp(46px, 5vw, 72px) 0 clamp(38px, 4vw, 56px);
      display: flex;
      align-items: center;
    }

    .hero > .container {
      width: min(1320px, calc(100% - 24px));
    }

    .hero__inner--single {
      justify-content: flex-start;
    }

    .hero__content {
      position: relative;
      width: min(650px, 100%);
      min-height: auto;
      align-content: center;
      z-index: 2;
      padding: clamp(22px, 3vw, 34px);
      border: 1px solid rgba(255, 255, 255, 0.58);
      border-radius: 34px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 238, 0.78));
      box-shadow:
        0 26px 60px rgba(102, 46, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(16px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 16px;
      color: var(--teal);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 38px;
      height: 3px;
      background: var(--saffron);
    }

    .hero .eyebrow {
      color: var(--maroon);
    }

    .hero-copy {
      display: none;
      opacity: 0;
    }

    .hero-copy.is-active {
      display: block;
      animation: heroCopyIn 560ms ease both;
      opacity: 1;
    }

    .hero-copy.is-active .eyebrow {
      animation: heroElementRise 620ms ease 40ms both;
    }

    .hero-copy.is-active h1 {
      animation: heroElementRise 680ms ease 110ms both;
    }

    .hero-copy.is-active .hero__subtitle {
      animation: heroElementRise 680ms ease 180ms both;
    }

    .hero-copy.is-active .hero__lead {
      animation: heroElementRise 720ms ease 240ms both;
    }

    .hero-copy.is-active .hero-trust {
      animation: heroElementRise 760ms ease 310ms both;
    }

    .hero-copy.is-active .hero__actions,
    .hero__content .slider-dots {
      animation: heroElementRise 760ms ease 380ms both;
    }

    .hero h1 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2.85rem, 5vw, 3.2rem);
      line-height: 0.95;
      letter-spacing: 0;
      color: #1d1410;
      text-shadow: 0 10px 24px rgba(255, 255, 255, 0.62);
    }

    .hero h1 span {
      display: block;
      color: #c44f00;
      text-shadow: 0 10px 20px rgba(196, 79, 0, 0.14);
    }

    .hero__subtitle {
      margin: 16px 0 0;
      color: #7b3200;
      font-size: clamp(0.96rem, 1.25vw, 1.08rem);
      font-weight: 700;
    }

    .hero__lead {
      max-width: 520px;
      margin: 12px 0 0;
      color: #4d392f;
      font-size: clamp(0.95rem, 1.15vw, 1.05rem);
      line-height: 1.6;
    }

    .hero-trust {
      width: fit-content;
      max-width: 100%;
      margin-top: 22px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-trust__avatars {
      display: flex;
      align-items: center;
    }

    .hero-trust__avatars span {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-left: -8px;
      border: 2px solid #fff7e9;
      border-radius: 50%;
      color: #fff;
      background: #fff;
      box-shadow: 0 8px 18px rgba(134, 63, 10, 0.18);
      font-size: 0.72rem;
      font-weight: 700;
      overflow: hidden;
    }

    .hero-trust__avatars span:first-child {
      margin-left: 0;
    }

    .hero-trust__avatars img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-trust strong {
      display: block;
      color: #1f140e;
      line-height: 1.1;
      font-weight: 700;
    }

    .hero-trust small {
      display: block;
      margin-top: 3px;
      color: #6b5042;
      font-size: 0.74rem;
      line-height: 1.3;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    .hero__actions .btn {
      min-width: 164px;
    }

    .hero__actions .btn--gold {
      box-shadow: 0 18px 34px rgba(247, 148, 29, 0.3);
      animation: heroButtonGlow 3.8s ease-in-out infinite;
    }

    .hero__actions .btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 0 24%, rgba(255, 255, 255, 0.54) 38%, transparent 52%);
      transform: translateX(-140%);
      transition: transform 520ms ease;
      z-index: -1;
    }

    .hero__actions .btn:hover::before,
    .hero__actions .btn:focus-visible::before {
      transform: translateX(140%);
    }

    .hero__actions .btn--secondary {
      border-color: rgba(196, 79, 0, 0.22);
      box-shadow: 0 10px 22px rgba(74, 35, 12, 0.08);
    }

    .slider-dots {
      display: flex;
      gap: 10px;
      margin-top: 26px;
    }

    .slider-dot {
      width: 36px;
      height: 7px;
      padding: 0;
      border: 0;
      border-radius: 99px;
      background: rgba(196, 79, 0, 0.18);
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease, width 180ms ease;
    }

    .slider-dot.is-active {
      width: 54px;
      background: linear-gradient(135deg, #c44f00, #ff8f1f);
      box-shadow: 0 8px 18px rgba(196, 79, 0, 0.25);
    }

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

    .hero-arrow {
      position: absolute;
      top: 50%;
      z-index: 6;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(185, 71, 0, 0.2);
      border-radius: 50%;
      color: var(--maroon);
      background: rgba(255, 250, 244, 0.8);
      box-shadow: 0 14px 34px rgba(134, 63, 10, 0.16);
      backdrop-filter: blur(10px);
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-50%) scale(0.92);
      transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
    }

    .hero:hover .hero-arrow,
    .hero:focus-within .hero-arrow {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(-50%) scale(1);
    }

    .hero-arrow:hover {
      color: #fff;
      background: linear-gradient(135deg, var(--maroon), var(--ruby));
      transform: translateY(-50%) scale(1.06);
    }

    .hero-arrow svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    .hero-arrow--prev {
      left: 20px;
    }

    .hero-arrow--next {
      right: 20px;
    }

    .section {
      padding: var(--section) 0;
    }

    .section--paper {
      background: rgba(255, 255, 255, 0.74);
    }

    .section--deep {
      color: #fff;
      background:
        linear-gradient(135deg, rgba(185, 71, 0, 0.95), rgba(166, 72, 10, 0.88), rgba(12, 91, 95, 0.9)),
        url("assets/img/direction-of-vastu-chakra.webp") center / cover no-repeat;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
      gap: clamp(20px, 4vw, 56px);
      align-items: end;
      margin-bottom: 38px;
    }

    .section-head h2,
    .consultant-copy h2,
    .contact-copy h2 {
      margin: 0;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.95rem, 4.25vw, 3rem);
      line-height: 1;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .section--deep .section-head h2,
    .section--deep .section-head p,
    .section--deep .eyebrow {
      color: #fff;
    }

    .counter-band {
      position: relative;
      z-index: 2;
      margin-top: 0;
      padding: clamp(54px, 6vw, 86px) 0;
      background:
        radial-gradient(circle at top left, rgba(255, 168, 74, 0.16) 0 12%, transparent 42%),
        radial-gradient(circle at bottom right, rgba(196, 79, 0, 0.08) 0 12%, transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
      border-top: 1px solid rgba(185, 71, 0, 0.08);
      border-bottom: 1px solid rgba(185, 71, 0, 0.08);
      overflow: hidden;
      
    }

    .counter-band::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35)),
        radial-gradient(circle at 15% 20%, rgba(255, 167, 56, 0.18), transparent 28%),
        radial-gradient(circle at 78% 38%, rgba(196, 79, 0, 0.1), transparent 24%);
      opacity: 0.95;
    }

    .counter-band .container {
      position: relative;
      z-index: 1;
    }

    .counter-band__header {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
      gap: 20px;
      align-items: end;
      margin-bottom: 28px;
    }

    .counter-band__header h2 {
      margin: 0;
      color: #1d1410;
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 2.5rem);
      line-height: 1;
      letter-spacing: 0;
    }

    .counter-band__header p {
      margin: 0;
      color: #6a5143;
      font-size: 0.92rem;
      line-height: 1.65;
      font-weight: 600;
    }

    .counter-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .counter-grid::before {
      content: none;
    }

    .counter-item {
      position: relative;
      min-height: 240px;
      padding: 28px 24px 26px;
      overflow: hidden;
      border-radius: 24px;
      color: var(--ink);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 240, 0.96));
      border: 1px solid rgba(185, 71, 0, 0.12);
      box-shadow: 0 14px 34px rgba(74, 35, 10, 0.08);
      transform: translateY(22px) scale(0.985);
      opacity: 0;
      transition: transform 520ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, opacity 520ms ease;
      transition-delay: var(--counter-delay, 0ms);
    }

    .counter-item::after {
      content: "";
      position: absolute;
      right: -30px;
      bottom: -38px;
      width: 122px;
      aspect-ratio: 1;
      border: 1px solid rgba(255, 138, 0, 0.22);
      border-radius: 50%;
      opacity: 0.4;
    }

    .counter-item:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 138, 0, 0.26);
      background: #fff;
      box-shadow: 0 24px 50px rgba(134, 63, 10, 0.14);
    }

    .counter-item__icon {
      width: 60px;
      height: 60px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      color: var(--saffron);
      background: linear-gradient(135deg, #fff, #fff3e2);
      border: 1px solid rgba(255, 138, 0, 0.18);
      border-radius: 50%;
      box-shadow: 0 12px 28px rgba(185, 71, 0, 0.08);
      transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
    }

    .counter-item__icon svg {
      width: 27px;
      height: 27px;
      fill: currentColor;
    }

    .counter-item:hover .counter-item__icon {
      color: #fff;
      background: linear-gradient(135deg, #c44f00, #ff8f1f);
      box-shadow: 0 18px 36px rgba(255, 138, 0, 0.24);
      transform: translateY(-6px) rotate(-6deg) scale(1.05);
    }

    .counter-item strong {
      display: flex;
      align-items: baseline;
      gap: 4px;
      color: #1d1410;
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.7vw, 2.5rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .counter-item strong em {
      color: #c44f00;
      font-family: var(--font-body);
      font-size: 0.44em;
      font-style: normal;
      font-weight: 700;
      text-transform: uppercase;
    }

    .counter-item__title {
      display: block;
      margin-top: 10px;
      color: #241711;
      font-size: 0.94rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .counter-item__text {
      display: block;
      margin-top: 8px;
      color: #6c5244;
      font-size: 0.86rem;
      line-height: 1.5;
      font-weight: 500;
    }

    .counter.counted {
      animation: counterNumberPop 520ms ease both;
    }

    .counter-band.is-visible .counter-item {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .counter-band.is-visible .counter-item:nth-child(1) {
      transition-delay: 0ms;
    }

    .counter-band.is-visible .counter-item:nth-child(2) {
      transition-delay: 90ms;
    }

    .counter-band.is-visible .counter-item:nth-child(3) {
      transition-delay: 180ms;
    }

    .counter-band.is-visible .counter-item:nth-child(4) {
      transition-delay: 270ms;
    }

    .counter-band.is-visible .counter-item__icon {
      animation: counterIconPop 720ms ease both;
    }

    .service-showcase {
      margin-top: 26px;
    }

    .service-showcase__toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 28px;
    }

    .service-showcase__toolbar--centered {
      justify-content: center;
    }

    .service-tabs {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 7px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(36, 22, 15, 0.08);
      box-shadow: 0 14px 30px rgba(64, 34, 11, 0.06);
    }

    .service-tab {
      appearance: none;
      border: 0;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 50px;
      padding: 11px 16px;
      border-radius: 14px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      font: inherit;
      font-weight: 700;
      transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
    }

    .service-tab:hover {
      color: var(--ink);
      transform: translateY(-1px);
    }

    .service-tab.is-active {
      color: #fff;
      background: linear-gradient(135deg, #8f3400 0%, var(--maroon) 45%, var(--lotus) 100%);
      box-shadow: 0 14px 28px rgba(126, 39, 0, 0.24);
    }

    .service-tab__label {
      font-size: 0.93rem;
      letter-spacing: 0.01em;
    }

    .service-tab__count {
      min-width: 34px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 0.79rem;
      line-height: 1;
      text-align: center;
    }

    .service-tab:not(.is-active) .service-tab__count {
      background: rgba(255, 138, 0, 0.12);
      border-color: rgba(185, 71, 0, 0.08);
      color: var(--maroon);
    }

    .service-tab:focus-visible,
    .service-card__button:focus-visible,
    .service-card__media:focus-visible,
    .service-card__body h3 a:focus-visible {
      outline: 2px solid rgba(255, 138, 0, 0.5);
      outline-offset: 3px;
    }

    .service-panels {
      position: relative;
    }

    .service-panel {
      animation: servicePanelRise 280ms ease both;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .service-card {
      position: relative;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 22px;
      border: 1px solid rgba(26, 18, 12, 0.08);
      background: #fff;
      box-shadow:
        0 14px 28px rgba(58, 30, 10, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .service-card::after {
      content: none;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(185, 71, 0, 0.14);
      box-shadow:
        0 24px 44px rgba(96, 44, 11, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .service-card__media {
      position: relative;
      display: block;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: transparent;
      text-decoration: none;
    }

    .service-card__media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(19, 14, 11, 0.02) 0%, rgba(19, 14, 11, 0.16) 100%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 220ms ease;
    }

    .service-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      padding: 0;
      transition: transform 460ms ease, filter 460ms ease;
    }

    .service-card:hover .service-card__media img {
      transform: scale(1.1);
      filter: saturate(1.04) contrast(1.02);
    }

    .service-card:hover .service-card__media::after {
      opacity: 1;
    }

    .service-card__button svg,
    .service-card__hover-button svg {
      width: 16px;
      height: 16px;
      flex: none;
    }

    .service-card__hover-action {
      position: absolute;
      inset: auto 18px 18px;
      z-index: 3;
      margin: 0;
      opacity: 0;
      transform: translateY(18px);
      pointer-events: none;
      transition: opacity 220ms ease, transform 220ms ease;
    }

    .service-card:hover .service-card__hover-action,
    .service-card:focus-within .service-card__hover-action {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .service-card__hover-button {
      appearance: none;
      width: 100%;
      min-height: 46px;
      border: 0;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 18px;
      color: #fff;
      cursor: pointer;
      background: linear-gradient(135deg, #18120e 0%, #3d2412 100%);
      box-shadow: 0 18px 28px rgba(17, 10, 6, 0.24);
      font: inherit;
      font-size: 0.83rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .service-card__hover-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 34px rgba(17, 10, 6, 0.3);
      background: linear-gradient(135deg, #8f3400 0%, #b94700 100%);
    }

    .service-card__body {
      position: relative;
      z-index: 1;
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 12px;
      padding: 18px 18px 22px;
    }

    .service-card__body h3 {
      margin: 0;
      font-size: 1.02rem;
      line-height: 1.35;
    }

    .service-card__body h3 a {
      color: var(--ink);
      text-decoration: none;
      transition: color 180ms ease;
    }

    .service-card__body h3 a:hover {
      color: var(--maroon);
    }

    .service-card__body p {
      margin: 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .service-card__rating {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-size: 0.82rem;
      font-weight: 600;
    }

    .service-card__rating small {
      color: var(--muted);
      font-size: 0.8em;
    }

    .service-card__stars {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      color: #d9cdc3;
    }

    .service-card__stars svg {
      width: 14px;
      height: 14px;
      flex: none;
    }

    .service-card__stars .is-filled {
      color: #f4b63d;
    }

    .service-card__meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .service-card__meta-item {
      padding: 12px 13px;
      border-radius: 14px;
      border: 1px solid rgba(24, 17, 13, 0.08);
      background: #faf6f1;
    }

    .service-card__meta-item span {
      display: block;
      margin-bottom: 4px;
      color: #9b8474;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .service-card__meta-item strong {
      color: var(--ink);
      font-size: 0.92rem;
    }

    .service-card__actions {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .service-card__actions > :only-child {
      width: 100%;
    }

    .service-card__actions--product {
      margin-top: 4px;
    }

    .service-card--service-catalog .service-card__actions .service-card__button {
      flex: 1 1 calc(50% - 5px);
    }

    .service-card__button {
      appearance: none;
      width: 100%;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      cursor: pointer;
      font: inherit;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-decoration: none;
      transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .service-card__button--primary {
      color: #fff;
      background: linear-gradient(135deg, var(--saffron) 0%, var(--ruby) 52%, var(--maroon) 100%);
      box-shadow: 0 12px 24px rgba(185, 71, 0, 0.2);
    }

    .service-card__button--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(185, 71, 0, 0.28);
    }

    .service-card__button--secondary {
      color: var(--ink);
      background: #fff;
      border-color: rgba(24, 17, 13, 0.1);
      box-shadow: 0 8px 18px rgba(24, 17, 13, 0.05);
    }

    .service-card__button--secondary:hover {
      transform: translateY(-2px);
      color: var(--maroon);
      border-color: rgba(255, 138, 0, 0.26);
      box-shadow: 0 18px 28px rgba(24, 17, 13, 0.1);
    }

    @keyframes servicePanelRise {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .abcd-section {
      background: #fff;
    }

    .abcd-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .abcd-card {
      position: relative;
      min-height: 240px;
      padding: 26px 24px 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 22px;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 236, 0.92));
      box-shadow:
        0 16px 36px rgba(74, 35, 10, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
    }

    .abcd-card:hover {
      transform: translateY(-7px);
      box-shadow:
        0 26px 50px rgba(134, 63, 10, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
      border-color: rgba(255, 255, 255, 0.45);
    }

    .abcd-card::before {
      content: none;
    }

    .abcd-card::after {
      content: "";
      position: absolute;
      right: -26px;
      bottom: -38px;
      width: 130px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 138, 0, 0.18), rgba(255, 138, 0, 0.04) 56%, transparent 70%);
      opacity: 0.7;
      transform: scale(0.9);
      transition: transform 240ms ease, opacity 240ms ease;
    }

    .abcd-card:hover::after {
      opacity: 1;
      transform: scale(1.05);
    }

    .abcd-card__mark {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--accent, var(--saffron)), color-mix(in srgb, var(--accent, var(--saffron)) 55%, #fff));
      font-family: var(--font-display);
      font-size: 1.55rem;
      font-weight: 700;
      box-shadow: 0 14px 26px rgba(226, 99, 14, 0.22);
      transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .abcd-card:hover .abcd-card__mark {
      transform: translateY(-4px) rotate(-4deg);
      box-shadow: 0 18px 30px rgba(226, 99, 14, 0.26);
    }

    .abcd-card h3 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 1.15rem;
      line-height: 1.2;
    }

    .abcd-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.65;
    }

    .abcd-card:nth-child(1) {
      --accent: #c45802;
      background: linear-gradient(160deg, #fffaf5 0%, #ffe8d5 100%);
    }

    .abcd-card:nth-child(2) {
      --accent: #0f8a8f;
      background: linear-gradient(160deg, #f7fffd 0%, #dff4ef 100%);
    }

    .abcd-card:nth-child(3) {
      --accent: #b94700;
      background: linear-gradient(160deg, #fff9f8 0%, #f9e1d9 100%);
    }

    .abcd-card:nth-child(4) {
      --accent: #b06c00;
      background: linear-gradient(160deg, #fff9ec 0%, #fdeabf 100%);
    }

    .abcd-card:nth-child(1) .abcd-card__mark {
      background: linear-gradient(135deg, #c45802, #ff9b45);
    }

    .abcd-card:nth-child(2) .abcd-card__mark {
      background: linear-gradient(135deg, #0f8a8f, #49c7be);
    }

    .abcd-card:nth-child(3) .abcd-card__mark {
      background: linear-gradient(135deg, #b94700, #ff7a59);
    }

    .abcd-card:nth-child(4) .abcd-card__mark {
      background: linear-gradient(135deg, #b06c00, #f4b63d);
    }

    .consultant-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(255, 138, 0, 0.09), transparent 26%),
        radial-gradient(circle at 92% 10%, rgba(185, 71, 0, 0.06), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
            background-image: url(./../img/vastu-chakra.gif);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 30%;
    }

    .consultant-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.6), transparent 42%),
        radial-gradient(circle at 18% 80%, rgba(255, 122, 24, 0.08), transparent 18%);
      opacity: 0.9;
    }

    .consultant-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
      gap: clamp(28px, 4.5vw, 64px);
      align-items: stretch;
    }

    .consultant-media {
      position: relative;
      min-height: 540px;
      opacity: 0;
      transform: translateX(-18px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

    .consultant-frame {
      position: absolute;
      inset: 0;
      overflow: hidden;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 30px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 234, 0.92));
      box-shadow:
        0 30px 70px rgba(74, 35, 10, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .consultant-frame::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 22px;
      width: 82px;
      height: 82px;
      border-left: 4px solid rgba(255, 138, 0, 0.55);
      border-top: 4px solid rgba(255, 138, 0, 0.55);
      border-radius: 24px 0 0 0;
      opacity: 0.8;
    }

    .consultant-photo {
      position: absolute;
      inset: 16px;
      overflow: hidden;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 245, 234, 0.1)),
        #fff7ef;
      box-shadow: 0 18px 42px rgba(74, 35, 10, 0.12);
    }

    .consultant-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%),
        radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.28), transparent 20%);
      pointer-events: none;
    }

    .consultant-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      transform: none;
    }

    .consultant-gridline {
      display: none;
    }

    .consultant-ring {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      border: 1px solid rgba(255, 138, 0, 0.18);
      box-shadow: inset 0 0 0 1px rgba(255, 138, 0, 0.05);
      animation: consultantFloat 7s ease-in-out infinite;
    }

    .consultant-ring--one {
      top: 42px;
      right: 34px;
      width: 132px;
      height: 132px;
      opacity: 0.75;
    }

    .consultant-ring--two {
      right: 68px;
      bottom: 42px;
      width: 82px;
      height: 82px;
      opacity: 0.45;
      animation-delay: -2s;
    }

    .consultant-badge,
    .consultant-contact {
      position: absolute;
      z-index: 12;
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid rgba(185, 71, 0, 0.14);
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 18px 38px rgba(74, 35, 10, 0.1);
      backdrop-filter: blur(12px);
      opacity: 0;
      transform: translateY(14px) scale(0.98);
    }

    .consultant-badge {
      min-width: 148px;
      padding: 14px 16px;
    }

    .consultant-badge span {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 14px;
      background: var(--saffron);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 10px 22px rgba(226, 99, 14, 0.32);
    }

    .consultant-badge strong,
    .consultant-contact strong {
      display: block;
      color: var(--ink);
      font-size: 0.9rem;
      line-height: 1.2;
    }

    .consultant-contact div {
      display: grid;
      gap: 2px;
    }

    .consultant-badge--experience {
      left: 46px;
      bottom: 24px;
    }

    .consultant-badge--awards {
      right: 38px;
      bottom: 24px;
    }

    .consultant-contact {
      min-width: 196px;
      padding: 13px 16px;
      color: inherit;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
      animation: consultantWave 5.4s ease-in-out infinite;
    }

    .consultant-contact--call {
      left: 24px;
      top: 24px;
      animation-duration: 2.9s;
      animation-delay: -1.4s;
    }

    .consultant-contact--whatsapp {
      right: 24px;
      bottom: 24px;
      animation-duration: 2.6s;
      animation-delay: -2.2s;
    }

    .consultant-contact:hover {
      border-color: rgba(255, 138, 0, 0.28);
      box-shadow: 0 24px 48px rgba(134, 63, 10, 0.16);
    }

    .consultant-contact span {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: rgba(255, 122, 24, 0.12);
      color: var(--saffron);
    }

    .consultant-contact svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .consultant-contact small {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.78rem;
    }

    .consultant-copy {
      max-width: 650px;
    }

    .consultant-copy p {
      margin: 18px 0 0;
      color: var(--text);
      font-size: 0.96rem;
      line-height: 1.68;
    }

    .consultant-lead {
      color: var(--ink);
      font-weight: 600;
      font-size: 1rem;
    }

    .consultant-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 24px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 600ms ease, transform 600ms ease;
    }

    .consultant-actions .btn {
      min-width: 190px;
      box-shadow: 0 16px 34px rgba(134, 63, 10, 0.12);
    }

    .consultant-actions .btn--gold {
      animation: consultantPulse 3.6s ease-in-out infinite;
    }

    .consultant-footnote {
      margin-top: 14px;
      color: #775a4c;
      font-size: 0.84rem;
      line-height: 1.5;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 600ms ease, transform 600ms ease;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .feature {
      position: relative;
      min-height: 116px;
      padding: 20px 18px 20px 66px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 18px;
      background:
        linear-gradient(180deg, #fff 0%, #fff8f1 100%);
      box-shadow: 0 12px 28px rgba(74, 35, 10, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      
      transform: translateY(14px);
      transition-delay: var(--feature-delay, 0ms);
    }

    .feature:nth-child(1) { transition-delay: 220ms; }
    .feature:nth-child(2) { transition-delay: 300ms; }
    .feature:nth-child(3) { transition-delay: 380ms; }
    .feature:nth-child(4) { transition-delay: 460ms; }

    .feature::before {
      content: "01";
      position: absolute;
      top: 20px;
      left: 18px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--saffron);
      font-size: 0.78rem;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(226, 99, 14, 0.22);
    }

    .feature:nth-child(2)::before {
      content: "02";
    }

    .feature:nth-child(3)::before {
      content: "03";
    }

    .feature:nth-child(4)::before {
      content: "04";
    }

    .feature:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 122, 24, 0.28);
      box-shadow: 0 18px 44px rgba(74, 35, 10, 0.11);
    }

    .feature strong {
      display: block;
      color: var(--ink);
      line-height: 1.25;
    }

    .feature span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .consultant-section.is-visible .consultant-media,
    .consultant-section.is-visible .consultant-copy {
      opacity: 1;
      transform: none;
    }

    .consultant-section.is-visible .consultant-contact,
    .consultant-section.is-visible .feature {
      opacity: 1;
      transform: translateY(0);
    }

    .consultant-section.is-visible .consultant-actions,
    .consultant-section.is-visible .consultant-footnote {
      opacity: 1;
      transform: none;
    }

    .consultant-section.is-visible .consultant-contact--call {
      transition-delay: 80ms;
    }

    .consultant-section.is-visible .consultant-contact--whatsapp {
      transition-delay: 160ms;
    }

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

    .process-section {
      position: relative;
      overflow: hidden;
      background: #1a130f;
    }

    .process-stage {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .process-stage__video,
    .process-stage__fallback {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .process-stage__video {
      opacity: 0;
      transition: opacity 300ms ease;
    }

    .process-stage.is-video-ready .process-stage__video {
      opacity: 1;
    }

    .process-stage__fallback {
      opacity: 1;
      transition: opacity 300ms ease;
    }

    .process-stage.is-video-ready .process-stage__fallback {
      opacity: 0;
    }

    .process-stage__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(135deg, rgba(26, 19, 15, 0.86), rgba(185, 71, 0, 0.62) 52%, rgba(26, 19, 15, 0.84)),
        linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.48));
    }

    .process-stage__content {
      position: relative;
      z-index: 2;
    }

    .section-head--compact {
      margin-bottom: 26px;
    }

    .section-head--compact h2 {
      font-size: clamp(2rem, 4vw, 3.6rem);
    }

    .section-head--compact p {
      max-width: 420px;
    }

    .process--compact {
      gap: 14px;
    }

    .process-step {
      min-height: 210px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 22px;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 235, 0.88));
      backdrop-filter: blur(10px);
      box-shadow:
        0 18px 42px rgba(24, 15, 10, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      position: relative;
      overflow: hidden;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .process-step::after {
      content: "";
      position: absolute;
      right: -24px;
      bottom: -26px;
      width: 112px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 138, 0, 0.16), rgba(255, 138, 0, 0.05) 55%, transparent 70%);
      opacity: 0.7;
      transition: transform 240ms ease, opacity 240ms ease;
      pointer-events: none;
    }

    .process-step:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 138, 0, 0.26);
      box-shadow:
        0 26px 52px rgba(24, 15, 10, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .process-step:hover::after {
      opacity: 1;
      transform: scale(1.08);
    }

    .process-step__num {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-bottom: 22px;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--maroon), var(--ruby), var(--saffron));
      background-size: 180% 100%;
      font-weight: 700;
      box-shadow: 0 14px 24px rgba(185, 71, 0, 0.24);
      transition: transform 220ms ease, box-shadow 220ms ease, background-position 300ms ease;
    }

    .process-step:hover .process-step__num {
      transform: translateY(-3px) rotate(-4deg);
      box-shadow: 0 18px 30px rgba(185, 71, 0, 0.28);
      background-position: 100% 0;
    }

    .process-step h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
      line-height: 1.2;
      color:#333;
    }

    .process-step p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .process-step:nth-child(1) {
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 229, 0.92));
    }

    .process-step:nth-child(2) {
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(221, 244, 239, 0.96));
    }

    .process-step:nth-child(3) {
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 226, 219, 0.96));
    }

    .process-step:nth-child(4) {
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(252, 234, 188, 0.96));
    }

    .process-step:nth-child(1) .process-step__num {
      background: linear-gradient(135deg, #c45802, #ff9b45);
    }

    .process-step:nth-child(2) .process-step__num {
      background: linear-gradient(135deg, #0f8a8f, #49c7be);
    }

    .process-step:nth-child(3) .process-step__num {
      background: linear-gradient(135deg, #b94700, #ff7a59);
    }

    .process-step:nth-child(4) .process-step__num {
      background: linear-gradient(135deg, #b06c00, #f4b63d);
    }

    .gallery-strip {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr 0.85fr;
      gap: 16px;
      align-items: stretch;
    }

    .gallery-card {
      position: relative;
      min-height: 320px;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: 0 20px 50px rgba(134, 63, 10, 0.13);
    }

    .gallery-card:first-child {
      min-height: 520px;
      grid-row: span 2;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 700ms ease;
    }

    .gallery-card:hover img {
      transform: scale(1.05);
    }

    .gallery-card span {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 12px 14px;
      border-radius: var(--radius);
      color: #fff;
      font-weight: 700;
      background: rgba(33, 21, 30, 0.66);
      backdrop-filter: blur(10px);
    }

    body.modal-open {
      overflow: hidden;
    }

    .review-section {
      background: #fff;
    }

    .review-carousel {
      position: relative;
      display: flex;
      align-items: center;
      gap: 14px;
      padding-inline: 54px;
    }

    .review-carousel__viewport {
      flex: 1;
      overflow: hidden;
    }

    .review-carousel__track {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      padding: 4px 2px 12px;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .review-carousel__track::-webkit-scrollbar {
      display: none;
    }

    .review-carousel__arrow {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-top: -23px;
      border: 1px solid rgba(185, 71, 0, 0.18);
      border-radius: 50%;
      color: var(--maroon);
      background: #fff;
      box-shadow: 0 14px 34px rgba(134, 63, 10, 0.14);
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(0) scale(0.92);
      transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .review-carousel:hover .review-carousel__arrow,
    .review-carousel:focus-within .review-carousel__arrow {
      opacity: 1;
      pointer-events: auto;
    }

    .review-carousel__arrow:hover {
      color: #fff;
      background: var(--saffron);
      box-shadow: 0 18px 38px rgba(226, 99, 14, 0.28);
    }

    .review-carousel__arrow svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .review-carousel__arrow--prev {
      left: 0;
    }

    .review-carousel__arrow--next {
      right: 0;
    }

    @media (hover: none) {
      .review-carousel__arrow {
        opacity: 1;
        pointer-events: auto;
    }

      .service-card__hover-action {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
  }

/* -------------------------------------------------------------------------
   Booking, inquiry, auth and admin extensions
   ------------------------------------------------------------------------- */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7ef;
  border: 1px solid rgba(208, 96, 0, 0.18);
  color: #c45802;
  box-shadow: 0 10px 24px rgba(218, 112, 33, 0.12);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ff7a18;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 8px 16px rgba(255, 122, 24, 0.28);
}

.page-hero--services .page-hero__media,
.page-hero--booking .page-hero__media,
.page-hero--inquiry .page-hero__media,
.page-hero--cart .page-hero__inner,
.page-hero--checkout .page-hero__inner,
.page-hero--order .page-hero__inner,
.page-hero--dashboard .page-hero__inner {
  align-items: stretch;
}

.service-hero-card,
.panel-panel,
.info-card,
.auth-panel,
.admin-stat,
.service-row,
.dashboard-item,
.cart-row,
.admin-row {
  border: 1px solid rgba(208, 96, 0, 0.12);
  background: #fff;
  box-shadow: 0 16px 40px rgba(31, 17, 0, 0.06);
}

.service-hero-card {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 14px;
  min-height: 280px;
  align-content: center;
  background: linear-gradient(180deg, #fff, #fff6ef);
}

.service-hero-card--dark {
  background: linear-gradient(145deg, #1e1a18, #2d2219);
  color: #fff;
}

.service-hero-card strong {
  font-size: 1.05rem;
  color: #ff7a18;
}

.service-hero-card--dark strong {
  color: #ffb36c;
}

.page-section {
  padding: 74px 0;
}

.section-head--compact {
  margin-bottom: 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-tag--orange {
  background: #fff0e1;
  color: #c45802;
}

.section-tag--dark {
  background: #1b1b1b;
  color: #fff;
}

.services-split,
.booking-grid,
.inquiry-layout,
.cart-layout,
.checkout-layout,
.order-layout,
.payment-layout,
.checkout-grid,
.dashboard-grid,
.auth-shell {
  display: grid;
  gap: 28px;
}

.services-split,
.booking-grid,
.inquiry-layout,
.cart-layout,
.checkout-layout,
.order-layout,
.payment-layout,
.checkout-grid,
.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-column {
  display: grid;
  gap: 18px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
}

.service-row__image {
  min-height: 100%;
  background: #fff8f1;
}

.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row__body {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.service-row__top {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
}

.service-row__top h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff0e1;
  color: #c45802;
  font-size: 0.8rem;
  font-weight: 700;
}

.service-pill--dark {
  background: #1f1a17;
  color: #fff;
}

.service-row__actions,
.page-actions,
.summary-actions,
.booking-aside__actions,
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-row__actions form {
  display: inline-flex;
}

.services-page {
  background: #fff;
}

.services-page__intro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.services-page__intro h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.05;
}

.services-page__intro p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.services-split--white .service-row {
  background: #fff;
}

.service-row--white .service-row__image {
  background: #fff7ef;
}

.service-row__meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-aside,
.panel-panel,
.info-card,
.auth-panel {
  border-radius: 28px;
  padding: 28px;
}

.booking-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-hero--legal,
.page-hero--services {
  padding: clamp(28px, 4vw, 54px) 0;
  background: linear-gradient(180deg, #fffaf5, #fff);
}

.page-hero--legal .page-hero__inner,
.page-hero--services .page-hero__inner {
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.page-hero--legal .page-hero__copy,
.page-hero--services .page-hero__copy {
  max-width: 900px;
}

.page-hero--legal .page-hero__copy h1,
.page-hero--services .page-hero__copy h1 {
  color: var(--ink);
  text-shadow: none;
}

.page-hero--legal .page-hero__lead,
.page-hero--services .page-hero__lead {
  color: var(--muted);
}

.page-hero--legal .eyebrow,
.page-hero--services .eyebrow,
.page-hero--legal .page-breadcrumbs,
.page-hero--services .page-breadcrumbs {
  color: var(--maroon);
}

.page-hero--legal .page-breadcrumbs a,
.page-hero--services .page-breadcrumbs a {
  color: var(--maroon);
}

.page-hero--legal .page-breadcrumbs span,
.page-hero--services .page-breadcrumbs span {
  color: var(--muted);
}

.auth-page {
  background: #fff;
}

.auth-shell--split {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: start;
}

.auth-intro {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 100%;
  background: linear-gradient(180deg, #fff7ef, #fff);
}

.auth-intro h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.auth-intro__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 46ch;
}

.auth-benefits {
  display: grid;
  gap: 12px;
}

.auth-benefits div {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(185, 71, 0, 0.08);
}

.auth-benefits strong,
.auth-benefits span {
  display: block;
}

.auth-benefits strong {
  color: var(--ink);
  margin-bottom: 4px;
}

.auth-benefits span {
  color: var(--muted);
  line-height: 1.55;
}

.auth-panel--modern {
  background: #fff;
}

.booking-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.68fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.booking-product-main {
  display: grid;
  gap: 22px;
}

.booking-gallery {
  display: grid;
  gap: 14px;
}

.booking-gallery__main {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 71, 0, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff4e8, #fff);
  box-shadow: 0 24px 52px rgba(134, 63, 10, 0.12);
}

.booking-gallery__main img {
  width: 100%;
  height: clamp(320px, 55vw, 680px);
  display: block;
  object-fit: cover;
  transition: transform 450ms ease;
}

.booking-gallery__main:hover img {
  transform: scale(1.03);
}

.booking-gallery__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(29, 20, 14, 0.78);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-gallery__thumb {
  width: 86px;
  height: 86px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 71, 0, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(134, 63, 10, 0.08);
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.booking-gallery__thumb:hover,
.booking-gallery__thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 14px 26px rgba(134, 63, 10, 0.12);
}

.booking-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-story {
  display: grid;
  gap: 18px;
}

.booking-story__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.booking-story h2 {
  margin: 0 0 10px;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  line-height: 1.06;
}

.booking-story__rating {
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(185, 71, 0, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffaf4, #fff);
  box-shadow: 0 12px 28px rgba(134, 63, 10, 0.06);
}

.booking-story__rating strong {
  color: var(--ink);
  font-size: 1.45rem;
}

.booking-story__rating span {
  color: #c45802;
  letter-spacing: 0.12em;
}

.booking-story__rating small {
  color: var(--muted);
  line-height: 1.35;
}

.booking-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

    .booking-highlight-list span,
    .booking-related-card__meta span,
    .booking-detail-card {
      border: 1px solid rgba(185, 71, 0, 0.12);
      background: #fff;
    }

.booking-highlight-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7ef, #fff);
  color: var(--maroon);
  font-weight: 700;
}

.booking-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-detail-card {
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(134, 63, 10, 0.06);
}

.booking-detail-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--maroon);
  font-size: 1rem;
}

.booking-detail-card span {
  display: block;
  color: var(--text);
  line-height: 1.65;
}

.booking-summary {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.booking-summary h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.06;
}

.booking-price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid rgba(185, 71, 0, 0.1);
}

.booking-price-row strong {
  color: var(--ink);
  font-size: clamp(1.5rem, 1.8vw, 2rem);
}

.booking-price-row span {
  color: var(--muted);
  font-weight: 700;
}

.booking-summary__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.booking-form {
  gap: 14px;
}

.booking-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 58px;
}

.booking-slot {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(185, 71, 0, 0.14);
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.booking-slot:hover,
.booking-slot.is-active {
  transform: translateY(-1px);
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--ruby));
}

.booking-slot-empty,
.booking-slot-note {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.booking-slot-note--error {
  color: #b94700;
  font-weight: 700;
}

    .booking-summary__note {
      display: grid;
      gap: 4px;
      padding: 14px 16px;
      border-radius: 20px;
  background: linear-gradient(135deg, #fff4e4, #fff);
  border: 1px solid rgba(185, 71, 0, 0.12);
}

.booking-summary__note strong {
  color: var(--maroon);
}

.booking-summary__note span {
  color: var(--muted);
  line-height: 1.55;
}

.booking-form__submit {
  width: 100%;
}

.booking-form .btn--secondary {
  width: 100%;
  justify-content: center;
}

.booking-summary > .btn--secondary {
  width: 100%;
  justify-content: center;
}

.booking-related {
  display: grid;
  gap: 18px;
}

.booking-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-related-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border: 1px solid rgba(185, 71, 0, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(134, 63, 10, 0.08);
}

.booking-related-card__media {
  overflow: hidden;
  background: linear-gradient(180deg, #fff4e8, #fff);
}

.booking-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.booking-related-card:hover .booking-related-card__media img {
  transform: scale(1.05);
}

.booking-related-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.booking-related-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-related-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #c45802;
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-related-card__body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.24;
}

.booking-related-card__body h3 a {
  color: var(--ink);
}

.booking-related-card__body p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.booking-related-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.booking-related-card__actions form {
  display: inline-flex;
}

    .booking-page--white {
      background: #fff;
    }

    .booking-breadcrumbs {
      color: var(--muted);
      margin: 0 0 18px;
      font-size: 0.88rem;
      font-weight: 600;
    }

    .booking-breadcrumbs a {
      color: var(--text);
    }

    .booking-breadcrumbs span {
      color: #b79d8a;
    }

    .booking-product-layout--detail {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.72fr);
      gap: clamp(18px, 3vw, 32px);
      align-items: start;
    }

    .booking-gallery--detail {
      display: grid;
      grid-template-columns: minmax(72px, 92px) minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      width: 100%;
    }

    .booking-gallery__thumbs--vertical {
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 12px;
    }

    .booking-gallery__thumbs--vertical .booking-gallery__thumb {
      width: 100%;
      height: 92px;
      border-radius: 20px;
    }

    .booking-gallery__main {
      border: 1px solid rgba(185, 71, 0, 0.1);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 2px 4px rgba(88, 41, 8, 0.08);
    }

    .booking-gallery__main img {
      width: 100%;
      display: block;
      height: clamp(340px, 42vw, 540px);
      object-fit: cover;
    }

    .booking-summary {
    position: sticky;
    top: 18px;
    gap: 16px;
    border: 1px solid rgba(185, 71, 0, 0.1);
    background: #fff;
    box-shadow: 0 0px 0px rgba(92, 43, 10, 0.06);
}

    .booking-summary h1 {
      margin: 0;
      color: var(--ink);
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 1.8vw, 2rem);
      line-height: 1.02;
    }

    .booking-summary__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .booking-summary__actions .btn {
      flex: 1 1 160px;
      justify-content: center;
    }

    .booking-selected-slot {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: #fff6e9;
      color: var(--maroon);
      font-size: 0.85rem;
      font-weight: 700;
    }

    .booking-slot-trigger {
      width: 100%;
      justify-content: center;
    }

    .booking-summary__hint {
      margin: 0;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.55;
    }

    .booking-tabs {
      display: grid;
      gap: 18px;
      margin-top: clamp(22px, 4vw, 42px);
    }

    .booking-tabs__nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      border-bottom: 1px solid rgba(185, 71, 0, 0.1);
      padding-bottom: 14px;
    }

    .booking-tab {
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 999px;
      background: #fff;
      color: var(--ink);
      font-size: 0.88rem;
      font-weight: 700;
      transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

    .booking-tab.is-active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--maroon), var(--ruby));
      box-shadow: 0 16px 30px rgba(185, 71, 0, 0.18);
    }

    .booking-tabs__panels {
      display: grid;
    }

    .booking-tab-panel {
      padding: 26px;
      margin-top:20px;
    }

    .booking-tab-panel h2 {
      margin: 0 0 12px;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 2vw, 2rem);
      line-height: 1.06;
    }

    .booking-tab-panel p {
      margin: 0;
      color: var(--text);
      line-height: 1.75;
    }

    .booking-step-list {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 12px;
      color: var(--text);
      line-height: 1.7;
    }

    .booking-benefit-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .booking-benefit-grid span {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff2dd, #fff);
      border: 1px solid rgba(185, 71, 0, 0.12);
      color: var(--maroon);
      font-weight: 700;
    }

    .booking-related {
      display: grid;
      gap: 18px;
      margin-top: 60px;
    }

    .booking-related__head {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      align-items: end;
    }

    .booking-related__head h2 {
      margin: 6px 0 0;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 2.8vw, 2.3rem);
      line-height: 1.04;
    }

    .booking-related__head p {
      margin: 0;
      max-width: 42ch;
      color: var(--muted);
      line-height: 1.65;
    }

    .booking-related-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .booking-related-card {
      min-height: 100%;
    }

    .booking-slot-modal {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: grid;
      place-items: center;
      padding: 20px;
    }

    .booking-slot-modal[hidden] {
      display: none;
    }

    .booking-slot-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(20, 12, 8, 0.58);
      backdrop-filter: blur(8px);
    }

    .booking-slot-modal__dialog {
      position: relative;
      z-index: 1;
      width: min(760px, 100%);
      padding: 24px;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 28px 70px rgba(35, 16, 6, 0.24);
    }

    .booking-slot-modal__head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
    }

    .booking-slot-modal__head h2 {
      margin: 6px 0 0;
      color: var(--ink);
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2vw, 1.75rem);
      line-height: 1.08;
    }

    .booking-slot-modal__close {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(185, 71, 0, 0.14);
      border-radius: 50%;
      background: #fff;
      color: var(--ink);
      font-size: 1.4rem;
      line-height: 1;
    }

    .booking-slot-modal__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }

    .booking-slot-modal__meta span {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      background: #fff7ef;
      color: var(--maroon);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .booking-slot-grid--modal {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .booking-slot-select {
      min-height: 46px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      background: #fff;
      color: var(--ink);
      font-weight: 700;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    .booking-slot-select:hover,
    .booking-slot-select.is-active {
      transform: translateY(-1px);
      border-color: transparent;
      color: #fff;
      background: linear-gradient(135deg, var(--maroon), var(--ruby));
    }

    .booking-slot-empty {
      grid-column: 1 / -1;
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    body.booking-modal-open {
      overflow: hidden;
    }

    .booking-description {
      display: grid;
      gap: 12px;
    }

    .booking-page {
      padding-top: clamp(24px, 4vw, 42px);
    }

    .booking-page-top {
      padding-bottom: clamp(10px, 2vw, 20px);
    }

    .booking-page-head {
      display: grid;
      gap: 12px;
      max-width: 760px;
      margin-bottom: clamp(18px, 3vw, 30px);
    }

    .booking-page-head h1 {
      margin: 0;
      color: var(--ink);
      font-family: var(--font-display);
      font-size: clamp(2.1rem, 4.4vw, 3.7rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .booking-page-head__lead {
      margin: 0;
      color: var(--text);
      font-size: clamp(0.97rem, 1.15vw, 1.05rem);
      line-height: 1.7;
      max-width: 58ch;
    }

    .booking-page-head__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .booking-page-head__chips span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      background: linear-gradient(180deg, #fff8f1, #fff);
      color: var(--maroon);
      font-size: 0.88rem;
      font-weight: 700;
      box-shadow: 0 8px 22px rgba(134, 63, 10, 0.06);
    }

    .booking-page-head__chips span:nth-child(1) {
      color: #9d3c00;
      background: linear-gradient(135deg, #fff0db, #ffe2c4);
    }

    .booking-page-head__chips span:nth-child(2) {
      color: #0f6f78;
      background: linear-gradient(135deg, #ecfffd, #d6f5f1);
    }

    .booking-page-head__chips span:nth-child(3) {
      color: #7e4b00;
      background: linear-gradient(135deg, #fff7d9, #f7e7b1);
    }

    .booking-related {
      display: grid;
      gap: 22px;
      margin-top: 60px;
    }

    .booking-related__head {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      align-items: end;
    }

    .booking-related__head h2 {
      margin: 6px 0 0;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 2.8vw, 2.4rem);
      line-height: 1.04;
    }

    .booking-related__head p {
      margin: 0;
      max-width: 46ch;
      color: var(--muted);
      line-height: 1.65;
    }

    .booking-related-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .booking-related-card {
      min-height: 100%;
    }

.stack-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: #1f1a17;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 26, 23, 0.14);
  border-radius: 16px;
  background: #fff;
  color: #1f1a17;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
}

.summary-row--total {
  font-size: 1.05rem;
  font-weight: 700;
}

.cart-page {
  background: #fff;
}

.cart-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.cart-head h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.cart-head__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.cart-layout--modern {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  align-items: start;
}

.cart-items,
.cart-summary {
  background: #fff;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-alert {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(185, 71, 0, 0.14);
}

.cart-alert--warning {
  background: #fff7ef;
  color: var(--maroon);
}

.cart-alert strong {
  font-size: 0.98rem;
}

.cart-alert span {
  color: var(--muted);
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(185, 71, 0, 0.1);
  background: #fff;
  box-shadow: 0 14px 30px rgba(88, 41, 8, 0.05);
}

.cart-item.is-incomplete {
  border-color: rgba(185, 71, 0, 0.22);
  box-shadow: 0 16px 34px rgba(185, 71, 0, 0.09);
}

.cart-item__image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff6eb;
}

.cart-item__image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.cart-item__body {
  display: grid;
  gap: 14px;
}

.cart-item__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.cart-item__top h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.cart-item__top h3 a {
  color: var(--ink);
}

.cart-item__meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item__price {
  color: var(--ink);
  font-size: 1.2rem;
  white-space: nowrap;
}

.cart-item__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-pill,
.cart-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.cart-pill--success {
  background: #edf9f0;
  color: #126a37;
}

.cart-pill--danger {
  background: #fff0e1;
  color: #b94700;
}

.cart-note {
  background: #fff8f1;
  color: var(--text);
  font-weight: 600;
}

.cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.cart-item__edit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon);
  font-size: 0.88rem;
  font-weight: 700;
}

.cart-item__edit svg,
.cart-item__trash svg {
  width: 18px;
  height: 18px;
}

.cart-item__trash {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(185, 71, 0, 0.14);
  background: #fff;
  color: var(--maroon);
  box-shadow: 0 10px 20px rgba(88, 41, 8, 0.04);
}

.cart-summary {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(185, 71, 0, 0.1);
  box-shadow: 0 18px 40px rgba(88, 41, 8, 0.06);
}

.cart-summary h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(185, 71, 0, 0.1);
  color: var(--text);
}

.summary-line strong {
  color: var(--ink);
}

.summary-line--total {
  font-size: 1.05rem;
  font-weight: 800;
}

.cart-coupon {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.cart-coupon__form {
  display: flex;
  gap: 10px;
}

.cart-coupon__form input {
  flex: 1;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(185, 71, 0, 0.14);
  background: #fff;
}

.cart-coupon__active {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f0fbf4;
  color: #126a37;
}

.cart-coupon__active form {
  display: inline-flex;
}

.cart-coupon__active button {
  color: #126a37;
  font-weight: 800;
  background: none;
}

.cart-coupon__hint,
.cart-summary__note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.88rem;
}

.cart-summary__actions {
  display: grid;
  gap: 10px;
}

.cart-summary__actions .btn.is-disabled,
.cart-summary__actions .btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.48;
}

.cart-banner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
  margin-top: 28px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, rgba(17, 11, 8, 0.94), rgba(122, 58, 6, 0.9));
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 54px rgba(88, 41, 8, 0.16);
}

.cart-banner__copy h2 {
  margin: 6px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

.cart-banner .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.cart-banner .eyebrow::before {
  background: #fff;
}

.cart-banner__copy p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.cart-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-empty {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
  border: 1px dashed rgba(185, 71, 0, 0.18);
  background: #fff9f3;
}

.cart-empty h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.checkout-page,
.order-page,
.payment-page {
  background: #fff;
}

.checkout-head,
.order-head,
.payment-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.checkout-head h1,
.order-head h1,
.payment-head h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.checkout-head__lead,
.order-head__lead,
.payment-head__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-layout--modern,
.order-layout,
.payment-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.68fr);
  align-items: start;
}

.checkout-form,
.checkout-summary,
.order-main,
.order-summary,
.payment-panel,
.payment-summary {
  display: grid;
  gap: 18px;
}

.checkout-notice {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(185, 71, 0, 0.12);
}

.checkout-notice--soft {
  background: #fff8ef;
}

.checkout-notice strong {
  color: var(--maroon);
}

.checkout-notice span {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-summary__items,
.payment-summary__items,
.order-items {
  display: grid;
  gap: 14px;
}

.checkout-item,
.payment-item,
.order-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(185, 71, 0, 0.08);
  background: #fff;
}

.checkout-item img,
.payment-item img,
.order-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
  background: #fff7ee;
}

.checkout-item__body,
.payment-item__body,
.order-item__body {
  display: grid;
  gap: 8px;
}

.checkout-item__top,
.order-item__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.checkout-item__top strong,
.order-item__top h3,
.payment-item__body strong {
  color: var(--ink);
}

.checkout-item__slot,
.order-item__slot,
.payment-item__body span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.payment-choice-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-choice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(185, 71, 0, 0.12);
  background: #fff;
  cursor: pointer;
}

.payment-choice input {
  margin-top: 4px;
  accent-color: #b94700;
}

.payment-choice span {
  display: grid;
  gap: 3px;
}

.payment-choice strong {
  color: var(--ink);
}

.payment-choice small {
  color: var(--muted);
  line-height: 1.45;
}

.checkout-actions,
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.checkout-summary__banner {
  padding: 18px 20px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #8d3f12, #d26a15);
}

.checkout-summary__banner h4 {
  margin: 6px 0 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.payment-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.payment-panel__label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-panel__top h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
}

.payment-panel__amount {
  color: var(--ink);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 800;
}

.payment-success-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff8ef;
  border: 1px solid rgba(185, 71, 0, 0.1);
}

.payment-success-note p {
  margin: 0 0 10px;
}

.payment-success-note ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.payment-submit {
  width: 100%;
}

.order-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.order-meta-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(185, 71, 0, 0.1);
  background: #fff;
}

.order-meta-card span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-meta-card strong {
  color: var(--ink);
  font-size: 1.03rem;
}

.order-meta-card small {
  color: var(--muted);
  line-height: 1.5;
}

.order-items {
  margin-top: 4px;
}

.order-item__top h3 {
  margin: 0;
  font-size: 1.05rem;
}

.order-item__top p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.order-summary .summary-line strong {
  text-align: right;
}

.payment-summary .summary-line {
  padding-top: 8px;
}

.account-page {
  background: #fff;
}

.account-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.account-head h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.account-head__lead {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.7;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 20px;
}

.account-user {
  display: flex;
  gap: 14px;
  align-items: center;
}

.account-user__avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #b94700, #f0a12b);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}

.account-user strong,
.account-user span {
  display: block;
}

.account-user span,
.account-notice,
.account-sidebar__stats span,
.account-metric span,
.account-empty p,
.account-section__lead,
.account-table__head,
.account-table__row small,
.account-list__item small {
  color: var(--muted);
}

.account-notice {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff8ef;
  border: 1px solid rgba(185, 71, 0, 0.12);
  line-height: 1.55;
}

.account-nav {
  display: grid;
  gap: 10px;
}

.account-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(185, 71, 0, 0.1);
  color: var(--ink);
  font-weight: 700;
}

.account-nav a:hover {
  color: var(--maroon);
  border-color: rgba(185, 71, 0, 0.24);
  box-shadow: 0 12px 24px rgba(185, 71, 0, 0.08);
}

.account-nav a.is-active {
  background: linear-gradient(135deg, #fff4e8, #fff);
  color: var(--maroon);
  border-color: rgba(185, 71, 0, 0.22);
}

.account-sidebar__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-sidebar__stats div,
.account-metric {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(185, 71, 0, 0.1);
}

.account-sidebar__stats strong,
.account-metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.account-sidebar__actions {
  display: grid;
  gap: 10px;
}

.account-sidebar__actions form {
  margin: 0;
}

.account-sidebar__actions .btn {
  width: 100%;
  justify-content: center;
}

.account-content {
  display: grid;
  gap: 20px;
}

.account-section {
  display: grid;
  gap: 18px;
}

.account-section:not(.is-active) {
  display: none;
}

.account-section__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}

.account-section__head h2 {
  margin: 0;
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.account-section__lead {
  margin: 0;
  max-width: 54ch;
  line-height: 1.6;
}

.account-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-table {
  display: grid;
  gap: 12px;
}

.account-table__head,
.account-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.9fr 0.9fr 0.7fr 1fr;
  gap: 12px;
  align-items: center;
}

.account-table__head {
  padding: 0 2px 8px;
  border-bottom: 1px solid rgba(185, 71, 0, 0.08);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-table__row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(185, 71, 0, 0.08);
}

.account-table__row strong,
.account-list__item strong {
  color: var(--ink);
}

.account-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-row-actions .btn {
  min-height: 40px;
  padding-inline: 14px;
}

.account-list {
  display: grid;
  gap: 12px;
}

.account-list__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(185, 71, 0, 0.08);
  background: #fff;
}

.account-empty {
  padding: 20px;
  border-radius: 18px;
  background: #fff8ef;
  border: 1px dashed rgba(185, 71, 0, 0.14);
}

.account-empty h3 {
  margin: 0 0 6px;
  color: var(--ink);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill--success {
  background: #edf9f0;
  color: #126a37;
}

.status-pill--warning {
  background: #fff0e1;
  color: #b94700;
}

.status-pill--neutral {
  background: #f4f1ee;
  color: #6d5c4e;
}

.cart-row {
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
}

.cart-row img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  background: #fff8f1;
}

.cart-row__body {
  display: grid;
  gap: 6px;
}

.empty-state {
  margin: 0;
  color: #6a5a4d;
}

.notice-bar {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff0e1;
  color: #b65500;
  font-weight: 700;
}

.auth-shell {
  max-width: 660px;
  margin: 0 auto;
}

.auth-note {
  margin: 0;
  color: #6a5a4d;
}

.auth-note a {
  color: #c45802;
  font-weight: 700;
}

.dashboard-item {
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
}

.dashboard-item a {
  color: #c45802;
  font-weight: 700;
}

.admin-body {
  background: linear-gradient(180deg, #fffaf5, #fff);
  color: #1f1a17;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.admin-sidebar {
  background: #181513;
  color: #fff;
  padding: 28px 20px;
  display: grid;
  align-content: start;
  gap: 26px;
}

.admin-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.admin-nav {
  display: grid;
  gap: 10px;
}

.admin-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.admin-main {
  padding: 28px;
}

.admin-page {
  display: grid;
  gap: 22px;
}

.admin-page__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.admin-stat {
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 8px;
}

.admin-stat strong {
  font-size: 2rem;
  color: #c45802;
}

.admin-table {
  display: grid;
  gap: 14px;
}

.admin-row {
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr auto;
  gap: 16px;
  align-items: center;
}

.admin-row__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-row__actions form {
  margin: 0;
}

.admin-row__actions button,
.admin-row__actions a {
  color: #c45802;
  font-weight: 700;
  background: none;
  padding: 0;
}

@media (max-width: 1100px) {
  .services-split,
      .booking-grid,
      .inquiry-layout,
      .cart-layout,
      .checkout-layout,
      .order-layout,
      .payment-layout,
      .checkout-grid,
      .dashboard-grid,
      .admin-shell,
      .admin-stats {
        grid-template-columns: 1fr;
      }

      .booking-product-layout--detail {
        grid-template-columns: 1fr;
      }

      .auth-shell--split {
        grid-template-columns: 1fr;
      }

      .services-page__intro {
        flex-direction: column;
        align-items: flex-start;
      }

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

      .booking-gallery--detail {
        grid-template-columns: minmax(72px, 88px) minmax(0, 1fr);
      }

      .order-meta-grid {
        grid-template-columns: 1fr 1fr;
      }

      .service-row,
      .admin-row {
        grid-template-columns: 1fr;
      }

  .admin-sidebar {
    padding: 20px;
  }

  .admin-main {
    padding: 20px;
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .nav-actions {
    gap: 8px;
  }

  .nav-icon-btn {
    width: 42px;
    height: 42px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .payment-choice-grid {
    grid-template-columns: 1fr;
  }

  .services-page__intro {
    gap: 12px;
  }

  .checkout-item,
  .payment-item,
  .order-item {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .page-section {
    padding: 56px 0;
  }

      .booking-aside,
      .panel-panel,
      .info-card,
      .auth-panel {
        padding: 20px;
        border-radius: 22px;
      }

      .booking-summary {
        position: static;
      }

  .checkout-layout--modern,
  .order-layout,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }

  .account-metrics {
    grid-template-columns: 1fr;
  }

  .account-table__head {
    display: none;
  }

  .account-table__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .account-row-actions {
    margin-top: 4px;
  }

  .account-list__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-meta-grid {
    grid-template-columns: 1fr;
  }

      .nav-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
      }
}

    .review-tile {
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      flex: 0 0 clamp(228px, 22.5vw, 252px);
      min-height: 560px;
      overflow: hidden;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 26px;
      background: #fff;
      box-shadow: 0 18px 40px rgba(74, 35, 10, 0.08);
      cursor: pointer;
      outline: none;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .review-tile:hover,
    .review-tile:focus-visible {
      transform: translateY(-5px);
      border-color: rgba(255, 122, 24, 0.28);
      box-shadow: 0 24px 52px rgba(74, 35, 10, 0.14);
    }

    .review-tile__media {
      position: relative;
      flex: 0 0 58%;
      min-height: 280px;
      overflow: hidden;
      background: #1a130f;
    }

    .review-tile__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .review-tile__media iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .review-tile--video .review-tile__media {
      flex: 1;
      min-height: 0;
    }

    .review-tile--video .review-tile__media iframe {
      pointer-events: none;
    }

    .review-tile--video .review-tile__body {
      display: none;
    }

    .review-tile--text .review-tile__media {
      flex: 0 0 44%;
      min-height: 220px;
    }

    .review-tile__media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20, 15, 11, 0.06), rgba(20, 15, 11, 0.42));
      pointer-events: none;
    }

    .review-tile__media--quote {
      justify-content: center;
      padding: 28px 24px;
      background: linear-gradient(135deg, #fff8f0, #ffffff);
    }

    .review-tile__quote-mark {
      position: relative;
      z-index: 1;
      font-family: var(--font-display);
      font-size: 4.2rem;
      line-height: 0.8;
      color: rgba(185, 71, 0, 0.16);
    }

    .review-tile__media--quote p {
      position: relative;
      z-index: 1;
      margin: 10px 0 0;
      color: var(--ink);
      font-size: 1.05rem;
      line-height: 1.65;
      font-weight: 700;
    }

    .review-tile__tag,
    .review-tile__badge {
      position: absolute;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .review-tile__tag {
      top: 16px;
      left: 16px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.94);
    }

    .review-tile__badge {
      right: 16px;
      bottom: 16px;
      color: #fff;
      background: rgba(185, 71, 0, 0.88);
    }

    .review-tile__body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 18px 18px 20px;
    }

    .review-tile__meta {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-tile__avatar {
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 122, 24, 0.18);
    }

    .review-tile__meta strong {
      display: block;
      color: var(--ink);
      line-height: 1.2;
    }

    .review-tile__meta span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.86rem;
    }

    .review-tile__body p {
      margin: 14px 0 0;
      color: var(--text);
      font-size: 0.96rem;
      line-height: 1.7;
      flex: 1;
    }

    .review-tile__rating {
      margin-top: 14px;
      color: var(--saffron);
      font-weight: 700;
    }

    .review-modal {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: grid;
      place-items: center;
      padding: 14px;
      background: rgba(16, 11, 8, 0.74);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 180ms ease, visibility 180ms ease;
    }

    .review-modal__backdrop {
      position: absolute;
      inset: 0;
    }

    .review-modal.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .review-modal__dialog {
      position: relative;
      z-index: 1;
      width: min(1020px, 100%);
      max-height: calc(100vh - 28px);
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    }

    .review-modal__media {
      min-height: 560px;
      background: #120b08;
      overflow: hidden;
    }

    .review-modal__media iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .review-modal__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .review-modal__media--placeholder {
      display: grid;
      place-items: center;
      padding: 24px;
      color: rgba(255, 255, 255, 0.82);
      text-align: center;
      background: linear-gradient(135deg, #1d1511, #3a2413);
      font-weight: 600;
    }

    .review-modal__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
      padding: 30px;
    }

    .review-modal__copy h3 {
      margin: 0;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 0.95;
    }

    .review-modal__meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 4px;
    }

    .review-modal__avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 122, 24, 0.18);
      flex: 0 0 auto;
    }

    .review-modal__copy p {
      margin: 0;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    .review-modal__actions {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }

    .review-modal__close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(185, 71, 0, 0.14);
      border-radius: 50%;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 14px 28px rgba(74, 35, 10, 0.12);
      cursor: pointer;
    }

    .review-modal__close svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .video-reviews {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .phone-review {
      padding: 12px;
      border-radius: 28px;
      background: #151018;
      box-shadow: 0 26px 60px rgba(134, 63, 10, 0.22);
    }

    .phone-review__screen {
      position: relative;
      min-height: 540px;
      overflow: hidden;
      border-radius: 20px;
      background: #2a1a24;
    }

    .phone-review__screen img {
      width: 100%;
      height: 100%;
      min-height: 540px;
      object-fit: cover;
      opacity: 0.72;
      animation: reviewFloat 9s ease-in-out infinite alternate;
    }

    .phone-review__screen::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(21, 16, 24, 0.08), rgba(21, 16, 24, 0.86));
    }

    .phone-review__content {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      color: #fff;
    }

    .phone-review__content strong {
      display: block;
      font-size: 1.08rem;
      line-height: 1.2;
    }

    .phone-review__content p {
      margin: 10px 0 14px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.94rem;
    }

    .voice-btn {
      min-height: 42px;
      padding: 10px 13px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: var(--radius);
      color: #fff;
      background: rgba(255, 255, 255, 0.16);
      cursor: pointer;
      font-weight: 600;
    }

    .text-reviews {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 18px;
    }

    .review-card {
      min-height: 264px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 16px 38px rgba(134, 63, 10, 0.08);
    }

    .stars {
      color: var(--saffron);
      font-size: 1.15rem;
      letter-spacing: 0;
      font-weight: 700;
    }

    .review-card p {
      margin: 14px 0 20px;
      color: var(--text);
    }

    .review-card strong {
      display: block;
      color: var(--maroon);
    }

    .review-card span {
      display: block;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .consultation-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 122, 24, 0.08), transparent 24%),
        radial-gradient(circle at 78% 72%, rgba(185, 71, 0, 0.08), transparent 26%),
        linear-gradient(180deg, #fffaf4 0%, #fff 100%);
        background-image: url(./../img/circle.gif);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 20%;
    }

    .consultation-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 122, 24, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 122, 24, 0.045) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 82%);
      pointer-events: none;
    }

    .consultation-shell {
      position: relative;
      z-index: 1;
    }

    .consultation-cta {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
      margin-top: clamp(14px, 4vw, 30px);
      padding: clamp(28px, 4vw, 42px);
      border-radius: 34px;
      color: #fff;
      background:
        linear-gradient(125deg, #ff8a18 0%, #e46310 48%, #b94700 100%);
      box-shadow: 0 28px 70px rgba(134, 63, 10, 0.22);
    }

    .consultation-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.14), transparent 18%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: auto, auto, 52px 52px;
      opacity: 0.52;
      pointer-events: none;
    }

    .consultation-cta::after {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 28px;
      pointer-events: none;
    }

    .consultation-cta__copy,
    .consultation-cta__actions {
      position: relative;
      z-index: 1;
    }
    .consultation-cta__copy {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .consultation-cta__copy .eyebrow {
      color: rgba(255, 255, 255, 0.9);
    }

    .consultation-cta__copy h2 {
      margin: 0;
      max-width: 100%;
      color: #fff;
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3rem);
      line-height: 0.95;
      letter-spacing: 0;
    }

    .consultation-cta__copy p {
      max-width: 640px;
      margin: 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.05rem;
      line-height: 1.75;
    }

    .consultation-cta__actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      gap: 12px;
      min-width: min(100%, 220px);
    }

    .btn--light,
    .btn--dark {
      justify-content: center;
      min-width: 180px;
      flex: 0 0 auto;
    }

    .btn--light {
      color: var(--maroon);
      background: #fff;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    }

    .btn--dark {
      color: #fff;
      background: #24160f;
    }

    .btn--light:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    }

    .btn--dark:hover {
      background: #000;
      transform: translateY(-2px);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
      gap: clamp(28px, 5vw, 62px);
      align-items: start;
    }

    .contact-grid--contact {
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
      align-items: start;
    }

    .contact-copy {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-copy__hero {
      display: grid;
      grid-template-columns: 74px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 22px 24px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 26px;
      background: linear-gradient(180deg, #fffaf3 0%, #fff 100%);
      box-shadow: 0 16px 34px rgba(134, 63, 10, 0.08);
    }

    .contact-copy__icon {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      color: #fff;
      background: linear-gradient(135deg, var(--saffron), var(--maroon));
      box-shadow: 0 16px 28px rgba(226, 99, 14, 0.26);
    }

    .contact-copy__icon svg {
      width: 36px;
      height: 36px;
      fill: currentColor;
    }

    .contact-copy__hero .eyebrow {
      margin: 0 0 8px;
    }

    .contact-copy__hero h2 {
      margin: 0;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1rem, 2vw, 2rem);
      line-height: 1.06;
      max-width: 14ch;
    }

    .contact-copy__hero  h3{
      
    margin: 0 0 18px;
    color: var(--maroon);
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.08;
    letter-spacing: 0;
    }

    .contact-quick {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .contact-quick__item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 76px;
      padding: 14px 16px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(134, 63, 10, 0.06);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .contact-quick__item:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 122, 24, 0.28);
      box-shadow: 0 16px 30px rgba(134, 63, 10, 0.12);
    }

    .contact-quick__icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 14px;
      color: #fff;
      background: linear-gradient(135deg, #ff8a18, #b94700);
    }

    .contact-quick__icon svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .contact-quick__item strong {
      display: block;
      color: var(--ink);
      font-size: 0.96rem;
      line-height: 1.2;
    }

    .contact-quick__item small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

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

    .contact-item {
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 14px;
      align-items: start;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(134, 63, 10, 0.06);
    }

    .contact-item--address {
      --accent: linear-gradient(135deg, #ff8a18, #b94700);
    }

    .contact-item__icon {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--accent, var(--maroon));
      font-size: 0.82rem;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(134, 63, 10, 0.14);
    }

    .contact-item__icon svg {
      width: 20px;
      height: 20px;
      display: block;
      fill: currentColor;
    }

    .contact-item__icon--pin svg {
      width: 21px;
      height: 21px;
    }

    .contact-item__icon--pin path {
      fill: currentColor;
    }

    .contact-item:nth-child(2) { --accent: var(--green); }
    .contact-item:nth-child(3) { --accent: var(--teal); }
    .contact-item:nth-child(4) { --accent: var(--saffron); }
    .contact-item:nth-child(5) { --accent: var(--lotus); }

    .contact-item strong {
      display: block;
      color: var(--maroon);
      line-height: 1.2;
    }

    .contact-item span,
    .contact-item a {
      display: block;
      color: var(--muted);
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .contact-item a:hover {
      color: var(--maroon);
    }

    .contact-panel {
      position: relative;
      overflow: hidden;
      padding: 26px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 28px;
      background:
        linear-gradient(180deg, #fffdf9 0%, #fff5e9 100%);
      box-shadow:
        0 24px 52px rgba(134, 63, 10, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    }

    .contact-panel::after {
      content: "";
      position: absolute;
      right: -28px;
      bottom: -34px;
      width: 130px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 138, 0, 0.16), rgba(255, 138, 0, 0.04) 56%, transparent 70%);
      pointer-events: none;
    }

    .contact-panel__eyebrow {
      margin: 0 0 8px;
      color: var(--teal);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    .contact-panel h3 {
      margin: 0 0 18px;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1rem, 2vw, 1.5rem);
      line-height: 1.08;
      letter-spacing: 0;
      
    }

    .contact-panel::before {
      content: "";
      display: block;
      width: 72px;
      height: 6px;
      margin-bottom: 18px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--saffron), var(--maroon));
    }

    .form-grid {
      display: grid;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

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

    .form-grid--contact .field:nth-child(3),
    .form-grid--contact .field:nth-child(4),
    .form-grid--contact .btn {
      grid-column: 1 / -1;
    }

    .field label {
      display: block;
      margin-bottom: 6px;
      color: #533641;
      font-size: 0.78rem;
      font-weight: 650;
      letter-spacing: 0.02em;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 46px;
      padding: 12px 13px;
      border: 1px solid rgba(185, 71, 0, 0.14);
      border-radius: var(--radius);
      color: var(--ink);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .field textarea {
      min-height: 104px;
      resize: vertical;
    }

    .form-note {
      margin: 13px 0 0;
      color: #755847;
      font-size: 0.84rem;
      line-height: 1.55;
    }

    .site-footer {
      margin-top: 0;
      color: #24160f;
      background: linear-gradient(180deg, #fff8eb 0%, #fffdf7 100%);
      border-top: 1px solid rgba(185, 71, 0, 0.12);
    }

    .footer-cta {
      padding: 34px 0 12px;
      background: linear-gradient(135deg, #ff8a18, #b94700);
    }

    .footer-cta__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
    }

    .footer-cta__inner .eyebrow {
      color: rgba(255, 255, 255, 0.9);
    }

    .footer-cta h2 {
      margin: 8px 0 0;
      color: #fff;
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      line-height: 1.02;
    }

    .footer-cta__actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 0.8fr));
      gap: 28px;
      padding: 38px 0 28px;
    }

    .footer-brand-block {
      display: grid;
      gap: 16px;
    }

    .footer-brand-block__mark {
      width: 164px;
      max-width: 100%;
      display: inline-flex;
      align-items: center;
    }

    .footer-brand-block__mark img {
      width: 100%;
      height: auto;
    }

    .footer-brand-block p {
      margin: 0;
      color: #50372a;
      max-width: 40ch;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-socials__item {
      width: 40px;
      height: 40px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgba(185, 71, 0, 0.18);
      border-radius: 50%;
      color: #24160f;
      background: #fff;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .footer-socials__item:hover {
      transform: translateY(-2px);
      background: rgba(255, 138, 0, 0.24);
      border-color: rgba(255, 138, 0, 0.32);
    }

    .footer-socials__item svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-col {
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .footer-col h3 {
      margin: 0 0 6px;
      color: #24160f;
      font-size: 0.9rem;
      line-height: 1.2;
    }

    .footer-col a,
    .footer-col span {
      color: #50372a;
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .footer-col a {
      transition: color 180ms ease, transform 180ms ease;
    }

    .footer-col a:hover {
      color: var(--maroon);
      transform: translateX(2px);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding: 18px 0 28px;
      border-top: 1px solid rgba(185, 71, 0, 0.14);
      color: #50372a;
      font-size: 0.86rem;
    }

    .footer-bottom__links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-bottom__links a {
      color: #50372a;
    }

    .footer-bottom__links a:hover {
      color: var(--maroon);
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: clamp(48px, 7vw, 94px) 0 clamp(28px, 5vw, 52px);
      color: #fff;
      background:
        linear-gradient(90deg, rgba(185, 71, 0, 0.95) 0%, rgba(229, 108, 0, 0.9) 48%, rgba(121, 44, 0, 0.92) 100%);
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:url("../img/bg1.png");
      background-size: cover;
      background-position: center;
      opacity: 0.72;
      transform: scale(1.02);
      pointer-events: none;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.12), transparent 16%),
        radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.09), transparent 14%),
        radial-gradient(circle at 86% 74%, rgba(255, 215, 172, 0.12), transparent 18%);
      pointer-events: none;
    }

    .page-hero__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
      gap: clamp(24px, 5vw, 54px);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .page-hero__inner--single {
      grid-template-columns: minmax(0, 1fr);
    }

    .page-hero__copy {
      max-width: 720px;
    }

    .page-hero__copy h1 {
      margin: 0;
      color: #fff;
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 5vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: 0;
      text-shadow: 0 12px 30px rgba(54, 19, 0, 0.22);
    }

    .page-hero__lead {
      max-width: 640px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: clamp(0.95rem, 1.2vw, 1.02rem);
      line-height: 1.65;
    }

    .page-hero .eyebrow,
    .page-hero .blog-meta,
    .page-breadcrumbs {
      color: rgba(255, 255, 255, 0.84);
    }

    .page-breadcrumbs {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 10px 0 14px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .page-breadcrumbs a {
      color: #fff;
    }

    .page-breadcrumbs span {
      color: rgba(255, 255, 255, 0.72);
    }

    .page-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .page-hero__media {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 24px 56px rgba(66, 21, 0, 0.18);
      backdrop-filter: blur(8px);
    }

    .page-hero__media img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
    }

    .page-hero__badge {
      position: absolute;
      right: 18px;
      bottom: 18px;
      padding: 10px 14px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--maroon), var(--ruby));
      box-shadow: 0 14px 30px rgba(185, 71, 0, 0.24);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .page-hero__media--contact {
      display: grid;
      align-items: end;
      padding: 22px;
      background: rgba(255, 255, 255, 0.1);
    }

    .page-contact-stack {
      display: grid;
      gap: 14px;
    }

    .page-contact-stack > div {
      padding: 16px 18px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(185, 71, 0, 0.12);
      box-shadow: 0 10px 24px rgba(134, 63, 10, 0.08);
    }

    .page-contact-stack strong {
      display: block;
      margin-bottom: 6px;
      color: var(--maroon);
    }

    .page-section {
      padding: 18px 0 var(--section);
    }

    .page-section--soft {
      background: rgba(255, 255, 255, 0.6);
    }

    .page-grid {
      display: grid;
      gap: 18px;
    }

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

    .page-split,
    .blog-layout,
    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
      gap: clamp(22px, 4vw, 42px);
      align-items: start;
    }

    .info-card,
    .page-split__panel,
    .legal-panel,
    .sidebar-panel,
    .article-panel,
    .blog-feature,
    .blog-card {
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 16px 36px rgba(134, 63, 10, 0.08);
    }

    .info-card,
    .page-split__panel,
    .legal-panel,
    .sidebar-panel,
    .article-panel {
      padding: 24px;
    }

    .info-card h2,
    .page-split__copy h2,
    .legal-panel h2,
    .sidebar-panel h3,
    .blog-feature h2,
    .article-panel h2 {
      margin: 0 0 10px;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1rem, 1.5vw, 1.5rem);
      line-height: 1.02;
    }

    .info-card p,
    .page-split__panel p,
    .legal-panel p,
    .sidebar-panel p,
    .article-panel p {
      margin: 0 0 14px;
      color: var(--text);
    }

    .page-note {
      display: grid;
      gap: 4px;
      padding: 16px 18px;
      margin-bottom: 18px;
      border-radius: 18px;
      background: linear-gradient(135deg, #fff4e4, #fff);
      border: 1px solid rgba(185, 71, 0, 0.12);
    }

    .page-note strong {
      color: var(--maroon);
      font-size: 1.05rem;
    }

    .page-note span {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .page-hero--about {
      padding: clamp(28px, 4vw, 54px) 0;
    }

    .page-hero--about .page-hero__inner {
      justify-items: center;
      text-align: center;
      gap: 8px;
    }

    .page-hero__title {
      margin: 0;
      color: #fff;
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3vw, 2.6rem);
      line-height: 1.08;
      letter-spacing: 0;
      text-shadow: 0 10px 24px rgba(54, 19, 0, 0.22);
    }

    .page-hero--about .page-breadcrumbs {
      margin: 0;
    }

    .page-hero--blog .page-hero__inner {
      justify-items: center;
      text-align: center;
    }

    .page-hero--blog .page-hero__copy {
      max-width: 860px;
    }

    .page-hero--blog .page-breadcrumbs {
      margin: 0;
      justify-content: center;
    }

    .page-hero--blog-single {
      padding: clamp(28px, 4vw, 54px) 0;
    }

    .page-hero--blog-single .page-hero__inner {
      justify-items: center;
      text-align: center;
      gap: 8px;
    }

    .page-hero--blog-single .page-hero__copy {
      max-width: 860px;
    }

    .page-hero--blog-single .page-breadcrumbs {
      margin: 0;
      justify-content: center;
    }

    .page-hero--contact {
      padding: clamp(28px, 4vw, 54px) 0;
    }

    .page-hero--contact .page-hero__inner {
      justify-items: center;
      text-align: center;
      gap: 8px;
    }

    .page-hero--contact .page-hero__copy {
      max-width: 860px;
    }

    .page-hero--contact .page-breadcrumbs {
      margin: 0;
      justify-content: center;
    }

    .page-hero--booking {
      padding: clamp(28px, 4vw, 54px) 0;
    }

    .page-hero--booking .page-hero__inner {
      justify-items: center;
      text-align: center;
      gap: 8px;
    }

    .page-hero--booking .page-hero__copy {
      max-width: 920px;
    }

    .page-hero--booking .page-breadcrumbs {
      margin: 0;
      justify-content: center;
    }

    .about-intro {
      padding-top: clamp(42px, 6vw, 78px);
    }

    .about-intro__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
      gap: clamp(24px, 5vw, 54px);
      align-items: stretch;
    }

    .about-intro__copy {
      display: grid;
      align-content: center;
      gap: 12px;
      max-width: 720px;
    }

    .about-intro__copy h1 {
      margin: 0;
      color: var(--ink);
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2vw, 3rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .about-intro__lead {
      max-width: 640px;
      margin: 0;
      color: var(--text);
      font-size: clamp(0.95rem, 1.2vw, 1.02rem);
      line-height: 1.65;
    }

    .about-intro .page-actions {
      margin-top: 8px;
    }

    .about-hero__inner {
      align-items: stretch;
    }

    .about-hero__copy {
      display: grid;
      align-content: center;
      gap: 12px;
    }

    .about-hero__facts {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .about-hero__facts span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      background: linear-gradient(180deg, #fff8f1, #fff);
      color: var(--maroon);
      font-size: 0.88rem;
      font-weight: 600;
      box-shadow: 0 8px 22px rgba(134, 63, 10, 0.06);
    }

    .about-hero__panel {
      display: grid;
      gap: 14px;
      align-content: center;
    }

    .about-hero__portrait,
    .about-hero__note,
    .about-founder,
    .about-certificate,
    .about-cert-note {
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 18px 42px rgba(134, 63, 10, 0.08);
    }

    .about-hero__portrait {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      background: linear-gradient(180deg, #fff 0%, #fff6ea 100%);
    }

    .about-hero__portrait img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      object-position: center top;
    }

    .about-hero__portrait-tag {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      display: grid;
      gap: 2px;
      padding: 14px 16px;
      border-radius: 20px;
      color: #fff;
      background: linear-gradient(135deg, rgba(22, 20, 18, 0.94), rgba(185, 71, 0, 0.9));
      box-shadow: 0 18px 34px rgba(31, 17, 0, 0.24);
      backdrop-filter: blur(8px);
    }

    .about-hero__portrait-tag strong {
      font-size: 1rem;
    }

    .about-hero__portrait-tag span {
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.82);
    }

    .about-hero__note {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 18px;
      background: linear-gradient(135deg, #fff7ef, #fff);
    }

    .about-hero__note img {
      width: 72px;
      height: 72px;
      object-fit: contain;
    }

    .about-hero__note strong {
      display: block;
      color: var(--maroon);
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .about-hero__note span {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .about-pillars .about-card {
      position: relative;
      overflow: hidden;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .about-pillars .about-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 48px rgba(134, 63, 10, 0.12);
    }

    .about-card--warm {
      background: linear-gradient(180deg, #fff5ea 0%, #fff 100%);
    }

    .about-card--ink {
      background: linear-gradient(180deg, #1f1a17 0%, #2d2219 100%);
      border-color: rgba(31, 26, 23, 0.08);
    }

    .about-card--ink .eyebrow,
    .about-card--ink h2,
    .about-card--ink p {
      color: #fff;
    }

    .about-card--ink p {
      color: rgba(255, 255, 255, 0.78);
    }

    .about-card--soft {
      background: linear-gradient(180deg, #fff, #fff8f1);
    }

    .about-story {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
      gap: clamp(22px, 4vw, 42px);
      align-items: start;
    }

    .about-story__copy h2,
    .about-cert-note h2,
    .about-close h2 {
      margin: 0 0 12px;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2vw, 3rem);
      line-height: 1.02;
    }

    .about-story__overview {
      display: grid;
      
      gap: 18px;
      align-items: stretch;
    }

    .about-story__overview p {
      margin: 0;
      color: var(--text);
    }

    .about-story__seal {
      position: relative;
      overflow: hidden;
      padding: 20px;
      border: 1px solid rgba(185, 71, 0, 0.14);
      border-radius: 24px;
      background: linear-gradient(145deg, #fff4e6 0%, #fffdfa 100%);
      box-shadow: 0 18px 34px rgba(134, 63, 10, 0.08);
      min-height: 100%;
    }

    .about-story__seal img {
      position: absolute;
      right: -28px;
      bottom: -34px;
      width: 180px;
      max-width: none;
      opacity: 0.22;
      filter: saturate(0.82);
      pointer-events: none;
    }

    .about-story__seal div {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 8px;
      max-width: 24ch;
    }

    .about-story__seal strong {
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: 1.18rem;
      line-height: 1.1;
    }

    .about-story__seal span {
      color: var(--text);
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .about-story__points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .about-story__points article {
      padding: 16px 18px;
      border-radius: 20px;
      border: 1px solid rgba(185, 71, 0, 0.1);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 12px 28px rgba(134, 63, 10, 0.06);
    }

    .about-story__points strong {
      display: block;
      color: var(--ink);
      margin-bottom: 6px;
      font-size: 0.96rem;
      line-height: 1.25;
    }

    .about-story__points span {
      display: block;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .about-features {
      margin-top: 22px;
    }

    .about-founder {
      padding: 24px;
      display: grid;
      gap: 16px;
      align-content: start;
      background:
        radial-gradient(circle at top right, rgba(255, 138, 24, 0.1), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fff8f2 100%);
    }

    .about-founder__facts {
      display: grid;
      gap: 12px;
    }

    .about-founder__facts div {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(185, 71, 0, 0.1);
      box-shadow: 0 12px 28px rgba(134, 63, 10, 0.06);
    }

    .about-founder__facts strong,
    .about-cert-note__list strong {
      display: block;
      color: var(--maroon);
      margin-bottom: 4px;
      font-size: 0.96rem;
    }

    .about-founder__facts span,
    .about-cert-note__list span {
      display: block;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .about-certificate-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
      gap: clamp(18px, 3vw, 28px);
      align-items: stretch;
    }

    .about-certificate-panel {
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      min-height: 380px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      border-radius: 28px;
      background:
        radial-gradient(circle at top left, rgba(255, 138, 24, 0.12), transparent 34%),
        linear-gradient(180deg, #fffdfb 0%, #fff6ec 100%);
      box-shadow: 0 18px 40px rgba(134, 63, 10, 0.08);
    }

    .about-certificate-panel img {
      width: 100%;
      max-width: 100%;
      height: 100%;
      max-height: 416px;
      object-fit: contain;
      display: block;
    }

    .about-cert-note--certificate {
      padding: clamp(22px, 3vw, 30px);
      border: 1px solid rgba(185, 71, 0, 0.1);
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(255, 138, 24, 0.08), transparent 34%),
        linear-gradient(180deg, #fff8f2 0%, #fff 100%);
      box-shadow: 0 18px 40px rgba(134, 63, 10, 0.08);
      align-content: center;
      gap: 14px;
    }

    .about-cert-note--certificate h2 {
      margin: 0;
      max-width: 16ch;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.65rem, 2.6vw, 2.25rem);
      line-height: 1.08;
    }

    .about-cert-note--certificate p {
      margin: 0;
      color: var(--text);
      line-height: 1.65;
    }

    .about-cert-note--certificate .about-cert-note__list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 4px;
    }

    .about-cert-note--certificate .about-cert-note__list div {
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(185, 71, 0, 0.1);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 10px 24px rgba(134, 63, 10, 0.06);
    }

    .about-cert-note--certificate .about-cert-note__list strong {
      display: block;
      margin-bottom: 4px;
      color: var(--ink);
      font-size: 0.92rem;
      line-height: 1.3;
    }

    .about-cert-note--certificate .about-cert-note__list span {
      display: block;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .about-cert-note__list {
      display: grid;
      gap: 12px;
    }

    .about-cert-note__list div {
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(185, 71, 0, 0.1);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 12px 28px rgba(134, 63, 10, 0.06);
    }

    .about-close {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
      gap: clamp(22px, 4vw, 42px);
      align-items: center;
      min-height: 380px;
      padding: clamp(24px, 4vw, 38px);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(26, 11, 8, 0.82), rgba(170, 72, 10, 0.62)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        url("../img/bg1.png") center/cover no-repeat;
      background-blend-mode: normal, screen, multiply;
      box-shadow: 0 28px 70px rgba(40, 18, 6, 0.24);
    }

    .about-close::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        radial-gradient(circle at 20% 18%, rgba(255, 209, 102, 0.22), transparent 30%),
        radial-gradient(circle at 86% 22%, rgba(77, 194, 204, 0.18), transparent 26%),
        radial-gradient(circle at 76% 84%, rgba(255, 138, 24, 0.18), transparent 28%);
      pointer-events: none;
    }

    .about-close__copy,
    .about-close__panel {
      position: relative;
      z-index: 1;
    }

    .about-close__copy {
      display: grid;
      gap: 14px;
    }

    .about-close p {
      max-width: 620px;
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
    }

    .about-close__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .about-close__tags span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
    }

    .about-close__panel {
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 22px 46px rgba(18, 10, 6, 0.18);
      backdrop-filter: blur(12px);
      display: grid;
      gap: 18px;
    }

    .about-close__support {
      display: grid;
      gap: 8px;
    }

    .about-close__support strong {
      color: var(--ink);
      font-size: 1.02rem;
      line-height: 1.35;
    }

    .about-close__support span {
      color: var(--muted);
      line-height: 1.55;
    }

    .about-close__panel .btn {
      box-shadow: none;
    }

    .about-close__actions {
      display: grid;
      gap: 12px;
    }

    .about-close__actions .btn {
      width: 100%;
    }

    .blog-layout.blog-layout--sidebar {
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
      align-items: start;
    }

    .blog-main {
      display: grid;
      gap: 22px;
    }

    .blog-index-head {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      align-items: end;
    }

    .blog-index-head h2 {
      margin: 6px 0 0;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 2.8vw, 2.4rem);
      line-height: 1.04;
    }

    .blog-index__summary {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
    }

    .blog-grid--posts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      gap: 18px;
    }

    .blog-card--stack {
      overflow: hidden;
      display: grid;
      grid-template-rows: auto 1fr;
      height: 100%;
      min-height: 100%;
      border-radius: 28px;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .blog-card--stack:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 122, 24, 0.24);
      box-shadow: 0 28px 54px rgba(134, 63, 10, 0.16);
    }

    .blog-card__media {
      display: block;
      overflow: hidden;
      width: 100%;
      min-height: 252px;
      background: linear-gradient(180deg, #fff4e8, #fff);
    }

    .blog-card__media img {
      width: 100%;
      height: 252px;
      display: block;
      object-fit: cover;
      transition: transform 320ms ease;
    }

    .blog-card:hover .blog-card__media img {
      transform: scale(1.08);
    }

    .blog-card__body {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 24px;
      height: 100%;
    }

    .blog-card__body p {
      margin: 0;
      color: var(--text);
      line-height: 1.65;
    }

    .blog-card__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--muted);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .blog-card__meta span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 11px;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff5eb, #fff);
      color: #c45802;
      border: 1px solid rgba(196, 88, 2, 0.1);
    }

    .blog-card--stack h3 {
      margin: 0;
      font-size: 1.2rem;
      line-height: 1.28;
    }

    .blog-card--stack h3 a {
      color: var(--ink);
      transition: color 180ms ease;
    }

    .blog-card--stack h3 a:hover {
      color: var(--maroon);
    }

    .blog-card__more {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-top: auto;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--maroon);
      background: linear-gradient(135deg, #fff5ea, #fff);
      border: 1px solid rgba(185, 71, 0, 0.12);
      font-weight: 700;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .blog-card__more::after {
      content: " →";
    }

    .blog-card__more:hover {
      transform: translateY(-1px);
      border-color: rgba(185, 71, 0, 0.2);
      box-shadow: 0 12px 26px rgba(134, 63, 10, 0.08);
    }

    .blog-sidebar {
      display: grid;
      gap: 18px;
      align-self: start;
      position: sticky;
      top: 18px;
    }

    .blog-search {
      display: grid;
      gap: 10px;
    }

    .blog-search input {
      width: 100%;
      min-height: 48px;
      padding: 0 14px;
      border: 1px solid rgba(185, 71, 0, 0.14);
      border-radius: 16px;
      background: #fff;
      color: var(--ink);
    }

    .blog-side-list {
      display: grid;
      gap: 12px;
    }

    .blog-side-list .sidebar-post small {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.35;
      margin-top: 4px;
    }

    .blog-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .blog-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(185, 71, 0, 0.12);
      background: #fff;
      color: var(--ink);
      font-size: 0.88rem;
      font-weight: 600;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    .blog-chip:hover,
    .blog-chip.is-active {
      transform: translateY(-1px);
      border-color: rgba(255, 122, 24, 0.32);
      background: linear-gradient(135deg, #fff0e1, #fff);
      color: var(--maroon);
    }

    .blog-chip span {
      color: inherit;
      opacity: 0.72;
      font-size: 0.8rem;
    }

    .blog-pagination {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 18px;
    }

    .blog-pagination__link,
    .blog-pagination__page {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid rgba(185, 71, 0, 0.14);
      background: #fff;
      color: var(--ink);
      font-weight: 700;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    .blog-pagination__link:hover,
    .blog-pagination__page:hover,
    .blog-pagination__page.is-active {
      transform: translateY(-1px);
      background: linear-gradient(135deg, #ff8a18, #b94700);
      border-color: transparent;
      color: #fff;
    }

    .blog-pagination__link.is-disabled {
      pointer-events: none;
      opacity: 0.42;
    }

    .blog-layout {
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    }

    .blog-feature {
      overflow: hidden;
    }

    .blog-feature img,
    .blog-card img,
    .sidebar-post img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    .blog-feature img {
      min-height: 320px;
    }

    .blog-feature__body {
      padding: 24px;
    }

    .blog-feature p,
    .blog-card p {
      color: var(--text);
    }

    .blog-grid {
      display: grid;
      gap: 16px;
    }

    .blog-card:not(.blog-card--stack) {
      overflow: hidden;
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
    }

    .blog-card:not(.blog-card--stack) img {
      min-height: 100%;
    }

    .blog-card:not(.blog-card--stack) .blog-card__body {
      display: grid;
      gap: 10px;
      padding: 18px;
    }

    .blog-card__meta,
    .blog-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 600;
    }

    .blog-card:not(.blog-card--stack) h3,
    .blog-feature h2 {
      margin: 0;
    }

    .blog-card:not(.blog-card--stack) a:last-child {
      color: var(--maroon);
      font-weight: 700;
    }

    .article-layout {
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
    }

    .article-layout--blog-single {
      grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.58fr);
    }

    .article-sidebar {
      display: grid;
      gap: 18px;
      align-self: start;
      position: sticky;
      top: 18px;
    }

    .article-panel--blog {
      overflow: hidden;
      padding: 0;
      display: grid;
    }

    .blog-article__media {
      width: 100%;
      overflow: hidden;
      background: linear-gradient(180deg, #fff4e8, #fff);
    }

    .blog-article__media img {
      width: 100%;
      height: clamp(260px, 36vw, 420px);
      display: block;
      object-fit: cover;
    }

    .blog-article__body {
      display: grid;
      gap: 18px;
      padding: 24px;
    }

    .blog-article__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 600;
    }

    .blog-article__meta span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 11px;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff5eb, #fff);
      color: #c45802;
      border: 1px solid rgba(196, 88, 2, 0.1);
    }

    .blog-article__title {
      margin: 0;
      color: var(--maroon);
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 2.6vw, 2.4rem);
      line-height: 1.06;
    }

    .blog-article__intro {
      margin: 0;
      color: var(--text);
      font-size: 1rem;
      line-height: 1.75;
    }

    .blog-article__sections {
      display: grid;
      gap: 18px;
    }

    .blog-article__section h3 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: 1.12rem;
      line-height: 1.22;
    }

    .blog-article__section p {
      margin: 0;
      color: var(--text);
      line-height: 1.72;
    }

    .article-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .article-highlights span {
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--maroon);
      background: #fff4e4;
      font-weight: 700;
    }

    .sidebar-panel {
      margin-bottom: 16px;
    }

    .sidebar-post {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 12px 0;
      border-top: 1px solid rgba(185, 71, 0, 0.08);
    }

    .sidebar-post:first-of-type {
      border-top: 0;
      padding-top: 0;
    }

    .sidebar-post img {
      height: 72px;
      border-radius: 14px;
    }

    .sidebar-post span {
      color: var(--ink);
      font-weight: 600;
      line-height: 1.35;
    }

    .floating-contact {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 60;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }

    .floating-contact__link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      padding: 11px 16px 11px 12px;
      border-radius: 999px;
      color: #fff;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(8px);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .floating-contact__link:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
    }

    .floating-contact__link--call {
      background: linear-gradient(135deg, #16324f, #1d4f7c);
    }

    .floating-contact__link--whatsapp {
      background: linear-gradient(135deg, #1fb45b, #0f8f44);
    }

    .floating-contact__icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.16);
    }

    .floating-contact__icon svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .floating-contact__text {
      display: inline-block;
      white-space: nowrap;
    }

    @keyframes slowSpin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes heroParticles {
      from {
        background-position: 0 0, 35px 55px, 70px 20px;
      }

      to {
        background-position: 120px 220px, -80px 180px, 170px 260px;
      }
    }

    @keyframes heroCopyIn {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroGlowSweep {
      from {
        transform: translate3d(-2%, -1%, 0) rotate(-2deg);
      }

      to {
        transform: translate3d(2%, 1%, 0) rotate(2deg);
      }
    }

    @keyframes heroButtonGlow {
      0%,
      100% {
        box-shadow: 0 18px 34px rgba(247, 148, 29, 0.28);
      }

      50% {
        box-shadow: 0 24px 40px rgba(247, 148, 29, 0.38);
      }
    }

    @keyframes consultantWave {
      0%,
      100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }

      20% {
        transform: translate3d(0, -4px, 0) rotate(-1deg);
      }

      40% {
        transform: translate3d(0, 0, 0) rotate(1deg);
      }

      60% {
        transform: translate3d(0, -2px, 0) rotate(-0.7deg);
      }

      80% {
        transform: translate3d(0, 1px, 0) rotate(0.7deg);
      }
    }

    @keyframes serviceButtonFloat {
      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-2px);
      }
    }

    @keyframes heroElementRise {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes counterNumberPop {
      0% {
        transform: scale(1);
      }

      45% {
        transform: scale(1.14);
      }

      100% {
        transform: scale(1);
      }
    }

    @keyframes counterIconPop {
      0% {
        opacity: 0;
        transform: scale(0.7) translateY(12px);
      }

      65% {
        opacity: 1;
        transform: scale(1.08) translateY(-2px);
      }

      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    @keyframes reviewFloat {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.08);
      }
    }

    @media (max-width: 1080px) {
      .nav {
        align-items: center;
        flex-wrap: wrap;
        padding: 14px 0;
      }

      .brand {
        min-width: 0;
        flex: 1 1 auto;
      }

      .nav-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav__links {
        display: none;
        width: 100%;
        order: 3;
        margin-left: 0;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        border: 1px solid rgba(185, 71, 0, 0.12);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 44px rgba(134, 63, 10, 0.12);
      }

      .site-header.nav-open .nav__links {
        display: flex;
      }

      .site-header.nav-open .nav__book {
        display: inline-flex;
        width: 100%;
        order: 4;
        margin-top: 8px;
      }

      .nav__book {
        display: none;
        min-width: 0;
        width: 100%;
      }

      .nav__links > a,
      .nav-dropdown__trigger {
        width: 100%;
        justify-content: space-between;
      }

      .nav-dropdown {
        width: 100%;
      }

      .nav-dropdown__menu {
        position: static;
        left: 0;
        width: 100%;
        margin-top: 4px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 2px 0 0 12px;
        background: transparent;
      }

      .nav-dropdown__menu::before {
        display: none;
      }

      .nav-dropdown:hover .nav-dropdown__menu,
      .nav-dropdown:focus-within .nav-dropdown__menu {
        transform: none;
      }

      .nav-dropdown__menu a {
        background: rgba(255, 138, 0, 0.06);
      }

      .hero,
      .hero__inner {
        min-height: 620px;
      }

      .hero__inner,
      .section-head,
      .consultant-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .consultant-media {
        min-height: 620px;
        max-width: 680px;
        width: 100%;
        margin-inline: auto;
      }

      .consultant-copy {
        max-width: 100%;
      }

      .contact-copy__hero {
        grid-template-columns: 64px minmax(0, 1fr);
      }

      .contact-copy__icon {
        width: 50px;
        height: 50px;
      }

      .contact-copy__icon svg {
        width: 25px;
        height: 25px;
      }

      .page-hero__inner,
      .about-intro__inner,
      .page-split,
      .blog-layout,
      .article-layout {
        grid-template-columns: 1fr;
      }

      .page-grid--three {
        grid-template-columns: 1fr;
      }

      .about-story,
      .about-certificate-layout {
        grid-template-columns: 1fr;
      }

      .about-story__overview,
      .about-story__points {
        grid-template-columns: 1fr;
      }

      .about-close {
        align-items: flex-start;
        grid-template-columns: 1fr;
      }

      .blog-layout.blog-layout--sidebar {
        grid-template-columns: 1fr;
      }

      .blog-sidebar {
        position: static;
      }

      .article-sidebar {
        position: static;
      }

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

      .about-hero__portrait {
        min-height: 360px;
      }

      .about-hero__portrait img {
        min-height: 360px;
      }

      .page-hero__media {
        max-width: 680px;
      }

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

      .footer-cta__inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-cta__actions {
        justify-content: flex-start;
      }

      .blog-card {
        grid-template-columns: 132px minmax(0, 1fr);
      }

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

      .contact-list--page {
        grid-template-columns: 1fr;
      }

      .contact-grid--contact {
        grid-template-columns: 1fr;
      }

      .contact-panel {
        position: static;
      }

      .hero__content {
        min-height: auto;
        width: min(640px, 100%);
      }

      .hero-slide img {
        object-position: 62% center;
      }

      .hero-arrow {
        top: auto;
        bottom: 24px;
        transform: scale(0.92);
      }

      .hero:hover .hero-arrow,
      .hero:focus-within .hero-arrow {
        transform: scale(1);
      }

      .hero-arrow:hover {
        transform: scale(1.06);
      }

      .hero-arrow--prev {
        left: auto;
        right: 20px;
      }

      .hero-arrow--next {
        right: 20px;
      }

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

      .service-showcase__intro {
        grid-template-columns: 1fr;
      }

      .service-showcase__toolbar {
        flex-direction: column;
        align-items: stretch;
      }

      .counter-item {
        min-height: 162px;
      }

      .counter-band__header {
        grid-template-columns: 1fr;
        margin-bottom: 22px;
      }

      .consultation-cta {
        grid-template-columns: 1fr;
      }

      .review-carousel {
        padding-inline: 0;
      }

      .review-carousel__track {
        gap: 16px;
      }

      .review-modal__dialog {
        grid-template-columns: 1fr;
      }

      .review-modal__media {
        min-height: 360px;
      }
    }

    @media (max-width: 760px) {
      .top-strip {
        display: none;
      }

      .container {
        width: min(100% - 20px, 1180px);
      }

      .top-strip__inner {
        padding-block: 8px;
        gap: 8px;
      }

      .top-strip__links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .top-strip__item {
        white-space: normal;
      }

      .top-strip__socials {
        width: 100%;
        justify-content: flex-start;
      }

      .brand {
        min-width: 0;
      }

      .brand__mark {
        width: 66px;
        height: 52px;
      }

      .nav {
        gap: 10px;
      }

      .nav-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
      }

      .nav__links {
        padding: 10px;
        border-radius: 18px;
      }

      .nav__links > a,
      .nav-dropdown__trigger {
        min-height: 40px;
        padding: 10px 12px;
        font-size: 0.84rem;
      }

      .nav__book {
        width: 100%;
        min-height: 46px;
      }

      .nav-dropdown__menu a {
        min-height: 38px;
        font-size: 0.82rem;
      }

      .hero {
        min-height: auto;
      }

      .hero__inner {
        min-height: auto;
        padding-top: 34px;
        padding-bottom: 88px;
      }

      .hero h1 {
        font-size: clamp(2.2rem, 14vw, 3.6rem);
      }

      .hero__subtitle,
      .hero__lead {
        font-size: 0.92rem;
      }

      .hero__actions {
        gap: 10px;
      }

      .hero__actions .btn {
        width: 100%;
      }

      .slider-dots {
        margin-top: 20px;
        flex-wrap: wrap;
      }

      .counter-grid,
      .services-grid,
      .abcd-grid,
      .feature-list,
      .process,
      .gallery-strip,
      .consultation-cta {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: auto;
      }

      .service-showcase {
        margin-top: 22px;
      }

      .service-tabs {
        width: 100%;
        flex-direction: column;
      }

      .service-tab {
        width: 100%;
        justify-content: space-between;
      }

      .service-showcase__toolbar {
        gap: 12px;
      }

      .service-card__meta {
        grid-template-columns: 1fr;
      }

      .service-card__actions {
        flex-direction: column;
      }

      .service-card__hover-action {
        inset: auto 14px 14px;
      }

      .service-card__media img {
        padding: 0;
      }

      .service-card__button {
        width: 100%;
        align-self: stretch;
      }

      .counter-item {
        min-height: 150px;
        padding: 18px;
      }

      .counter-band {
        padding: 46px 0;
      }

      .counter-band__header h2 {
        font-size: clamp(1.7rem, 9vw, 2.4rem);
      }

      .counter-item strong {
        font-size: clamp(1.85rem, 12vw, 2.6rem);
      }

      .abcd-card {
        min-height: 220px;
      }

      .hero__content {
        min-height: auto;
        width: min(100%, 600px);
      }

      .hero {
        min-height: auto;
      }

      .hero-slide img {
        object-position: 68% center;
      }

      .hero__inner {
        min-height: auto;
        padding-top: 34px;
        padding-bottom: 88px;
      }

      .hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .consultant-media {
        min-height: 500px;
      }

      .consultant-grid {
        grid-template-columns: 1fr;
      }

      .consultant-frame {
        inset: 0;
        border-radius: 24px;
      }

      .consultant-frame::before {
        left: 18px;
        top: 18px;
        width: 54px;
        height: 54px;
        border-radius: 16px 0 0 0;
      }

      .consultant-photo {
        inset: 14px;
        border-radius: 20px;
      }

      .consultant-gridline {
        display: none;
      }

      .consultant-badge,
      .consultant-contact {
        border-radius: 16px;
      }

      .consultant-badge {
        min-width: 132px;
        padding: 10px 12px;
      }

      .consultant-badge span {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1rem;
      }

      .consultant-badge--experience {
        top: auto;
        left: 12px;
        bottom: 86px;
      }

      .consultant-badge--awards {
        top: auto;
        right: 12px;
        bottom: 86px;
      }

      .consultant-contact {
        min-width: 0;
        width: auto;
        max-width: calc(50% - 16px);
        padding: 11px 12px;
        gap: 8px;
      }

      .consultant-contact span {
        width: 36px;
        height: 36px;
      }

      .consultant-contact svg {
        width: 19px;
        height: 19px;
      }

      .consultant-contact strong {
        font-size: 0.8rem;
      }

      .consultant-contact small {
        font-size: 0.7rem;
      }

      .consultant-contact--call {
        left: 12px;
        top: 12px;
        bottom: auto;
      }

      .consultant-contact--whatsapp {
        right: 12px;
        bottom: 18px;
        top: auto;
      }

      .consultant-actions .btn {
        width: 100%;
      }

      .consultation-cta {
        margin-top: 68px;
        grid-template-columns: 1fr;
        padding: 22px;
        border-radius: 22px;
      }

      .consultation-cta__copy h2 {
        max-width: none;
      }

      .contact-copy__hero {
        padding: 18px;
        grid-template-columns: 1fr;
      }

      .contact-grid--contact {
        grid-template-columns: 1fr;
      }

      .contact-list--page {
        grid-template-columns: 1fr;
      }

      .form-grid--contact {
        grid-template-columns: 1fr;
      }

      .form-grid--contact .field:nth-child(3),
      .form-grid--contact .field:nth-child(4),
      .form-grid--contact .btn {
        grid-column: auto;
      }

      .page-hero__copy h1 {
        font-size: clamp(2rem, 12vw, 3.4rem);
      }

      .about-intro__copy h1 {
        font-size: clamp(2rem, 12vw, 3.4rem);
      }

      .page-hero__media {
        min-height: 280px;
      }

      .page-hero__media img {
        min-height: 280px;
      }

      .about-hero__note {
        grid-template-columns: 1fr;
        justify-items: start;
      }

      .about-hero__note img {
        width: 62px;
        height: 62px;
      }

      .about-certificate-panel {
        min-height: 280px;
        padding: 14px;
      }

      .about-certificate-panel img {
        max-height: 260px;
      }

      .about-cert-note--certificate {
        padding: 20px;
      }

      .about-cert-note--certificate .about-cert-note__list {
        grid-template-columns: 1fr;
      }

      .about-close {
        padding: 22px;
        border-radius: 24px;
      }

      .about-story__seal {
        min-height: auto;
      }

      .about-story__seal img {
        width: 148px;
      }

      .about-story__points {
        grid-template-columns: 1fr;
      }

      .about-close__tags span {
        width: 100%;
        justify-content: center;
      }

      .about-close__panel {
        width: 100%;
        padding: 18px;
        border-radius: 22px;
      }

      .booking-details-grid {
        grid-template-columns: 1fr;
      }

      .booking-product-layout--detail {
        grid-template-columns: 1fr;
      }

      .booking-gallery--detail {
        grid-template-columns: 1fr;
      }

      .booking-gallery__thumbs--vertical {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .booking-gallery__thumbs--vertical .booking-gallery__thumb {
        width: 72px;
        height: 72px;
      }

      .booking-gallery__main img {
        height: 320px;
      }

      .booking-related-grid {
        grid-template-columns: 1fr;
      }

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

      .blog-grid--posts {
        grid-template-columns: 1fr;
      }

      .blog-index-head {
        align-items: flex-start;
      }

      .blog-card {
        grid-template-columns: 1fr;
      }

      .blog-card__media {
        min-height: 220px;
      }

      .blog-card__media img {
        height: 220px;
      }

      .blog-article__media img {
        height: 240px;
      }

      .blog-feature img {
        min-height: 240px;
      }

      .blog-feature__body,
      .blog-article__body,
      .blog-card__body,
      .info-card,
      .page-split__panel,
      .legal-panel,
      .sidebar-panel,
      .article-panel {
        padding: 18px;
      }

      .booking-related-card__body {
        padding: 18px;
      }

      .booking-tab-panel {
        padding: 20px;
      }

      .booking-slot-modal__dialog {
        padding: 20px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .review-carousel {
        gap: 10px;
        margin-inline: -10px;
        padding-inline: 10px;
      }

      .review-carousel__arrow {
        width: 40px;
        height: 40px;
        margin-top: -20px;
      }

      .review-carousel__arrow svg {
        width: 18px;
        height: 18px;
      }

      .review-tile {
        flex-basis: calc(100vw - 38px);
        min-height: 440px;
      }

      .review-tile__media {
        min-height: 240px;
      }

      .review-modal__dialog {
        grid-template-columns: 1fr;
      }

      .review-modal__media {
        min-height: 300px;
      }

      .review-modal__copy {
        padding: 22px;
      }

      .floating-contact {
        right: 12px;
        bottom: 12px;
        gap: 8px;
      }

      .floating-contact__link {
        min-height: 48px;
        padding: 10px 12px 10px 10px;
      }

      .floating-contact__text {
        font-size: 0.86rem;
      }

      .floating-contact__icon {
        width: 30px;
        height: 30px;
      }

      .gallery-card,
      .gallery-card:first-child {
        min-height: 320px;
        grid-row: auto;
      }

      .consultation-cta .btn {
        width: 100%;
      }

      .contact-quick {
        grid-template-columns: 1fr;
      }

      .contact-item {
        grid-template-columns: 42px 1fr;
        padding: 13px;
      }

      .contact-item__icon {
        width: 42px;
        height: 42px;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
