﻿:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --gold-glass: rgba(201,168,76,0.18);
    --gold-glass2: rgba(201,168,76,0.08);
    --navy: #0D1B2A;
    --navy2: #152233;
    --cream: #F9F5EE;
    --cream2: #EDE8DF;
    --white: #FFFFFF;
    --text-dark: #1A1200;
    --text-mid: #4A3E28;
    --text-light: #8A7A5A;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', sans-serif;
    --transition: 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* â”€â”€â”€ CURSOR â”€â”€â”€ */
  .cursor { position: fixed; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s; }
  .cursor-ring { position: fixed; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gold-light); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all 0.18s ease; }

  /* â”€â”€â”€ NAV â”€â”€â”€ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.4rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(13,27,42,0.94);
    backdrop-filter: blur(12px);
    padding: 0.9rem 5%;
    border-bottom: 1px solid var(--gold-glass);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-decoration: none;
  }
  .nav-logo span { color: var(--cream); }
  .nav-links { display: flex; gap: 2.2rem; list-style: none; }
  .nav-links a {
    color: var(--cream2);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
    height: 1px; background: var(--gold); transition: right 0.35s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { right: 0; }
  .nav-cta {
    border: 1px solid var(--gold);
    background: var(--gold-glass);
    backdrop-filter: blur(8px);
    color: var(--gold-light) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
  .nav-cta::after { display: none !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 24px; height: 1.5px; background: var(--gold-light); transition: all 0.3s; display: block; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

  .mobile-menu {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold-light); }

  /* â”€â”€â”€ HERO â”€â”€â”€ */
  #hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #1a2e40 40%, #0D1B2A 100%);
  }
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M40 0L0 40l40 40 40-40L40 0zm0 6l34 34-34 34L6 40 40 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
  }
  .hero-ornament {
    position: absolute;
    border: 1px solid var(--gold-glass);
    border-radius: 50%;
    animation: pulse-ring 5s ease-in-out infinite;
  }
  .hero-ornament:nth-child(1) { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hero-ornament:nth-child(2) { width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.5s; }
  .hero-ornament:nth-child(3) { width: 1050px; height: 1050px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 3s; }
  @keyframes pulse-ring { 0%,100% { opacity: 0.3; } 50% { opacity: 0.08; } }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
  }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.4rem;
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 1s 0.3s forwards;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; width: 40px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: 0.04em;
    color: var(--cream);
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1.1s 0.6s forwards;
  }
  .hero-title em { color: var(--gold-light); font-style: italic; }
  .hero-subtitle {
    font-size: 1.05rem; font-weight: 300; letter-spacing: 0.12em;
    color: var(--cream2); margin-top: 1.5rem; margin-bottom: 2.6rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 1s 0.9s forwards;
  }
  .hero-btns {
    display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 1s 1.1s forwards;
  }

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

  /* â”€â”€â”€ BUTTONS â”€â”€â”€ */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
    cursor: pointer; border: none; transition: all 0.35s ease;
    position: relative; overflow: hidden;
  }
  .btn::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.1); transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .btn:hover::before { transform: translateX(0); }
  .btn-gold {
    background: var(--gold-glass);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    backdrop-filter: blur(10px);
  }
  .btn-gold:hover { background: var(--gold); color: var(--navy); }
  .btn-outline {
    background: transparent;
    border: 1px solid rgba(249,245,238,0.3);
    color: var(--cream);
    backdrop-filter: blur(8px);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

  /* â”€â”€â”€ SCROLL INDICATOR â”€â”€â”€ */
  .scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; opacity: 0.6;
    animation: fadeUp 1s 1.8s forwards, bob 2.5s 2.8s ease-in-out infinite;
  }
  .scroll-hint span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); }
  @keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

  /* â”€â”€â”€ SECTIONS â”€â”€â”€ */
  section { padding: 6rem 5%; }
  .section-label {
    font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  h2.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300; color: var(--cream);
    line-height: 1.1; letter-spacing: 0.02em;
  }
  h2.section-title em { color: var(--gold-light); font-style: italic; }
  .section-divider {
    width: 60px; height: 1px; background: var(--gold);
    margin: 1.5rem 0 2.5rem;
  }

  /* â”€â”€â”€ ABOUT â”€â”€â”€ */
  #about { background: var(--navy2); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: center; max-width: 1200px; margin: 0 auto;
  }
  .about-visual {
    position: relative;
  }
  .about-frame {
    width: 100%; padding-bottom: 120%;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a50 100%);
    border: 1px solid var(--gold-glass);
    position: relative;
    overflow: hidden;
  }
  .about-frame::before {
    content: 'BELLA VISTA';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--gold-glass);
    transform: rotate(-15deg) scale(1.5);
  }
  .about-accent {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    width: 70%; height: 70%;
    border: 1px solid var(--gold);
    pointer-events: none;
  }
  .about-badge {
    position: absolute; top: -1.5rem; left: -1.5rem;
    width: 100px; height: 100px;
    background: var(--gold);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--font-display);
    color: var(--navy);
  }
  .about-badge .num { font-size: 2.2rem; font-weight: 500; line-height: 1; }
  .about-badge .lbl { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .about-text p { color: var(--cream2); line-height: 1.85; font-weight: 300; margin-bottom: 1.2rem; font-size: 0.97rem; }
  .about-stats { display: flex; gap: 2.5rem; margin: 2rem 0; }
  .stat { text-align: center; }
  .stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
  .stat-lbl { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-top: 0.3rem; }

  /* â”€â”€â”€ SERVICES â”€â”€â”€ */
  #services { background: var(--navy); }
  .services-intro { max-width: 600px; margin-bottom: 3.5rem; }
  .services-tabs {
    display: flex; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap;
  }
  .tab-btn {
    padding: 0.55rem 1.4rem;
    background: var(--gold-glass2);
    border: 1px solid var(--gold-glass);
    color: var(--cream2);
    font-family: var(--font-body);
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s; backdrop-filter: blur(6px);
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--gold-glass);
    border-color: var(--gold);
    color: var(--gold-light);
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    background: var(--gold-glass2);
    border: 1px solid var(--gold-glass);
    padding: 2.2rem;
    position: relative; overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
    backdrop-filter: blur(8px);
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.4s ease;
  }
  .service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    font-size: 1.8rem; margin-bottom: 1.2rem;
    display: block;
    filter: drop-shadow(0 0 8px var(--gold-glass));
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 400;
    color: var(--cream); margin-bottom: 0.7rem; letter-spacing: 0.03em;
  }
  .service-card p { color: var(--text-light); font-size: 0.85rem; line-height: 1.7; font-weight: 300; }
  .service-list { list-style: none; margin-top: 0.8rem; }
  .service-list li {
    color: var(--cream2); font-size: 0.82rem; padding: 0.35rem 0;
    border-bottom: 1px solid var(--gold-glass);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .service-list li::before { content: 'â—ˆ'; color: var(--gold); font-size: 0.55rem; }
  .service-panel { display: none; }
  .service-panel.active { display: block; }

  /* â”€â”€â”€ GALLERY â”€â”€â”€ */
  #gallery { background: var(--navy2); overflow: hidden; }
  .gallery-header { max-width: 600px; margin-bottom: 3rem; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .g-item {
    overflow: hidden; position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, #1a2e40, #0d1b2a);
    min-height: 220px;
  }
  .g-item:nth-child(1) { grid-column: span 2; min-height: 320px; }
  .g-item:nth-child(4) { grid-column: span 2; }
  .g-item-inner {
    width: 100%; height: 100%; min-height: inherit;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    transition: transform 0.6s ease;
  }
  .g-item:hover .g-item-inner { transform: scale(1.07); }
  .g-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.8rem 1.2rem 1rem;
    background: linear-gradient(to top, rgba(13,27,42,0.85), transparent);
    font-family: var(--font-display); font-size: 1.1rem;
    color: var(--cream); letter-spacing: 0.04em;
    transform: translateY(100%); transition: transform 0.4s ease;
  }
  .g-item:hover .g-label { transform: translateY(0); }
  .g-placeholder {
    width: 100%; height: 100%; min-height: inherit;
    background: linear-gradient(135deg, #152233 0%, #1e3a50 50%, #0f2438 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0.5rem;
    font-family: var(--font-display); color: var(--gold-glass); font-size: 1.5rem;
    letter-spacing: 0.1em; border: 1px solid var(--gold-glass);
  }
  .g-placeholder .icon { font-size: 2.5rem; opacity: 0.4; }

  /* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
  #testimonials { background: var(--navy); position: relative; overflow: hidden; }
  .testi-track-wrap { overflow: hidden; position: relative; margin: 0 -5%; padding: 0 5%; }
  .testi-track {
    display: flex; gap: 1.8rem;
    transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
  }
  .testi-card {
    flex: 0 0 calc(50% - 0.9rem);
    background: var(--gold-glass2);
    border: 1px solid var(--gold-glass);
    padding: 2.5rem;
    position: relative; backdrop-filter: blur(8px);
  }
  .testi-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem; line-height: 0.7;
    color: var(--gold-glass);
    position: absolute; top: 1.5rem; right: 2rem;
  }
  .testi-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.15em; margin-bottom: 1.2rem; }
  .testi-text { font-family: var(--font-display); font-size: 1.08rem; font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.75; margin-bottom: 1.5rem; }
  .testi-author { display: flex; align-items: center; gap: 1rem; }
  .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); font-weight: 500; }
  .testi-info .name { font-size: 0.88rem; font-weight: 500; color: var(--cream); }
  .testi-info .location { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.08em; }
  .testi-controls { display: flex; gap: 0.8rem; margin-top: 2.5rem; justify-content: center; }
  .testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-glass); border: 1px solid var(--gold); cursor: pointer; transition: all 0.3s; }
  .testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
  .testi-arrows { display: flex; gap: 1rem; margin-top: 2rem; }
  .arrow-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    background: var(--gold-glass);
    color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem;
    transition: all 0.3s; backdrop-filter: blur(8px);
  }
  .arrow-btn:hover { background: var(--gold); color: var(--navy); }
  .testi-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }

  /* â”€â”€â”€ EVENTS â”€â”€â”€ */
  #events { background: var(--navy2); }
  .events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .event-card {
    border: 1px solid var(--gold-glass);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    background: var(--gold-glass2);
    backdrop-filter: blur(8px);
    position: relative; overflow: hidden;
  }
  .event-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform 0.4s;
  }
  .event-card:hover { transform: translateY(-8px); }
  .event-card:hover::after { transform: scaleX(1); }
  .event-emoji { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }
  .event-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--cream); margin-bottom: 0.8rem; }
  .event-card p { color: var(--text-light); font-size: 0.86rem; line-height: 1.7; }

  /* â”€â”€â”€ CONTACT â”€â”€â”€ */
  #contact { background: var(--navy); position: relative; min-height: 70vh; display: flex; align-items: center; }
  #contact::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact-wrapper { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
  .contact-info h2 { margin-bottom: 1.5rem; }
  .contact-info p { color: var(--cream2); font-size: 0.95rem; line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
  .contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
  .c-icon { width: 38px; height: 38px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
  .c-detail { font-size: 0.85rem; color: var(--cream2); line-height: 1.6; }
  .c-detail strong { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }

  /* FLOATING FORM */
  .contact-form-wrap {
    background: rgba(21,34,51,0.82);
    border: 1px solid var(--gold-glass);
    backdrop-filter: blur(16px);
    padding: 2.8rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-glass);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }
  .contact-form-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px var(--gold);
  }
  .contact-form-wrap::before {
    content: '';
    position: absolute; top: 0; left: 2rem; right: 2rem; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .form-title {
    font-family: var(--font-display); font-size: 1.7rem; font-weight: 300;
    color: var(--cream); margin-bottom: 0.4rem;
  }
  .form-subtitle { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.8rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 0.8rem 1rem;
    background: rgba(201,168,76,0.05);
    border: 1px solid var(--gold-glass);
    color: var(--cream);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
    transition: border-color 0.3s, background 0.3s;
    outline: none; resize: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
  }
  .form-group select option { background: var(--navy2); color: var(--cream); }
  .form-group textarea { min-height: 100px; }

  /* â”€â”€â”€ FOOTER â”€â”€â”€ */
  footer {
    background: #070e16;
    border-top: 1px solid var(--gold-glass);
    padding: 4rem 5% 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand p { color: var(--text-light); font-size: 0.85rem; line-height: 1.8; font-weight: 300; margin: 1rem 0 1.5rem; max-width: 280px; }
  .footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul li a { color: var(--text-light); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid var(--gold-glass); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 1rem; }
  .footer-bottom p { color: var(--text-light); font-size: 0.78rem; }

  /* â”€â”€â”€ SCROLL ANIMATIONS â”€â”€â”€ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-left.revealed { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-right.revealed { opacity: 1; transform: translateX(0); }
  .reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-scale.revealed { opacity: 1; transform: scale(1); }

  /* â”€â”€â”€ GOLD LINE ORNAMENT â”€â”€â”€ */
  .ornament { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
  .ornament::before, .ornament::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold-glass)); }
  .ornament-symbol { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.3em; }

  /* â”€â”€â”€ NOTICE BANNER â”€â”€â”€ */
  .edit-notice {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem; letter-spacing: 0.1em;
    border-radius: 2px;
    z-index: 8000;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transition: all 0.3s;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .edit-notice:hover { background: var(--gold-light); }

  /* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { max-width: 400px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 1.2rem 5%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .testi-card { flex: 0 0 90%; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .g-item:nth-child(1) { grid-column: span 2; }
    .g-item:nth-child(4) { grid-column: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .testi-header { flex-direction: column; }
    .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  }
  @media (max-width: 480px) {
    section { padding: 4rem 5%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .g-item:nth-child(1), .g-item:nth-child(4) { grid-column: span 1; }
    .hero-btns { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
  }

  /* â”€â”€â”€ EDITABLE â”€â”€â”€ */
  [contenteditable="true"] { outline: 1px dashed var(--gold-glass); transition: outline 0.2s; cursor: text; }
  [contenteditable="true"]:focus { outline: 1px solid var(--gold); background: rgba(201,168,76,0.04); }
  [contenteditable="true"]:empty:before { content: attr(data-placeholder); color: var(--text-light); font-style: italic; }

  /* â”€â”€â”€ TOAST â”€â”€â”€ */
  #toast {
    position: fixed; top: 6rem; right: 1.5rem;
    background: var(--navy2); border: 1px solid var(--gold);
    padding: 0.8rem 1.4rem; font-size: 0.8rem; color: var(--gold-light);
    z-index: 9000; transform: translateX(200%); transition: transform 0.4s ease;
    letter-spacing: 0.08em;
  }
  #toast.show { transform: translateX(0); }

