      :root {
        color-scheme: dark;
        --page: #08090a;
        --surface: #0f1011;
        --surface-2: #161718;
        --text: #f7f8f8;
        --muted: #cbb88f;
        --line: #5a4528;
        --accent: #d8aa4a;
        --accent-2: #f3d47d;
        --accent-text: #08090a;
        --gold: linear-gradient(135deg, #8a5b18 0%, #f7d985 38%, #b47a21 68%, #fff2b6 100%);
        --hero-overlay: linear-gradient(90deg, rgba(8, 9, 10, 0.91) 0%, rgba(8, 9, 10, 0.58) 46%, rgba(8, 9, 10, 0.18) 100%);
        --hero-image: url("https://images.unsplash.com/photo-1623107935331-7164fb0d6978?auto=format&fit=crop&w=2400&q=82");
        --radius: 8px;
        --max: 1180px;
        --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      body[data-theme="light"] {
        color-scheme: light;
        --page: #f5f5f7;
        --surface: #ffffff;
        --surface-2: #e8e8ed;
        --text: #1d1d1f;
        --muted: #474747;
        --line: #d6d6d6;
        --accent: #0071e3;
        --accent-2: #596680;
        --accent-text: #ffffff;
        --hero-overlay: linear-gradient(90deg, rgba(245, 245, 247, 0.94) 0%, rgba(245, 245, 247, 0.68) 45%, rgba(245, 245, 247, 0.12) 100%);
        --hero-image: url("https://images.unsplash.com/photo-1723585126886-f31a77294a43?auto=format&fit=crop&w=2400&q=82");
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        background: var(--page);
        color: var(--text);
        font-family: var(--font);
        letter-spacing: 0;
        overflow-x: hidden;
        transition: background 260ms ease, color 260ms ease;
      }

      body::selection {
        background: var(--accent);
        color: var(--accent-text);
      }

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

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

      button,
      input,
      textarea {
        font: inherit;
        letter-spacing: 0;
      }

      .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 38%);
        background: color-mix(in srgb, var(--page), transparent 16%);
        backdrop-filter: blur(18px);
      }

      .nav {
        width: min(var(--max), calc(100% - 32px));
        min-height: 64px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        white-space: nowrap;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
        border: 1px solid color-mix(in srgb, var(--accent), transparent 22%);
        border-radius: 999px;
        display: inline-grid;
        place-items: center;
        background:
          radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--accent-2), transparent 34%), transparent 34%),
          linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 78%), transparent 62%),
          var(--surface);
      }

      .brand-mark svg {
        width: 30px;
        height: 30px;
      }

      .brand-mark img {
        width: 30px;
        height: 30px;
        object-fit: contain;
      }

      .brand-name {
        display: grid;
        gap: 1px;
        line-height: 1;
      }

      .brand-name strong {
        color: var(--text);
        font-size: 14px;
      }

      .brand-name span {
        color: var(--accent);
        font-size: 10px;
        letter-spacing: 0.18em;
      }

      .gold-fill {
        fill: url("#goldGradient");
      }

      .epic-logo-lockup {
        display: block;
        width: min(560px, 100%);
        margin: 18px 0 14px;
        color: var(--accent);
        filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.42));
      }

      .epic-logo-lockup .logo-main {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 142px;
        font-weight: 700;
        letter-spacing: 0.03em;
      }

      .epic-logo-lockup .logo-sub {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 58px;
        letter-spacing: 0.38em;
      }

      .epic-logo-lockup .logo-events {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 28px;
        letter-spacing: 0.44em;
      }

      .theme-switcher {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 4px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 20%);
        border-radius: 999px;
        background: color-mix(in srgb, var(--surface), transparent 8%);
      }

      .theme-switcher button {
        width: 36px;
        min-height: 34px;
        border: 0;
        border-radius: 999px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        color: var(--muted);
        background: transparent;
        cursor: pointer;
        white-space: nowrap;
      }

      .theme-switcher svg {
        width: 17px;
        height: 17px;
      }

      .theme-switcher button[aria-pressed="true"] {
        color: var(--accent-text);
        background: var(--accent);
      }

      .language-switcher,
      .mobile-menu-language {
        min-height: 42px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 20%);
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: color-mix(in srgb, var(--surface), transparent 8%);
        color: var(--muted);
        font-size: 12px;
        font-weight: 850;
        text-transform: uppercase;
      }

      .language-switcher {
        padding: 0 8px 0 12px;
      }

      .language-switcher svg {
        width: 16px;
        height: 16px;
        color: var(--accent);
      }

      .language-switcher select,
      .mobile-menu-language select {
        min-height: 30px;
        border: 0;
        border-radius: 999px;
        background: var(--accent);
        color: var(--accent-text);
        font: inherit;
        font-weight: 900;
        outline: none;
        cursor: pointer;
      }

      .language-switcher select {
        padding: 0 22px 0 10px;
      }

      .mobile-menu-language {
        width: 100%;
        justify-content: space-between;
        border-radius: var(--radius);
        padding: 10px;
        text-transform: none;
      }

      .mobile-menu-language select {
        padding: 0 26px 0 12px;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 14px;
        color: var(--muted);
      }

      .nav-links li {
        list-style: none;
      }

      .nav-links a {
        padding: 8px 0;
      }

      .nav-links a:hover {
        color: var(--text);
      }

      .mobile-menu-button {
        width: 44px;
        height: 44px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: 999px;
        display: none;
        place-items: center;
        color: var(--text);
        background: color-mix(in srgb, var(--surface), transparent 8%);
        cursor: pointer;
      }

      .mobile-menu-button svg {
        width: 20px;
        height: 20px;
      }

      .mobile-menu-button .mobile-icon-close,
      .mobile-menu-button[aria-expanded="true"] .mobile-icon-open {
        display: none;
      }

      .mobile-menu-button[aria-expanded="true"] .mobile-icon-close {
        display: block;
      }

      .mobile-menu-panel {
        display: none;
      }

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

      .mobile-menu-inner {
        display: grid;
        gap: 10px;
      }

      .mobile-menu-link {
        min-height: 46px;
        padding: 0 14px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: color-mix(in srgb, var(--surface), transparent 4%);
        color: var(--text);
        font-weight: 750;
      }

      .mobile-menu-link svg {
        width: 18px;
        height: 18px;
        color: var(--accent);
      }

      .mobile-menu-themes {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: var(--radius);
        background: color-mix(in srgb, var(--surface), transparent 4%);
      }

      .mobile-menu-themes button {
        min-width: 0;
        min-height: 40px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0 8px;
        color: var(--muted);
        background: transparent;
        cursor: pointer;
        font-size: 13px;
        font-weight: 750;
      }

      .mobile-menu-themes svg {
        width: 18px;
        height: 18px;
      }

      .mobile-menu-themes button[aria-pressed="true"] {
        border-color: var(--accent);
        background: var(--accent);
        color: var(--accent-text);
      }

      .mobile-menu-cta {
        width: 100%;
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .hero {
        min-height: 86svh;
        padding: 116px 0 76px;
        position: relative;
        isolation: isolate;
        display: grid;
        align-items: center;
        background-image: var(--hero-overlay), var(--hero-image);
        background-position: center;
        background-size: cover;
      }

      .hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 22%;
        background: linear-gradient(180deg, transparent, var(--page));
        z-index: -1;
      }

      .hero-inner,
      .section-inner {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
      }

      .hero-copy {
        width: min(690px, 100%);
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 32px;
        padding: 0 10px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 20%);
        border-radius: 999px;
        background: color-mix(in srgb, var(--surface), transparent 12%);
        color: var(--muted);
        font-size: 13px;
        font-weight: 650;
      }

      .eyebrow svg {
        width: 15px;
        height: 15px;
        color: var(--accent);
      }

      h1 {
        margin: 18px 0 0;
        max-width: 620px;
        font-size: 58px;
        line-height: 1;
        font-weight: 820;
      }

      .hero-copy p {
        margin: 22px 0 0;
        max-width: 610px;
        color: var(--muted);
        font-size: 20px;
        line-height: 1.55;
      }

      .hero-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 34px;
      }

      .btn {
        min-height: 46px;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 0 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        font-weight: 750;
        cursor: pointer;
        transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
      }

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

      .btn svg {
        width: 18px;
        height: 18px;
      }

      .btn.primary {
        border-color: var(--accent);
        background: var(--accent);
        color: var(--accent-text);
      }

      .btn.secondary {
        background: color-mix(in srgb, var(--surface), transparent 6%);
        color: var(--text);
      }

      .hero-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 44px;
        color: var(--muted);
      }

      .hero-meta strong {
        display: block;
        color: var(--text);
        font-size: 28px;
        line-height: 1.1;
      }

      .hero-meta span {
        display: block;
        margin-top: 5px;
        font-size: 13px;
      }

      main {
        background: var(--page);
      }

      section {
        padding: 84px 0;
      }

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

      .section-head > *,
      .cta-inner > * {
        min-width: 0;
      }

      .section-kicker {
        color: var(--accent);
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 800;
      }

      h2 {
        margin: 8px 0 0;
        max-width: 720px;
        font-size: 44px;
        line-height: 1.08;
        overflow-wrap: break-word;
      }

      .section-head p {
        max-width: 430px;
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
      }

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

      .direction-card {
        position: relative;
        min-height: 430px;
        overflow: hidden;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: var(--radius);
        background: var(--surface);
        color: var(--text);
        cursor: pointer;
        text-align: left;
        padding: 0;
      }

      .direction-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82) 100%);
        z-index: 1;
      }

      .direction-card img {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        object-fit: cover;
        transition: transform 380ms ease;
      }

      .direction-card:hover img,
      .direction-card.is-active img {
        transform: scale(1.04);
      }

      .direction-content {
        position: absolute;
        inset: auto 0 0 0;
        z-index: 2;
        padding: 22px;
        color: #ffffff;
      }

      .direction-content small {
        display: inline-flex;
        min-height: 28px;
        align-items: center;
        padding: 0 9px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.82);
        background: rgba(0, 0, 0, 0.28);
      }

      .direction-content h3 {
        margin: 16px 0 8px;
        font-size: 28px;
        line-height: 1.08;
      }

      .direction-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.5;
      }

      .direction-card.is-active {
        outline: 2px solid var(--accent);
        outline-offset: 3px;
      }

      .portfolio {
        background: var(--surface);
      }

      .portfolio-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 1fr;
        grid-auto-rows: 220px;
        gap: 16px;
      }

      .portfolio-item {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius);
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        background: var(--surface-2);
      }

      .portfolio-item.large {
        grid-row: span 2;
      }

      .portfolio-item.wide {
        grid-column: span 2;
      }

      .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .portfolio-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78));
      }

      .portfolio-caption {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 2;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .portfolio-caption strong {
        display: block;
        font-size: 17px;
      }

      .portfolio-caption span {
        display: block;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 13px;
      }

      .play-dot {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        background: var(--accent);
        color: var(--accent-text);
      }

      .play-dot svg {
        width: 18px;
        height: 18px;
      }

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

      .service {
        min-width: 0;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: var(--radius);
        background: var(--surface);
        padding: 22px;
      }

      .service-head,
      .package-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
      }

      .service svg,
      .package-card svg {
        width: 22px;
        height: 22px;
        color: var(--accent);
        flex: 0 0 auto;
      }

      .service h3 {
        margin: 14px 0 8px;
        font-size: 22px;
        line-height: 1.08;
      }

      .service p,
      .package-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
      }

      .service-category {
        margin-top: 18px;
        color: var(--accent);
        font-size: 11px;
        font-weight: 850;
        line-height: 1.35;
        text-transform: uppercase;
      }

      .service-price,
      .package-price {
        flex: 0 0 auto;
        padding: 7px 10px;
        border: 1px solid color-mix(in srgb, var(--accent), transparent 24%);
        border-radius: 999px;
        background: color-mix(in srgb, var(--accent), transparent 88%);
        color: var(--accent);
        font-weight: 850;
        white-space: nowrap;
      }

      .service-duration,
      .package-note {
        margin-top: 8px;
        color: var(--text);
        font-size: 14px;
        font-weight: 700;
      }

      .check-list {
        list-style: none;
        padding: 0;
        margin: 18px 0 0;
        display: grid;
        gap: 9px;
        color: var(--muted);
        line-height: 1.45;
      }

      .check-list li {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 8px;
      }

      .check-list li::before {
        content: "";
        width: 8px;
        height: 8px;
        margin-top: 7px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 18px color-mix(in srgb, var(--accent), transparent 20%);
      }

      .ideal-list {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 18px;
      }

      .ideal-list span {
        min-height: 28px;
        display: inline-flex;
        align-items: center;
        padding: 0 9px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: 999px;
        color: var(--muted);
        font-size: 12px;
        background: color-mix(in srgb, var(--surface-2), transparent 12%);
      }

      .packages {
        background: var(--surface);
      }

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

      .package-card {
        min-width: 0;
        display: flex;
        flex-direction: column;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: var(--radius);
        background:
          linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 92%), transparent 44%),
          var(--page);
        padding: 22px;
      }

      .package-card.featured {
        border-color: color-mix(in srgb, var(--accent), transparent 12%);
        background:
          linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 78%), transparent 58%),
          var(--page);
      }

      .package-tier {
        color: var(--accent);
        font-size: 12px;
        font-weight: 850;
        text-transform: uppercase;
      }

      .package-card h3 {
        margin: 14px 0 8px;
        font-size: 24px;
        line-height: 1.08;
      }

      .vip-connections {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid color-mix(in srgb, var(--line), transparent 18%);
      }

      .vip-connections strong {
        display: block;
        color: var(--text);
        margin-bottom: 10px;
      }

      .free-note {
        margin-top: auto;
        padding-top: 18px;
        color: var(--accent);
        font-weight: 850;
        line-height: 1.4;
      }

      .cta-band {
        border-top: 1px solid color-mix(in srgb, var(--line), transparent 28%);
        border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 28%);
        background:
          linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 84%), transparent 46%),
          var(--surface);
      }

      .cta-inner {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 24px;
        align-items: center;
      }

      .cta-inner h2 {
        margin: 0;
      }

      .cta-inner p {
        margin: 14px 0 0;
        max-width: 620px;
        color: var(--muted);
        line-height: 1.55;
      }

      .cta-inner p a {
        color: var(--text);
        font-weight: 850;
        text-decoration: underline;
        text-underline-offset: 3px;
      }

      .site-footer {
        padding: 34px 0;
        color: var(--muted);
        font-size: 13px;
      }

      .footer-inner {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }

      .footer-inner a {
        color: var(--text);
        text-decoration: none;
      }

      .footer-contact-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: wrap;
      }

      .footer-contact-links a {
        min-height: 34px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 0 10px;
        background: color-mix(in srgb, var(--surface), transparent 8%);
        color: var(--muted);
        font-weight: 750;
      }

      .footer-contact-links a:hover {
        border-color: var(--accent);
        color: var(--text);
      }

      .footer-contact-links svg {
        width: 15px;
        height: 15px;
        color: var(--accent);
        flex: 0 0 auto;
      }

      .scroll-jump {
        position: fixed;
        right: max(18px, env(safe-area-inset-right));
        bottom: calc(92px + env(safe-area-inset-bottom));
        z-index: 60;
        width: 48px;
        height: 48px;
        border: 1px solid color-mix(in srgb, var(--accent), transparent 16%);
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-text);
        background: var(--accent);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
        cursor: pointer;
        opacity: 0;
        transform: translateY(12px) scale(0.94);
        transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
      }

      .scroll-jump[hidden] {
        display: none;
      }

      .scroll-jump.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      .scroll-jump.has-contact-bubble-bottom-right {
        right: max(18px, env(safe-area-inset-right));
        bottom: calc(102px + env(safe-area-inset-bottom));
      }

      .scroll-jump.has-contact-bubble-bottom-right.has-contact-bubble-open {
        bottom: calc(226px + env(safe-area-inset-bottom));
      }

      .scroll-jump:hover,
      .scroll-jump:focus-visible {
        box-shadow: 0 22px 56px color-mix(in srgb, var(--accent), transparent 58%);
        transform: translateY(-2px) scale(1);
        outline: none;
      }

      .scroll-jump svg {
        width: 22px;
        height: 22px;
      }

      .scroll-jump__icon--up {
        display: none;
      }

      .scroll-jump.is-at-bottom .scroll-jump__icon--down {
        display: none;
      }

      .scroll-jump.is-at-bottom .scroll-jump__icon--up {
        display: block;
      }

      .service-footer {
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid color-mix(in srgb, var(--line), transparent 18%);
      }

      .package-footer {
        margin-top: auto;
        padding-top: 18px;
      }

      .service-reserve-link {
        width: 100%;
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid color-mix(in srgb, var(--accent), transparent 18%);
        border-radius: 999px;
        background: color-mix(in srgb, var(--accent), transparent 88%);
        color: var(--accent);
        font-size: 14px;
        font-weight: 850;
      }

      .service-reserve-link:hover {
        background: var(--gold);
        color: var(--accent-text);
      }

      .reservation-module {
        scroll-margin-top: 86px;
        border-top: 1px solid color-mix(in srgb, var(--line), transparent 28%);
        border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 28%);
        background:
          radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--accent), transparent 86%), transparent 32%),
          var(--page);
      }

      .reservation-module .booking-shell {
        width: min(1500px, calc(100% - 32px));
        margin: 0 auto;
      }

      .reservation-module .flow-visual,
      .reservation-module .booking-panel,
      .reservation-module .calendar-area,
      .reservation-module .checkout-panel {
        border: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        border-radius: 18px;
        background: color-mix(in srgb, var(--surface), transparent 6%);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
      }

      .reservation-module .flow-visual {
        display: grid;
        gap: 18px;
        margin-bottom: 18px;
        padding: 24px;
        background:
          linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 88%), transparent 38%),
          color-mix(in srgb, var(--surface), transparent 4%);
      }

      .reservation-module .flow-heading {
        display: grid;
        grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
        gap: 24px;
        align-items: end;
      }

      .reservation-module .flow-heading h2 {
        margin-top: 8px;
      }

      .reservation-module .flow-heading > p,
      .reservation-module .flow-card p {
        color: var(--muted);
        line-height: 1.55;
      }

      .reservation-module .flow-steps {
        display: grid;
        grid-template-columns: repeat(5, minmax(140px, 1fr));
        gap: 10px;
      }

      .reservation-module .flow-card {
        display: grid;
        align-content: start;
        gap: 10px;
        min-height: 176px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        border-radius: 16px;
        background: color-mix(in srgb, var(--page), transparent 16%);
        padding: 16px;
      }

      .reservation-module .flow-card.is-active {
        border-color: var(--accent);
        background:
          linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 80%), transparent 56%),
          color-mix(in srgb, var(--page), transparent 10%);
      }

      .reservation-module .flow-card svg,
      .reservation-module .integration-strip svg,
      .reservation-module .calendar-actions svg,
      .reservation-module .summary-topline svg,
      .reservation-module .contact-actions svg,
      .reservation-module .primary-action svg {
        width: 18px;
        height: 18px;
        color: var(--accent);
        stroke-width: 2.4;
      }

      .reservation-module .flow-number {
        width: fit-content;
        border-radius: 999px;
        background: var(--gold);
        color: var(--accent-text);
        font-size: 12px;
        font-weight: 900;
        padding: 5px 8px;
      }

      .reservation-module .flow-card h3 {
        margin: 0;
        font-size: 18px;
      }

      .reservation-module .workspace {
        display: grid;
        grid-template-columns: minmax(290px, 350px) minmax(520px, 1fr) minmax(300px, 380px);
        gap: 18px;
      }

      .reservation-module .booking-panel,
      .reservation-module .calendar-area,
      .reservation-module .checkout-panel {
        padding: 22px;
      }

      .reservation-module .booking-brand-row {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .reservation-module .reservation-brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: var(--gold);
        color: var(--accent-text);
        font-weight: 900;
      }

      .reservation-module .stepper,
      .reservation-module .segmented,
      .reservation-module .quote-panel,
      .reservation-module .summary-list,
      .reservation-module .contact-actions {
        display: grid;
        gap: 8px;
      }

      .reservation-module .stepper {
        grid-template-columns: repeat(3, 1fr);
        margin: 22px 0;
      }

      .reservation-module .step,
      .reservation-module .segment-option,
      .reservation-module .icon-button,
      .reservation-module .today-button,
      .reservation-module .secondary-action {
        border: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        background: var(--page);
        color: var(--muted);
      }

      .reservation-module .step,
      .reservation-module .segment-option {
        min-height: 42px;
        border-radius: 999px;
        font-weight: 850;
        text-align: center;
      }

      .reservation-module .step.is-active,
      .reservation-module .segment-option.is-selected {
        border-color: var(--accent);
        background: var(--gold);
        color: var(--accent-text);
      }

      .reservation-module .booking-form,
      .reservation-module .customer-card {
        display: grid;
        gap: 14px;
      }

      .reservation-module .field,
      .reservation-module .segmented-field {
        display: grid;
        gap: 7px;
      }

      .reservation-module .field span,
      .reservation-module .segmented-field legend,
      .reservation-module .resource-heading span:first-child,
      .reservation-module .panel-title span:first-child {
        color: var(--text);
        font-size: 13px;
        font-weight: 850;
      }

      .reservation-module .field input,
      .reservation-module .field select,
      .reservation-module .field textarea,
      .reservation-module .resource-line input {
        width: 100%;
        min-width: 0;
        border: 1px solid color-mix(in srgb, var(--line), transparent 10%);
        border-radius: 10px;
        background: var(--page);
        color: var(--text);
        padding: 11px 12px;
        outline: none;
      }

      .reservation-module .field input::placeholder,
      .reservation-module .field textarea::placeholder {
        color: color-mix(in srgb, var(--muted), transparent 28%);
      }

      .reservation-module .field input:focus,
      .reservation-module .field select:focus,
      .reservation-module .field textarea:focus,
      .reservation-module .resource-line input:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent), transparent 82%);
      }

      .reservation-module .field-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 12px;
      }

      .reservation-module .segmented-field {
        border: 0;
        margin: 0;
        padding: 0;
      }

      .reservation-module .segmented {
        grid-template-columns: repeat(4, 1fr);
      }

      .reservation-module .resource-editor,
      .reservation-module .summary-card,
      .reservation-module .customer-card {
        border: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        border-radius: 14px;
        background: color-mix(in srgb, var(--surface-2), transparent 8%);
        padding: 14px;
      }

      .reservation-module .resource-heading,
      .reservation-module .panel-title,
      .reservation-module .calendar-header,
      .reservation-module .calendar-meta,
      .reservation-module .slot-resources span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .reservation-module .resource-heading span:last-child,
      .reservation-module .panel-title span:last-child,
      .reservation-module .summary-time,
      .reservation-module .slot-resources,
      .reservation-module .reservation-item span,
      .reservation-module .reservation-empty {
        color: var(--muted);
      }

      .reservation-module .resource-line {
        display: grid;
        grid-template-columns: 1fr 74px;
        align-items: center;
        gap: 10px;
        color: var(--muted);
        font-weight: 750;
      }

      .reservation-module .quote-panel {
        grid-template-columns: 1fr 1fr;
        margin: 18px 0;
      }

      .reservation-module .quote-panel > div {
        border: 1px solid color-mix(in srgb, var(--accent), transparent 64%);
        border-radius: 14px;
        background: linear-gradient(145deg, var(--surface-2), var(--page));
        padding: 14px;
      }

      .reservation-module .quote-panel strong {
        display: block;
        margin: 6px 0 3px;
        font-size: 24px;
      }

      .reservation-module .quote-panel span {
        color: var(--muted);
        font-size: 13px;
        font-weight: 750;
      }

      .reservation-module .integration-strip,
      .reservation-module .legend {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .reservation-module .integration-strip span,
      .reservation-module .slot-status {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 850;
      }

      .reservation-module .integration-strip span {
        border: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        background: var(--surface-2);
        color: var(--muted);
        padding: 7px 9px;
      }

      .reservation-module .calendar-header h2,
      .reservation-module .summary-card h2 {
        font-size: clamp(28px, 3vw, 36px);
      }

      .reservation-module .calendar-actions {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .reservation-module .icon-button,
      .reservation-module .today-button {
        min-height: 40px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 850;
      }

      .reservation-module .icon-button {
        width: 40px;
      }

      .reservation-module .today-button {
        padding: 0 16px;
      }

      .reservation-module .legend span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
      }

      .reservation-module .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
      }

      .reservation-module .dot.available {
        background: #4fb477;
      }

      .reservation-module .dot.limited {
        background: var(--accent-2);
      }

      .reservation-module .dot.booked {
        background: #e46355;
      }

      .reservation-module .slot-board {
        display: grid;
        grid-template-columns: repeat(3, minmax(160px, 1fr));
        gap: 12px;
        margin-top: 18px;
      }

      .reservation-module .slot-card {
        display: grid;
        gap: 12px;
        min-height: 250px;
        border: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        border-radius: 16px;
        background: var(--surface);
        color: var(--text);
        padding: 16px;
        text-align: left;
      }

      .reservation-module .slot-card.is-available {
        border-color: color-mix(in srgb, #4fb477, transparent 48%);
      }

      .reservation-module .slot-card.is-limited {
        border-color: color-mix(in srgb, var(--accent-2), transparent 48%);
      }

      .reservation-module .slot-card.is-booked {
        background: color-mix(in srgb, #e46355, transparent 78%);
        color: #f5c0b9;
      }

      .reservation-module .slot-card.is-selected {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent), transparent 78%);
      }

      .reservation-module .slot-card:disabled {
        cursor: not-allowed;
        opacity: 0.72;
      }

      .reservation-module .slot-time {
        font-size: 19px;
        font-weight: 900;
      }

      .reservation-module .slot-status {
        padding: 5px 9px;
      }

      .reservation-module .is-available .slot-status {
        background: color-mix(in srgb, #4fb477, transparent 82%);
        color: #4fb477;
      }

      .reservation-module .is-limited .slot-status {
        background: color-mix(in srgb, var(--accent), transparent 84%);
        color: var(--accent-2);
      }

      .reservation-module .is-booked .slot-status {
        background: color-mix(in srgb, #e46355, transparent 82%);
        color: #e46355;
      }

      .reservation-module .slot-resources,
      .reservation-module .slot-reservations {
        display: grid;
        gap: 7px;
        font-size: 13px;
        font-weight: 750;
      }

      .reservation-module .slot-reservations {
        border-top: 1px solid color-mix(in srgb, var(--line), transparent 12%);
        padding-top: 10px;
      }

      .reservation-module .slot-reservations-title {
        color: var(--accent);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .reservation-module .reservation-item {
        display: grid;
        gap: 3px;
        border-radius: 10px;
        background: color-mix(in srgb, var(--page), transparent 12%);
        padding: 9px;
      }

      .reservation-module .reservation-item strong,
      .reservation-module .summary-list dd {
        color: var(--text);
        font-weight: 900;
      }

      .reservation-module .reservation-item em {
        color: var(--accent-2);
        font-size: 12px;
        font-style: normal;
        font-weight: 900;
      }

      .reservation-module .checkout-panel {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .reservation-module .summary-topline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        color: var(--accent);
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .reservation-module .summary-list {
        grid-template-columns: repeat(3, 1fr);
        margin: 16px 0 0;
      }

      .reservation-module .summary-list div {
        border-radius: 12px;
        background: color-mix(in srgb, var(--page), transparent 10%);
        padding: 10px;
      }

      .reservation-module .summary-list dt {
        color: var(--muted);
        font-size: 12px;
        font-weight: 850;
        margin-bottom: 4px;
      }

      .reservation-module .summary-list dd {
        margin: 0;
      }

      .reservation-module .secondary-action,
      .reservation-module .primary-action {
        min-height: 44px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 900;
      }

      .reservation-module .primary-action {
        width: 100%;
        border: 0;
        background: var(--gold);
        color: var(--accent-text);
        padding: 0 16px;
      }

      .reservation-module .primary-action:disabled {
        background: color-mix(in srgb, var(--muted), transparent 72%);
        color: color-mix(in srgb, var(--muted), transparent 10%);
        cursor: not-allowed;
      }

      @media (max-width: 980px) {
        .nav {
          min-height: 74px;
          align-items: flex-start;
          padding: 12px 0;
        }

        .nav-links {
          display: none;
        }

        h1 {
          font-size: 56px;
        }

        .section-head,
        .cta-inner {
          grid-template-columns: 1fr;
          display: grid;
          align-items: start;
        }

        .directions,
        .services-grid,
        .packages-grid,
        .reservation-module .flow-steps,
        .reservation-module .slot-board {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .reservation-module .workspace {
          grid-template-columns: 320px 1fr;
        }

        .reservation-module .checkout-panel {
          grid-column: 1 / -1;
          display: grid;
          grid-template-columns: 1fr 1.2fr;
        }

        .reservation-module .contact-actions,
        .reservation-module .primary-action {
          grid-column: 1 / -1;
        }

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

        .portfolio-item.wide {
          grid-column: span 1;
        }
      }

      @media (max-width: 680px) {
        .nav {
          width: min(100% - 20px, var(--max));
          gap: 10px;
        }

        .brand span:last-child {
          display: none;
        }

        .language-switcher {
          display: none;
        }

        .theme-switcher {
          display: none;
        }

        .mobile-menu-button {
          display: grid;
        }

        .site-header.is-menu-open {
          background: color-mix(in srgb, var(--page), transparent 4%);
        }

        .mobile-menu-panel {
          position: fixed;
          top: 74px;
          left: 10px;
          right: 10px;
          z-index: 30;
          display: block;
          max-height: calc(100svh - 86px);
          overflow: auto;
          padding: 12px;
          border: 1px solid color-mix(in srgb, var(--line), transparent 10%);
          border-radius: 8px;
          background: color-mix(in srgb, var(--page), transparent 4%);
          box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
          backdrop-filter: blur(20px);
        }

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

        .hero {
          min-height: 84svh;
          padding: 104px 0 52px;
        }

        h1 {
          font-size: 42px;
          max-width: 340px;
        }

        .hero-copy p {
          font-size: 17px;
          max-width: 340px;
        }

        h2 {
          font-size: 32px;
          max-width: 100%;
        }

        section {
          padding: 62px 0;
        }

        .directions,
        .services-grid,
        .packages-grid,
        .portfolio-grid,
        .reservation-module .flow-heading,
        .reservation-module .flow-steps,
        .reservation-module .workspace,
        .reservation-module .checkout-panel,
        .reservation-module .slot-board {
          grid-template-columns: 1fr;
        }

        .reservation-module .booking-shell {
          width: min(100% - 24px, var(--max));
        }

        .reservation-module .flow-visual,
        .reservation-module .booking-panel,
        .reservation-module .calendar-area,
        .reservation-module .checkout-panel {
          padding: 16px;
        }

        .reservation-module .calendar-header,
        .reservation-module .calendar-meta {
          align-items: stretch;
          flex-direction: column;
        }

        .reservation-module .calendar-actions {
          justify-content: space-between;
        }

        .reservation-module .today-button {
          flex: 1;
        }

        .reservation-module .field-grid,
        .reservation-module .quote-panel,
        .reservation-module .summary-list,
        .reservation-module .contact-actions {
          grid-template-columns: 1fr;
        }

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

        .direction-card {
          min-height: 360px;
        }

        .portfolio-grid {
          grid-auto-rows: 260px;
        }

        .footer-inner,
        .footer-contact-links {
          justify-content: flex-start;
        }

        .footer-contact-links a {
          flex: 1 1 180px;
          justify-content: center;
        }

        .scroll-jump {
          right: 14px;
          bottom: calc(86px + env(safe-area-inset-bottom));
        }

        .scroll-jump.has-contact-bubble-bottom-right {
          right: 14px;
          bottom: calc(96px + env(safe-area-inset-bottom));
        }

        .scroll-jump.has-contact-bubble-bottom-right.has-contact-bubble-open {
          bottom: calc(220px + env(safe-area-inset-bottom));
        }

        .portfolio-item.large {
          grid-row: span 1;
        }

        .hero-meta {
          gap: 16px;
        }

        .hero-meta strong {
          font-size: 24px;
        }
      }
