/*
Theme Name: Casa Serena
Theme URI: https://casa-serena.eu
Author: Casa Serena
Description: Custom premium theme for Casa Serena Golf Resort Apartment
Version: 1.1.0
License: Proprietary
Text Domain: casa-serena
*/

/* ============================================================
   DESIGN TOKENS – Spanish Mediterranean palette
   ============================================================ */
:root {
    /* Warm Spanish vacation colors */
    --cs-dark: #1a2a3a;
    /* deep ocean navy */
    --cs-dark-2: #243040;
    --cs-accent: #e07840;
    /* warm terracotta / Valencia orange */
    --cs-accent-2: #c96030;
    --cs-blue: #2874a6;
    /* Mediterranean blue */
    --cs-blue-light: #3a96cc;
    --cs-gold: #f5a623;
    /* Spanish sun / saffron */
    --cs-gold-light: #ffc547;
    --cs-light: #fdf6e8;
    /* warm sandy cream */
    --cs-cream: #fdfaf3;
    --cs-white: #ffffff;
    --cs-text: #1a2535;
    --cs-text-muted: #5a6880;
    --cs-border: rgba(224, 120, 64, 0.15);
    --cs-glass-bg: rgba(26, 42, 58, 0.80);
    --cs-glass-border: rgba(245, 166, 35, 0.30);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 7rem;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(26, 42, 58, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 42, 58, 0.14);
    --shadow-lg: 0 20px 60px rgba(26, 42, 58, 0.22);
    --shadow-gold: 0 4px 24px rgba(245, 166, 35, 0.30);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-sm: 180ms;
    --dur-md: 320ms;
    --dur-lg: 500ms;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--cs-text);
    background: var(--cs-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--cs-dark);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.cs-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.cs-section {
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.cs-section--dark {
    background: var(--cs-dark);
    color: var(--cs-light);
}

.cs-section--cream {
    background: var(--cs-light);
}

.cs-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-md);
}

.cs-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-md);
}

.cs-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-md);
}

.cs-text-center {
    text-align: center;
}

.cs-section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cs-accent);
    margin-bottom: 0.75rem;
}

.cs-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--cs-gold), transparent);
    margin-block: 1.25rem;
}

.cs-divider--center {
    margin-inline: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--dur-md) var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.cs-btn--primary {
    background: var(--cs-gold);
    color: var(--cs-dark);
    border-color: var(--cs-gold);
}

.cs-btn--primary:hover {
    background: transparent;
    color: var(--cs-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.cs-btn--outline {
    background: transparent;
    color: var(--cs-white);
    border-color: rgba(255, 255, 255, 0.55);
}

.cs-btn--outline:hover {
    background: var(--cs-white);
    color: var(--cs-dark);
    border-color: var(--cs-white);
}

.cs-btn--dark {
    background: var(--cs-dark);
    color: var(--cs-white);
    border-color: var(--cs-dark);
}

.cs-btn--dark:hover {
    background: var(--cs-accent);
    border-color: var(--cs-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#cs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--dur-md) var(--ease);
    padding-block: 0.875rem;
    /* compact default */
}

#cs-header.scrolled {
    background: var(--cs-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cs-glass-border);
    padding-block: 0.625rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.cs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
}

/* Logo */
.cs-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.cs-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--dur-md);
}

.cs-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.cs-logo-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cs-white);
    letter-spacing: 0.02em;
}

.cs-logo-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cs-gold);
    font-weight: 500;
}

/* ---- Nav list (WordPress wp_nav_menu output) ---- */
.cs-nav-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

/* Target the <ul> that wp_nav_menu generates */
.cs-nav-wrap ul,
.cs-nav-wrap .menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    /* never wrap to second line */
}

.cs-nav-wrap ul li,
.cs-nav-wrap .menu li {
    position: relative;
}

.cs-nav-wrap ul li a,
.cs-nav-wrap .menu li a {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.88);
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius-sm);
    transition: all var(--dur-sm) var(--ease);
    white-space: nowrap;
    position: relative;
}

.cs-nav-wrap ul li a::after,
.cs-nav-wrap .menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--cs-gold);
    transition: width var(--dur-md) var(--ease);
}

.cs-nav-wrap ul li a:hover,
.cs-nav-wrap .menu li a:hover {
    color: var(--cs-white);
}

.cs-nav-wrap ul li a:hover::after,
.cs-nav-wrap .menu li a:hover::after {
    width: calc(100% - 1.4rem);
}

.cs-nav-wrap ul li.current-menu-item>a,
.cs-nav-wrap .menu li.current-menu-item>a {
    color: var(--cs-gold-light);
}

.cs-nav-wrap ul li.current-menu-item>a::after,
.cs-nav-wrap .menu li.current-menu-item>a::after {
    width: calc(100% - 1.4rem);
    background: var(--cs-gold);
}

