  /* ============================================================
     DESIGN TOKENS
  ============================================================ */
  :root {
    /* Brand palette --------------------------------------------------
       Accent  #FF8615  | Main bg #F9F5EA | Secondary bg #F4EDDA
       Neutral #9C998F  | Main text Black / White
       Variable names kept; values remapped to the new system.        */
    --forest:    #161616;   /* near-black: dark sections, headings, dark UI */
    --sage:      #FF8615;   /* remapped -> accent (highlights, icons, links) */
    --sage-mid:  #FF8615;
    --mint-bg:   #F4EDDA;   /* secondary background */
    --gold:      #FF8615;   /* remapped -> accent */
    --gold-light:#FF9A3D;   /* lighter accent for hover lift */
    --cream:     #F9F5EA;   /* main / dominant background */
    --warm-gray: #F4EDDA;   /* secondary background */
    --text-dark: #1A1A1A;   /* near-black main text */
    --text-mid:  #9C998F;   /* neutral text: paragraphs */
    --text-light:#9C998F;   /* neutral text: supporting / captions */
    --white:     #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ============================================================
     RESET & BASE
  ============================================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ============================================================
     TYPOGRAPHY SCALE
  ============================================================ */
  .display { font-family: 'Playfair Display', Georgia, serif; }
  h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
  h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 700; }
  h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
  h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
  h4 { font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; }
  p  { color: var(--text-mid); font-size: 1rem; }

  /* ============================================================
     LAYOUT UTILITIES
  ============================================================ */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .section-pad { padding: 80px 0; }
  .section-pad-lg { padding: 110px 0; }
  .text-center { text-align: center; }
  .section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    background: var(--mint-bg);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1rem;
  }
  .section-heading {
    margin-bottom: 1.2rem;
    color: var(--forest);
  }
  .section-sub {
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.75;
  }
  .gold-accent { color: var(--gold); }

  /* ============================================================
     BUTTONS
  ============================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    padding: 14px 32px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.02em;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--forest);
    box-shadow: 0 4px 20px rgba(255,134,21,0.30);
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,134,21,0.42);
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
  }
  .btn-forest {
    background: var(--forest);
    color: var(--white);
    box-shadow: var(--shadow-md);
  }
  .btn-forest:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  /* ============================================================
     FADE-IN ANIMATIONS
  ============================================================ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
  }
  .anim-fade-up  { animation: fadeUp  0.7s ease both; }
  .anim-fade-in  { animation: fadeIn  0.6s ease both; }
  .anim-scale-in { animation: scaleIn 0.6s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.35s; }
  .delay-4 { animation-delay: 0.5s; }
  .delay-5 { animation-delay: 0.65s; }

  /* Scroll reveal (JS-toggled) */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============================================================
     1. HERO SECTION
  ============================================================ */
  .hero {
    background: var(--forest);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
  }

  /* Organic leaf/water decorative pattern */
  .hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
  }
  .hero-pattern svg { width: 100%; height: 100%; }

  /* Gold gradient arc at top right */
  .hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255,134,21,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  /* Soft glow at bottom left */
  .hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  .hero-title {
    color: var(--white);
    margin-bottom: 1.4rem;
    line-height: 1.15;
  }
  .hero-title .accent-line {
    display: block;
    color: var(--gold);
    font-style: italic;
  }

  .hero-desc {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.2rem;
    max-width: 480px;
  }

  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* Stat ribbon - the grid-breaking signature element */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,134,21,0.06), transparent);
    border-radius: inherit;
  }
  .stat-card:hover {
    border-color: rgba(255,134,21,0.40);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.11);
  }
  .stat-card .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
  }
  .stat-card .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .stat-card .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  /* Hero wave divider */
  .hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
  }
  .hero-wave svg { display: block; width: 100%; }

  /* ============================================================
     WAVE DIVIDER (reusable)
  ============================================================ */
  .wave-top {
    line-height: 0;
    margin-bottom: -2px;
  }
  .wave-bottom {
    line-height: 0;
    margin-top: -2px;
  }

  /* ============================================================
     2. WHY CHOOSE SECTION
  ============================================================ */
  .why-section { background: var(--cream); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
  }
  .why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .why-card:hover::after { transform: scaleX(1); }

  .why-icon {
    width: 52px;
    height: 52px;
    background: var(--mint-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
    color: var(--gold);
  }
  .why-card:hover .why-icon { background: var(--forest); color: var(--white); }

  .why-card h3 { color: var(--forest); margin-bottom: 0.6rem; font-size: 1.05rem; }
  .why-card p  { font-size: 0.9rem; line-height: 1.7; }

  /* ============================================================
     3. BENEFITS SECTION
  ============================================================ */
  .benefits-section { background: var(--white); }

  .benefits-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .tab-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    background: var(--warm-gray);
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    cursor: pointer;
    transition: var(--transition);
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--forest);
    color: var(--white);
  }

  .tab-panel { display: none; }
  .tab-panel.active { display: block; animation: fadeIn 0.4s ease; }

  .benefits-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .benefits-text h3 { color: var(--forest); margin-bottom: 1rem; font-size: 1.4rem; }
  .benefits-text p  { margin-bottom: 1.2rem; line-height: 1.8; }

  .benefits-list { margin-top: 1.4rem; }
  .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--warm-gray);
    font-size: 0.92rem;
    color: var(--text-mid);
  }
  .benefits-list li:last-child { border-bottom: none; }
  .check-icon {
    width: 22px;
    height: 22px;
    background: var(--mint-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--sage);
    margin-top: 1px;
  }

  .benefits-visual {
    background: var(--mint-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .benefits-visual-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
  }
  .benefits-visual-card:last-child { margin-bottom: 0; }
  .bvc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1A1A1A, #2E2E2E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--white);
  }
  .bvc-text h4 { font-size: 0.9rem; color: var(--forest); margin-bottom: 0.15rem; }
  .bvc-text p  { font-size: 0.78rem; color: var(--text-light); }

  /* ============================================================
     4. RESORT TYPES SECTION
  ============================================================ */
  .types-section { background: var(--forest); position: relative; overflow: hidden; }
  .types-section .section-label { background: rgba(255,255,255,0.1); color: var(--gold); }
  .types-section .section-heading { color: var(--white); }
  .types-section .section-sub { color: rgba(255,255,255,0.65); }

  .types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
  }
  .type-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.4rem;
    text-align: center;
    transition: var(--transition);
    cursor: default;
  }
  .type-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .type-card .type-emoji { font-size: 2.2rem; margin-bottom: 1rem; display: block; color: var(--gold); }
  .type-card h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.5rem; }
  .type-card p  { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.6; }

  /* ============================================================
     5. ACTIVITIES SECTION
  ============================================================ */
  .activities-section { background: var(--cream); }

  .activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
  }
  .activity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .activity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--mint-bg), transparent 60%);
    opacity: 0;
    transition: var(--transition);
  }
  .activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .activity-card:hover::before { opacity: 1; }
  .activity-emoji { font-size: 2.4rem; margin-bottom: 0.75rem; display: block; position: relative; z-index: 1; color: var(--gold); }
  .activity-card h3 { color: var(--forest); font-size: 1rem; margin-bottom: 0.4rem; position: relative; z-index: 1; }
  .activity-card p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; position: relative; z-index: 1; }

  /* ============================================================
     6. RESORT LISTING SECTION
  ============================================================ */
  .listing-section { background: var(--white); }

  .listing-intro {
    background: linear-gradient(135deg, var(--forest) 0%, #2E2E2E 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .listing-intro::before {
    content: '';
    position: absolute;
    top: -60px;
    right: 80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,134,21,0.22), transparent 70%);
    pointer-events: none;
  }
  .listing-intro-text h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.5rem; }
  .listing-intro-text p  { color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 480px; }

  /* Shortcode container */
  .shortcode-container {
    background: var(--warm-gray);
    border: 2px dashed rgba(156,153,143,0.45);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .shortcode-inner {
    max-width: 520px;
  }
  .shortcode-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
  }
  .shortcode-display {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--gold);
    background: rgba(255,134,21,0.08);
    border: 1px solid rgba(255,134,21,0.25);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin: 0.75rem 0 1rem;
    letter-spacing: 0.03em;
  }
  .shortcode-inner p {
    font-size: 0.85rem;
    color: var(--text-light);
  }

  /* Filter bar above shortcode */
  .listing-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 0.25rem;
  }
  .filter-chip {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--warm-gray);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    padding: 7px 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
  }
  .filter-chip.active,
  .filter-chip:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
  }

  /* ============================================================
     7. HOW TO CHOOSE SECTION
  ============================================================ */
  .choose-section { background: var(--mint-bg); }

  .choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
  .choose-left h2 { color: var(--forest); margin-bottom: 1rem; }
  .choose-left > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }

  .choose-steps { display: flex; flex-direction: column; gap: 1.2rem; }
  .choose-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  .choose-step:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
  .step-num {
    width: 40px;
    height: 40px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .step-body h4 { color: var(--forest); margin-bottom: 0.3rem; }
  .step-body p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

  .choose-right { display: flex; flex-direction: column; gap: 1.2rem; }
  .tip-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    border-left: 4px solid var(--sage);
    box-shadow: var(--shadow-sm);
  }
  .tip-card.gold-left { border-left-color: var(--gold); }
  .tip-card h4 { color: var(--forest); font-size: 0.92rem; margin-bottom: 0.35rem; }
  .tip-card h4 i { color: var(--gold); margin-right: 0.35rem; }
  .tip-card p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

  /* ============================================================
     8. PLANNING GUIDE SECTION
  ============================================================ */
  .guide-section { background: var(--white); }

  .guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .guide-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
  }
  .guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
  .guide-card-header {
    background: linear-gradient(135deg, var(--forest), #2E2E2E);
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .guide-card-header .g-icon { font-size: 1.4rem; color: var(--gold); }
  .guide-card-header h3 { color: var(--white); font-size: 1rem; }
  .guide-card-body { background: var(--white); padding: 1.4rem 1.6rem; }
  .guide-list { display: flex; flex-direction: column; gap: 0.5rem; }
  .guide-list li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
  }
  .guide-list li::before {
    content: '›';
    color: var(--sage);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ============================================================
     9. FAQ SECTION
  ============================================================ */
  .faq-section { background: var(--cream); }

  .faq-list { max-width: 860px; margin: 0 auto; }
  .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 0.9rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
  }
  .faq-item:hover { box-shadow: var(--shadow-md); }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.3rem 1.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
  }
  .faq-question:hover { color: var(--sage); }
  .faq-icon {
    width: 28px;
    height: 28px;
    background: var(--mint-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--sage);
    transition: var(--transition);
    font-weight: 400;
  }
  .faq-item.open .faq-icon {
    background: var(--forest);
    color: var(--white);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-answer-inner {
    padding: 0 1.6rem 1.4rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    border-top: 1px solid var(--warm-gray);
    padding-top: 1rem;
  }

  /* ============================================================
     10. FINAL CTA SECTION
  ============================================================ */
  .cta-section {
    background: linear-gradient(135deg, var(--forest) 0%, #000000 100%);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,134,21,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-inner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
  .cta-inner p  { color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; }

  .cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
  .cta-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.3rem;
    transition: var(--transition);
  }
  .cta-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,134,21,0.30); }
  .cta-card .cc-icon { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--gold); }
  .cta-card h4 { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.3rem; font-family:'Playfair Display',serif; }
  .cta-card p  { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

  .cta-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-stats  { max-width: 480px; }
    .types-grid  { grid-template-columns: repeat(3, 1fr); }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-grid  { grid-template-columns: repeat(2, 1fr); }
    .cta-cards   { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .section-pad { padding: 56px 0; }
    .section-pad-lg { padding: 72px 0; }
    .why-grid    { grid-template-columns: 1fr; }
    .types-grid  { grid-template-columns: repeat(2, 1fr); }
    .benefits-panel-inner { grid-template-columns: 1fr; }
    .choose-grid { grid-template-columns: 1fr; }
    .guide-grid  { grid-template-columns: 1fr; }
    .listing-intro { grid-template-columns: 1fr; text-align: center; }
    .cta-cards   { grid-template-columns: 1fr; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .hero-stats  { grid-template-columns: 1fr 1fr; }
    .listing-filters { justify-content: flex-start; }
  }

  @media (max-width: 480px) {
    .types-grid  { grid-template-columns: 1fr 1fr; }
    .activities-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats  { grid-template-columns: 1fr 1fr; }
    .cta-btn-group { flex-direction: column; align-items: stretch; }
    .cta-btn-group .btn { justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, .anim-fade-up, .anim-fade-in, .anim-scale-in, .reveal {
      animation: none !important;
      transition: none !important;
    }
  }

  /* Family , corporate , couple page css */

  /* ============================================================
   BOOKADAY · FAMILY PICNIC LANDING PAGE
   Scoped under .fp / .fp-* to stay safe inside Elementor
   Palette: #FF8615 accent · #F9F5EA / #F4EDDA / #fff bg
            black + white + #9C998F text
============================================================ */
.fp {
  --accent: #FF8615;
  --accent-dark: #E5730C;
  --accent-soft: #FDEAD6;
  --bg: #FFFFFF;
  --cream: #F9F5EA;
  --cream-2: #F4EDDA;
  --ink: #141414;
  --ink-soft: #2A2A2A;
  --muted: #9C998F;
  --line: rgba(0, 0, 0, 0.07);
  --white: #FFFFFF;
  --sh-sm: 0 2px 10px rgba(20, 20, 20, 0.05);
  --sh-md: 0 14px 38px rgba(20, 20, 20, 0.09);
  --sh-lg: 0 26px 60px rgba(20, 20, 20, 0.14);
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-pill: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.fp *,
.fp *::before,
.fp *::after { box-sizing: border-box; }

.fp h1, .fp h2, .fp h3, .fp h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.01em;
}
.fp p { margin: 0; }
.fp ul { margin: 0; padding: 0; list-style: none;  margin-top : 13px !important; }
.fp a { text-decoration: none; color: inherit; }
.fp img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.fp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.fp-container--narrow { max-width: 880px; }

.fp-section { padding: 96px 0; background: var(--bg); }
.fp-section--cream { background: var(--cream); }
.fp-section--cream2 { background: var(--cream-2); }

.fp-head {
  max-width: 720px;
  margin: 0 auto 3.25rem;
  text-align: center;
}
.fp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.fp-h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 700; }
.fp-h3 { font-size: 1.18rem; font-weight: 600; }
.fp-h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.fp-lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}
.fp-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: var(--r-pill);
  padding: 14px 30px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.fp-btn i { font-size: 0.9em; }
.fp-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 134, 21, 0.32);
}
.fp-btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 134, 21, 0.42);
}
.fp-btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.fp-btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-3px); }
.fp-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.fp-btn--outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-3px); }
.fp-btn--lg { padding: 17px 38px; font-size: 1.02rem; }

