@font-face {
      font-family: "Proxima Nova";
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url("https://finnsbeachclub.com/wp-content/uploads/2023/06/ProximaNova-Regular.ttf") format("truetype");
    }

    @font-face {
      font-family: "Proxima Nova";
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url("https://finnsbeachclub.com/wp-content/uploads/2023/06/ProximaNova-Bold.ttf") format("truetype");
    }

    @font-face {
      font-family: "Proxima Nova";
      font-style: normal;
      font-weight: 800;
      font-display: swap;
      src: url("https://finnsbeachclub.com/wp-content/uploads/2023/06/ProximaNova-Extrabold.ttf") format("truetype");
    }

    :root {
      --sand: #f0e8dc;
      --cream: #fff9f0;
      --ocean: #0f3c52;
      --deep: #08202d;
      --accent: #d8b370;
      --muted: #6d7f89;
      --white: #ffffff;
      --max: 1200px;
      --radius: 20px;
      --shadow: 0 20px 45px rgba(5, 20, 28, 0.2);
    }

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

    html,
    body {
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: "Proxima Nova", sans-serif;
      color: var(--deep);
      background: linear-gradient(180deg, #fdfbf8 0%, #f2ede6 100%);
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      text-transform: uppercase;
    }

    .container {
      width: min(100% - 2rem, var(--max));
      margin: 0 auto;
    }

    .hero {
      min-height: 100vh;
      color: var(--white);
      position: relative;
      background: linear-gradient(rgba(4, 18, 26, 0.55), rgba(4, 18, 26, 0.5)),
        url("https://sunsetpointamedbali.com/img/slider/s2.jpg") center/cover no-repeat;
      display: flex;
      flex-direction: column;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 180px;
      background: linear-gradient(to top, #fdfbf8 0%, transparent 100%);
      pointer-events: none;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      color: var(--white);
      padding: 0.75rem 0;
      background: linear-gradient(180deg, rgba(7, 22, 25, 0.44), rgba(7, 22, 25, 0));
      transition: background 0.3s ease, padding 0.3s ease;
    }

    .topbar.is-scrolled,
    .topbar.is-open {
      padding-top: 0.55rem;
      background: linear-gradient(180deg, rgba(7, 22, 25, 0.78), rgba(7, 22, 25, 0.08));
    }

    .nav-shell {
      width: min(100% - 2rem, 1380px);
      min-height: 78px;
      margin: 0 auto;
      padding: 0.55rem 0.7rem 0.55rem 1rem;
      display: grid;
      grid-template-columns: minmax(190px, 1fr) auto minmax(300px, 1fr);
      align-items: center;
      gap: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      background: linear-gradient(120deg, rgba(12, 54, 64, 0.5), rgba(174, 111, 57, 0.24));
      backdrop-filter: blur(14px);
      box-shadow: 0 16px 38px rgba(5, 20, 28, 0.18);
      transition: border-radius 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .topbar.is-open .nav-shell {
      border-radius: 28px 28px 14px 14px;
      background: linear-gradient(120deg, rgba(13, 62, 72, 0.72), rgba(156, 91, 46, 0.38));
    }

    .brand {
      display: inline-flex;
      align-items: center;
      color: var(--white);
      text-decoration: none;
      width: fit-content;
    }

    .brand-logo {
      width: clamp(104px, 8vw, 142px);
      max-height: 58px;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
      transition: transform 0.24s ease, filter 0.24s ease;
    }

    .brand:hover .brand-logo,
    .brand:focus-visible .brand-logo {
      transform: translateY(-2px) scale(1.02);
      filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.46));
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(1rem, 2.3vw, 2.5rem);
      white-space: nowrap;
    }

    .nav a,
    .mega-menu a {
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      letter-spacing: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav a {
      position: relative;
      font-size: clamp(0.86rem, 1vw, 1rem);
      text-transform: none;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -0.55rem;
      height: 6px;
      border-radius: 999px;
      background: rgba(240, 215, 167, 0.8);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.22s ease;
    }

    .nav a:hover::after,
    .nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .nav-actions {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding-left: 1rem;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0.68rem 1.05rem;
      border-radius: 999px;
      color: var(--white);
      text-decoration: none;
      font-size: 0.84rem;
      font-weight: 800;
      line-height: 1.1;
      text-transform: none;
      text-align: center;
      letter-spacing: 0;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 10px 22px rgba(5, 20, 28, 0.14);
      transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }

    .nav-cta-blue {
      background: #1f9aa8;
    }

    .nav-cta-orange {
      background: #c98245;
    }

    .menu-toggle {
      width: 44px;
      height: 44px;
      border: 0;
      background: transparent;
      display: inline-grid;
      place-items: center;
      padding: 0.35rem;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 34px;
      height: 2px;
      display: block;
      background: var(--white);
      border-radius: 999px;
      transition: transform 0.24s ease, opacity 0.2s ease;
    }

    .topbar.is-open .menu-toggle span:nth-child(1) {
      transform: translateY(11px) rotate(45deg);
    }

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

    .topbar.is-open .menu-toggle span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: calc(100vh - 94px);
      overflow: hidden;
      overflow-y: auto;
      background:
        linear-gradient(135deg, rgba(11, 50, 58, 0.94), rgba(62, 43, 30, 0.9)),
        url("https://sunsetpointamedbali.com/img/slider/s2.jpg") center/cover no-repeat;
      border-top: 1px solid rgba(240, 215, 167, 0.38);
      box-shadow: 0 22px 50px rgba(5, 20, 28, 0.26);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-14px);
      pointer-events: none;
      transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    }

    .topbar.is-open .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .mega-inner {
      width: min(100% - 2rem, 1840px);
      margin: 0 auto;
      padding: 2.25rem 0 1.25rem;
    }

    .mega-mobile-actions {
      display: none;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(145px, 1fr)) minmax(230px, 292px);
      gap: clamp(1.2rem, 2.6vw, 3.4rem);
      align-items: start;
    }

    .mega-group {
      display: grid;
      align-content: start;
      gap: 0.18rem;
    }

    .mega-heading {
      border: 0;
      background: transparent;
      color: #fff;
      font-family: inherit;
      text-align: left;
      padding: 0;
      cursor: default;
    }

    .mega-heading span {
      color: #fff;
      display: block;
      font-size: clamp(1rem, 1.15vw, 1.18rem);
      line-height: 1.1;
      margin-bottom: 0.65rem;
      font-weight: 800;
      text-transform: none;
      letter-spacing: 0;
    }

    .mega-links {
      display: grid;
      gap: 0.18rem;
    }

    .mega-group a {
      color: rgba(255, 249, 240, 0.84);
      font-size: 0.96rem;
      line-height: 1.28;
      padding: 0.15rem 0;
      font-weight: 600;
    }

    .mega-group a:hover,
    .mega-group a:focus-visible,
    .mega-location:hover,
    .mega-location:focus-visible {
      color: #f0d7a7;
      transform: translateX(4px);
    }

    .mega-promos {
      grid-column: 5;
      grid-row: span 2;
      display: grid;
      gap: 1rem;
    }

    .mega-promo {
      position: relative;
      min-height: 160px;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
      isolation: isolate;
    }

    .mega-promo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      transition: transform 0.35s ease;
    }

    .mega-promo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(8, 32, 45, 0.72));
      z-index: -1;
    }

    .mega-promo span {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 0.9rem;
      font-size: 1.18rem;
      line-height: 1;
      text-transform: none;
      color: #fff;
    }

    .mega-promo:hover img,
    .mega-promo:focus-visible img {
      transform: scale(1.06);
    }

    .mega-footer {
      margin-top: 2rem;
      min-height: 56px;
      padding: 0.75rem 1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .mega-location {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      color: rgba(255, 249, 240, 0.92);
      font-size: 0.95rem;
      font-weight: 600;
    }

    .mega-location span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 34px;
      height: 26px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.15);
      font-size: 0.7rem;
    }

    .mega-socials {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.55rem;
      flex-wrap: wrap;
    }

    .mega-socials a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.11);
      color: #fff;
      font-size: 0.7rem;
      line-height: 1;
    }

    .mega-socials a:hover,
    .mega-socials a:focus-visible {
      background: #1f9aa8;
      transform: translateY(-2px);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      margin: auto;
      text-align: center;
      width: min(900px, 100% - 2rem);
      padding: 6rem 0;
    }

    .eyebrow {
      letter-spacing: 3px;
      text-transform: uppercase;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 0.85rem;
    }

    h1 {
      font-family: "Proxima Nova", sans-serif;
      font-size: clamp(2.1rem, 6vw, 4.5rem);
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 1.1rem;
    }

    .hero p {
      max-width: 680px;
      margin: 0 auto 2rem;
      color: rgba(255, 255, 255, 0.92);
    }

    .btn-row {
      display: flex;
      gap: 0.9rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      border: 1px solid transparent;
      text-decoration: none;
      padding: 0.8rem 1.2rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--accent);
      color: #1e1508;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      filter: brightness(1.03);
    }

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.8);
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    section {
      padding: 5rem 0;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .split h2,
    .events h2,
    .gallery h2,
    .book h2 {
      font-family: "Proxima Nova", sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--ocean);
    }

    .split p,
    .events p,
    .book p {
      color: var(--muted);
    }

    .image-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 380px;
      background: #ccc center/cover no-repeat;
    }

    .events {
      background: var(--cream);
    }

    .venue-section {
      background: #f7f7f7;
      padding: 3.8rem 0 4.4rem;
    }

    .venue-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #38b9c6;
    }

    .venue-head h2 {
      color: #101721;
      font-size: clamp(2rem, 3vw, 2.8rem);
      line-height: 1;
      margin: 0;
      font-weight: 800;
      letter-spacing: 0;
    }

    .venue-controls {
      display: flex;
      gap: 0.55rem;
    }

    .venue-arrow {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(16, 23, 33, 0.15);
      border-radius: 50%;
      background: #fff;
      color: #101721;
      cursor: pointer;
      font-size: 1.15rem;
      line-height: 1;
      display: inline-grid;
      place-items: center;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .venue-arrow:hover,
    .venue-arrow:focus-visible {
      background: #101721;
      color: #fff;
      transform: translateY(-2px);
    }

    .venue-slider {
      margin-top: 1.8rem;
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 2.25rem) / 4);
      gap: 0.75rem;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-behavior: smooth;
      scroll-snap-type: inline mandatory;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }

    .venue-slider.is-dragging,
    .feature-slider.is-dragging,
    .visit-slider.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto;
    }

    .venue-slider::-webkit-scrollbar {
      display: none;
    }

    .venue-card {
      position: relative;
      min-height: 400px;
      border-radius: 7px;
      overflow: hidden;
      color: #fff;
      text-decoration: none;
      scroll-snap-align: start;
      isolation: isolate;
      box-shadow: 0 16px 30px rgba(8, 32, 45, 0.1);
      transform: translateZ(0);
      -webkit-user-drag: none;
    }

    .venue-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease, filter 0.45s ease;
      z-index: -2;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    .venue-card::before,
    .venue-card::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .venue-card::before {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.76) 100%);
      z-index: -1;
    }

    .venue-card::after {
      top: auto;
      height: 45%;
      background: linear-gradient(180deg, transparent 0%, rgba(56, 185, 198, 0.86) 100%);
      mix-blend-mode: multiply;
      transition: opacity 0.25s ease;
      z-index: -1;
    }

    .venue-card-pink::after {
      background: linear-gradient(180deg, transparent 0%, rgba(243, 157, 187, 0.9) 100%);
    }

    .venue-card-navy::after {
      background: linear-gradient(180deg, transparent 0%, rgba(3, 18, 47, 0.95) 100%);
    }

    .venue-card-gold::after {
      background: linear-gradient(180deg, transparent 0%, rgba(224, 169, 0, 0.93) 100%);
    }

    .venue-card-charcoal::after {
      background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 20, 0.94) 100%);
    }

    .venue-card-dark::after {
      background: linear-gradient(180deg, transparent 0%, rgba(12, 12, 12, 0.96) 100%);
    }

    .venue-title {
      position: absolute;
      left: 1.25rem;
      right: 3.8rem;
      bottom: 1.15rem;
      font-size: clamp(1.3rem, 2vw, 1.65rem);
      line-height: 1.02;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .venue-icon {
      position: absolute;
      right: 1.15rem;
      bottom: 1.45rem;
      font-size: 1.85rem;
      line-height: 1;
      transition: transform 0.25s ease;
    }

    .venue-card:hover img,
    .venue-card:focus-visible img {
      transform: scale(1.06);
      filter: saturate(1.08);
    }

    .venue-card:hover .venue-icon,
    .venue-card:focus-visible .venue-icon {
      transform: translateX(5px);
    }

    .venue-dots {
      margin-top: 1.2rem;
      display: flex;
      justify-content: center;
      gap: 0.45rem;
    }

    .venue-dot {
      width: 8px;
      height: 8px;
      border: 0;
      border-radius: 50%;
      background: rgba(16, 23, 33, 0.24);
      cursor: pointer;
      padding: 0;
      transition: width 0.2s ease, background 0.2s ease;
    }

    .venue-dot.is-active {
      width: 28px;
      border-radius: 999px;
      background: #38b9c6;
    }

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

    .event {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(9, 31, 42, 0.08);
    }

    .event img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .event-body {
      padding: 1rem;
    }

    .event-day {
      color: var(--ocean);
      font-weight: 800;
      text-transform: uppercase;
      font-size: 0.77rem;
      letter-spacing: 1px;
      margin-bottom: 0.35rem;
    }

    .event h3 {
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
    }

    .dark-slider-section {
      background:
        radial-gradient(circle at 12% 0%, rgba(216, 179, 112, 0.18), transparent 34%),
        linear-gradient(180deg, #132d34 0%, #0d2229 100%);
      color: #fff;
      padding: 4rem 0 4.3rem;
    }

    .menu-showcase {
      background:
        radial-gradient(circle at 86% 18%, rgba(201, 130, 69, 0.18), transparent 32%),
        linear-gradient(180deg, #1b3539 0%, #17282b 100%);
    }

    .visit-showcase {
      background:
        radial-gradient(circle at 18% 8%, rgba(240, 215, 167, 0.16), transparent 34%),
        linear-gradient(180deg, #18262a 0%, #10262d 100%);
    }

    .slider-section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.35rem;
    }

    .slider-section-head h2 {
      color: #f0d7a7;
      font-size: clamp(2rem, 3.4vw, 3rem);
      line-height: 1.16;
      margin: 0;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: none;
      text-shadow: 0 10px 28px rgba(5, 20, 28, 0.24);
    }

    .slider-section-head a {
      color: rgba(255, 249, 240, 0.9);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.84rem;
      text-transform: none;
      padding: 0.5rem 0.85rem;
      border: 1px solid rgba(240, 215, 167, 0.32);
      border-radius: 999px;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .slider-section-head a:hover,
    .slider-section-head a:focus-visible {
      color: #fff;
      transform: translateY(-2px);
    }

    .feature-slider,
    .visit-slider {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(270px, calc((100% - 2rem) / 3.25));
      gap: 1rem;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-behavior: smooth;
      scroll-snap-type: inline mandatory;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }

    .feature-slider::-webkit-scrollbar,
    .visit-slider::-webkit-scrollbar {
      display: none;
    }

    .feature-card,
    .visit-card {
      scroll-snap-align: start;
    }

    .feature-card {
      position: relative;
      min-height: 205px;
      overflow: hidden;
      border-radius: 18px;
      color: #fff;
      text-decoration: none;
      isolation: isolate;
      box-shadow: 0 18px 36px rgba(5, 20, 28, 0.22);
      -webkit-user-drag: none;
    }

    .feature-card img,
    .visit-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease, filter 0.35s ease;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(4, 18, 26, 0.02) 22%, rgba(4, 18, 26, 0.72) 100%);
      z-index: 1;
    }

    .feature-title,
    .feature-subtitle {
      position: absolute;
      left: 1rem;
      right: 1rem;
      z-index: 2;
    }

    .feature-title {
      bottom: 2.35rem;
      font-size: clamp(1.2rem, 2vw, 1.58rem);
      line-height: 1;
      font-weight: 800;
      text-transform: none;
    }

    .feature-subtitle {
      bottom: 1rem;
      font-size: 0.82rem;
      text-transform: none;
      color: rgba(255, 249, 240, 0.84);
    }

    .feature-card:hover img,
    .feature-card:focus-visible img,
    .visit-card:hover .visit-image img {
      transform: scale(1.06);
      filter: saturate(1.08);
    }

    .visit-card {
      color: #fff;
      min-width: 0;
      padding: 0.45rem;
      border: 1px solid rgba(240, 215, 167, 0.13);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.055);
      box-shadow: 0 18px 34px rgba(5, 20, 28, 0.16);
    }

    .visit-image {
      position: relative;
      height: 185px;
      overflow: hidden;
      border-radius: 18px;
      background: #19343b;
    }

    .visit-image span {
      position: absolute;
      top: 0.75rem;
      left: 0.75rem;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      padding: 0.28rem 0.65rem;
      border-radius: 999px;
      background: rgba(240, 215, 167, 0.92);
      color: #1e1508;
      font-size: 0.7rem;
      line-height: 1;
      font-weight: 800;
    }

    .visit-card h3 {
      margin: 0.8rem 0 0.55rem;
      color: #f0d7a7;
      font-size: 1.02rem;
      line-height: 1.22;
      font-weight: 800;
      text-transform: none;
    }

    .visit-meta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .visit-meta span {
      color: rgba(255, 249, 240, 0.72);
      font-size: 0.78rem;
      line-height: 1.35;
    }

    .visit-meta strong {
      display: block;
      color: #f0d7a7;
      font-size: 0.9rem;
      margin-top: 0.1rem;
    }

    .gallery-grid {
      margin-top: 1.4rem;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 0.9rem;
    }

    .gallery-grid a {
      display: block;
      overflow: hidden;
      border-radius: 14px;
    }

    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
      box-shadow: 0 10px 20px rgba(8, 32, 45, 0.12);
    }

    .g1 { grid-column: span 4; height: 250px; }
    .g2 { grid-column: span 4; height: 250px; }
    .g3 { grid-column: span 4; height: 250px; }
    .g4 { grid-column: span 6; height: 320px; }
    .g5 { grid-column: span 3; height: 320px; }
    .g6 { grid-column: span 3; height: 320px; }

    .book {
      padding-top: 2rem;
      padding-bottom: 6rem;
    }

    .book-card {
      background: linear-gradient(120deg, #0f3c52 0%, #245971 100%);
      color: var(--white);
      border-radius: 24px;
      padding: 2.2rem;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1.3rem;
      align-items: center;
    }

    .book p {
      color: rgba(255, 255, 255, 0.9);
    }

    .book h3 {
      margin-bottom: 0.5rem;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
    }

    .contact-list {
      list-style: none;
      margin-top: 1rem;
      display: grid;
      gap: 0.4rem;
    }

    .contact-list li {
      color: rgba(255, 255, 255, 0.95);
    }

    .contact-list a {
      color: #fff3c9;
      text-decoration: none;
    }

    .footer {
      background: #08202d;
      color: rgba(255, 255, 255, 0.78);
      padding: 4.7rem 0 3.5rem;
      font-size: 0.92rem;
    }

    .footer a {
      color: rgba(255, 255, 255, 0.86);
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: #f0d7a7;
    }

    .footer-inner {
      display: grid;
      gap: 3.8rem;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(240px, 0.8fr) minmax(360px, 1.45fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }

    .footer-contact {
      display: grid;
      gap: 1.45rem;
    }

    .footer-item {
      display: grid;
      grid-template-columns: 14px 1fr;
      gap: 1rem;
      align-items: start;
    }

    .footer-marker {
      width: 9px;
      height: 9px;
      margin-top: 0.42rem;
      border: 1px solid #f0a13a;
      display: inline-block;
    }

    .footer-item h3 {
      color: #fff;
      font-size: 0.95rem;
      font-style: italic;
      margin-bottom: 0.45rem;
      text-transform: none;
      letter-spacing: 0;
    }

    .footer-item p {
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.75;
      margin: 0;
    }

    .footer-map {
      min-height: 360px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.08);
    }

    .footer-map iframe {
      width: 100%;
      height: 360px;
      border: 0;
      display: block;
      filter: saturate(0.94);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .footer-bottom p {
      margin: 0;
      color: #fff;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .footer-socials {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.7rem;
      flex-wrap: wrap;
    }

    .footer-socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.92);
      color: #08202d;
      font-size: 0.72rem;
      font-weight: 800;
      line-height: 1;
    }

    .footer-socials a:hover,
    .footer-socials a:focus-visible {
      color: #08202d;
      background: #f0d7a7;
      transform: translateY(-2px);
    }

    @media (max-width: 992px) {
      section { padding: 4rem 0; }

      .nav-shell {
        grid-template-columns: 1fr auto;
        min-height: 74px;
      }

      .nav-desktop {
        display: none;
      }

      .nav-actions {
        padding-left: 0;
        border-left: 0;
      }

      .mega-menu {
        max-height: calc(100vh - 92px);
      }

      .mega-inner {
        padding: 1.8rem 0 1rem;
      }

      .mega-grid {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
        gap: 1.7rem 2rem;
      }

      .mega-promos {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .mega-footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .venue-section {
        padding: 3.2rem 0 3.8rem;
      }

      .venue-slider {
        grid-auto-columns: minmax(260px, 45vw);
      }

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

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

      .footer-map,
      .footer-map iframe {
        min-height: 320px;
        height: 320px;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .feature-slider,
      .visit-slider {
        grid-auto-columns: minmax(245px, 46vw);
      }

      .split,
      .book-card {
        grid-template-columns: 1fr;
      }

      .image-card {
        min-height: 320px;
      }

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

      .g1,
      .g2,
      .g3,
      .g4,
      .g5,
      .g6 {
        grid-column: span 6;
        height: 240px;
      }
    }

    @media (max-width: 640px) {
      .venue-head {
        align-items: flex-start;
      }

      .venue-controls {
        display: none;
      }

      .venue-slider {
        margin-left: -0.4rem;
        margin-right: -0.4rem;
        padding: 0 0.4rem;
        grid-auto-columns: minmax(250px, 82vw);
      }

      .venue-card {
        min-height: 330px;
      }

      .venue-title {
        left: 1rem;
        right: 3.2rem;
        font-size: 1.32rem;
      }

      .venue-icon {
        right: 1rem;
        bottom: 1.3rem;
      }

      .dark-slider-section {
        padding: 3.2rem 0;
      }

      .slider-section-head {
        align-items: flex-start;
      }

      .slider-section-head h2 {
        font-size: 2rem;
      }

      .feature-slider,
      .visit-slider {
        margin-left: -0.4rem;
        margin-right: -0.4rem;
        padding: 0 0.4rem;
        grid-auto-columns: minmax(245px, 82vw);
      }

      .feature-card {
        min-height: 205px;
      }

      .visit-image {
        height: 180px;
      }

      .visit-meta {
        gap: 0.55rem;
      }

      .footer {
        padding: 3.5rem 0 2.7rem;
      }

      .footer-inner {
        gap: 2.5rem;
      }

      .footer-map,
      .footer-map iframe {
        min-height: 260px;
        height: 260px;
      }

      .footer-socials {
        justify-content: flex-start;
      }

      .nav-shell {
        width: min(100% - 1.2rem, 1380px);
        min-height: 68px;
        gap: 0.75rem;
        padding: 0.45rem 0.5rem 0.45rem 0.75rem;
      }

      .brand-logo {
        width: 96px;
        max-height: 50px;
      }

      .nav-actions > .nav-cta {
        display: none;
      }

      .mega-menu {
        max-height: calc(100vh - 86px);
        background:
          linear-gradient(145deg, rgba(11, 50, 58, 0.96), rgba(77, 49, 33, 0.92)),
          url("https://sunsetpointamedbali.com/img/slider/s2.jpg") center/cover no-repeat;
      }

      .mega-inner {
        width: min(100% - 1.2rem, 1840px);
        padding: 1rem 0 0.9rem;
      }

      .mega-mobile-actions {
        display: grid;
        grid-template-columns: 1fr 0.72fr;
        gap: 0.55rem;
        width: min(100%, 360px);
        margin: 0 auto 1rem;
      }

      .mega-mobile-actions .nav-cta {
        min-height: 34px;
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem;
      }

      .mega-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .mega-group {
        border-bottom: 0;
      }

      .mega-heading {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        border-radius: 12px;
        padding: 0 0.35rem;
      }

      .mega-heading span {
        margin: 0;
        font-size: 1.08rem;
        color: rgba(255, 249, 240, 0.96);
      }

      .mega-heading::after {
        content: "";
        width: 10px;
        height: 10px;
        border-top: 2px solid #f0d7a7;
        border-right: 2px solid #f0d7a7;
        transform: rotate(45deg);
        transition: transform 0.22s ease;
      }

      .mega-heading[aria-expanded="true"] {
        background: rgba(255, 255, 255, 0.08);
      }

      .mega-heading[aria-expanded="true"]::after {
        transform: rotate(135deg);
      }

      .mega-links {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-5px);
        transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.28s ease;
      }

      .mega-heading[aria-expanded="true"] + .mega-links {
        max-height: 260px;
        opacity: 1;
        transform: translateY(0);
        padding: 0.2rem 0 0.75rem 0.35rem;
      }

      .mega-group a {
        padding: 0.24rem 0;
        font-size: 0.95rem;
      }

      .mega-promos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 1.05rem;
        gap: 0.45rem;
      }

      .mega-promo {
        min-height: 205px;
      }

      .mega-promo span {
        font-size: 0.92rem;
      }

      .mega-footer {
        margin-top: 1.3rem;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.09);
      }

      .mega-location {
        align-items: flex-start;
        line-height: 1.35;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
      }

      .hero-content {
        padding-top: 6rem;
      }

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

      .g1,
      .g2,
      .g3,
      .g4,
      .g5,
      .g6 {
        grid-column: span 12;
      }

      .book-card {
        padding: 1.5rem;
      }
    }

    @media (max-width: 420px) {
      .brand-logo {
        width: 86px;
      }

      .mega-promo {
        min-height: 170px;
      }
    }