/* Header actions */
.cs-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cs-header-book {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cs-dark);
    background: var(--cs-gold);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-xl);
    transition: all var(--dur-md) var(--ease);
    white-space: nowrap;
}

.cs-header-book:hover {
    background: var(--cs-gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Burger / Mobile */
.cs-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.cs-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cs-white);
    border-radius: 2px;
    transition: all var(--dur-md) var(--ease);
}

/* Mobile nav overlay */
.cs-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cs-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cs-mobile-nav.open {
    display: flex;
}

.cs-mobile-nav ul,
.cs-mobile-nav .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.cs-mobile-nav ul li a,
.cs-mobile-nav .menu li a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--cs-white);
    transition: color var(--dur-sm);
    display: block;
    text-align: center;
    padding: 0.25rem 1rem;
}

.cs-mobile-nav ul li a:hover,
.cs-mobile-nav .menu li a:hover {
    color: var(--cs-gold);
}

.cs-mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--cs-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--dur-sm);
}

.cs-mobile-close:hover {
    opacity: 1;
}

/* ============================================================
   HERO (HOMEPAGE) – VIDEO BACKGROUND
   ============================================================ */
.cs-hero {
    position: relative;
    height: 100svh;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cs-dark);
}

/* Video element */
.cs-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Fallback bg image */
.cs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

/* Overlay – warmere tint voor Spanje-gevoel */
.cs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(26, 42, 58, 0.65) 0%,
            rgba(26, 42, 58, 0.30) 50%,
            rgba(26, 42, 58, 0.70) 100%);
    z-index: 1;
}

.cs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.cs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 42, 58, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid var(--cs-glass-border);
    border-radius: var(--radius-xl);
    padding: 0.4rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cs-gold);
    margin-bottom: 1.5rem;
}

.cs-hero h1 {
    color: var(--cs-white);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.cs-hero h1 span {
    color: var(--cs-gold);
}

.cs-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cs-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cs-hero-scroll {
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

.cs-hero-scroll-line {
    width: 1.5px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.3);
    }
}

/* Hero stats strip */
.cs-hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 30, 48, 0.90);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(245, 166, 35, 0.2);
    z-index: 2;
}

.cs-hero-stats-inner {
    display: flex;
    justify-content: center;
}

.cs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    gap: 0.2rem;
}

.cs-stat:last-child {
    border-right: none;
}

.cs-stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--cs-gold);
    font-weight: 700;
    line-height: 1;
}

.cs-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.cs-page-hero {
    padding-top: 90px;
    /* header height = ~56px padding + top */
    padding-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--cs-dark) 0%, var(--cs-dark-2) 100%);
    position: relative;
    overflow: hidden;
}

.cs-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(224, 120, 64, 0.12) 0%, transparent 70%);
}

.cs-page-hero .cs-container {
    position: relative;
    z-index: 1;
}

.cs-page-hero h1 {
    color: var(--cs-white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.35rem;
}

.cs-page-hero-sub {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
}

.cs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cs-breadcrumb a {
    color: var(--cs-gold);
}

.cs-breadcrumb span {
    color: rgba(255, 255, 255, 0.25);
}

.cs-page-hero-bar {
    width: 50px;
    height: 3px;
    background: var(--cs-gold);
    margin-top: 0.875rem;
    border-radius: 2px;
}

/* ============================================================
   FEATURE CARDS (homepage)
   ============================================================ */
.cs-feature-card {
    background: var(--cs-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cs-border);
    transition: all var(--dur-md) var(--ease);
    position: relative;
    overflow: hidden;
}

.cs-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cs-accent), var(--cs-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-md) var(--ease);
}

.cs-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(224, 120, 64, 0.28);
}

.cs-feature-card:hover::before {
    transform: scaleX(1);
}

.cs-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--cs-accent), var(--cs-gold));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.cs-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--cs-dark);
}

.cs-feature-card p {
    color: var(--cs-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================================
   HIGHLIGHT SECTION - IMAGE GRID
   ============================================================ */
.cs-photo-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.875rem;
}

.cs-photo-mosaic .cs-mosaic-main {
    grid-column: 1 / -1;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/7;
}

.cs-photo-mosaic .cs-mosaic-small {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.cs-photo-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-lg) var(--ease);
}

.cs-photo-mosaic img:hover {
    transform: scale(1.05);
}

/* ============================================================
   GALLERY
   ============================================================ */
.cs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.cs-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: zoom-in;
}

.cs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-lg) var(--ease);
}

.cs-gallery-item:hover img {
    transform: scale(1.08);
}

.cs-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 42, 58, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dur-md) var(--ease);
}

.cs-gallery-item:hover .cs-gallery-overlay {
    background: rgba(26, 42, 58, 0.4);
}