/* BELLA VISTA AIRBNB OVERRIDES */
nav {
  overflow: hidden;
  isolation: isolate;
  --ripple-x: 50%;
  --ripple-y: 50%;
}

nav > * {
  position: relative;
  z-index: 1;
}

nav::before {
  content: '';
  position: absolute;
  inset: -40%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.72);
  background:
    radial-gradient(circle at var(--ripple-x) var(--ripple-y),
      rgba(232, 201, 122, 0.34) 0%,
      rgba(201, 168, 76, 0.18) 18%,
      rgba(201, 168, 76, 0.06) 34%,
      transparent 58%);
}

nav.scroll-ripple::before {
  animation: headerRipple 0.72s ease-out;
}

@keyframes headerRipple {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  24% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  nav.scroll-ripple::before {
    animation: none;
  }
}

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

.nav-logo.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  text-decoration: none;
  line-height: 0;
}

.brand-logo-img {
  width: auto;
  height: clamp(46px, 5vw, 64px);
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
  transition: height 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

nav.scrolled .brand-logo-img {
  height: clamp(40px, 4.2vw, 52px);
}

.footer-logo-link {
  justify-content: flex-start !important;
  margin-bottom: 0.6rem;
}

.footer-brand .brand-logo-img {
  height: clamp(82px, 8vw, 118px);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.36));
}

