    :root {
      --ivory: #FAF8F3;
      --warm-white: #F5F2EA;
      --gold: #C9A84C;
      --gold-light: #E8D5A3;
      --charcoal: #1A1814;
      --stone: #6B6560;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Montserrat', system-ui, sans-serif;
      --nav-height: 88px;
      --nav-height-scrolled: 72px;
      --nav-gap: clamp(1.5rem, 3vw, 2.75rem);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      font-weight: 300;
      background: var(--ivory);
      color: var(--charcoal);
      line-height: 1.7;
      overflow-x: hidden;
      cursor: none;
    }

    body.custom-cursor-disabled {
      cursor: auto;
    }

    body.custom-cursor-disabled .cursor-dot,
    body.custom-cursor-disabled .cursor-ring {
      display: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

    ul {
      list-style: none;
    }

    /* Custom cursor */
    .cursor-dot,
    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 10000;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      will-change: transform;
    }

    .cursor-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(201, 168, 76, 0.55);
      transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.35s;
    }

    body.cursor-hover .cursor-ring {
      width: 52px;
      height: 52px;
      border-color: var(--gold);
    }

    /* Typography utilities */
    .label {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.6875rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .display {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: 0.02em;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.6875rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      padding: 1.125rem 2.25rem;
      border: 1px solid transparent;
      transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }

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

    .btn-gold {
      background: var(--gold);
      color: var(--charcoal);
      border-color: var(--gold);
    }

    .btn-gold:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
    }

    .btn-outline {
      background: transparent;
      color: var(--charcoal);
      border-color: var(--charcoal);
    }

    .btn-outline:hover {
      background: var(--charcoal);
      color: var(--ivory);
    }

    .btn-outline-light {
      background: transparent;
      color: var(--ivory);
      border-color: rgba(250, 248, 243, 0.6);
    }

    .btn-outline-light:hover {
      background: var(--ivory);
      color: var(--charcoal);
      border-color: var(--ivory);
    }

    .btn-nav {
      padding: 0.875rem 1.75rem;
      border: 1px solid var(--gold);
      color: var(--charcoal);
      background: transparent;
    }

    .btn-nav:hover {
      background: var(--gold);
    }

    /* Scroll animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      transition: height 0.5s var(--ease-out), background 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    }

    .nav.scrolled {
      height: var(--nav-height-scrolled);
      background: rgba(250, 248, 243, 0.98);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(26, 24, 20, 0.06);
    }

    .nav-inner {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 4rem);
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      column-gap: var(--nav-gap);
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      justify-self: start;
      line-height: 0;
      flex-shrink: 0;
    }

    .nav-logo-img {
      height: 54px;
      width: auto;
      object-fit: contain;
      display: none;
    }

    @media (min-width: 1101px) {
      .nav:not(.scrolled):not(.open) .nav-logo-img--desktop.nav-logo-img--dark {
        display: block;
      }

      .nav.scrolled .nav-logo-img--desktop.nav-logo-img--light,
      .nav.open .nav-logo-img--desktop.nav-logo-img--light {
        display: block;
      }
    }

    @media (max-width: 1100px) {
      .nav-logo-img {
        height: 38px;
      }

      .nav:not(.scrolled):not(.open) .nav-logo-img--mobile.nav-logo-img--dark {
        display: block;
      }

      .nav.scrolled .nav-logo-img--mobile.nav-logo-img--light,
      .nav.open .nav-logo-img--mobile.nav-logo-img--light {
        display: block;
      }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--nav-gap);
      justify-self: center;
    }

    .nav-links > .nav-link,
    .nav-links > a.nav-link,
    .nav-links .nav-dropdown-trigger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      height: 2.75rem;
      padding: 0;
      margin: 0;
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 300;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      line-height: 1;
      color: var(--stone);
      transition: color 0.3s;
      position: relative;
      white-space: nowrap;
    }

    .nav-links .nav-dropdown {
      display: inline-flex;
      align-items: center;
      height: 2.75rem;
    }

    .nav-links .nav-dropdown-trigger {
      cursor: pointer;
      background: none;
      border: none;
    }

    .nav-links > .nav-link::after,
    .nav-links > a.nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.4s var(--ease-out);
    }

    .nav-links > .nav-link:hover,
    .nav-links > a.nav-link:hover {
      color: var(--charcoal);
    }

    .nav-links > .nav-link:hover::after,
    .nav-links > a.nav-link:hover::after {
      width: 100%;
    }

    .nav-actions {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: max(1.5rem, var(--nav-gap));
    }

    .lang-switcher {
      position: relative;
    }

    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.5rem 0.75rem;
      font-family: var(--font-body);
      font-size: 0.625rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--stone);
      background: var(--ivory);
      border: 1px solid rgba(201, 168, 76, 0.45);
      cursor: pointer;
      transition: color 0.3s, border-color 0.3s, background 0.3s;
      min-width: 3.25rem;
      justify-content: center;
    }

    .lang-toggle svg {
      width: 10px;
      height: 10px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
      opacity: 0.65;
      transition: transform 0.3s var(--ease-out);
    }

    .lang-switcher.open .lang-toggle svg {
      transform: rotate(180deg);
    }

    .lang-switcher.open .lang-toggle {
      border-color: var(--gold);
      color: var(--charcoal);
    }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 0.5rem);
      right: 0;
      min-width: 11.5rem;
      background: var(--ivory);
      border: 1px solid rgba(201, 168, 76, 0.45);
      box-shadow: 0 12px 40px rgba(26, 24, 20, 0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
      z-index: 1100;
      padding: 0.35rem 0;
    }

    .lang-switcher.open .lang-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      width: 100%;
      padding: 0.6rem 1rem;
      border: none;
      background: none;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--charcoal);
      text-align: left;
      transition: background 0.2s;
    }

    .lang-option:hover,
    .lang-option.active {
      background: rgba(201, 168, 76, 0.12);
    }

    .lang-code {
      font-size: 0.625rem;
      letter-spacing: 0.15em;
      color: var(--gold);
      min-width: 1.5rem;
    }

    .lang-name {
      flex: 1;
    }

    .nav:not(.scrolled) .lang-toggle {
      background: rgba(26, 24, 20, 0.35);
      border-color: rgba(232, 213, 163, 0.35);
      color: rgba(250, 248, 243, 0.9);
    }

    .nav:not(.scrolled) .lang-toggle:hover {
      border-color: rgba(232, 213, 163, 0.55);
      color: var(--ivory);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      padding: 8px;
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--charcoal);
      transition: transform 0.4s, opacity 0.4s;
    }

    .nav.open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav.open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    .nav.open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero — full bleed background */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

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

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background-image: url('../images/big-tiny-belly-XtnNrQYC7ts-unsplash.jpg');
      background-size: cover;
      background-position: center 38%;
      background-repeat: no-repeat;
      animation: kenBurns 18s var(--ease-in-out) forwards;
      will-change: transform;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(26, 24, 20, 0.55) 0%, rgba(26, 24, 20, 0.75) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 52rem;
      width: 100%;
      padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 4vw, 2rem) 5.5rem;
    }

    .hero-eyebrow {
      margin-bottom: 1.25rem;
      opacity: 0;
      animation: fadeUp 1s var(--ease-out) 0.2s forwards;
    }

    .hero-title {
      font-size: clamp(2.75rem, 7vw, 5rem);
      color: var(--ivory);
      margin-bottom: 1.25rem;
      max-width: none;
      line-height: 1.05;
      opacity: 0;
      animation: fadeUp 1s var(--ease-out) 0.35s forwards;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: max(5rem, 5.5vw);
      }
    }

    .hero-title em {
      font-style: italic;
      font-weight: 400;
    }

    .hero-locations-line {
      font-size: 0.6875rem;
      font-weight: 300;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s var(--ease-out) 0.45s forwards;
    }

    .hero-desc {
      font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
      font-weight: 300;
      color: rgba(250, 248, 243, 0.85);
      letter-spacing: 0.04em;
      line-height: 1.8;
      max-width: 42ch;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 1s var(--ease-out) 0.55s forwards;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s var(--ease-out) 0.7s forwards;
    }

    .hero-scroll {
      position: absolute;
      bottom: clamp(1.5rem, 3vh, 2.5rem);
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: var(--ivory);
      opacity: 0;
      animation: fadeUpScroll 1s var(--ease-out) 1s forwards, scrollBounce 2.2s var(--ease-in-out) 1.2s infinite;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s;
    }

    .hero-scroll:hover {
      opacity: 0.9;
    }

    .hero-scroll svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
    }

    @keyframes fadeUpScroll {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
      }
      to {
        opacity: 0.65;
        transform: translateX(-50%) translateY(0);
      }
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* Nav legibility over dark hero */
    .nav:not(.scrolled) .nav-links > .nav-link,
    .nav:not(.scrolled) .nav-links > a.nav-link,
    .nav:not(.scrolled) .nav-links .nav-dropdown-trigger {
      color: rgba(250, 248, 243, 0.65);
    }

    .nav:not(.scrolled) .nav-links > .nav-link:hover,
    .nav:not(.scrolled) .nav-links > a.nav-link:hover,
    .nav:not(.scrolled) .nav-links .nav-dropdown-trigger:hover {
      color: var(--ivory);
    }

    .nav.open .lang-toggle {
      background: var(--ivory);
      border-color: rgba(201, 168, 76, 0.45);
      color: var(--charcoal);
    }

    html[dir="rtl"] .lang-dropdown {
      right: auto;
      left: 0;
    }

    html[dir="rtl"] .lang-option {
      text-align: right;
      flex-direction: row-reverse;
    }

    html[dir="rtl"] .nav-inner {
      direction: rtl;
    }

    html[dir="rtl"] .nav-links {
      flex-direction: row-reverse;
    }

    html[dir="rtl"] .nav-actions {
      flex-direction: row-reverse;
    }

    html[dir="rtl"] .nav-links a::after {
      left: auto;
      right: 0;
    }

    html[dir="rtl"] .section-header,
    html[dir="rtl"] .about-content,
    html[dir="rtl"] .locations-simple,
    html[dir="rtl"] .pricing-footer,
    html[dir="rtl"] .guarantee-text,
    html[dir="rtl"] .form-helper {
      text-align: right;
    }

    html[dir="rtl"] .about {
      direction: rtl;
    }

    html[dir="rtl"] .about-stats {
      flex-direction: row-reverse;
    }

    html[dir="rtl"] .faq-trigger {
      flex-direction: row-reverse;
      text-align: right;
    }

    html[dir="rtl"] .faq-panel-inner {
      text-align: right;
    }

    html[dir="rtl"] .footer-grid,
    html[dir="rtl"] .footer-bottom {
      direction: rtl;
    }

    html[dir="rtl"] .form-row {
      direction: rtl;
    }

    html[dir="rtl"] .form-group label:not(.form-services-option),
    html[dir="rtl"] .form-group input:not([type="checkbox"]):not([type="radio"]),
    html[dir="rtl"] .form-group select,
    html[dir="rtl"] .form-group textarea {
      text-align: right;
    }

    html[dir="rtl"] .testimonial {
      text-align: right;
    }

    html[dir="rtl"] .whatsapp-float {
      right: auto;
      left: clamp(1.25rem, 3vw, 2rem);
    }

    html[dir="rtl"] .service-card {
      text-align: right;
    }

    html[dir="rtl"] .pricing-tier {
      text-align: right;
    }

    html[dir="rtl"] .pricing-tier-oneoff-head {
      flex-direction: row-reverse;
    }

    .nav:not(.scrolled) .nav-toggle span {
      background: var(--ivory);
    }

    .nav:not(.scrolled) .btn-nav {
      color: var(--ivory);
      border-color: rgba(250, 248, 243, 0.5);
    }

    .nav:not(.scrolled) .btn-nav:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--charcoal);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(32px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes kenBurns {
      from { transform: scale(1); }
      to { transform: scale(1.08); }
    }

    /* Marquee */
    .marquee {
      background: var(--charcoal);
      padding: 1.125rem 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 35s linear infinite;
    }

    .marquee-track span {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
      padding: 0 2rem;
    }

    .marquee-track span::after {
      content: '·';
      margin-left: 2rem;
      color: var(--gold-light);
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    html[dir="rtl"] .marquee-track {
      animation-direction: reverse;
    }

    html[dir="rtl"] .marquee-track span::after {
      margin-left: 0;
      margin-right: 2rem;
    }

    /* Section common */
    section {
      padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 4vw, 4rem);
    }

    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto clamp(4rem, 8vh, 6rem);
    }

    .section-header .label {
      margin-bottom: 1rem;
    }

    .section-header h2 {
      font-size: clamp(2.25rem, 4vw, 3.25rem);
    }

    .section-header p {
      margin-top: 1.25rem;
      color: var(--stone);
      font-size: 0.9375rem;
      letter-spacing: 0.03em;
    }

    /* Services */
    .services {
      max-width: 1440px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(201, 168, 76, 0.2);
    }

    .services-grid--four {
      grid-template-columns: repeat(4, 1fr);
    }

    .service-card {
      background: var(--ivory);
      padding: clamp(2rem, 4vw, 3rem);
      position: relative;
      transition: background 0.4s;
    }

    .service-card:hover {
      background: var(--warm-white);
    }

    .service-number {
      font-family: var(--font-display);
      font-size: clamp(4rem, 8vw, 6rem);
      font-weight: 300;
      color: rgba(201, 168, 76, 0.12);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 1.875rem);
      margin-bottom: 1rem;
    }

    .service-card p {
      font-size: 0.875rem;
      color: var(--stone);
      letter-spacing: 0.02em;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .service-price {
      font-size: 0.6875rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .service-underline {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.5s var(--ease-out);
    }

    .service-card:hover .service-underline {
      width: 100%;
    }

    /* About */
    .about {
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
    }

    .about-image-wrap {
      position: relative;
      overflow: hidden;
      min-height: 400px;
    }

    .about-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      position: absolute;
      inset: 0;
    }

    .about-watermark {
      position: absolute;
      bottom: -0.15em;
      left: clamp(1rem, 3vw, 2rem);
      font-family: var(--font-display);
      font-size: clamp(8rem, 18vw, 14rem);
      font-weight: 300;
      color: rgba(250, 248, 243, 0.15);
      line-height: 0.85;
      pointer-events: none;
      z-index: 2;
    }

    .about-content {
      background: var(--ivory);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 6rem);
    }

    .about-content .label {
      margin-bottom: 1.25rem;
    }

    .about-content h2 {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      margin-bottom: 2rem;
      max-width: 16ch;
    }

    .about-content p {
      color: var(--stone);
      font-size: 0.9375rem;
      letter-spacing: 0.03em;
      margin-bottom: 1.25rem;
      max-width: 48ch;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(201, 168, 76, 0.25);
    }

    .stat-value {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3vw, 2.75rem);
      color: var(--charcoal);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.6875rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--stone);
    }

    /* Locations */
    .locations {
      background: var(--charcoal);
      color: var(--ivory);
      position: relative;
      overflow: hidden;
    }

    .locations-watermark {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: clamp(10rem, 28vw, 22rem);
      font-weight: 300;
      color: rgba(250, 248, 243, 0.03);
      letter-spacing: 0.2em;
      pointer-events: none;
      white-space: nowrap;
    }

    .locations .section-header .label {
      color: var(--gold-light);
    }

    .locations .section-header p {
      color: rgba(250, 248, 243, 0.5);
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      max-width: 1440px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .location-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      cursor: pointer;
    }

    .location-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
    }

    .location-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 24, 20, 0.85) 0%, rgba(26, 24, 20, 0.2) 60%, transparent 100%);
      transition: background 0.6s;
    }

    .location-card:hover img {
      transform: scale(1.08);
      filter: brightness(0.75);
    }

    .location-card:hover::after {
      background: linear-gradient(to top, rgba(26, 24, 20, 0.92) 0%, rgba(26, 24, 20, 0.45) 100%);
    }

    .location-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.75rem;
      z-index: 2;
    }

    .location-country {
      font-size: 0.625rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .location-city {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2vw, 1.875rem);
      margin-bottom: 0.5rem;
    }

    .location-towns {
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: rgba(250, 248, 243, 0.65);
      line-height: 1.7;
      margin-bottom: 0.75rem;
    }

    .locations-grid--single {
      grid-template-columns: 1fr;
      max-width: 380px;
    }

    .locations-coming {
      text-align: center;
      margin-top: 2.5rem;
      font-size: 0.6875rem;
      font-weight: 300;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(250, 248, 243, 0.45);
      position: relative;
      z-index: 1;
    }

    .footer-towns {
      font-size: 0.6875rem;
      letter-spacing: 0.08em;
      color: rgba(250, 248, 243, 0.45);
      line-height: 1.7;
      margin-top: 0.375rem;
      max-width: 22ch;
    }

    .location-status {
      display: inline-block;
      font-size: 0.625rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 0.375rem 0.75rem;
      border: 1px solid rgba(201, 168, 76, 0.5);
      color: var(--gold-light);
    }

    .location-status.soon {
      border-color: rgba(250, 248, 243, 0.3);
      color: rgba(250, 248, 243, 0.6);
    }

    /* Packages */

    /* Bespoke package service tiles */
    .package-services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
      align-items: stretch;
    }

    .package-service-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: var(--ivory);
      padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2vw, 1.5rem);
      border: 1px solid rgba(201, 168, 76, 0.35);
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }

    .package-service-tile:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(26, 24, 20, 0.06);
    }

    .package-service-tile i {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 1rem;
      line-height: 1;
    }

    .package-service-tile h3 {
      font-family: var(--font-display);
      font-size: clamp(1.125rem, 1.6vw, 1.375rem);
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 0.75rem;
      line-height: 1.25;
    }

    .package-service-tile p {
      font-size: 0.8125rem;
      font-weight: 300;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.65;
      margin-bottom: 1.25rem;
      flex: 1;
    }

    .package-service-tile .tile-included {
      font-size: 0.625rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .packages-cta-wrap {
      text-align: center;
    }

    .packages-note {
      text-align: center;
      max-width: 520px;
      margin: 1.25rem auto 0;
      font-size: 0.8125rem;
      font-weight: 300;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.75;
    }

    .form-services-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .form-group label.form-services-option {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      width: 100%;
      min-height: 40px;
      margin: 0;
      padding: 0;
      cursor: pointer;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.9375rem;
      letter-spacing: 0.03em;
      text-transform: none;
      color: var(--stone);
      line-height: 1.4;
    }

    .form-services-option input[type="checkbox"] {
      width: 1rem;
      height: 1rem;
      min-width: 1rem;
      max-width: 1rem;
      margin: 0;
      padding: 0;
      flex: 0 0 1rem;
      accent-color: var(--gold);
      cursor: pointer;
    }

    .form-services-label {
      flex: 0 1 auto;
      white-space: nowrap;
      color: var(--stone);
    }

    html[dir="rtl"] .form-group label.form-services-option {
      flex-direction: row-reverse;
      justify-content: flex-end;
    }

    html[dir="rtl"] .form-services-label {
      text-align: right;
    }

    html[dir="rtl"] .package-service-tile {
      text-align: center;
    }

    .packages {
      background: var(--warm-white);
    }

    .pricing-tiers {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) repeat(4, 1fr);
      gap: 1.25rem;
      max-width: 1320px;
      margin: 0 auto;
      align-items: stretch;
    }

    .pricing-tier {
      display: flex;
      flex-direction: column;
      background: var(--ivory);
      padding: clamp(1.75rem, 3vw, 2.25rem);
      border: 1px solid rgba(201, 168, 76, 0.35);
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }

    .pricing-tier:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(26, 24, 20, 0.06);
    }

    .pricing-tier-title {
      font-family: var(--font-display);
      font-size: clamp(1.375rem, 2vw, 1.625rem);
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 0.375rem;
      line-height: 1.2;
    }

    .pricing-tier-range {
      font-size: 0.75rem;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--stone);
      margin-bottom: 1.5rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .pricing-tier-rates {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      flex: 1;
    }

    .pricing-tier-rate-block {
      display: flex;
      flex-direction: column;
    }

    .pricing-tier-rate-block .pricing-tier-price {
      margin-bottom: 1rem;
    }

    .pricing-tier-rate-block .pricing-tier-features {
      margin-bottom: 0;
    }

    .pricing-tier-rate-label {
      font-size: 0.625rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.25rem;
    }

    .pricing-tier-price {
      font-family: var(--font-display);
      font-size: clamp(1.125rem, 1.5vw, 1.25rem);
      color: var(--gold);
      line-height: 1.3;
    }

    .pricing-tier-custom {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2vw, 1.75rem);
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .pricing-tier-custom-desc {
      font-size: 0.875rem;
      font-weight: 300;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.6;
    }

    .pricing-tier-oneoff {
      display: flex;
      flex-direction: column;
      padding: clamp(1.5rem, 2.5vw, 1.875rem);
    }

    .pricing-tier-oneoff-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 0.625rem;
    }

    .pricing-tier-label {
      font-size: 0.625rem;
      font-weight: 300;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .pricing-tier-badge {
      display: inline-block;
      font-size: 0.5625rem;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--charcoal);
      background: rgba(201, 168, 76, 0.18);
      border: 1px solid rgba(201, 168, 76, 0.45);
      padding: 0.35rem 0.55rem;
      line-height: 1;
      white-space: nowrap;
    }

    .pricing-tier-oneoff .pricing-tier-title {
      font-size: clamp(1.25rem, 1.75vw, 1.5rem);
      margin-bottom: 0.75rem;
    }

    .pricing-tier-desc {
      font-size: 0.8125rem;
      font-weight: 300;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.65;
      margin-bottom: 1.25rem;
    }

    .pricing-tier-oneoff .pricing-tier-custom {
      font-size: clamp(1.375rem, 1.85vw, 1.5rem);
      margin-bottom: 0.35rem;
    }

    .pricing-tier-oneoff-sub {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 1.25rem;
      font-size: 0.6875rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .pricing-tier-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .pricing-tier-features li {
      font-size: 0.8125rem;
      font-weight: 300;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.5;
      padding-inline-start: 1.125rem;
      position: relative;
    }

    .pricing-tier-features li::before {
      content: '—';
      position: absolute;
      inset-inline-start: 0;
      color: var(--gold);
    }

    .pricing-tier-cta {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.875rem 1rem;
      font-size: 0.625rem;
      margin-top: auto;
    }

    .pricing-footer {
      text-align: center;
      max-width: 520px;
      margin: clamp(2.5rem, 5vh, 3.5rem) auto 2rem;
      font-size: 0.9375rem;
      font-weight: 300;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.75;
    }

    .pricing-cta {
      text-align: center;
    }

    .locations-simple {
      text-align: center;
      padding: clamp(4rem, 10vh, 7rem) clamp(1.5rem, 4vw, 4rem);
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.2vw, 1.625rem);
      color: var(--ivory);
      letter-spacing: 0.03em;
      line-height: 1.5;
      position: relative;
      z-index: 1;
      margin: 0;
    }

    /* Testimonials */
    .testimonials {
      text-align: center;
    }

    .testimonials-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }

    .testimonial blockquote {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.2vw, 1.625rem);
      font-style: italic;
      font-weight: 400;
      line-height: 1.55;
      color: var(--charcoal);
      margin-bottom: 1.75rem;
    }

    .testimonial-author {
      font-size: 0.75rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.375rem;
    }

    .testimonial-location {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      color: var(--stone);
    }

    .testimonial-divider {
      width: 1px;
      height: 120px;
      background: var(--gold);
      opacity: 0.5;
    }

    /* CTA Banner */
    .cta-banner {
      position: relative;
      padding: clamp(6rem, 14vh, 10rem) clamp(1.5rem, 4vw, 4rem);
      text-align: center;
      overflow: hidden;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=1920&q=85') center/cover no-repeat;
      z-index: 0;
    }

    .cta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26, 24, 20, 0.72);
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--ivory);
      margin-bottom: 2.5rem;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    /* Footer */
    .footer {
      background: var(--charcoal);
      color: rgba(250, 248, 243, 0.7);
      padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 4vw, 4rem) 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: clamp(2rem, 4vw, 4rem);
      max-width: 1440px;
      margin: 0 auto;
      padding-bottom: clamp(3rem, 6vh, 4rem);
    }

    .footer-logo {
      display: inline-block;
      line-height: 0;
      margin-bottom: 1rem;
    }

    .footer-logo img {
      height: 52px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    /* Brand intro */
    .brand-intro {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #1A1814;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.8s var(--ease-out);
      pointer-events: all;
    }

    .brand-intro.is-hidden {
      opacity: 0;
      pointer-events: none;
    }

    .brand-intro.is-removed {
      display: none;
    }

    .brand-intro-logo {
      width: 280px;
      height: auto;
      object-fit: contain;
      opacity: 0;
      animation: brandIntroLogo 2.6s var(--ease-out) forwards;
    }

    @keyframes brandIntroLogo {
      0% { opacity: 0; }
      23.08% { opacity: 1; }
      69.23% { opacity: 1; }
      100% { opacity: 0; }
    }

    body.brand-intro-active {
      overflow: hidden;
    }

    @media (prefers-reduced-motion: reduce) {
      .brand-intro-logo {
        animation: none;
        opacity: 1;
      }

      .brand-intro.is-hidden {
        transition: none;
      }
    }

    .footer-tagline {
      font-size: 0.875rem;
      line-height: 1.8;
      margin-bottom: 1.75rem;
      max-width: 28ch;
    }

    .footer-social {
      display: flex;
      gap: 1.25rem;
    }

    .footer-social a {
      font-size: 0.625rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: var(--gold-light);
    }

    .footer-social a.is-hidden {
      display: none;
    }

    .footer-col h4 {
      font-size: 0.625rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .footer-col ul li {
      margin-bottom: 0.75rem;
    }

    .footer-col ul a,
    .footer-col p {
      font-size: 0.8125rem;
      letter-spacing: 0.03em;
      transition: color 0.3s;
    }

    .footer-col ul a:hover {
      color: var(--ivory);
    }

    .footer-bottom {
      border-top: 1px solid rgba(250, 248, 243, 0.08);
      padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
    }

    .footer-legal {
      display: flex;
      gap: 2rem;
    }

    .footer-legal a:hover {
      color: var(--ivory);
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .services-grid,
      .services-grid--four,
      .home-preview-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

      .pricing-tiers {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing-tier-oneoff {
        grid-column: 1 / -1;
        max-width: 36rem;
        width: 100%;
        justify-self: center;
      }
    }

    @media (max-width: 900px) {
      .nav-inner {
        grid-template-columns: 1fr auto;
        position: relative;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .nav-toggle {
        display: flex;
        justify-self: end;
        z-index: 1001;
      }

      .nav.open .nav-links,
      .nav.open .nav-actions {
        display: flex;
      }

      .nav.open .nav-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--nav-gap);
      }

      .nav.open {
        z-index: 9999;
      }

      .nav.open .nav-inner {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1A1814;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 9999;
        display: flex;
        padding: 2rem;
        max-width: none;
        margin: 0;
      }

      .nav.open .nav-logo {
        position: absolute;
        top: 1.75rem;
        left: clamp(1.5rem, 4vw, 4rem);
      }

      .nav.open .nav-toggle {
        position: absolute;
        top: 1.25rem;
        right: clamp(1.5rem, 4vw, 4rem);
      }

      .nav.open .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
      }

      .nav.open .nav-links a,
      .nav.open .nav-links .nav-link {
        font-size: 0.8125rem;
        color: rgba(250, 248, 243, 0.75);
        height: auto;
      }

      .nav.open .nav-links a:hover,
      .nav.open .nav-links .nav-link:hover {
        color: var(--ivory);
      }

      .nav.open .nav-toggle span {
        background: var(--ivory);
      }

      .nav.open .nav-actions .btn-nav {
        color: var(--charcoal);
        background: var(--gold);
        border-color: var(--gold);
      }

      .nav.open .nav-actions .btn-nav:hover {
        color: var(--charcoal);
        background: var(--gold-light);
        border-color: var(--gold-light);
      }

      .hero-content {
        padding: calc(var(--nav-height) + 1.5rem) 1.25rem 4.5rem;
      }

      .hero-title {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
      }

      .about {
        grid-template-columns: 1fr;
      }

      .about-image-wrap {
        min-height: 50vh;
      }

      .testimonials-inner {
        grid-template-columns: 1fr;
      }

      .testimonial-divider {
        width: 80px;
        height: 1px;
        margin: 0 auto;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      body {
        cursor: auto;
      }

      .cursor-dot,
      .cursor-ring {
        display: none !important;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .package-services-grid {
        grid-template-columns: 1fr;
      }

      .pricing-tiers {
        grid-template-columns: 1fr;
      }

      .locations-grid {
        grid-template-columns: 1fr;
      }

      .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Trust bar */
    .trust-bar {
      background: #fff;
      border-top: 1px solid rgba(26, 24, 20, 0.06);
      border-bottom: 1px solid rgba(26, 24, 20, 0.06);
      padding: 1.75rem clamp(1rem, 3vw, 2rem);
    }

    .trust-bar-inner {
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-evenly;
      align-items: center;
      width: 100%;
      gap: 1rem;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: clamp(0.625rem, 1.2vw, 0.6875rem);
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--stone);
      white-space: nowrap;
    }

    .trust-check {
      color: var(--gold);
      font-size: 0.875rem;
      font-weight: 600;
      flex-shrink: 0;
    }

    /* Gallery */
    .gallery {
      background: var(--ivory);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1440px;
      margin: 0 auto;
    }

    .gallery-item {
      text-align: center;
    }

    .gallery-image-wrap {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      margin-bottom: 1rem;
      border: 1px solid transparent;
      transition: border-color 0.4s var(--ease-out);
    }

    .gallery-item:hover .gallery-image-wrap {
      border-color: var(--gold);
    }

    .gallery-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.8s var(--ease-out);
    }

    .gallery-item:hover .gallery-image-wrap img {
      transform: scale(1.04);
    }

    .gallery-caption {
      font-size: 0.6875rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--stone);
    }

    /* Guarantee */
    .guarantee {
      background: var(--charcoal);
      padding: clamp(3rem, 6vh, 4.5rem) clamp(1.5rem, 4vw, 4rem);
      text-align: center;
    }

    .guarantee-inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .guarantee-icon {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }

    .guarantee-text {
      font-family: var(--font-display);
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      font-weight: 400;
      color: var(--ivory);
      line-height: 1.65;
      letter-spacing: 0.02em;
    }

    .guarantee-text strong {
      color: var(--gold);
      font-weight: 500;
    }

    /* FAQ */
    .faq {
      background: var(--warm-white);
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid rgba(26, 24, 20, 0.08);
    }

    .faq-item:first-child {
      border-top: 1px solid rgba(26, 24, 20, 0.08);
    }

    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1.75rem 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-display);
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      font-weight: 400;
      color: var(--charcoal);
      letter-spacing: 0.02em;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      position: relative;
      color: var(--gold);
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: currentColor;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: transform 0.35s var(--ease-out);
    }

    .faq-icon::before {
      width: 14px;
      height: 1px;
    }

    .faq-icon::after {
      width: 1px;
      height: 14px;
    }

    .faq-item.open .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
      opacity: 0;
    }

    .faq-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s var(--ease-out);
    }

    .faq-panel-inner {
      padding-bottom: 1.75rem;
      font-size: 0.9375rem;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.8;
      max-width: 90%;
    }

    .faq-item.open .faq-panel {
      max-height: 300px;
    }

    /* Contact form */
    .contact-section {
      background: var(--ivory);
      padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 4vw, 4rem);
    }

    .contact-form-wrap {
      max-width: 640px;
      margin: 0 auto;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      min-width: 0;
    }

    .form-group-label {
      display: block;
      font-size: 0.6875rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0;
      line-height: 1.5;
    }

    .form-group label {
      font-size: 0.6875rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--stone);
      line-height: 1.5;
    }

    .form-group input:not([type="checkbox"]):not([type="radio"]),
    .form-group select,
    .form-group textarea {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.9375rem;
      padding: 0.875rem 1rem;
      background: #fff;
      border: 1px solid rgba(26, 24, 20, 0.12);
      color: var(--charcoal);
      transition: border-color 0.3s, box-shadow 0.3s;
      width: 100%;
    }

    .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 1px var(--gold);
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .form-helper {
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--stone);
      letter-spacing: 0.03em;
      line-height: 1.6;
      margin-top: 0.375rem;
    }

    .form-group.is-oneoff-highlight input[type="date"] {
      border-color: rgba(201, 168, 76, 0.65);
      box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35);
    }

    .form-checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .form-checkbox-group legend {
      font-size: 0.6875rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.25rem;
    }

    .form-checkbox {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      font-size: 0.875rem;
      color: var(--charcoal);
      cursor: pointer;
    }

    .form-checkbox input {
      accent-color: var(--gold);
      width: 16px;
      height: 16px;
    }

    .form-whatsapp-row {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      margin-top: 0.5rem;
      font-size: 0.8125rem;
      color: var(--stone);
    }

    .btn-submit {
      background: var(--charcoal);
      color: var(--ivory);
      border-color: var(--charcoal);
      cursor: pointer;
      margin-top: 0.5rem;
    }

    .btn-submit:hover {
      background: var(--gold);
      color: var(--charcoal);
      border-color: var(--gold);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
      border: 1px solid var(--gold);
      background: var(--warm-white);
    }

    .form-success.visible {
      display: block;
    }

    .form-success p {
      font-family: var(--font-display);
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    /* WhatsApp float */
    .whatsapp-float {
      position: fixed;
      bottom: clamp(1.25rem, 3vw, 2rem);
      right: clamp(1.25rem, 3vw, 2rem);
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #25D366;
      color: #fff;
      padding: 0.75rem 1.25rem 0.75rem 0.875rem;
      border-radius: 50px;
      box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
      animation: whatsappPulse 2.5s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
      animation: none;
    }

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .whatsapp-label {
      font-size: 0.6875rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    @keyframes whatsappPulse {
      0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35); }
      50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.12); }
    }

    .footer-british {
      font-size: 0.625rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 0.5rem;
    }

    .footer-contact-link {
      display: block;
      margin-bottom: 0.5rem;
      transition: color 0.3s;
    }

    .footer-contact-link:hover {
      color: var(--ivory);
    }

    /* Nav slide */
    @media (max-width: 900px) {
      .nav.open .nav-links,
      .nav.open .nav-actions {
        animation: navSlideDown 0.4s var(--ease-out);
      }
    }

    @keyframes navSlideDown {
      from {
        opacity: 0;
        transform: translateY(-12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 900px) {
      .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1rem;
        justify-items: center;
      }

      .trust-item {
        white-space: normal;
        text-align: center;
        justify-content: center;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
      }

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

      .whatsapp-label {
        display: none;
      }

      .whatsapp-float {
        padding: 0.875rem;
        border-radius: 50%;
      }
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      html {
        scroll-behavior: auto;
      }

      .marquee-track {
        animation: none;
      }

      .whatsapp-float {
        animation: none;
      }

      .hero-bg-image {
        animation: none;
      }

      .hero-scroll {
        animation: none;
        opacity: 0.65;
      }
    }

    /* Multi-page: inner page hero */
    .page-hero {
      position: relative;
      min-height: 55vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

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

    .page-hero-bg-image {
      position: absolute;
      inset: 0;
      background-image: var(--page-hero-image, url('../images/big-tiny-belly-XtnNrQYC7ts-unsplash.jpg'));
      background-size: cover;
      background-position: center 40%;
      background-repeat: no-repeat;
    }

    .page-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(26, 24, 20, 0.5) 0%, rgba(26, 24, 20, 0.78) 100%);
      z-index: 1;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 48rem;
      padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 4vw, 2rem) 3.5rem;
    }

    .page-hero-title {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      color: var(--ivory);
      margin-bottom: 1rem;
    }

    .page-hero-desc {
      font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
      color: rgba(250, 248, 243, 0.88);
      letter-spacing: 0.04em;
      line-height: 1.8;
      max-width: 42ch;
      margin: 0 auto;
    }

    .page-hero--pool { --page-hero-image: url('../images/pool1.jpg'); }
    .page-hero--villa { --page-hero-image: url('../images/pool2.png'); }
    .page-hero--garden { --page-hero-image: url('../images/pool3.jpg'); }
    .page-hero--checkin { --page-hero-image: url('../images/about.jpg'); }
    .page-hero--marbella { --page-hero-image: url('../images/marbella.webp'); }
    .page-hero--puerto-banus { --page-hero-image: url('../images/puerto-banus.jpg'); }
    .page-hero--benahavis { --page-hero-image: url('../images/benahavis.webp'); }
    .page-hero--estepona { --page-hero-image: url('../images/estepona.jpeg'); }
    .page-hero--about { --page-hero-image: url('../images/about.jpg'); }
    .page-hero--packages { --page-hero-image: url('../images/pool1.jpg'); }
    .page-hero--contact { --page-hero-image: url('../images/big-tiny-belly-XtnNrQYC7ts-unsplash.jpg'); }
    .page-hero--faq { --page-hero-image: url('../images/pool2.png'); }
    .page-hero--services { --page-hero-image: url('../images/pool1.jpg'); }
    .page-hero--areas { --page-hero-image: url('../images/pool3.jpg'); }

    /* Overview cards (services & areas pages) */
    .overview-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 4rem);
    }

    .overview-card {
      background: #fff;
      border: 1px solid rgba(26, 24, 20, 0.06);
      overflow: hidden;
      transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }

    .overview-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }

    .overview-card-image-wrap {
      display: block;
      aspect-ratio: 16 / 10;
      overflow: hidden;
    }

    .overview-card-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }

    .overview-card:hover .overview-card-image-wrap img {
      transform: scale(1.04);
    }

    .overview-card-body {
      padding: 1.75rem 1.5rem 2rem;
    }

    .overview-card-body h3 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 400;
      margin-bottom: 0.75rem;
    }

    .overview-card-body p {
      font-size: 0.875rem;
      letter-spacing: 0.03em;
      color: var(--stone);
      line-height: 1.75;
      margin-bottom: 1.25rem;
    }

    .overview-card-body .text-link {
      margin-top: 0;
    }

    .home-preview-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 4rem);
    }

    .home-preview-card {
      background: #fff;
      border: 1px solid rgba(26, 24, 20, 0.06);
      overflow: hidden;
      transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }

    .home-preview-card:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .home-preview-card-image {
      display: block;
      aspect-ratio: 4 / 3;
      overflow: hidden;
    }

    .home-preview-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .home-preview-card-body {
      padding: 1.25rem 1rem 1.5rem;
      text-align: center;
    }

    .home-preview-card-body h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .home-preview-card-body p {
      font-size: 0.75rem;
      letter-spacing: 0.04em;
      color: var(--stone);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .about-preview {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      max-width: 1440px;
      margin: 0 auto;
      padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
      align-items: center;
      background: var(--ivory);
    }

    .about-preview-image-wrap {
      overflow: hidden;
    }

    .about-preview-image-wrap img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    /* Nav dropdowns */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-trigger svg {
      width: 10px;
      height: 6px;
      transition: transform 0.3s var(--ease-out);
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg,
    .nav-dropdown.open .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 0.75rem);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 14rem;
      background: var(--charcoal);
      border: 1px solid rgba(201, 168, 76, 0.25);
      padding: 0.75rem 0;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
      z-index: 200;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 0.625rem 1.25rem;
      font-size: 0.625rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(250, 248, 243, 0.75);
      white-space: nowrap;
      transition: color 0.3s, background 0.3s;
    }

    .nav-dropdown-menu a:hover {
      color: var(--ivory);
      background: rgba(201, 168, 76, 0.12);
    }

    .nav.scrolled .nav-dropdown-menu {
      background: #fff;
      border-color: rgba(26, 24, 20, 0.08);
    }

    .nav.scrolled .nav-dropdown-menu a {
      color: var(--stone);
    }

    .nav.scrolled .nav-dropdown-menu a:hover {
      color: var(--charcoal);
      background: rgba(201, 168, 76, 0.08);
    }

    /* Content sections */
    .content-section {
      padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 4rem);
      max-width: 1440px;
      margin: 0 auto;
    }

    .content-section--narrow {
      max-width: 52rem;
    }

    .content-section--ivory {
      background: var(--ivory);
    }

    .content-section--warm {
      background: var(--warm-white);
    }

    .content-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: start;
    }

    .included-list {
      display: grid;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .included-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.9375rem;
      letter-spacing: 0.03em;
      color: var(--stone);
    }

    .included-list li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 600;
      flex-shrink: 0;
    }

    .text-link {
      display: inline-block;
      margin-top: 1.5rem;
      font-size: 0.6875rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1px solid rgba(201, 168, 76, 0.4);
      transition: color 0.3s, border-color 0.3s;
    }

    .text-link:hover {
      color: var(--charcoal);
      border-color: var(--charcoal);
    }

    a.service-card {
      display: block;
      transition: transform 0.4s var(--ease-out);
    }

    a.service-card:hover {
      transform: translateY(-4px);
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1440px;
      margin: 2.5rem auto 0;
      padding: 0 clamp(1.5rem, 4vw, 4rem);
    }

    .area-card {
      display: block;
      padding: 2rem 1.5rem;
      background: #fff;
      border: 1px solid rgba(26, 24, 20, 0.06);
      text-align: center;
      transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }

    .area-card:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .area-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .area-card p {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      color: var(--stone);
    }

    .mini-testimonial {
      max-width: 40rem;
      margin: 0 auto;
      text-align: center;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2rem);
      background: var(--warm-white);
    }

    .mini-testimonial blockquote {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-style: italic;
      line-height: 1.5;
      margin-bottom: 1.25rem;
    }

    .package-breakdown {
      display: grid;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .package-breakdown-item {
      padding: 2rem;
      background: #fff;
      border: 1px solid rgba(26, 24, 20, 0.06);
    }

    .package-breakdown-item h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .contact-page-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(2rem, 5vw, 4rem);
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
      align-items: start;
    }

    .contact-details a {
      display: block;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      letter-spacing: 0.06em;
      transition: color 0.3s;
    }

    .contact-details a:hover {
      color: var(--gold);
    }

    .about-full-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(26, 24, 20, 0.08);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    .value-card {
      padding: 2rem;
      background: #fff;
      border: 1px solid rgba(26, 24, 20, 0.06);
    }

    .value-card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
      color: var(--gold);
    }

    .faq-preview-cta {
      text-align: center;
      margin-top: 2.5rem;
    }

    @media (max-width: 900px) {
      .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        border: none;
        padding: 0.5rem 0 0 0;
        display: none;
      }

      .nav-dropdown.open .nav-dropdown-menu {
        display: block;
      }

      .nav-dropdown-menu a {
        color: rgba(250, 248, 243, 0.6);
        padding: 0.5rem 0;
        text-align: center;
      }

      .nav.open .nav-dropdown {
        text-align: center;
      }

      .nav.open .nav-dropdown-trigger {
        color: rgba(250, 248, 243, 0.75);
      }

      .content-grid-2,
      .areas-grid,
      .values-grid,
      .contact-page-grid,
      .about-full-stats,
      .overview-grid,
      .home-preview-grid,
      .about-preview {
        grid-template-columns: 1fr;
      }

      .overview-grid {
        grid-template-columns: 1fr;
      }

      .home-preview-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .page-hero {
        min-height: 45vh;
      }
    }