.cs-gallery-overlay-icon {
    color: white;
    font-size: 2rem;
    opacity: 0;
    transform: scale(0.7);
    transition: all var(--dur-md) var(--ease);
}

.cs-gallery-item:hover .cs-gallery-overlay-icon {
    opacity: 1;
    transform: scale(1);
}

.cs-slider-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.cs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: var(--sp-lg);
}

.cs-pricing-card {
    background: var(--cs-white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    border: 2px solid var(--cs-border);
    transition: all var(--dur-md) var(--ease);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cs-pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--cs-accent);
    box-shadow: var(--shadow-md);
}

.cs-pricing-card.featured {
    border-color: var(--cs-gold);
    background: var(--cs-dark);
    color: var(--cs-white);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.cs-pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.cs-pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cs-gold);
    color: var(--cs-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 1rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    white-space: nowrap;
}

.cs-pricing-season {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cs-text-muted);
    margin-bottom: 0.4rem;
}

.cs-pricing-card.featured .cs-pricing-season {
    color: var(--cs-gold);
}

.cs-pricing-months {
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
    color: var(--cs-text-muted);
    flex-grow: 1;
}

.cs-pricing-card.featured .cs-pricing-months {
    color: rgba(255, 255, 255, 0.5);
}

.cs-pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.cs-pricing-currency {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--cs-accent);
}

.cs-pricing-card.featured .cs-pricing-currency {
    color: var(--cs-gold);
}

.cs-pricing-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--cs-dark);
}

.cs-pricing-card.featured .cs-pricing-number {
    color: var(--cs-white);
}

.cs-pricing-unit {
    font-size: 0.78rem;
    color: var(--cs-text-muted);
}

.cs-pricing-card.featured .cs-pricing-unit {
    color: rgba(255, 255, 255, 0.45);
}

/* Info boxes */
.cs-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: var(--sp-md);
}

.cs-info-box {
    background: var(--cs-white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border-left: 4px solid var(--cs-accent);
    box-shadow: var(--shadow-sm);
}

.cs-info-box h4 {
    font-size: 1rem;
    color: var(--cs-dark);
    margin-bottom: 0.75rem;
}

.cs-info-box p,
.cs-info-box li {
    font-size: 0.88rem;
    color: var(--cs-text-muted);
    line-height: 1.65;
}

.cs-info-box ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cs-info-box li::before {
    content: '›';
    color: var(--cs-gold);
    font-weight: 700;
    margin-right: 0.4rem;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.cs-booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 820px) {
    .cs-booking-wrap {
        grid-template-columns: 1fr;
    }
}

.cs-booking-form-card {
    background: var(--cs-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cs-border);
}

.cs-booking-form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
}

.cs-booking-form-card .cs-booking-sub {
    color: var(--cs-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

/* Booking form fields */
#ab_booking_form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

#ab_booking_form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cs-text-muted);
    margin-bottom: 0.4rem;
}

#ab_booking_form input,
#ab_booking_form textarea,
#ab_date_range {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--cs-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cs-text);
    background: var(--cs-cream);
    transition: all var(--dur-sm) var(--ease);
    outline: none;
}

#ab_booking_form input:focus,
#ab_booking_form textarea:focus,
#ab_date_range:focus {
    border-color: var(--cs-accent);
    background: var(--cs-white);
    box-shadow: 0 0 0 3px rgba(224, 120, 64, 0.12);
}

#ab_booking_form textarea {
    min-height: 100px;
    resize: vertical;
}

#ab_booking_form .ab-submit-btn,
#ab_booking_form input[type="submit"],
#ab_booking_form button[type="submit"] {
    background: var(--cs-gold) !important;
    color: var(--cs-dark) !important;
    border: none !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 1rem 2.5rem !important;
    cursor: pointer !important;
    transition: all var(--dur-md) var(--ease) !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
}

#ab_booking_form .ab-submit-btn:hover,
#ab_booking_form input[type="submit"]:hover,
#ab_booking_form button[type="submit"]:hover {
    background: var(--cs-dark) !important;
    color: var(--cs-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

/* ============================================================
   BOOKING PRICE SUMMARY CARD
   ============================================================ */
.cs-price-summary-card {
    background: var(--cs-white);
    border: 1px solid var(--cs-border);
    border-radius: var(--radius-md);
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    animation: fadeIn var(--dur-md) var(--ease);
}

.cs-price-summary-header {
    background: var(--cs-light);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--cs-border);
}

.cs-price-summary-header h4 {
    margin: 0;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cs-dark);
}

.cs-price-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--cs-gold);
    color: var(--cs-dark);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.cs-price-summary-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cs-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--cs-text);
}

.cs-price-row small {
    display: block;
    font-size: 0.8rem;
    color: var(--cs-text-muted);
    margin-top: 0.15rem;
}

.cs-price-row-muted {
    opacity: 0.9;
}