#hero {
  min-height: 92vh;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(8, 10, 12, 0.82) 0%, rgba(8, 10, 12, 0.58) 46%, rgba(8, 10, 12, 0.18) 100%),
    url('../images/gallery/bellavista-front-garden.jpg');
  background-size: cover;
  background-position: center;
}

.hero-bg::before,
.hero-ornament {
  display: none;
}

.hero-watermark {
  position: absolute;
  right: clamp(1.2rem, 7vw, 7rem);
  bottom: clamp(5rem, 12vh, 8rem);
  z-index: 1;
  width: clamp(150px, 20vw, 310px);
  height: auto;
  opacity: 0.2;
  pointer-events: none;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.45));
}

.hero-content {
  max-width: 960px;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.hero-title {
  letter-spacing: 0.02em;
}

/* From Uiverse.io by elijahgummer, adapted for Bella Vista buttons */
.space-button {
  --cut: 0.1em;
  --active: 0;
  --bg:
    radial-gradient(
      120% 120% at 126% 126%,
      hsl(0 calc(var(--active) * 97%) 98% / calc(var(--active) * 0.9)) 40%,
      transparent 50%
    ) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
    radial-gradient(
      120% 120% at 120% 120%,
      hsl(0 calc(var(--active) * 97%) 70% / calc(var(--active) * 1)) 30%,
      transparent 70%
    ) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
    hsl(0 calc(var(--active) * 100%) calc(12% - (var(--active) * 8%)));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  min-height: 54px;
  padding: 0.9em 1.3em;
  border: 0;
  border-radius: 2rem;
  background: var(--bg);
  color: var(--cream);
  cursor: pointer;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 500;
  overflow: hidden;
  perspective: 100vmin;
  scale: calc(1 + (var(--active) * 0.06));
  transform-style: preserve-3d;
  white-space: nowrap;
  box-shadow:
    0 0 calc(var(--active) * 6em) calc(var(--active) * 3em) hsla(12, 97%, 61%, 0.3),
    0 0.05em 0 0 hsl(0 calc(var(--active) * 97%) calc((var(--active) * 50%) + 30%)) inset,
    0 -0.05em 0 0 hsl(0 calc(var(--active) * 97%) calc(var(--active) * 10%)) inset;
  transition:
    box-shadow 0.25s ease-out,
    scale 0.25s,
    background 0.25s;
}

.space-button.btn::before {
  display: none;
}

.space-button:is(:hover, :focus-visible) {
  --active: 1;
}

.space-button.active {
  --active: 1;
}

.space-button:active {
  --bg:
    radial-gradient(
      120% 120% at 126% 126%,
      hsl(245 calc(var(--active) * 97%) 98% / calc(var(--active) * 0.9)) 40%,
      transparent 50%
    ) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
    radial-gradient(
      120% 120% at 120% 120%,
      hsl(245 calc(var(--active) * 97%) 70% / calc(var(--active) * 1)) 30%,
      transparent 70%
    ) calc(100px - (var(--active) * 100px)) 0 / 100% 100% no-repeat,
    hsl(245 calc(var(--active) * 100%) calc(12% - (var(--active) * 8%)));
  scale: 1;
  background: var(--bg);
  box-shadow:
    0 0 calc(var(--active) * 6em) calc(var(--active) * 3em) hsl(245 97% 61% / 0.5),
    0 0.05em 0 0 hsl(245 calc(var(--active) * 97%) calc((var(--active) * 50%) + 30%)) inset,
    0 -0.05em 0 0 hsl(245 calc(var(--active) * 97%) calc(var(--active) * 10%)) inset;
}

.space-button .text {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: hsl(0 0% calc(60% + (var(--active) * 26%)));
  font-weight: 600;
  letter-spacing: 0.01ch;
  translate: 2% -6%;
}

.space-button .galaxy,
.space-button .backdrop,
.space-button .text {
  pointer-events: none;
}

.space-button .text::before,
.space-button .text::after {
  content: '';
  position: absolute;
  top: -290%;
  width: 5em;
  height: 1px;
  display: none;
  rotate: -45deg;
  background: linear-gradient(90deg, #ffffff, transparent);
  z-index: -1;
}

.space-button .text::before {
  left: 90%;
  animation: 4s shootingStar ease-in-out infinite;
  animation-delay: 1s;
  transition: 1s ease;
}

.space-button .text::after {
  left: 10%;
  animation: 7s shootingStar ease-in-out infinite;
  animation-delay: 3s;
}

.space-button:hover .text::before,
.space-button:hover .text::after {
  display: block;
}

.space-button:active .text {
  font-weight: 300;
  animation:
    wobble 0.6s ease-in-out infinite,
    blurMove 1.5s ease-in-out infinite;
  text-shadow:
    5px 5px 20px rgba(255, 255, 255, 0.8),
    10px 10px 30px rgba(255, 0, 255, 0.6);
}

.galaxy-button {
  position: relative;
}

.galaxy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  opacity: var(--active);
  translate: -50% -50%;
  transition: opacity 0.25s;
}

.galaxy::before,
.galaxy::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: 1;
  z-index: -1;
  transition: all 1.5s ease-in-out;
  animation: 1s glowing-stars linear alternate infinite;
}