/* ---------- Badges ---------- */
.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 7px 16px;
  border-radius: var(--r-pill);
}
.fp-badge--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================================
   HERO
============================================================ */
.fp-hero {
  position: relative;
  background: var(--cream);
  padding: 104px 0 92px;
  overflow: hidden;
}
.fp-hero__decor { position: absolute; inset: 0; pointer-events: none; }
.fp-hero__leaves { position: absolute; inset: 0; width: 100%; height: 100%; }
.fp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.fp-blob--a {
  top: -120px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 134, 21, 0.16), transparent 70%);
}
.fp-blob--b {
  bottom: -160px; left: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(244, 237, 218, 0.9), transparent 70%);
}
.fp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;

  /* Left content gets enough room for both CTA buttons */
  grid-template-columns: minmax(620px, 1.1fr) 0.9fr;

  gap: 3.5rem;
  align-items: center;
}
.fp-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 700;
  margin: 1.1rem 0 1.2rem;
}
.fp-hero__sub {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 2rem;
}
.fp-hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.fp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  margin-top: 2.75rem;
}
.fp-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.fp-hero__trust i { color: var(--accent); }

/* Hero stat cards */
.fp-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.fp-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fp-stat:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.fp-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.fp-stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.fp-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

/* ============================================================
   GENERIC GRIDS / CARDS
============================================================ */
.fp-grid { display: grid; gap: 1.4rem; }
.fp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fp-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Why-choose cards */
.fp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem 1.7rem;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.fp-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(255, 134, 21, 0.35); }
.fp-card__icon,
.fp-type__icon,
.fp-check__icon,
.fp-plan__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.fp-card:hover .fp-card__icon,
.fp-type:hover .fp-type__icon {
  background: var(--accent);
  color: #fff;
}
.fp-card p, .fp-type p, .fp-check p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Amenities grid ---------- */
.fp-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.fp-amenity {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 1rem 1.1rem;
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fp-amenity:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.fp-amenity__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.05rem;
}
.fp-amenity__name { font-size: 0.92rem; font-weight: 600; color: var(--ink); }