.cs-price-total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--cs-border);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cs-dark);
}

.cs-price-total small {
    font-weight: 400;
}

.cs-price-summary-footer {
    background: rgba(224, 120, 64, 0.04);
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--cs-border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cs-price-note {
    font-size: 0.88rem;
    color: var(--cs-text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cs-price-note .cs-icon {
    font-size: 1rem;
    margin-top: -1px;
}

.cs-price-note strong {
    color: var(--cs-dark);
}

.cs-price-note small {
    color: var(--cs-text-muted);
}

.cs-price-disclaimer {
    font-size: 0.75rem;
    color: var(--cs-text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

#ab_min_notice {
    background: #fff3cd;
    border-left: 3px solid #f0a500;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #7a5a00;
}

#ab_booking_form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--cs-accent);
}

/* Flatpickr */
.flatpickr-calendar {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    font-family: var(--font-body) !important;
    border: 1px solid var(--cs-border) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--cs-accent) !important;
    border-color: var(--cs-accent) !important;
}

.flatpickr-day.inRange {
    background: rgba(224, 120, 64, 0.14) !important;
    border-color: transparent !important;
}

.flatpickr-day.today {
    border-color: var(--cs-gold) !important;
}

/* Booking info panel */
.cs-booking-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cs-booking-info-card {
    background: var(--cs-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--cs-border);
}

.cs-booking-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.cs-booking-info-card p {
    font-size: 0.85rem;
    color: var(--cs-text-muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.cs-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cs-review-card {
    background: var(--cs-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--cs-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--dur-md) var(--ease);
    position: relative;
}

.cs-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cs-review-card::before {
    content: '\201C';
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--cs-light);
    pointer-events: none;
}

.cs-review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--cs-gold);
    font-size: 0.9rem;
}

.cs-review-text {
    font-size: 0.92rem;
    color: var(--cs-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cs-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cs-review-author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cs-dark);
}

.cs-review-author-loc {
    font-size: 0.78rem;
    color: var(--cs-text-muted);
}

/* ============================================================
   BOOKING PAGE RESPONSIVE GRID
   ============================================================ */
.cs-booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .cs-booking-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CONTACT / WPFORMS
   ============================================================ */
.cs-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 820px) {
    .cs-contact-wrap {
        grid-template-columns: 1fr;
    }
}

.cs-contact-form-wrap {
    background: var(--cs-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cs-border);
}

.wpforms-form .wpforms-field input,
.wpforms-form .wpforms-field textarea,
.wpforms-form .wpforms-field select {
    border: 1.5px solid var(--cs-border) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    color: var(--cs-text) !important;
    background: var(--cs-cream) !important;
    padding: 0.85rem 1rem !important;
    transition: all var(--dur-sm) var(--ease) !important;
}

.wpforms-form .wpforms-field input:focus,
.wpforms-form .wpforms-field textarea:focus {
    border-color: var(--cs-accent) !important;
    background: var(--cs-white) !important;
    box-shadow: 0 0 0 3px rgba(224, 120, 64, 0.1) !important;
    outline: none !important;
}

.wpforms-form .wpforms-field label {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: var(--cs-text-muted) !important;
    margin-bottom: 0.4rem !important;
}

.wpforms-submit {
    background: var(--cs-gold) !important;
    color: var(--cs-dark) !important;
    border: none !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 1rem 3rem !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: all var(--dur-md) var(--ease) !important;
}

.wpforms-submit:hover {
    background: var(--cs-dark) !important;
    color: var(--cs-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cs-cta-band {
    background: linear-gradient(135deg, var(--cs-dark) 0%, var(--cs-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cs-cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cs-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cs-cta-text h2 {
    color: var(--cs-white);
    margin-bottom: 0.5rem;
}

.cs-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
#cs-footer {
    background: var(--cs-dark);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 4rem;
}

.cs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cs-footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    margin-top: 1rem;
}

.cs-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cs-footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--dur-sm) var(--ease);
}

.cs-footer-social a:hover {
    border-color: var(--cs-gold);
    color: var(--cs-gold);
    background: rgba(245, 166, 35, 0.1);
}

.cs-footer-col h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cs-white);
    margin-bottom: 1.25rem;
}

.cs-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cs-footer-col ul li a,
.cs-footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--dur-sm);
}

.cs-footer-col ul li a:hover,
.cs-footer-col ul a:hover {
    color: var(--cs-gold);
}

.cs-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

.cs-footer-contact-item span:first-child {
    color: var(--cs-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.cs-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.25rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.cs-footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.cs-footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--dur-sm);
}

.cs-footer-bottom a:hover {
    color: var(--cs-gold);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.cs-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--dur-lg) var(--ease), transform var(--dur-lg) var(--ease);
}

.cs-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cs-reveal-delay-1 {
    transition-delay: 100ms;
}