.galaxy::before {
  top: 0;
  left: 0;
  box-shadow:
    140px 20px #fff,
    425px 20px #fff,
    70px 120px #fff,
    20px 130px #fff,
    110px 80px #fff,
    280px 80px #fff,
    250px 350px #fff,
    280px 230px #fff,
    220px 190px #fff,
    450px 100px #fff,
    380px 80px #fff,
    520px 50px #fff;
  animation-delay: 0.4s;
}

.galaxy::after {
  top: -150px;
  left: -65px;
  box-shadow:
    490px 330px #fff,
    420px 300px #fff,
    320px 280px #fff,
    380px 350px #fff,
    546px 170px #fff,
    420px 180px #fff,
    370px 150px #fff,
    200px 250px #fff,
    80px 20px #fff,
    190px 50px #fff,
    270px 20px #fff,
    120px 230px #fff,
    350px -1px #fff,
    150px 369px #fff;
  animation-delay: 0.8s;
}

.galaxy-button:active .galaxy::before {
  animation: circling 2s linear infinite;
}

.galaxy-button:active .galaxy::after {
  animation: circling 1.5s linear infinite;
}

.backdrop {
  position: absolute;
  inset: var(--cut);
  z-index: 0;
  border-radius: 2rem;
  background: var(--bg);
  transition: background 0.25s;
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-55em) translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateX(-70em) translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
}