/* ---------- Types ---------- */
.fp-type {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.9rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fp-type:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

/* ---------- Tabs / Activities ---------- */
.fp-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.fp-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 11px 22px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.fp-tab i { color: var(--accent); transition: color 0.25s var(--ease); }
.fp-tab:hover { border-color: var(--accent); }
.fp-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.fp-tab.is-active i { color: var(--accent); }

.fp-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  box-shadow: var(--sh-sm);
  max-width: 820px;
  margin: 0 auto;
  animation: fpFade 0.4s var(--ease) both;
}
.fp-panel[hidden] { display: none; }
.fp-panel .fp-h3 { color: var(--ink); }
.fp-panel > p { margin: 0.5rem 0 1.3rem; color: var(--muted); }

.fp-list { display: grid; gap: 0.7rem; }
.fp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.fp-list li i {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.fp-list--tight li { font-size: 0.86rem; }

/* ---------- Resort listing placeholder ---------- */
.fp-listing {
  background: var(--cream);
  border: 2px dashed rgba(255, 134, 21, 0.4);
  border-radius: var(--r-lg);
  padding: 3.4rem 2rem;
  text-align: center;
}
.fp-listing__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.fp-listing__badge i { color: var(--accent); }
.fp-listing__note { color: var(--muted); font-size: 0.95rem; max-width: 520px; margin: 0 auto 1.1rem; }
.fp-listing__slot {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 134, 21, 0.3);
  border-radius: 10px;
  padding: 13px 22px;
  display: inline-block;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.fp-listing__hint { color: var(--muted); font-size: 0.85rem; max-width: 520px; margin: 0 auto; }

/* ---------- Buying guide / planning cards ---------- */
.fp-check, .fp-plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fp-check:hover, .fp-plan:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.fp-check__icon, .fp-plan__icon {
  width: 46px; height: 46px;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.fp-plan .fp-list { margin-top: 0.9rem; }

/* ============================================================
   FAQ
============================================================ */
.fp-faq { display: flex; flex-direction: column; gap: 0.85rem; }
.fp-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.fp-faq__item:hover { box-shadow: var(--sh-md); }
.fp-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.fp-faq__q:hover { color: var(--accent-dark); }
.fp-faq__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.fp-faq__item.is-open .fp-faq__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.fp-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.fp-faq__inner {
  padding: 0 1.5rem 1.35rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.fp-faq__inner p { font-size: 0.93rem; color: var(--muted); line-height: 1.8; }

/* ============================================================
   FINAL CTA
============================================================ */
.fp-cta {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}
.fp-cta__decor { position: absolute; inset: 0; pointer-events: none; }
.fp-blob--c {
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255, 134, 21, 0.18), transparent 62%);
}
.fp-cta__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; }
.fp-cta .fp-cta__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 1.1rem 0 1rem;
}
.fp-cta__text { color: rgba(255, 255, 255, 0.72); font-size: 1.05rem; line-height: 1.85; margin-bottom: 2.2rem !important; }
.fp-cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.fp-cta__fine { margin-top: 1.6rem !important; font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.fp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.fp-reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fpFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .fp-hero__inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .fp-hero__stats { max-width: 520px; }
  .fp-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .fp-amenities { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .fp-section { padding: 68px 0; }
  .fp-hero { padding: 84px 0 68px; }
  .fp-grid--3, .fp-grid--4 { grid-template-columns: 1fr 1fr; }
  .fp-amenities { grid-template-columns: 1fr 1fr; }
  .fp-panel { padding: 1.7rem; }
}
@media (max-width: 520px) {
  .fp-container { padding: 0 1.15rem; }
  .fp-grid--3, .fp-grid--4 { grid-template-columns: 1fr; }
  .fp-amenities { grid-template-columns: 1fr 1fr; }
  .fp-hero__stats { grid-template-columns: 1fr 1fr; }
  .fp-hero__cta .fp-btn, .fp-cta__btns .fp-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   ACCESSIBILITY
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fp *, .fp *::before, .fp *::after {
    animation: none !important;
    transition: none !important;
  }
  .fp-reveal { opacity: 1; transform: none; }
}
.fp-btn:focus-visible,
.fp-tab:focus-visible,
.fp-faq__q:focus-visible {
  outline: 3px solid rgba(255, 134, 21, 0.55);
  outline-offset: 2px;
}



/* ============================================================
   BOOKADAY · SWIMMING POOL RESORTS LANDING PAGE
   Scoped under .sp / .sp-* to stay safe inside Elementor
   Palette: #FF8615 accent · #F9F5EA / #F4EDDA / #fff bg
            black + white + #9C998F text
============================================================ */
.sp {
  --accent: #FF8615;
  --accent-dark: #E5730C;
  --accent-soft: #FDEAD6;
  --bg: #FFFFFF;
  --cream: #F9F5EA;
  --cream-2: #F4EDDA;
  --ink: #141414;
  --ink-soft: #2C2C2C;
  --muted: #9C998F;
  --line: rgba(0, 0, 0, 0.07);
  --white: #FFFFFF;
  --sh-sm: 0 2px 12px rgba(20, 20, 20, 0.05);
  --sh-md: 0 16px 40px rgba(20, 20, 20, 0.10);
  --sh-lg: 0 30px 70px rgba(20, 20, 20, 0.16);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-pill: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.sp *, .sp *::before, .sp *::after { box-sizing: border-box; }
.sp h1, .sp h2, .sp h3, .sp h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  line-height: 1.16;
  margin: 0;
  letter-spacing: -0.01em;
}
.sp p { margin: 0; }
.sp ul { margin: 0; padding: 0; list-style: none; }
.sp a { text-decoration: none; color: inherit; }
.sp img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.sp-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sp-container--narrow { max-width: 880px; }
.sp-section { padding: 96px 0; background: var(--bg); }
.sp-section--cream { background: var(--cream); }
.sp-section--cream2 { background: var(--cream-2); }

.sp-head { max-width: 720px; margin: 0 auto 3.25rem; text-align: center; }
.sp-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.85rem;
}
.sp-h2 { font-size: clamp(1.75rem, 3.6vw, 2.8rem); font-weight: 700; }
.sp-h3 { font-size: 1.2rem; font-weight: 600; }
.sp-h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.sp-lead { margin-top: 1rem; font-size: 1.05rem; color: var(--muted); line-height: 1.8; }
.sp-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.sp-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.97rem;
  border-radius: var(--r-pill); padding: 14px 30px; cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.sp-btn i { font-size: 0.9em; }