.cs-reveal-delay-2 {
    transition-delay: 200ms;
}

.cs-reveal-delay-3 {
    transition-delay: 300ms;
}

.cs-reveal-delay-4 {
    transition-delay: 400ms;
}

/* ============================================================
   PAGE CONTENT (WordPress block output styling)
   ============================================================ */
.cs-content-area {
    padding-block: var(--sp-lg);
}

.cs-content-area .entry-content {
    max-width: 860px;
    margin-inline: auto;
}

.entry-content>* {
    max-width: 100%;
}

.entry-content p {
    color: var(--cs-text);
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.entry-content ul li::before {
    content: '›';
    color: var(--cs-gold);
    font-weight: 700;
    margin-right: 0.5rem;
}

.entry-content .wp-block-image {
    margin-block: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================================
   WIDGET POSITIONING
   ============================================================ */
.wp-whatsapp-circle {
    bottom: 2rem !important;
    right: 2rem !important;
}

.ot-sdk-btn-floating {
    bottom: 5rem !important;
    right: 2rem !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .cs-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cs-nav-wrap ul li a,
    .cs-nav-wrap .menu li a {
        font-size: 0.68rem;
        padding: 0.4rem 0.55rem;
    }
}

@media (max-width: 900px) {

    /* Hide desktop nav, show burger */
    .cs-nav-wrap,
    .cs-header-book {
        display: none;
    }

    .cs-burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .cs-hero-stats-inner {
        flex-wrap: wrap;
    }

    .cs-stat {
        padding: 0.875rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        width: 50%;
    }

    /* Push hero content up to avoid overlapping the taller, 2-line stats bar */
    .cs-hero-content {
        padding-bottom: 5.5rem;
    }

    /* Keep hero buttons above the fold tightly on mobile */
    .cs-hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .cs-hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.4rem;
        padding-inline: 0.25rem;
    }

    .cs-hero-actions .cs-btn {
        width: 50%;
        padding: 0.6rem 0.4rem;
        font-size: 0.68rem;
        line-height: 1.2;
        white-space: normal;
        /* allow text to wrap inside the button if it's too long */
    }

    /* Shrink the WhatsApp float icon to save screen space */
    .wp-whatsapp-circle {
        transform: scale(0.8);
        transform-origin: bottom right;
        bottom: 1rem !important;
        right: 1rem !important;
    }

    .cs-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cs-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cs-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cs-pricing-card.featured {
        transform: none;
    }

    .cs-photo-mosaic {
        grid-template-columns: 1fr;
    }

    .cs-photo-mosaic .cs-mosaic-main {
        grid-column: 1;
        aspect-ratio: 16/9;
    }
}

/* ============================================================
   PAGE ARTICLE (standard WP page template)
   ============================================================ */
.cs-page-article {
    padding-block: 3rem;
}

/* Content wrapper — gives page content a max-width but allows wide/full blocks */
.cs-page-content-wrap {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* Blocks that should be full-width */
.cs-page-content-wrap .alignfull,
.cs-page-content-wrap .wp-block-group.alignfull {
    margin-inline: calc(-1 * clamp(1.25rem, 5vw, 3rem));
    max-width: none;
    width: calc(100% + 2 * clamp(1.25rem, 5vw, 3rem));
}

/* Standard block spacing */
.cs-page-content-wrap>* {
    margin-bottom: 1.5rem;
}

.cs-page-content-wrap>*:last-child {
    margin-bottom: 0;
}

/* Headings */
.cs-page-content-wrap h2 {
    margin-top: 2rem;
    color: var(--cs-dark);
}

.cs-page-content-wrap h3 {
    margin-top: 1.5rem;
    color: var(--cs-dark);
}

/* Images */
.cs-page-content-wrap figure.wp-block-image,
.cs-page-content-wrap .wp-block-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cs-page-content-wrap .wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery */
.cs-page-content-wrap .wp-block-gallery {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cs-page-content-wrap .wp-block-gallery .wp-block-image {
    box-shadow: none;
    border-radius: 0;
}

/* Columns */
.cs-page-content-wrap .wp-block-columns {
    gap: 2rem;
    align-items: start;
}

/* Buttons */
.cs-page-content-wrap .wp-block-button__link {
    background: var(--cs-accent) !important;
    color: var(--cs-white) !important;
    border-radius: var(--radius-xl) !important;
    padding: 0.875rem 2rem !important;
    font-weight: 600 !important;
    transition: all var(--dur-md) var(--ease) !important;
}

.cs-page-content-wrap .wp-block-button__link:hover {
    background: var(--cs-dark) !important;
    transform: translateY(-2px) !important;
}

/* Tables */
.cs-page-content-wrap table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cs-page-content-wrap th {
    background: var(--cs-dark);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

.cs-page-content-wrap td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--cs-border);
    font-size: 0.9rem;
}

.cs-page-content-wrap tr:nth-child(even) td {
    background: var(--cs-light);
}

/* Paragraph / text */
.cs-page-content-wrap p {
    color: var(--cs-text);
    line-height: 1.8;
}

/* Lists */
.cs-page-content-wrap ul li,
.cs-page-content-wrap ol li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
    color: var(--cs-text);
}

/* Cover block */
.cs-page-content-wrap .wp-block-cover {
    border-radius: var(--radius-md);
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   PRICING PAGE OVERRIDES
   ============================================================ */

/* Make pricing cards flex-column so their buttons align at bottom */
.cs-pricing-grid .cs-pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Push the link/button inside pricing card to bottom */
.cs-pricing-grid .cs-pricing-card>a,
.cs-pricing-grid .cs-pricing-card>.cs-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* Info boxes: always 2 columns */
.cs-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 600px) {
    .cs-info-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Compact monthly price table */
.cs-pricing-month-table td,
.cs-pricing-month-table th {
    padding: 0.45rem 1rem !important;
    font-size: 0.85rem !important;
}

/* Pricing page: compact inline rate list instead of full table */
.cs-rates-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    margin-bottom: 2rem;
}

.cs-rates-compact-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.88rem;
    align-items: baseline;
}