@keyframes glowing-stars {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes circling {
  0% {
    transform: translate(-10px, -20%) rotate(0deg);
  }
  100% {
    transform: translate(-10px, -20%) rotate(200deg);
  }
}

@keyframes wobble {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2px, -10px);
  }
  50% {
    transform: translate(2px, 3px);
  }
  75% {
    transform: translate(-1px, 5px);
  }
}

@keyframes blurMove {
  0%,
  100% {
    text-shadow:
      5px 5px 20px rgba(255, 255, 255, 0.8),
      10px 10px 30px rgba(255, 0, 255, 0.6);
  }
  50% {
    filter: blur(1px);
    text-shadow:
      10px 10px 25px rgba(255, 255, 255, 0.8),
      15px 15px 35px rgba(255, 0, 255, 0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .space-button,
  .space-button *,
  .space-button *::before,
  .space-button *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-btns .space-button {
  min-height: 54px;
}

.nav-cta.space-button,
.tab-btn.space-button,
.gallery-filter.space-button,
.arrow-btn.space-button,
.lightbox-close.space-button,
.lightbox-nav.space-button,
.map-link.space-button {
  min-height: auto;
  padding: 0.72rem 1rem;
  font-size: 0.72rem;
}

.nav-cta.space-button {
  padding: 0.65rem 1.35rem !important;
}

.tab-btn.space-button {
  border-radius: 2rem;
}

.gallery-filter.space-button {
  border-radius: 2rem;
}

.arrow-btn.space-button,
.lightbox-close.space-button,
.lightbox-nav.space-button {
  justify-content: center;
  padding: 0;
}

.arrow-btn.space-button .text,
.lightbox-close.space-button .text,
.lightbox-nav.space-button .text {
  padding: 0;
  translate: 0;
}

.map-link.space-button {
  display: inline-flex;
}

/* Brian's Icons, scoped to the footer social block */
.footer-social-card {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  backdrop-filter: blur(15px);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.12),
    inset 0 0 5px rgba(255, 255, 255, 0.18),
    0 5px 5px rgba(0, 0, 0, 0.16);
  transition: 0.5s;
}

.footer-social-card:hover {
  background: rgba(201, 168, 76, 0.05);
}

.footer-social-card ul {
  padding: 0.65rem;
  display: flex;
  list-style: none;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}

.footer-iso-pro {
  position: relative;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.footer-iso-pro a {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
}

.footer-social-svg {
  width: 42px;
  height: 42px;
  padding: 0.62rem;
  border-radius: 100%;
  color: var(--gold-light);
  fill: currentColor;
  transition: all 0.3s;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.16),
    inset 0 0 5px rgba(255, 255, 255, 0.22),
    0 5px 5px rgba(0, 0, 0, 0.16);
}

.footer-social-text {
  opacity: 0;
  position: absolute;
  left: 34px;
  top: 9px;
  z-index: 4;
  border-radius: 5px;
  padding: 5px 7px;
  color: var(--gold-light);
  background-color: rgba(13, 27, 42, 0.9);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow:
    -5px 0 1px rgba(153, 153, 153, 0.12),
    -10px 0 1px rgba(153, 153, 153, 0.08),
    inset 0 0 20px rgba(255, 255, 255, 0.12),
    inset 0 0 5px rgba(255, 255, 255, 0.18),
    0 5px 5px rgba(0, 0, 0, 0.08);
}

.footer-iso-pro {
  transition: 0.5s;
}

.footer-iso-pro:hover a > .footer-social-svg {
  transform: translate(15px, -15px);
  border-radius: 100%;
}

.footer-iso-pro:hover .footer-social-text {
  opacity: 1;
  transform: translate(25px, -2px) skew(-5deg);
}

.footer-iso-pro:hover .footer-social-svg {
  transform: translate(5px, -5px);
}

.footer-iso-pro > span:not(.footer-social-text) {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  border: 1px solid rgba(232, 201, 122, 0.48);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.16),
    inset 0 0 5px rgba(255, 255, 255, 0.22),
    0 5px 5px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  transition: all 0.3s;
  pointer-events: none;
}

.footer-iso-pro:hover > span:not(.footer-social-text) {
  opacity: 1;
}

.footer-iso-pro:hover > span:nth-child(1) {
  opacity: 0.2;
}

.footer-iso-pro:hover > span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.footer-iso-pro:hover > span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}