.sp-btn--lg { padding: 17px 38px; font-size: 1.02rem; }
.sp-btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(255, 134, 21, 0.34); }
.sp-btn--primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(255, 134, 21, 0.45); }
.sp-btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--sh-sm); }
.sp-btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-3px); }
.sp-btn--glass {
  background: rgba(255, 255, 255, 0.14); color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.sp-btn--glass:hover { background: rgba(255, 255, 255, 0.26); border-color: #fff; transform: translateY(-3px); }

/* ---------- Badges / pills / tags ---------- */
.sp-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--accent-soft);
  padding: 8px 16px; border-radius: var(--r-pill);
}
.sp-badge--glass {
  color: #fff; background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.sp-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--accent-soft);
  padding: 6px 13px; border-radius: var(--r-pill); margin-bottom: 0.85rem;
}
.sp-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  background: rgba(20, 20, 20, 0.42);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 8px 15px; border-radius: var(--r-pill);
}
.sp-tag i { color: var(--accent); }

/* ============================================================
   HERO
============================================================ */
.sp-hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.sp-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.sp-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(20,20,20,0.78) 0%, rgba(20,20,20,0.5) 42%, rgba(20,20,20,0.18) 100%);
}
.sp-hero__inner { position: relative; z-index: 2; padding: 120px 1.5rem 96px; max-width: 1200px; }
.sp-hero .sp-hero__title {
  color: #fff; font-size: clamp(2.3rem, 5.6vw, 4.2rem); font-weight: 700;
  margin: 1.1rem 0 1.2rem; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.sp-hero__sub { color: rgba(255, 255, 255, 0.9); font-size: 1.12rem; line-height: 1.8; max-width: 620px; margin-bottom: 2rem; }
.sp-hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.sp-hero__chips { display: flex; flex-wrap: wrap; gap: 0.9rem 1.6rem; margin-top: 2.4rem; }
.sp-hero__chips li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: #fff; }
.sp-hero__chips i { color: var(--accent); }

/* ============================================================
   STATS BAND
============================================================ */
.sp-stats { background: var(--ink); padding: 30px 0; }
.sp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sp-stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.25rem; padding: 1rem; }
.sp-stat__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 134, 21, 0.16); color: var(--accent);
  font-size: 1.15rem; margin-bottom: 0.5rem;
}
.sp-stat__num { font-family: 'Playfair Display', serif; font-size: 1.95rem; font-weight: 700; color: #fff; line-height: 1; }
.sp-stat__label { font-size: 0.8rem; font-weight: 500; color: rgba(255, 255, 255, 0.62); }

/* ============================================================
   GALLERY
============================================================ */
.sp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.sp-gallery__item {
  position: relative; margin: 0; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); background: var(--cream-2);
}
.sp-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.sp-gallery__item:hover img { transform: scale(1.07); }
.sp-gallery__item figcaption { position: absolute; left: 14px; bottom: 14px; z-index: 2; }
.sp-gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.4), transparent 55%);
}
.sp-gallery__item--tall { grid-row: span 2; }
.sp-gallery__item--wide { grid-column: span 2; }