.cs-rates-compact-item strong {
    color: var(--cs-dark);
    font-weight: 700;
}

.cs-rates-compact-item span {
    color: var(--cs-text-muted);
}

/* ============================================================
   HIDE BOOKING NAV ITEM (Book Now button already goes there)
   ============================================================ */
/* Hide any nav item whose link points to /booking-request/ */
.cs-nav-wrap .menu li a[href*="booking-request"],
.cs-nav-wrap ul li a[href*="booking-request"] {
    display: none;
}

.cs-nav-wrap .menu li:has(a[href*="booking-request"]),
.cs-nav-wrap ul li:has(a[href*="booking-request"]) {
    display: none;
}

/* ============================================================
   APARTMENT PAGE — custom template layout
   ============================================================ */

/* Hero split: large image left, text right */
.apt-hero-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 800px) {
    .apt-hero-split {
        grid-template-columns: 1fr;
    }
}

.apt-hero-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.apt-hero-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.apt-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.75), transparent);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.apt-hero-text h2 {
    margin-bottom: 0.25rem;
}

/* Quick fact strip */
.apt-quick-facts {
    display: flex;
    gap: 0;
    margin: 1.75rem 0;
    border: 1px solid var(--cs-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cs-white);
}

.apt-fact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid var(--cs-border);
    gap: 0.2rem;
}

.apt-fact:last-child {
    border-right: none;
}

.apt-fact strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--cs-gold);
    font-weight: 700;
    line-height: 1;
}

.apt-fact span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cs-text-muted);
}

/* Interior photo grid: tall left + 2 right stacks */
.apt-photo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
    .apt-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .apt-photo-tall {
        grid-column: 1/-1;
    }
}

.apt-photo-tall {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.apt-photo-tall img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.apt-photo-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apt-photo-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.apt-photo-item img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
    transition: transform var(--dur-md) var(--ease);
}

.apt-photo-item:hover img,
.apt-photo-tall:hover img {
    transform: scale(1.04);
}

.apt-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.7), transparent);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Feature row with image + text */
.apt-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .apt-feature-row {
        grid-template-columns: 1fr;
    }
}

.apt-feature-block {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--cs-white);
    border: 1px solid var(--cs-border);
    transition: all var(--dur-md) var(--ease);
}

.apt-feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.apt-feature-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.apt-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--dur-md) var(--ease);
}

.apt-feature-block:hover .apt-feature-img img {
    transform: scale(1.05);
}

.apt-feature-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
}

.apt-feature-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--cs-dark);
}

.apt-feature-body p {
    font-size: 0.88rem;
    color: var(--cs-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Amenities 3x2 grid */
.apt-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .apt-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .apt-amenities-grid {
        grid-template-columns: 1fr;
    }
}

.apt-amenity-group {
    background: var(--cs-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--cs-border);
    box-shadow: var(--shadow-sm);
}

.apt-amenity-group h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--cs-dark);
}

.apt-amenity-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.apt-amenity-group ul li {
    font-size: 0.86rem;
    color: var(--cs-text-muted);
    padding-left: 1em;
    position: relative;
}

.apt-amenity-group ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--cs-gold);
    font-weight: 700;
}

/* Trust cards (from gallery page certifications) */
.apt-trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--cs-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cs-border);
}

.apt-trust-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.apt-trust-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--cs-dark);
}