@media (max-width: 520px) {
  .hero-btns .space-button {
    width: min(100%, 340px);
  }

  .hero-btns .space-button .text {
    padding: 0 18px;
  }
}

.about-frame.accommodation-photo {
  padding-bottom: 0;
  min-height: 520px;
  aspect-ratio: 4 / 5;
}

.about-frame.accommodation-photo::before {
  display: none;
}

.about-frame.accommodation-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge .num {
  font-family: var(--font-display);
}

.service-icon,
.event-emoji {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}

.services-intro {
  max-width: 760px;
}

.services-summary {
  max-width: 720px;
  color: var(--cream2);
  font-size: 0.96rem;
  line-height: 1.8;
  font-weight: 300;
  margin-top: -1rem;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p {
  margin-bottom: 0.85rem;
}

.service-list {
  margin-top: auto;
}

.service-list li {
  align-items: flex-start;
  line-height: 1.55;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 0.62rem;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 6px;
}

.info-section {
  background: var(--navy2);
}

.family-section {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(255, 255, 255, 0.025)),
    var(--navy2);
}

.area-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(201, 168, 76, 0.05)),
    var(--navy);
}

.info-intro {
  max-width: 840px;
  margin-bottom: 2.4rem;
}

.info-intro p {
  color: var(--cream2);
  line-height: 1.8;
  font-weight: 300;
}

