    :root {
      --white: #ffffff;
      --off-white: #f7f7f7;
      --light-grey: #eeeeee;
      --mid-grey: #bbbbbb;
      --dark: #111111;
      --ink: #2a2a28;
      --red: #e81010;
      --red-dark: #c00e0e;
      --radius: 4px;
      --card-radius: 12px;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-left: env(safe-area-inset-left, 0px);
      --safe-right: env(safe-area-inset-right, 0px);
      --header-row-height: 64px;
      --header-total-height: calc(var(--header-row-height) + var(--safe-top));
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      background: var(--white);
      overscroll-behavior-y: none;
    }

    html.dark-theme {
      background: var(--dark);
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
      overscroll-behavior-y: none;
      -webkit-font-smoothing: antialiased;
      transition: background var(--transition), color var(--transition);
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--off-white); }
    ::-webkit-scrollbar-thumb { background: var(--mid-grey); border-radius: 99px; }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-total-height);
      background: var(--white);
      border-bottom: 1px solid var(--light-grey);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--safe-top);
      padding-right: max(1.4rem, var(--safe-right));
      padding-left: max(1.4rem, var(--safe-left));
      z-index: 30;
      transition: box-shadow var(--transition);
    }

    header.scrolled {
      box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    }

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

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      position: relative;
      min-width: 0;
    }

    .mobile-header-menu {
      position: relative;
      display: none;
      align-items: center;
      z-index: 32;
    }

    .mobile-menu-toggle {
      cursor: pointer;
      width: 48px;
      min-width: 48px;
      height: 48px;
      padding: 0;
      border-radius: 16px;
      border-color: var(--light-grey);
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,247,247,0.98) 100%);
      box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    }

    .mobile-menu-toggle[aria-expanded='true'] {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
      box-shadow: 0 18px 38px rgba(232,16,16,0.28);
    }

    .mobile-menu-toggle-box {
      position: relative;
      display: block;
      width: 28px;
      height: 22px;
    }

    .mobile-menu-toggle-box span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2.5px;
      border-radius: 999px;
      background: currentColor;
      transition: top var(--transition), transform var(--transition), opacity var(--transition);
    }

    .mobile-menu-toggle-box span:nth-child(1) {
      top: 0;
    }

    .mobile-menu-toggle-box span:nth-child(2) {
      top: 9px;
    }

    .mobile-menu-toggle-box span:nth-child(3) {
      top: 18px;
    }

    .mobile-menu-toggle[aria-expanded='true'] .mobile-menu-toggle-box span:nth-child(1) {
      top: 9px;
      transform: rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded='true'] .mobile-menu-toggle-box span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle[aria-expanded='true'] .mobile-menu-toggle-box span:nth-child(3) {
      top: 9px;
      transform: rotate(-45deg);
    }

    .mobile-menu-popover {
      position: fixed;
      top: calc(var(--header-total-height) + 0.85rem);
      right: max(1rem, var(--safe-right));
      left: max(1rem, var(--safe-left));
      padding: 0.5rem 0.9rem;
      border: 1px solid var(--light-grey);
      border-radius: 18px;
      background: rgba(255,255,255,0.96);
      box-shadow: 0 22px 54px rgba(0,0,0,0.16);
      display: flex;
      flex-direction: column;
      gap: 0;
      z-index: 35;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      animation: menuPopoverIn 0.26s ease;
    }

    .mobile-menu-popover[hidden] {
      display: none;
    }

    .mobile-menu-strip {
      display: flex;
      flex-direction: column;
    }

    .mobile-menu-tile {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.82rem;
      min-height: 50px;
      padding: 0.78rem 0.15rem;
      border: 0;
      border-bottom: 1px solid var(--light-grey);
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      text-decoration: none;
      overflow: hidden;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: color var(--transition), padding-left var(--transition), opacity var(--transition);
    }

    .mobile-menu-tile:last-child {
      border-bottom: 0;
    }

    .mobile-menu-tile::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 12px;
      height: 2px;
      border-radius: 999px;
      background: var(--red);
      transform: translateY(-50%) scaleX(0);
      transform-origin: left center;
      transition: transform 0.24s ease;
      z-index: 0;
    }

    .mobile-menu-tile:hover::before,
    .mobile-menu-tile:focus-visible::before {
      transform: translateY(-50%) scaleX(1);
    }

    .mobile-menu-tile:hover,
    .mobile-menu-tile:focus-visible {
      padding-left: 0.6rem;
      color: var(--red);
      outline: none;
    }

    .mobile-menu-tile i,
    .mobile-menu-tile span {
      position: relative;
      z-index: 1;
      transition: color var(--transition), transform var(--transition);
    }

    .mobile-menu-tile i {
      width: 1.2rem;
      font-size: 0.94rem;
      text-align: center;
      flex: 0 0 auto;
      color: var(--red);
    }

    .mobile-menu-tile span {
      line-height: 1;
      flex: 1 1 auto;
    }

    .mobile-menu-tile::after {
      content: '\f054';
      position: relative;
      z-index: 1;
      margin-left: auto;
      font-family: 'Font Awesome 6 Free';
      font-size: 0.66rem;
      font-weight: 900;
      opacity: 0.45;
      transition: transform var(--transition), opacity var(--transition);
    }

    .mobile-menu-tile:hover i,
    .mobile-menu-tile:focus-visible i {
      transform: translateX(1px);
    }

    .mobile-menu-tile:hover::after,
    .mobile-menu-tile:focus-visible::after {
      transform: translateX(2px);
      opacity: 1;
    }

    .mobile-menu-backdrop {
      position: fixed;
      inset: var(--header-total-height) 0 0;
      border: 0;
      background: rgba(17,17,17,0.16);
      z-index: 24;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      cursor: default;
    }

    .mobile-menu-backdrop[hidden] {
      display: none;
    }

    @keyframes menuPopoverIn {
      from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .header-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      color: var(--ink);
      text-decoration: none;
      background: transparent;
      border: 1px solid transparent;
      transition: all var(--transition);
      font-size: 0.88rem;
    }

    .header-btn:hover {
      background: var(--off-white);
      border-color: var(--light-grey);
      color: var(--dark);
      transform: translateY(-1px);
    }

    .header-btn.mobile-menu-toggle {
      width: 48px;
      min-width: 48px;
      height: 48px;
      padding: 0;
      border-radius: 16px;
      border-color: var(--light-grey);
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,247,247,0.98) 100%);
      box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    }

    .header-btn.mobile-menu-toggle:hover {
      background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
      border-color: var(--light-grey);
      color: var(--dark);
    }

    .header-btn.mobile-menu-toggle[aria-expanded='true'],
    .header-btn.mobile-menu-toggle[aria-expanded='true']:hover {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
      box-shadow: 0 18px 38px rgba(232,16,16,0.28);
    }

    .theme-toggle {
      cursor: pointer;
    }

    .book-btn {
      margin-left: 0.4rem;
      padding: 0 1.25rem;
      height: 38px;
      width: auto;
      border-radius: 99px;
      background: var(--red);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all var(--transition);
    }

    .book-btn:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232,16,16,0.3);
      border-color: transparent;
      color: var(--white);
    }

    @media (max-width: 700px) {
      header {
        padding-right: max(1rem, var(--safe-right));
        padding-left: max(1rem, var(--safe-left));
        gap: 0.75rem;
      }

      .header-actions {
        display: none;
      }

      .header-btn {
        width: 38px;
        height: 38px;
        font-size: 0.88rem;
      }

      .mobile-menu-toggle {
        width: 46px;
        min-width: 46px;
        height: 46px;
      }

      .mobile-header-menu {
        display: flex;
      }
    }

    .home-main {
      min-height: 100vh;
      padding-top: var(--header-total-height);
      overflow-x: clip;
    }

    @media (min-width: 1101px) {
      .home-main {
        height: 100vh;
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
      }

      @supports (height: 100svh) {
        .home-main {
          min-height: 100svh;
          height: 100svh;
        }
      }

      @supports (height: 100dvh) {
        .home-main {
          min-height: 100dvh;
          height: 100dvh;
        }
      }
    }

    /* ── HERO ── */
    .hero-layout {
      display: grid;
      grid-template-columns: minmax(290px, 1fr) minmax(0, 3fr);
      grid-template-areas: "booking media";
      min-height: calc(100vh - var(--header-total-height));
      background: var(--white);
      border-bottom: 1px solid var(--light-grey);
      overflow: clip;
    }

    @supports (height: 100svh) {
      .hero-layout {
        min-height: calc(100svh - var(--header-total-height));
      }
    }

    @supports (height: 100dvh) {
      .hero-layout {
        min-height: calc(100dvh - var(--header-total-height));
      }
    }

    .hero-media,
    .hero-booking {
      min-width: 0;
    }

    .hero-media {
      grid-area: media;
      position: relative;
      background: #050505;
    }

    .hero-video-shell {
      position: relative;
      min-height: 100%;
      height: 100%;
      overflow: hidden;
      background: #050505;
      isolation: isolate;
      contain: layout paint;
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    .hero-video-shell::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0.6) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-video-shell video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      opacity: 1;
      z-index: 0;
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    .hero-scroll-cue {
      position: absolute;
      left: 50%;
      bottom: clamp(1rem, 3vw, 1.9rem);
      transform: translateX(-50%);
      z-index: 3;
      color: var(--white);
      display: none;
      align-items: center;
      gap: 0.6rem;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      border: 1px solid rgba(232,16,16,0.35);
      background: rgba(232,16,16,0.18);
      box-shadow: 0 18px 44px rgba(0,0,0,0.18);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      animation: scrollCueFloat 2.2s ease-in-out infinite;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.24s ease, visibility 0.24s ease;
    }

    .hero-scroll-cue.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .hero-scroll-cue span {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      line-height: 1.3;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .hero-scroll-cue i {
      font-size: 0.74rem;
    }

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

    .hero-booking {
      grid-area: booking;
      display: flex;
      align-items: stretch;
      background: var(--white);
      border-right: 1px solid var(--light-grey);
      min-height: 0;
    }

    .booking-panel {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.1rem;
      padding: clamp(1rem, 2vw, 1.6rem);
      min-height: 0;
    }

    .booking-panel-label {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
    }

    .booking-panel-label span {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      line-height: 1.3;
      text-transform: uppercase;
      color: var(--red);
      white-space: nowrap;
    }

    .booking-panel-head {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .services-grid-shell {
      flex: 0 0 auto;
    }

    /* ── SECTION ── */
    .footer-shell {
      width: 100%;
      padding-left: max(1.4rem, var(--safe-left));
      padding-right: max(1.4rem, var(--safe-right));
    }

    /* ── WAVE DECO ── */
    .wave-deco {
      display: flex;
      align-items: center;
      gap: 3px;
      height: 20px;
    }

    .wave-deco span {
      display: block;
      width: 3px;
      background: var(--red);
      border-radius: 99px;
      animation: wave 1.2s ease-in-out infinite;
    }

    .wave-deco span:nth-child(1) { height: 8px; animation-delay: 0s; }
    .wave-deco span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
    .wave-deco span:nth-child(3) { height: 20px; animation-delay: 0.2s; }
    .wave-deco span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
    .wave-deco span:nth-child(5) { height: 18px; animation-delay: 0.15s; }
    .wave-deco span:nth-child(6) { height: 8px; animation-delay: 0.05s; }

    @keyframes wave {
      0%, 100% { transform: scaleY(1); }
      50% { transform: scaleY(0.4); }
    }

    /* ── SERVICES GRID ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: minmax(108px, auto);
      gap: 1px;
      background: var(--light-grey);
      border: 1px solid var(--light-grey);
      border-radius: var(--card-radius);
      overflow: hidden;
    }

    .service-card {
      background: var(--white);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
      padding: 1.05rem 0.85rem 0.95rem;
      min-height: 108px;
      position: relative;
      overflow: hidden;
      transition: background var(--transition), transform var(--transition);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #000000;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
    }

    .service-card.is-pressed::before,
    .service-card:hover::before,
    .service-card:active::before,
    .service-card:focus::before,
    .service-card:focus-visible::before {
      transform: scaleY(1);
    }

    .service-card.is-pressed .card-icon,
    .service-card:hover .card-icon,
    .service-card:active .card-icon,
    .service-card:focus .card-icon,
    .service-card:focus-visible .card-icon {
      color: var(--white);
    }

    .service-card.is-pressed .card-name,
    .service-card:hover .card-name,
    .service-card:active .card-name,
    .service-card:focus .card-name,
    .service-card:focus-visible .card-name {
      color: var(--white);
    }

    .service-card.is-pressed .card-cta,
    .service-card:hover .card-cta,
    .service-card:active .card-cta,
    .service-card:focus .card-cta,
    .service-card:focus-visible .card-cta {
      opacity: 1;
      transform: translateY(0);
      color: var(--red);
    }

    .card-icon {
      font-size: 1.75rem;
      color: var(--dark);
      position: relative;
      z-index: 1;
      transition: color var(--transition), transform var(--transition);
    }

    .service-card.is-pressed .card-icon,
    .service-card:hover .card-icon,
    .service-card:active .card-icon,
    .service-card:focus .card-icon,
    .service-card:focus-visible .card-icon {
      transform: scale(1.12);
    }

    .card-name {
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink);
      position: relative;
      z-index: 1;
      transition: color var(--transition);
    }

    .card-cta {
      position: relative;
      z-index: 1;
      font-size: 0.64rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red);
      opacity: 1;
      transform: none;
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 2px;
    }

    .service-card:focus,
    .service-card:focus-visible {
      outline: none;
    }

    .service-card.is-pressed .card-cta,
    .service-card:hover .card-cta,
    .service-card:active .card-cta,
    .service-card:focus .card-cta,
    .service-card:focus-visible .card-cta {
      color: var(--red);
    }

    @media (hover: none) and (pointer: coarse) {
      .service-card.is-pressed::before,
      .service-card:active::before,
      .service-card:focus::before,
      .service-card:focus-visible::before,
      .service-card.is-pressed .card-icon,
      .service-card:active .card-icon,
      .service-card:focus .card-icon,
      .service-card:focus-visible .card-icon,
      .service-card.is-pressed .card-name,
      .service-card:active .card-name,
      .service-card:focus .card-name,
      .service-card:focus-visible .card-name,
      .service-card.is-pressed .card-cta,
      .service-card:active .card-cta,
      .service-card:focus .card-cta,
      .service-card:focus-visible .card-cta {
        transition-duration: 0s;
      }
    }

    .home-tail {
      padding-top: clamp(2rem, 5vw, 4rem);
    }

    @media (min-width: 1101px) {
      .hero-layout {
        min-height: 0;
        height: 100%;
      }

      .booking-panel {
        min-height: 0;
        gap: clamp(0.65rem, 1vh, 0.95rem);
        padding: clamp(0.75rem, 1.35vw, 1.15rem);
      }

      .services-grid {
        min-height: 100%;
        align-content: start;
      }

      .service-card {
        min-height: 0;
        padding: clamp(0.55rem, 0.8vw, 0.8rem) clamp(0.55rem, 0.8vw, 0.75rem);
        gap: clamp(0.3rem, 0.5vw, 0.55rem);
      }

      .card-icon {
        font-size: clamp(1.18rem, 1.3vw, 1.45rem);
      }

      .card-name {
        font-size: clamp(0.62rem, 0.58vw, 0.72rem);
      }

      .card-cta {
        font-size: clamp(0.52rem, 0.48vw, 0.6rem);
      }

      .home-tail {
        padding-top: 0.6rem;
      }

      .contact-strip {
        padding: 0.9rem 1.35rem;
        margin-bottom: 0.7rem;
      }

      .contact-strip-text h3 {
        font-size: clamp(1.15rem, 1.6vw, 1.45rem);
      }

      .contact-strip-text p {
        font-size: 0.74rem;
        margin-top: 0.15rem;
      }

      .contact-link {
        padding: 0.55rem 0.95rem;
        font-size: 0.72rem;
      }

      footer {
        min-height: var(--header-row-height);
      }

      .footer-copy {
        font-size: 0.68rem;
      }
    }

    @media (max-width: 1100px) {
      html {
        scroll-behavior: auto;
      }

      body,
      .home-main {
        min-height: 100svh;
      }

      @supports not (height: 100svh) {
        body,
        .home-main {
          min-height: 100vh;
        }
      }

      .hero-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
          "media"
          "booking";
        min-height: auto;
      }

      .hero-media {
        min-height: calc(100svh - var(--header-total-height));
        height: calc(100svh - var(--header-total-height));
      }

      @supports not (height: 100svh) {
        .hero-media {
          min-height: calc(100vh - var(--header-total-height));
          height: calc(100vh - var(--header-total-height));
        }
      }

      .hero-video-shell,
      .hero-video-shell video {
        min-height: 100%;
      }

      .hero-booking {
        border-right: 0;
        border-top: 1px solid var(--light-grey);
      }

      .hero-scroll-cue {
        display: inline-flex;
      }
    }

    @media (max-width: 700px) {
      .booking-panel {
        padding: 1.25rem 1rem 1.5rem;
        gap: 1rem;
      }

      .mobile-menu-popover {
        top: calc(var(--header-total-height) + 0.7rem);
        right: max(0.75rem, var(--safe-right));
        left: max(0.75rem, var(--safe-left));
        padding: 0.4rem 0.78rem;
        border-radius: 16px;
      }

      .mobile-menu-tile {
        min-height: 48px;
        padding: 0.72rem 0.1rem;
        gap: 0.72rem;
        font-size: 0.78rem;
      }

      .hero-scroll-cue {
        bottom: 1rem;
        padding: 0.48rem 0.82rem;
        gap: 0.5rem;
      }

      .hero-scroll-cue span {
        font-size: 0.62rem;
      }

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

      .service-card {
        min-height: 104px;
        padding: 1rem 0.8rem 0.95rem;
      }

      .footer-shell {
        padding-left: max(1rem, var(--safe-left));
        padding-right: max(1rem, var(--safe-right));
      }
    }

    /* ── CONTACT STRIP ── */
    .contact-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      background: var(--dark);
      border-radius: var(--card-radius);
      padding: 2rem 2.5rem;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .contact-strip-text h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      color: var(--white);
      letter-spacing: 0.04em;
      line-height: 1.1;
    }

    .contact-strip-text p {
      font-size: 0.82rem;
      color: var(--mid-grey);
      margin-top: 0.3rem;
    }

    .contact-links {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.65rem 1.2rem;
      border-radius: 99px;
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
      transition: all var(--transition);
    }

    .contact-link.phone {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--white);
    }

    .contact-link.phone:hover {
      background: rgba(255,255,255,0.14);
      transform: translateY(-2px);
    }

    .contact-link.mail {
      background: var(--red);
      color: var(--white);
    }

    .contact-link.mail:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232,16,16,0.3);
    }

    @media (max-width: 600px) {
      .contact-strip { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--light-grey);
      min-height: var(--header-row-height);
      padding: 0;
      display: flex;
      align-items: center;
    }
    .footer-inner {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: var(--header-row-height);
      flex-wrap: nowrap;
    }

    .footer-logo { height: 24px; width: auto; display: block; }

    .footer-copy {
      font-size: 0.72rem;
      color: var(--mid-grey);
      letter-spacing: 0.04em;
      white-space: nowrap;
      text-align: right;
    }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.in { opacity: 1; transform: translateY(0); }

    .service-card {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease, background var(--transition);
    }
    .service-card.in { opacity: 1; transform: translateY(0); }

    html.dark-theme body {
      background: #111111;
      color: #f7f7f7;
    }

    html.dark-theme ::-webkit-scrollbar-track {
      background: #111111;
    }

    html.dark-theme ::-webkit-scrollbar-thumb {
      background: #44443f;
    }

    html.dark-theme header {
      background: #171715;
      border-color: #2a2a28;
    }

    html.dark-theme header.scrolled {
      box-shadow: 0 6px 28px rgba(0,0,0,0.36);
    }

    html.dark-theme .logo-img,
    html.dark-theme .footer-logo {
      filter: brightness(0) invert(1);
    }

    html.dark-theme .header-btn {
      color: #f7f7f7;
    }

    html.dark-theme .header-btn:hover {
      border-color: #333330;
      background: #1c1c1a;
      color: #ffffff;
    }

    html.dark-theme .header-btn.mobile-menu-toggle {
      border-color: #2a2a28;
      background: linear-gradient(180deg, rgba(28,28,26,0.98) 0%, rgba(20,20,19,0.98) 100%);
    }

    html.dark-theme .header-btn.mobile-menu-toggle:hover {
      border-color: #333330;
      background: linear-gradient(180deg, rgba(31,31,29,0.98) 0%, rgba(24,24,22,0.98) 100%);
      color: #ffffff;
    }

    html.dark-theme .mobile-menu-popover {
      border-color: #2a2a28;
      background: rgba(23,23,21,0.96);
      box-shadow: 0 18px 42px rgba(0,0,0,0.38);
    }

    html.dark-theme .mobile-menu-tile {
      border-color: #2a2a28;
      background: transparent;
      color: #f7f7f7;
    }

    html.dark-theme .mobile-menu-tile i {
      color: #ff5b5b;
    }

    html.dark-theme .mobile-menu-backdrop {
      background: rgba(0,0,0,0.28);
    }

    html.dark-theme .book-btn,
    html.dark-theme .book-btn:hover {
      color: #ffffff;
    }

    html.dark-theme .hero-layout,
    html.dark-theme footer {
      border-color: #2a2a28;
    }

    html.dark-theme .hero-booking {
      background: #111111;
      border-color: #2a2a28;
    }

    html.dark-theme .footer-copy {
      color: #8c8c86;
    }

    html.dark-theme .services-grid {
      border-color: #2a2a28;
      background: #2a2a28;
    }

    html.dark-theme .service-card {
      background: #171715;
    }

    html.dark-theme .service-card::before {
      background: #000000;
    }

    html.dark-theme .card-icon,
    html.dark-theme .card-name {
      color: #f7f7f7;
    }

    html.dark-theme .hero-scroll-cue {
      border-color: rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08);
    }

    html.dark-theme .service-card.is-pressed .card-name,
    html.dark-theme .service-card:hover .card-name,
    html.dark-theme .service-card:active .card-name,
    html.dark-theme .service-card:focus .card-name,
    html.dark-theme .service-card:focus-visible .card-name {
      color: #ffffff;
    }

    html.dark-theme .contact-strip {
      background: #050505;
    }

    html.dark-theme .contact-strip-text p {
      color: #b9b9b9;
    }