.apt-trust-card p {
    font-size: 0.85rem;
    color: var(--cs-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   COMPACT MONTH-RATE GRID (pricing page)
   ============================================================ */
.cs-month-rate-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.5rem;
}

@media (max-width: 900px) {
    .cs-month-rate-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 480px) {
    .cs-month-rate-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cs-month-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.25rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--cs-border);
    background: var(--cs-white);
    text-align: center;
    transition: all var(--dur-sm) var(--ease);
}

.cs-month-cell:hover {
    border-color: var(--cs-gold);
    box-shadow: var(--shadow-sm);
}

.cs-month-abbr {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cs-text-muted);
    font-weight: 600;
}

.cs-month-price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ============================================================
   HOMEPAGE — 6-CITY GRID
   ============================================================ */
.cs-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .cs-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .cs-cities-grid {
        grid-template-columns: 1fr;
    }
}

.cs-city-card {
    background: var(--cs-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cs-border);
    transition: all var(--dur-md) var(--ease);
    display: flex;
    flex-direction: column;
}

.cs-city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cs-city-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.cs-city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--dur-md) var(--ease);
}

.cs-city-card:hover .cs-city-img img {
    transform: scale(1.05);
}

.cs-city-info {
    padding: 1.1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cs-city-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--cs-dark);
}

.cs-city-info p {
    font-size: 0.84rem;
    color: var(--cs-text-muted);
    margin: 0 0 0.75rem;
    line-height: 1.6;
    flex: 1;
}

.cs-city-distance {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cs-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: auto;
}

/* ============================================================
   GALLERY PAGE — FILTER TABS
   ============================================================ */
.cs-gallery-tab {
    padding: 0.5rem 1.1rem;
    border: 1.5px solid var(--cs-border);
    border-radius: var(--radius-xl);
    background: var(--cs-white);
    color: var(--cs-text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--dur-sm) var(--ease);
}

.cs-gallery-tab:hover {
    border-color: var(--cs-accent);
    color: var(--cs-accent);
}

.cs-gallery-tab.active {
    background: var(--cs-dark);
    border-color: var(--cs-dark);
    color: var(--cs-white);
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.cs-privacy-content {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.cs-privacy-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--cs-border);
    color: var(--cs-dark);
}

.cs-privacy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.cs-privacy-content ul li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--cs-text);
}

.cs-privacy-content a {
    color: var(--cs-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cs-privacy-content a:hover {
    color: var(--cs-accent-2);
}

.cs-privacy-content em {
    color: var(--cs-text-muted);
    font-size: 0.88rem;
}

/* ============================================================
   APARTMENT BOOKING FORM CUSTOM INPUT STYLES
   ============================================================ */
.ab-front-wrapper input[type="text"],
.ab-front-wrapper input[type="email"],
.ab-front-wrapper input[type="tel"],
.ab-front-wrapper textarea,
.ab-front-wrapper input#ab_date_range {
    width: 100% !important;
    padding: 0.8rem 1.1rem !important;
    margin: 0.5rem 0 1rem !important;
    border: 1px solid var(--cs-border) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    color: var(--cs-dark) !important;
    background-color: var(--cs-white) !important;
    box-shadow: inset 0 2px 5px rgba(26, 42, 58, 0.03) !important;
    transition: all var(--dur-sm) var(--ease) !important;
    appearance: none;
    box-sizing: border-box !important;
}

.ab-front-wrapper input[type="text"]:focus,
.ab-front-wrapper input[type="email"]:focus,
.ab-front-wrapper input[type="tel"]:focus,
.ab-front-wrapper textarea:focus,
.ab-front-wrapper input#ab_date_range:focus {
    outline: none !important;
    border-color: var(--cs-accent) !important;
    box-shadow: 0 0 0 4px rgba(224, 120, 64, 0.15), inset 0 2px 5px rgba(26, 42, 58, 0.03) !important;
}

.ab-front-wrapper input::placeholder,
.ab-front-wrapper textarea::placeholder {
    color: var(--cs-text-muted) !important;
    opacity: 0.6 !important;
    font-weight: 400 !important;
}

/* Ensure the submit button also matches the theme perfectly */
.ab-front-wrapper button[type="submit"] {
    width: 100% !important;
    margin-top: 1rem !important;
    padding: 1.1rem !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: var(--radius-sm) !important;
    background: var(--cs-gold) !important;
    color: var(--cs-dark) !important;
    border: none !important;
    cursor: pointer !important;
    transition: all var(--dur-sm) var(--ease) !important;
}

.ab-front-wrapper button[type="submit"]:hover {
    background: var(--cs-gold-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-gold) !important;
}

/* Modernize the Price Estimate box */
#ab_price_estimate {
    background: var(--cs-light) !important;
    border-radius: var(--radius-sm) !important;
    padding: 1.25rem !important;
    font-size: 0.88rem !important;
    color: var(--cs-text) !important;
    border: 1px solid var(--cs-border) !important;
    border-left: none !important;
    margin-top: 0.5rem !important;
    box-shadow: inset 0 2px 5px rgba(26, 42, 58, 0.03) !important;
}