/* ============================================================
   GENERIC GRIDS / CARDS
============================================================ */
.sp-grid { display: grid; gap: 1.4rem; }
.sp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sp-grid--4 { grid-template-columns: repeat(4, 1fr); }

.sp-card, .sp-type, .sp-info {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 2rem 1.7rem; box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.sp-section--cream .sp-type { background: #fff; }
.sp-card:hover, .sp-type:hover, .sp-info:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(255, 134, 21, 0.3); }
.sp-card__icon, .sp-type__icon, .sp-info__icon, .sp-check__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 1.4rem; margin-bottom: 1.1rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.sp-card:hover .sp-card__icon, .sp-type:hover .sp-type__icon, .sp-info:hover .sp-info__icon {
  background: var(--accent); color: #fff;
}
.sp-card p, .sp-type p, .sp-info p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ---------- Feature image cards ---------- */
.sp-grid--feature { gap: 1.6rem; }
.sp-feature {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.sp-feature:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.sp-feature__media { height: 220px; overflow: hidden; }
.sp-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.sp-feature:hover .sp-feature__media img { transform: scale(1.06); }
.sp-feature__body { padding: 1.7rem 1.7rem 1.9rem; }
.sp-feature__body p { margin-top: 0.5rem; font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

/* ---------- Facilities ---------- */
.sp-facilities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sp-facility {
  display: flex; align-items: center; gap: 0.9rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 1rem 1.1rem; box-shadow: var(--sh-sm); font-size: 0.92rem; font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sp-facility:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.sp-facility__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent); font-size: 1.05rem;
}

/* ---------- Buying-guide checks ---------- */
.sp-check {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem 1.4rem; box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.sp-check:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.sp-check__icon { width: 46px; height: 46px; font-size: 1.15rem; margin-bottom: 0.9rem; }
.sp-check p { margin-top: 0.4rem; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ---------- Listing placeholder ---------- */
.sp-listing {
  background: #fff; border: 2px dashed rgba(255, 134, 21, 0.4);
  border-radius: var(--r-lg); padding: 3.4rem 2rem; text-align: center; box-shadow: var(--sh-sm);
}
.sp-listing__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 16px;
  border-radius: var(--r-pill); margin-bottom: 1.1rem;
}
.sp-listing__badge i { color: var(--accent); }
.sp-listing__note { color: var(--muted); font-size: 0.95rem; max-width: 540px; margin: 0 auto 1.4rem; }
.sp-listing__slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem;
  min-height: 180px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--muted); font-size: 0.9rem; font-weight: 500; margin-bottom: 1.4rem;
}
.sp-listing__slot i { font-size: 2.2rem; color: var(--accent); }
.sp-listing__hint { color: var(--muted); font-size: 0.85rem; max-width: 540px; margin: 0 auto; }

/* ---------- Split (why bookaday) ---------- */
.sp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sp-split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.sp-split__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
.sp-split__body .sp-lead { margin-bottom: 1.4rem; }
.sp-ticks { display: grid; gap: 0.7rem; margin-bottom: 1.8rem; }
.sp-ticks li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; color: var(--ink-soft); }
.sp-ticks i { color: var(--accent); margin-top: 0.3rem; flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.sp-quote {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.9rem 1.7rem; box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.sp-quote:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.sp-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 0.9rem; letter-spacing: 0.1em; }
.sp-quote blockquote { margin: 0; }
.sp-quote blockquote p { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.75; font-style: italic; }
.sp-quote figcaption { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.3rem; }
.sp-quote__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
}
.sp-quote figcaption strong { display: block; font-size: 0.9rem; color: var(--ink); }
.sp-quote figcaption small { display: block; font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   FAQ
============================================================ */
.sp-faq { display: flex; flex-direction: column; gap: 0.85rem; }
.sp-faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow: hidden; transition: box-shadow 0.3s var(--ease); }
.sp-faq__item:hover { box-shadow: var(--sh-md); }
.sp-faq__q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; font-family: 'Inter', sans-serif; font-size: 0.99rem; font-weight: 600;
  color: var(--ink); transition: color 0.2s var(--ease);
}
.sp-faq__q:hover { color: var(--accent-dark); }
.sp-faq__icon {
  flex-shrink: 0; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 0.8rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.sp-faq__item.is-open .sp-faq__icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.sp-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.sp-faq__inner { padding: 0 1.5rem 1.35rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.sp-faq__inner p { font-size: 0.93rem; color: var(--muted); line-height: 1.8; }

/* ============================================================
   FINAL CTA
============================================================ */
.sp-cta { position: relative; padding: 110px 0; overflow: hidden; }
.sp-cta__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.sp-cta__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,20,20,0.62), rgba(20,20,20,0.78)); }
.sp-cta__inner { position: relative; z-index: 2; text-align: center; max-width: 740px; }
.sp-cta .sp-cta__title { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 700; margin: 1.1rem 0 1rem; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.sp-cta__text { color: rgba(255, 255, 255, 0.82); font-size: 1.07rem; line-height: 1.85; margin-bottom: 2.2rem; }
.sp-cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.sp-cta__fine { margin-top: 1.6rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.sp-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); will-change: opacity, transform; }
.sp-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .sp-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .sp-facilities { grid-template-columns: repeat(3, 1fr); }
  .sp-split { grid-template-columns: 1fr; gap: 2rem; }
  .sp-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sp-section { padding: 68px 0; }
  .sp-grid--3, .sp-grid--2 { grid-template-columns: 1fr; }
  .sp-facilities { grid-template-columns: 1fr 1fr; }
  .sp-hero { min-height: 84vh; }
  .sp-hero__inner { padding: 110px 1.5rem 80px; }
  .sp-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .sp-gallery__item--wide { grid-column: span 2; }
  .sp-gallery__item--tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .sp-container { padding: 0 1.15rem; }
  .sp-grid--4 { grid-template-columns: 1fr; }
  .sp-facilities { grid-template-columns: 1fr 1fr; }
  .sp-stats__grid { grid-template-columns: 1fr 1fr; }
  .sp-hero__cta .sp-btn, .sp-cta__btns .sp-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   ACCESSIBILITY
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .sp *, .sp *::before, .sp *::after { animation: none !important; transition: none !important; }
  .sp-reveal { opacity: 1; transform: none; }
  .sp-gallery__item:hover img, .sp-feature:hover .sp-feature__media img { transform: none; }
}
.sp-btn:focus-visible, .sp-faq__q:focus-visible {
  outline: 3px solid rgba(255, 134, 21, 0.55); outline-offset: 2px;
}
