﻿    /* â•â• THEMES â•â• */
    [data-theme="dark"] {
      --bg: #060606;
      --bg2: #0c0c0c;
      --bg3: #131313;
      --gold: #d4a843;
      --gold2: #f0cc77;
      --gold-d: #a87c28;
      --cream: #f2ead8;
      --muted: rgba(242, 234, 216, .5);
      --border: rgba(242, 234, 216, .07);
      --border-g: rgba(212, 168, 67, .22);
      --nav-bg: rgba(6, 6, 6, .95);
      --card-bg: #0c0c0c;
      --input-bg: rgba(242, 234, 216, .04);
      --input-border: rgba(242, 234, 216, .12);
      --shadow: rgba(0, 0, 0, .5);
      --grain: .28;
      --img-filter: saturate(.72) contrast(1.18) brightness(.82);
    }

    [data-theme="light"] {
      --bg: #e6dfca;
      --bg2: #d8cfae;
      --bg3: #c8bf92;
      --gold: #7a5a06;
      --gold2: #9a7209;
      --gold-d: #5c4305;
      --cream: #0f0a00;
      --muted: rgba(15, 10, 0, .88);
      --border: rgba(15, 10, 0, .2);
      --border-g: rgba(122, 90, 6, .5);
      --nav-bg: rgba(230, 223, 202, .97);
      --card-bg: #f3efe6;
      --input-bg: rgba(15, 10, 0, .07);
      --input-border: rgba(15, 10, 0, .28);
      --shadow: rgba(0, 0, 0, .18);
      --grain: 0;
      --img-filter: saturate(.9) contrast(1.08) brightness(.92);
    }

    /* â•â• BASE â•â• */
    *,
    *::before,
    *::after {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--bg);
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      transition: background .35s, color .35s;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 999;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: var(--grain);
    }

    img {
      max-width: 100%;
    }

    a,
    button {
      -webkit-tap-highlight-color: transparent;
    }

    /* â•â• THEME TOGGLE â•â• */
    .theme-toggle {
      width: 48px;
      height: 26px;
      border-radius: 13px;
      cursor: pointer;
      background: var(--border-g);
      border: 1px solid var(--border-g);
      position: relative;
      display: flex;
      align-items: center;
      padding: 3px;
      flex-shrink: 0;
      transition: background .3s;
    }

    .tt-knob {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      position: absolute;
      left: 3px;
      transition: transform .3s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .55rem;
      color: #000;
      box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    }

    [data-theme="light"] .tt-knob {
      transform: translateX(22px);
    }

    .tt-icon {
      position: absolute;
      font-size: .58rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      opacity: .6;
    }

    .tt-icon.sun {
      right: 5px;
    }

    .tt-icon.moon {
      left: 5px;
    }

    /* â•â• NAVBAR â•â• */
    .navbar {
      background: var(--nav-bg) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-g);
      padding: .75rem 1rem;
      transition: background .35s;
    }

    .navbar-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.55rem;
      letter-spacing: .1em;
      color: var(--gold) !important;
      text-shadow: 0 0 24px rgba(212, 168, 67, .35);
    }

    .nav-link {
      color: var(--muted) !important;
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: .45rem 1rem !important;
      transition: color .2s !important;
    }

    .nav-link:hover {
      color: var(--gold) !important;
    }

    .navbar-collapse {
      background: var(--nav-bg);
      border-top: 1px solid var(--border-g);
      margin: 0 -1rem;
      padding: .75rem 1rem;
    }

    @media(min-width:992px) {
      .navbar-collapse {
        background: transparent;
        border-top: none;
        margin: 0;
        padding: 0;
      }
    }

    .nav-social {
      display: flex;
      gap: .55rem;
      align-items: center;
    }

    .nav-social a {
      color: var(--muted);
      font-size: .78rem;
      transition: color .2s;
      text-decoration: none;
    }

    .nav-social a:hover {
      color: var(--gold);
    }

    .btn-book {
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: #000 !important;
      border: none;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .55rem 1.5rem;
      transition: all .2s;
      box-shadow: 0 0 18px rgba(212, 168, 67, .25);
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }

    .btn-book:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 28px rgba(212, 168, 67, .48);
    }

    /* â•â• HERO â•â• */
    #hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px;
      background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(212, 168, 67, .05) 0%, transparent 70%);
    }

    [data-theme="light"] #hero {
      background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(184, 134, 11, .07) 0%, transparent 70%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(212, 168, 67, .018) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(212, 168, 67, .018) 80px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .6rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      animation: fadeUp .7s .1s both;
      flex-wrap: nowrap;
    }

    .eyebrow-pip {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--gold);
      box-shadow: 0 0 8px var(--gold);
      animation: pip 2.2s ease-in-out infinite;
    }

    @keyframes pip {

      0%,
      100% {
        box-shadow: 0 0 5px var(--gold)
      }

      50% {
        box-shadow: 0 0 16px var(--gold), 0 0 28px var(--gold2)
      }
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.6rem, 14vw, 10rem);
      line-height: .88;
      letter-spacing: .015em;
      animation: fadeUp .7s .22s both;
    }

    .title-outline {
      -webkit-text-stroke: 1.5px var(--gold);
      color: transparent;
      text-shadow: 0 0 60px rgba(212, 168, 67, .2);
    }

    .hero-serif {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1rem, 3.5vw, 2rem);
      color: var(--muted);
      margin-top: .25rem;
      animation: fadeUp .7s .34s both;
    }

    .hero-body {
      font-size: clamp(.82rem, 2.2vw, .95rem);
      line-height: 1.85;
      color: var(--muted);
      margin-top: 1.2rem;
      animation: fadeUp .7s .45s both;
    }

    .hero-actions {
      display: flex;
      gap: .9rem;
      align-items: center;
      margin-top: 2rem;
      flex-wrap: wrap;
      animation: fadeUp .7s .56s both;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: #000;
      border: none;
      padding: .85rem 1.8rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      box-shadow: 0 4px 24px rgba(212, 168, 67, .28);
      text-decoration: none;
      display: inline-block;
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(212, 168, 67, .5);
      color: #000;
    }

    .btn-ghost {
      background: none;
      color: var(--cream);
      border: 1px solid var(--border);
      padding: .85rem 1.6rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .75rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* â•â• HERO SLIDESHOW â•â• */
    .car-slideshow-wrap {
      position: relative;
      animation: fadeIn 1.1s .4s both;
    }

    .slideshow-clip {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16/10;
    }

    @media(min-width:992px) {
      .slideshow-clip {
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
      }
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: var(--img-filter);
      transition: transform .9s ease, filter .9s ease;
    }

    .carousel-item.active img {
      transform: scale(1.03);
    }

    .slideshow-clip::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, .13) 4px);
    }

    .slideshow-clip::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background:
        linear-gradient(to right, rgba(6, 6, 6, .75) 0%, transparent 30%, transparent 70%, rgba(6, 6, 6, .55) 100%),
        linear-gradient(to bottom, rgba(6, 6, 6, .5) 0%, transparent 30%, transparent 65%, rgba(6, 6, 6, .7) 100%);
    }

    [data-theme="light"] .slideshow-clip::after {
      background:
        linear-gradient(to right, rgba(248, 244, 236, .55) 0%, transparent 30%, transparent 70%, rgba(248, 244, 236, .4) 100%),
        linear-gradient(to bottom, rgba(248, 244, 236, .35) 0%, transparent 30%, transparent 65%, rgba(248, 244, 236, .5) 100%);
    }

    .sl-corner {
      position: absolute;
      z-index: 6;
      width: 24px;
      height: 24px;
      pointer-events: none
    }

    .sl-corner.tl {
      top: 12px;
      left: 16px;
      border-top: 2px solid var(--gold);
      border-left: 2px solid var(--gold)
    }

    .sl-corner.tr {
      top: 12px;
      right: 16px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold)
    }

    .sl-corner.bl {
      bottom: 12px;
      left: 16px;
      border-bottom: 2px solid var(--gold);
      border-left: 2px solid var(--gold)
    }

    .sl-corner.br {
      bottom: 12px;
      right: 16px;
      border-bottom: 2px solid var(--gold);
      border-right: 2px solid var(--gold)
    }

    .sl-badge {
      position: absolute;
      z-index: 7;
      background: rgba(6, 6, 6, .85);
      border: 1px solid var(--border-g);
      backdrop-filter: blur(8px);
      padding: .55rem .9rem;
      box-shadow: 0 6px 24px var(--shadow), inset 0 1px 0 rgba(212, 168, 67, .1);
      pointer-events: none;
    }

    [data-theme="light"] .sl-badge {
      background: rgba(255, 255, 255, .9);
    }

    .sl-badge .bnum {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.4rem, 4vw, 2rem);
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .sl-badge .blbl {
      font-size: .52rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      opacity: .4;
      margin-top: .1rem;
    }

    .sl-badge.b1 {
      top: 12px;
      right: 12px;
      animation: float-a 4s ease-in-out infinite;
    }

    .sl-badge.b2 {
      bottom: 48px;
      left: 12px;
      animation: float-b 4.5s ease-in-out 1s infinite;
    }

    @media(min-width:576px) {
      .sl-badge.b1 {
        top: 16px;
        right: 32px;
      }

      .sl-badge.b2 {
        bottom: 54px;
        left: 28px;
      }
    }

    @keyframes float-a {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    @keyframes float-b {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    .sl-strip {
      position: absolute;
      bottom: 36px;
      right: 0;
      z-index: 7;
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      color: #000;
      font-size: .52rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: .38rem 1.4rem .38rem .9rem;
      clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .sl-caption {
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      z-index: 7;
      text-align: center;
      font-size: .56rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(242, 234, 216, .3);
      pointer-events: none;
    }

    .sl-glow {
      position: absolute;
      bottom: -8px;
      left: 8%;
      right: 8%;
      height: 18px;
      background: radial-gradient(ellipse, rgba(212, 168, 67, .28) 0%, transparent 70%);
      filter: blur(12px);
      animation: glow-breath 3s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes glow-breath {

      0%,
      100% {
        opacity: .5
      }

      50% {
        opacity: 1
      }
    }

    .sl-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: .8rem;
      padding: 0 2px;
    }

    .sl-arrow {
      width: 36px;
      height: 36px;
      background: rgba(212, 168, 67, .08);
      border: 1px solid var(--border-g);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      cursor: pointer;
      transition: all .22s;
      min-width: 36px;
    }

    .sl-arrow:hover {
      background: rgba(212, 168, 67, .18);
      border-color: var(--gold);
    }

    .sl-indicators {
      display: flex;
      gap: .45rem;
      align-items: center;
    }

    .sl-dot {
      width: 18px;
      height: 2px;
      background: rgba(212, 168, 67, .22);
      cursor: pointer;
      transition: all .3s;
      border: none;
      padding: 0;
    }

    .sl-dot.active {
      width: 32px;
      background: var(--gold);
      box-shadow: 0 0 7px rgba(212, 168, 67, .5);
    }

    .sl-progress {
      height: 1px;
      background: rgba(212, 168, 67, .12);
      margin-top: .5rem;
      overflow: hidden;
    }

    .sl-progress-bar {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      width: 0;
    }

    /* â•â• MOBILE HERO IMAGE (no slideshow) â•â• */
    .hero-mobile-img {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
      margin-top: 1.5rem;
    }

    .hero-mobile-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      filter: var(--img-filter);
    }

    .hero-mobile-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 75%, var(--bg) 100%);
      pointer-events: none;
    }

    .hero-mobile-badges {
      display: flex;
      gap: .7rem;
      margin-top: 1rem;
    }

    .hm-badge {
      flex: 1;
      background: var(--bg2);
      border: 1px solid var(--border-g);
      padding: .65rem .9rem;
      text-align: center;
    }

    .hm-badge .bnum {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.7rem;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hm-badge .blbl {
      font-size: .5rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      opacity: .38;
      margin-top: .1rem;
    }

    /* â•â• LICENSING â•â• */
    #licensing {
      border-top: 1px solid var(--border-g);
      border-bottom: 1px solid var(--border-g);
      padding: clamp(2.5rem, 6vw, 4rem) 0;
      background: var(--bg2);
    }

    .lic-eyebrow {
      font-size: .6rem;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--gold);
      text-align: center;
      margin-bottom: 2rem;
      opacity: .7;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .7rem;
    }

    .lic-eyebrow::before,
    .lic-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: var(--gold);
      opacity: .4;
    }

    .lic-card {
      background: var(--bg3);
      border: 1px solid var(--border-g);
      padding: 1.6rem;
      text-align: center;
      transition: all .35s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .lic-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .lic-card:hover::after {
      transform: scaleX(1);
    }

    .lic-card:hover {
      border-color: rgba(212, 168, 67, .4);
      transform: translateY(-3px);
      box-shadow: 0 14px 40px var(--shadow);
    }

    .lic-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      letter-spacing: .06em;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .lic-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      margin: .35rem 0 .5rem;
      color: var(--cream);
    }

    .lic-info {
      font-size: .7rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .lic-arrow {
      color: var(--gold);
      opacity: .25;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: .5rem 0;
    }

    /* â•â• STATS â•â• */
    .stats-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stat-cell {
      padding: clamp(1.8rem, 5vw, 3rem) 1rem;
      text-align: center;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: background .3s;
      background: var(--bg);
    }

    .stat-cell:nth-child(2n) {
      border-right: none;
    }

    .stat-cell:nth-last-child(-n+2) {
      border-bottom: none;
    }

    @media(min-width:768px) {
      .stat-cell {
        border-right: 1px solid var(--border);
        border-bottom: none;
      }

      .stat-cell:last-child {
        border-right: none;
      }
    }

    .stat-cell::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(212, 168, 67, .07), transparent 60%);
      opacity: 0;
      transition: opacity .3s;
    }

    .stat-cell:hover::before {
      opacity: 1;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 8vw, 3.8rem);
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }

    .stat-lbl {
      font-size: .6rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      opacity: .33;
      margin-top: .4rem;
      display: block;
    }

    /* â•â• SECTION UTILS â•â• */
    .sec-pad {
      padding: clamp(3.5rem, 10vw, 8rem) 0;
    }

    .sec-eyebrow {
      font-size: .6rem;
      letter-spacing: .34em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-bottom: .7rem;
    }

    .sec-eyebrow::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 1px;
      background: var(--gold);
    }

    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 8vw, 5rem);
      line-height: .93;
      letter-spacing: .02em;
    }

    .sec-serif {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1rem, 3vw, 1.45rem);
      color: var(--muted);
      margin-top: .3rem;
    }

    .gold-line {
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 1.2rem 0 1.7rem;
    }

    .sec-body {
      font-size: clamp(.82rem, 2.2vw, .95rem);
      line-height: 1.9;
      color: var(--muted);
    }

    /* â•â• ABOUT â•â• */
    #about {
      background: var(--bg);
    }

    .about-photo-frame {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      border: 1px solid var(--border-g);
    }

    @media(max-width:575px) {
      .about-photo-frame {
        aspect-ratio: 3/2;
      }
    }

    .about-photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: var(--img-filter);
      transition: transform .8s, filter .8s;
    }

    .about-photo-frame:hover img {
      transform: scale(1.04);
    }

    .about-photo-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(to bottom, rgba(6, 6, 6, .4) 0%, transparent 40%, transparent 55%, rgba(6, 6, 6, .65) 100%);
    }

    .about-photo-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0, 0, 0, .07) 5px);
    }

    [data-theme="light"] .about-photo-frame::before {
      background: linear-gradient(to bottom, rgba(248, 244, 236, .3) 0%, transparent 40%, transparent 55%, rgba(248, 244, 236, .5) 100%);
    }

    .ap-line {
      position: absolute;
      z-index: 3;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      pointer-events: none;
    }

    .ap-line.l {
      left: 14px;
      top: 10%;
      width: 1px;
      height: 80%;
      opacity: .3;
    }

    .ap-line.r {
      right: 14px;
      top: 10%;
      width: 1px;
      height: 80%;
      opacity: .3;
    }

    .about-corner-wrap {
      position: relative;
    }

    .about-corner {
      position: absolute;
      bottom: -12px;
      right: 0;
      width: clamp(90px, 20vw, 120px);
      height: clamp(90px, 20vw, 120px);
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 36px rgba(212, 168, 67, .35);
      z-index: 5;
    }

    .corner-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 6vw, 3rem);
      color: #000;
      line-height: 1;
    }

    .corner-txt {
      font-size: .52rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(0, 0, 0, .65);
      text-align: center;
      line-height: 1.4;
    }

    .badge-pill {
      border: 1px solid var(--border-g);
      padding: .38rem .9rem;
      font-size: .6rem;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--gold);
      transition: all .25s;
      background: none;
      cursor: default;
      margin: .2rem;
      display: inline-block;
    }

    .badge-pill:hover {
      background: rgba(212, 168, 67, .08);
      border-color: rgba(212, 168, 67, .5);
    }

    /* â•â• SERVICES â•â• */
    #services {
      background: var(--bg2);
    }

    .svc-card {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 2rem 1.8rem;
      position: relative;
      overflow: hidden;
      transition: all .35s;
      height: 100%;
    }

    .svc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212, 168, 67, .05), transparent);
      opacity: 0;
      transition: opacity .35s;
    }

    .svc-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      transition: width .45s;
    }

    .svc-card:hover::before {
      opacity: 1;
    }

    .svc-card:hover::after {
      width: 100%;
    }

    .svc-card:hover {
      border-color: var(--border-g);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px var(--shadow);
    }

    .svc-card.featured {
      border-color: rgba(212, 168, 67, .28);
    }

    .svc-tag {
      font-size: .56rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: .7;
      margin-bottom: .45rem;
    }

    .svc-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.65rem;
      letter-spacing: .04em;
      margin-bottom: .3rem;
    }

    .svc-serif {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .95rem;
      color: var(--muted);
      margin-bottom: .75rem;
    }

    .svc-desc {
      font-size: .82rem;
      line-height: 1.78;
      color: var(--muted);
      margin-bottom: 1.4rem;
    }

    .svc-price .amt {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.6rem;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .svc-price .unit {
      font-size: .66rem;
      opacity: .32;
      letter-spacing: .1em;
      margin-left: .3rem;
    }

    .svc-note {
      font-size: .65rem;
      opacity: .28;
      margin-top: .45rem;
      font-style: italic;
    }

    .svc-icon {
      margin-bottom: 1.2rem;
    }

    .svc-icon svg {
      width: 44px;
      height: 44px;
    }

    /* â•â• TESTIMONIALS â•â• */
    #testimonials {
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    #testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: .22;
    }

    .testi-slider-wrap {
      position: relative;
      overflow: hidden;
      margin-top: 2.5rem;
    }

    .testi-track {
      display: flex;
      transition: transform .6s cubic-bezier(.42, 0, .58, 1);
      will-change: transform;
    }

    .testi-slide {
      flex-shrink: 0;
      transition: transform .5s ease, opacity .5s ease;
      opacity: .45;
      transform: scale(.88);
    }

    .testi-slide.center {
      opacity: 1;
      transform: scale(1);
    }

    .testi-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: clamp(1.4rem, 4vw, 2.3rem);
      position: relative;
      overflow: hidden;
      transition: border-color .3s, box-shadow .3s;
      height: 100%;
    }

    .testi-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .testi-card:hover::before {
      transform: scaleX(1);
    }

    .testi-card:hover {
      border-color: var(--border-g);
      box-shadow: 0 14px 40px var(--shadow);
    }

    .stars-row {
      display: flex;
      gap: 3px;
      margin-bottom: .8rem;
    }

    .star {
      width: 12px;
      height: 12px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }

    .big-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.5rem;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), transparent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: -.6rem;
      opacity: .5;
    }

    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(.9rem, 2.5vw, 1.03rem);
      line-height: 1.78;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: .85rem;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: .88rem;
      color: #000;
      box-shadow: 0 0 14px rgba(212, 168, 67, .3);
    }

    .author-name {
      font-size: .82rem;
      font-weight: 500;
    }

    .author-sub {
      font-size: .6rem;
      opacity: .35;
      letter-spacing: .03em;
    }

    .testi-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.5rem;
      flex-wrap: wrap;
      gap: .8rem;
    }

    .testi-arrow {
      width: 40px;
      height: 40px;
      background: rgba(212, 168, 67, .07);
      border: 1px solid var(--border-g);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .82rem;
      cursor: pointer;
      transition: all .22s;
      min-width: 40px;
    }

    .testi-arrow:hover {
      background: rgba(212, 168, 67, .18);
      border-color: var(--gold);
    }

    .testi-dots {
      display: flex;
      gap: .4rem;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      flex: 1;
    }

    .testi-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(212, 168, 67, .22);
      cursor: pointer;
      transition: all .3s;
      border: none;
      padding: 0;
    }

    .testi-dot.active {
      background: var(--gold);
      box-shadow: 0 0 7px rgba(212, 168, 67, .5);
      transform: scale(1.3);
    }

    .testi-counter {
      font-size: .65rem;
      letter-spacing: .13em;
      text-transform: uppercase;
      opacity: .35;
      white-space: nowrap;
    }

    /* â•â• CONTACT â•â• */
    #contact {
      background: var(--bg2);
    }

    .contact-card {
      background: var(--bg);
      border: 1px solid var(--border-g);
      padding: clamp(1.4rem, 4vw, 2.4rem);
    }

    .cinfo-item {
      display: flex;
      align-items: flex-start;
      gap: .85rem;
      margin-bottom: 1rem;
    }

    .cinfo-item:last-child {
      margin-bottom: 0;
    }

    .cicon {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      background: rgba(212, 168, 67, .07);
      border: 1px solid var(--border-g);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      margin-top: 2px;
      color: var(--gold);
    }

    .ctext {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.55;
    }

    .form-ctrl {
      background: var(--input-bg) !important;
      border: 1px solid var(--input-border) !important;
      color: var(--cream) !important;
      padding: .82rem .95rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .86rem;
      outline: none !important;
      transition: border-color .2s;
      width: 100%;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    .form-ctrl:focus {
      border-color: var(--gold) !important;
      background: rgba(212, 168, 67, .04) !important;
    }

    .form-ctrl option {
      background: var(--bg);
      color: var(--cream);
    }

    textarea.form-ctrl {
      resize: vertical;
      min-height: 90px;
    }

    .form-label-c {
      font-size: .58rem;
      letter-spacing: .19em;
      text-transform: uppercase;
      opacity: .38;
      margin-bottom: .32rem;
      display: block;
      color: var(--cream);
    }

    /* â•â• FOOTER â•â• */
    footer {
      border-top: 1px solid var(--border-g);
      background: var(--bg3);
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: .25;
    }

    .foot-top {
      padding: clamp(2rem, 6vw, 3.5rem) 1rem clamp(1.5rem, 4vw, 2.5rem);
      border-bottom: 1px solid var(--border);
    }

    .foot-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.85rem;
      letter-spacing: .1em;
      color: var(--gold);
      display: block;
      margin-bottom: .4rem;
    }

    .foot-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .95rem;
      color: var(--muted);
      margin-bottom: 1.2rem;
    }

    .foot-social {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }

    .foot-social a {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border-g);
      background: rgba(212, 168, 67, .04);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: .82rem;
      text-decoration: none;
      transition: all .22s;
    }

    .foot-social a:hover {
      background: rgba(212, 168, 67, .14);
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .foot-col-title {
      font-size: .6rem;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: .7;
      margin-bottom: 1.1rem;
      display: block;
    }

    .foot-link {
      display: flex;
      align-items: center;
      gap: .45rem;
      color: var(--muted);
      text-decoration: none;
      font-size: .78rem;
      margin-bottom: .65rem;
      transition: color .2s;
    }

    .foot-link i {
      font-size: .52rem;
      color: var(--gold);
      opacity: .5;
    }

    .foot-link:hover {
      color: var(--gold);
    }

    .foot-ext-link {
      display: flex;
      align-items: flex-start;
      gap: .45rem;
      color: var(--muted);
      text-decoration: none;
      font-size: .76rem;
      margin-bottom: .65rem;
      transition: color .2s;
      line-height: 1.4;
    }

    .foot-ext-link i {
      font-size: .48rem;
      color: var(--gold);
      opacity: .4;
      flex-shrink: 0;
      margin-top: .2rem;
    }

    .foot-ext-link:hover {
      color: var(--gold);
    }

    .foot-bottom {
      padding: .9rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .6rem;
    }

    .foot-copy {
      font-size: .62rem;
      opacity: .22;
      letter-spacing: .03em;
    }

    .foot-bottom-links a {
      font-size: .62rem;
      opacity: .26;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      transition: all .2s;
      margin-left: 1.4rem;
    }

    .foot-bottom-links a:hover {
      opacity: .6;
      color: var(--gold);
    }

    /* â•â• REVEAL â•â• */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    /* â•â• TOUCH TARGET SIZING â•â• */
    button,
    a {
      min-height: 0;
    }

    @media(max-width:767px) {

      .btn-gold,
      .btn-ghost,
      .btn-book {
        padding: .82rem 1.5rem;
        font-size: .72rem;
      }

      .testi-arrow,
      .sl-arrow {
        width: 44px;
        height: 44px;
      }
    }

    /* == PAGE BANNER == */
    .page-banner {
      padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 8vw, 5rem);
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .page-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 168, 67, .06) 0%, transparent 70%);
    }

    .page-banner .sec-title {
      margin-bottom: .3rem;
    }

    /* == FAQ ACCORDION == */
    .faq-item {
      border: 1px solid var(--border);
      margin-bottom: .75rem;
      transition: border-color .3s;
    }

    .faq-item:hover {
      border-color: var(--border-g);
    }

    .faq-question {
      width: 100%;
      background: var(--bg2);
      border: none;
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      text-align: left;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: background .2s;
    }

    .faq-question:hover {
      background: var(--bg3);
    }

    .faq-question i {
      color: var(--gold);
      font-size: .7rem;
      transition: transform .3s;
      flex-shrink: 0;
    }

    .faq-question[aria-expanded="true"] i {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 1.5rem 1.3rem;
      background: var(--bg2);
      font-size: .86rem;
      line-height: 1.85;
      color: var(--muted);
    }

    /* == ABOUT PAGE EXTRAS == */
    .about-detail-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 1.8rem;
      height: 100%;
      transition: all .3s;
    }

    .about-detail-card:hover {
      border-color: var(--border-g);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px var(--shadow);
    }

    .about-detail-card .card-icon {
      font-size: 1.6rem;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .about-detail-card h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: .04em;
      margin-bottom: .5rem;
    }

    .about-detail-card p {
      font-size: .84rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .nav-link.active {
      color: var(--gold) !important;
      font-weight: 500;
    }

    .page-banner {
      padding-top: 140px;
      padding-bottom: 60px;
    }

    @media(min-width:992px) {
      .page-banner {
        padding-top: 160px;
        padding-bottom: 80px;
      }
    }