/* ============================================================
   APARTMENT BOOKING CUSTOM CHECKBOX
   ============================================================ */
.ab-custom-checkbox {
    position: relative;
    user-select: none;
}

/* Hide the browser's default checkbox */
.ab-custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.ab-custom-checkbox .ab-checkmark {
    position: relative;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--cs-white);
    border: 1px solid var(--cs-border);
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(26, 42, 58, 0.03);
}

/* On mouse-over, add a border color */
.ab-custom-checkbox:hover input~.ab-checkmark {
    border-color: var(--cs-accent);
}

/* When the checkbox is checked, add a subtle background */
.ab-custom-checkbox input:checked~.ab-checkmark {
    background-color: var(--cs-light);
    border-color: var(--cs-gold);
}

/* Create the checkmark/indicator (hidden when not checked) */
.ab-custom-checkbox .ab-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ab-custom-checkbox input:checked~.ab-checkmark:after {
    display: block;
}

/* Style the checkmark itself */
.ab-custom-checkbox .ab-checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid var(--cs-accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ============================================================
   COOKIEADMIN PLUGIN OVERRIDES
   ============================================================ */
/* Hide the persistent floating cookie icon */
.cookieadmin_re_consent {
    display: none !important;
}

/* ============================================================
   GUTENBERG BLOCK STYLES — PAGE CONTENT AREAS
   Styles standard WordPress blocks so they look beautiful
   in the cs-page-content / cs-apartment-content wrappers.
   ============================================================ */
.cs-page-content,
.cs-apartment-content {
    padding: var(--sp-lg) 0;
}

/* Headings */
.cs-page-content h1,
.cs-page-content h2,
.cs-page-content .wp-block-heading,
.cs-apartment-content h1,
.cs-apartment-content h2,
.cs-apartment-content .wp-block-heading {
    font-family: var(--font-heading);
    color: var(--cs-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cs-page-content h2,
.cs-apartment-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-top: 2.5rem;
}

.cs-page-content h3,
.cs-apartment-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs */
.cs-page-content p,
.cs-apartment-content p,
.cs-page-content .wp-block-paragraph,
.cs-apartment-content .wp-block-paragraph {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--cs-text);
    margin-bottom: 1rem;
    max-width: 72ch;
}

/* Lists */
.cs-page-content ul,
.cs-page-content ol,
.cs-apartment-content ul,
.cs-apartment-content ol,
.cs-page-content .wp-block-list,
.cs-apartment-content .wp-block-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cs-text);
    line-height: 1.8;
}

.cs-page-content li,
.cs-apartment-content li {
    margin-bottom: 0.35rem;
}

/* Images */
.cs-page-content .wp-block-image,
.cs-apartment-content .wp-block-image {
    margin-bottom: 1.5rem;
}

.cs-page-content .wp-block-image img,
.cs-apartment-content .wp-block-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

.cs-page-content .wp-block-image figcaption,
.cs-apartment-content .wp-block-image figcaption {
    font-size: 0.82rem;
    color: var(--cs-text-muted);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Columns */
.cs-page-content .wp-block-columns,
.cs-apartment-content .wp-block-columns {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.cs-page-content .wp-block-column,
.cs-apartment-content .wp-block-column {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {

    .cs-page-content .wp-block-columns,
    .cs-apartment-content .wp-block-columns {
        flex-direction: column;
    }
}

/* Gallery */
.cs-page-content .wp-block-gallery,
.cs-apartment-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.cs-page-content .wp-block-gallery figure,
.cs-apartment-content .wp-block-gallery figure {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}

.cs-page-content .wp-block-gallery img,
.cs-apartment-content .wp-block-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-md) var(--ease);
}

.cs-page-content .wp-block-gallery figure:hover img,
.cs-apartment-content .wp-block-gallery figure:hover img {
    transform: scale(1.05);
}

/* Separator / Divider */
.cs-page-content .wp-block-separator,
.cs-apartment-content .wp-block-separator {
    border: none;
    border-top: 1px solid var(--cs-border);
    margin: 2rem 0;
}

/* Quote */
.cs-page-content .wp-block-quote,
.cs-apartment-content .wp-block-quote {
    border-left: 3px solid var(--cs-accent);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--cs-text-muted);
}

/* Tables */
.cs-page-content .wp-block-table table,
.cs-apartment-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.cs-page-content .wp-block-table td,
.cs-page-content .wp-block-table th,
.cs-apartment-content .wp-block-table td,
.cs-apartment-content .wp-block-table th {
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--cs-border);
    text-align: left;
}

.cs-page-content .wp-block-table th,
.cs-apartment-content .wp-block-table th {
    background: var(--cs-light);
    font-weight: 600;
    color: var(--cs-dark);
}