.story-panel,
.guest-panel {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
}

.story-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: start;
}

.guest-panel {
  max-width: 980px;
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.story-panel h3,
.guest-panel h3 {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.14;
}

.story-panel p,
.guest-panel p {
  color: var(--cream2);
  line-height: 1.75;
  font-weight: 300;
}

.story-panel p + p,
.guest-panel p + p {
  margin-top: 0.75rem;
}

.list-heading {
  margin: 1.6rem 0 0.9rem;
}

.list-heading h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  line-height: 1.18;
}

.benefit-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 0.72rem 0.85rem 0.72rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.14);
  color: var(--text-light);
  line-height: 1.55;
}

.benefit-list li::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 0.9rem;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.info-grid,
.attractions-grid,
.perfect-list {
  display: grid;
  gap: 1rem;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.attractions-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}

.info-card,
.notice-card,
.attraction-card {
  border: 1px solid var(--gold-glass);
  border-radius: 8px;
  background: var(--gold-glass2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.info-card,
.attraction-card {
  padding: 1.45rem;
}

.notice-card {
  margin-top: 1rem;
  padding: 1.25rem 1.45rem;
  border-color: rgba(201, 168, 76, 0.42);
  background: rgba(201, 168, 76, 0.09);
}

.info-kicker {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-card h3,
.attraction-card h3 {
  margin-bottom: 0.65rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
}

.info-card p,
.notice-card p,
.attraction-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

.notice-card strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.perfect-list {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1rem;
}

.perfect-list span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.cursor-response {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    opacity 0.8s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cursor-response > :not(.cursor-sheen) {
  position: relative;
  z-index: 1;
}

.cursor-sheen {
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y),
      rgba(242, 209, 122, 0.35) 0%,
      rgba(201, 168, 76, 0.14) 24%,
      rgba(255, 255, 255, 0.045) 42%,
      transparent 70%);
  transition: opacity 0.28s ease;
}

.cursor-response:hover,
.cursor-response.is-cursor-active {
  border-color: rgba(242, 209, 122, 0.55);
  box-shadow:
    0 0 0 1px rgba(242, 209, 122, 0.1) inset,
    0 20px 54px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(201, 168, 76, 0.14);
  transform: translateY(-4px);
}

.cursor-response:hover > .cursor-sheen,
.cursor-response.is-cursor-active > .cursor-sheen {
  opacity: 1;
}

.booking-form.cursor-response:hover,
.booking-form.cursor-response.is-cursor-active {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .cursor-response,
  .cursor-response:hover,
  .cursor-response.is-cursor-active,
  .booking-form.cursor-response:hover,
  .booking-form.cursor-response.is-cursor-active {
    transform: none;
  }
}

#amenities {
  background: var(--navy2);
}

.gallery-header {
  max-width: 860px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.gallery-header .section-label {
  justify-content: center;
}

.gallery-intro {
  max-width: 650px;
  margin: 0 auto 1.5rem;
  color: var(--cream2);
  line-height: 1.7;
  font-weight: 300;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.gallery-filter {
  border: 1px solid rgba(201, 168, 76, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border-radius: 8px;
  padding: 0.72rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  grid-template-rows: none;
  gap: 1rem;
}

.gallery-grid .g-item {
  grid-column: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  padding: 0;
  position: relative;
  cursor: zoom-in;
  background: transparent;
  color: inherit;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-grid .g-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .g-item.tall {
  grid-row: span 2;
}

.g-item.hidden {
  display: none;
}

.g-item-inner {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  transition: transform 0.55s ease;
}

.g-item:hover .g-item-inner {
  transform: scale(1.045);
}

.g-item-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.g-label {
  position: absolute;
  left: 1rem;
  right: auto;
  bottom: 1rem;
  z-index: 2;
  max-width: calc(100% - 2rem);
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.68);
  color: var(--cream);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.2;
  transform: none;
}

.g-item:hover .g-label {
  transform: none;
}

.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 5rem 1.5rem;
  background: rgba(2, 2, 2, 0.92);
}

.gallery-lightbox.open {
  display: grid;
}

.gallery-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(12, 12, 12, 0.76);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--navy);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  border-radius: 8px;
  font-size: 2.4rem;
}

.lightbox-prev {
  left: 1.2rem;
}

.lightbox-next {
  right: 1.2rem;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(255, 255, 255, 0.03)),
    var(--navy);
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-copy p {
  color: var(--cream2);
  line-height: 1.75;
  font-weight: 300;
}

.rate-summary {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.rate-summary div {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.07);
}

.rate-summary strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.rate-summary span {
  color: var(--cream2);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-note a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-details a,
.contact-form a,
a[href^="tel:"] {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-details a:hover,
.contact-form a:hover,
a[href^="tel:"]:hover {
  color: var(--cream);
}

.booking-address {
  margin-top: 1.6rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--cream);
  font-style: normal;
  line-height: 1.65;
}

.booking-form {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-form label,
.booking-options legend {
  display: grid;
  gap: 0.45rem;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--cream);
  padding: 0.9rem 0.95rem;
  font: inherit;
  letter-spacing: 0;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}

.booking-form select option {
  background: var(--navy2);
  color: var(--cream);
}

.booking-options {
  margin: 1.2rem 0;
  padding: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 8px;
}

.booking-options legend {
  padding: 0 0.35rem;
}

.option-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 0.75rem !important;
  margin-top: 0.8rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.95rem !important;
  color: var(--cream2) !important;
}

.option-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.shuttle-grid {
  margin-bottom: 1rem;
}

.booking-form > label {
  margin-bottom: 1.2rem;
}

.booking-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--gold-light);
  line-height: 1.55;
}

.booking-status.show {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
}

.edit-notice {
  display: none !important;
}

#contact.contact-section {
  display: block;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(201, 168, 76, 0.06)),
    var(--navy2);
}

.contact-section .contact-wrapper {
  align-items: start;
}

.contact-section .contact-stack {
  display: grid;
  gap: 1.2rem;
}

.contact-section .contact-form-wrap {
  transform: none;
}

.contact-section .contact-form-wrap:hover {
  transform: translateY(-2px);
}

.contact-section .c-icon {
  width: 48px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--gold-light);
  line-height: 1.55;
}

.contact-status.show {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--gold-glass);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.map-card iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(0.95);
}

.map-link {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  background: rgba(7, 14, 22, 0.82);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .story-panel {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  #hero {
    min-height: 88vh;
  }

  .brand-logo-img {
    height: 44px;
  }

  .hero-watermark {
    right: 50%;
    bottom: 4.8rem;
    width: min(230px, 58vw);
    opacity: 0.14;
    transform: translateX(50%);
  }

  .about-frame.accommodation-photo {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-grid .g-item.featured,
  .gallery-grid .g-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .lightbox-nav {
    top: auto;
    bottom: 1.2rem;
    transform: none;
  }
}
