/* =========================================
   CASA DEL BARCO - Custom Theme Styles
   Luxury Mediterranean Design
   ========================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors - Warm Mediterranean Palette */
    --color-terracotta:     #B85C38;
    --color-terracotta-dark:#9A4A2E;
    --color-terracotta-light:#D4845E;
    --color-olive:          #5C6B4F;
    --color-olive-light:    #7A8B6A;
    --color-gold:           #C9A96E;
    --color-gold-light:     #E4CFA0;
    --color-sand:           #F5EDE3;
    --color-sand-light:     #FAF6F1;
    --color-cream:          #FFF9F3;
    --color-azure:          #2E7D9B;
    --color-dark:           #2C1810;
    --color-dark-soft:      #4A3728;
    --color-text:           #3D2E24;
    --color-text-light:     #7A6B60;
    --color-white:          #FFFFFF;
    --color-border:         #E8DDD3;
    --color-success:        #5C8A4D;
    --color-booked:         #C45D3E;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(44, 24, 16, 0.06);
    --shadow-md:  0 4px 12px rgba(44, 24, 16, 0.08);
    --shadow-lg:  0 8px 30px rgba(44, 24, 16, 0.12);
    --shadow-xl:  0 16px 50px rgba(44, 24, 16, 0.15);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s 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%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-terracotta-dark);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    z-index: 9999;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 1rem;
    color: var(--color-white);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    border-color: var(--color-terracotta);
}

.btn--primary:hover {
    background: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: var(--color-white);
    backdrop-filter: blur(4px);
}

.btn--outline-light:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn--hero {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    min-width: 240px;
    justify-content: center;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    padding: 1rem 0;
}

.header--transparent {
    background: transparent;
}

.header--transparent.header--scrolled {
    background: rgba(255, 249, 243, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.header--solid {
    background: var(--color-cream);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    height: 45px;
    width: auto;
}

.header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.header--transparent:not(.header--scrolled) .header__logo-text {
    color: var(--color-white);
}

/* Navigation */
.nav {
    display: none;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav__link {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-terracotta);
    background: rgba(184, 92, 56, 0.06);
}

.nav__item--active .nav__link {
    color: var(--color-terracotta);
}

.header--transparent:not(.header--scrolled) .nav__link {
    color: rgba(255, 255, 255, 0.9);
}

.header--transparent:not(.header--scrolled) .nav__link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
}

/* Submenu */
.nav__item--has-children {
    position: relative;
}

.nav__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 200px;
    list-style: none;
}

.nav__item--has-children:hover .nav__submenu {
    display: block;
}

.nav__sublink {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text);
    border-radius: var(--radius-sm);
}

.nav__sublink:hover {
    background: var(--color-sand);
    color: var(--color-terracotta);
}

/* Header CTA */
.header__cta {
    display: none;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* Hamburger */
.header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.header--transparent:not(.header--scrolled) .header__hamburger span {
    background: var(--color-white);
}

.header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-cream);
    z-index: 999;
    transition: right var(--transition-slow);
    overflow-y: auto;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__inner {
    padding: 6rem 2rem 2rem;
}

.mobile-menu__list {
    list-style: none;
}

.mobile-menu__list li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu__list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
}

.mobile-menu__list a:hover {
    color: var(--color-terracotta);
}

.mobile-menu__cta {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 24, 16, 0.1) 0%,
        rgba(44, 24, 16, 0.25) 50%,
        rgba(44, 24, 16, 0.6) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--container-padding);
}

.hero__location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.hero__location svg {
    stroke: var(--color-gold-light);
}

.hero__title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__actions .btn {
    flex: 0 0 auto;
    min-width: 260px;
    text-align: center;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.hero__trust-stars {
    color: var(--color-gold);
    letter-spacing: 2px;
}

.hero__trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- HIGHLIGHTS BAR ---------- */
.highlights {
    background: var(--color-dark);
    padding: var(--space-md) 0;
    position: relative;
    z-index: 3;
}

.highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.highlights__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
}

.highlights__icon {
    color: var(--color-gold);
    flex-shrink: 0;
}

.highlights__icon svg {
    stroke: var(--color-gold);
}

.highlights__text {
    color: var(--color-white);
    font-size: 0.875rem;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: var(--space-2xl) 0;
}

.section--cream {
    background: var(--color-cream);
}

.section--dark {
    background: var(--color-dark);
}

.section--terracotta {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.section__label--light {
    color: var(--color-gold-light);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__title--light {
    color: var(--color-white);
}

.section__intro {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---------- PROPERTY GRID ---------- */
.property-grid {
    display: grid;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.property-grid__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.property-grid__image--large {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.property-grid__img,
.property-grid__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-grid__image:hover .property-grid__img {
    transform: scale(1.03);
}

/* ---------- FEATURES ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.features__item {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.features__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-terracotta-light);
}

.features__icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.features__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.features__item p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ---------- VACATION TYPES ---------- */
.vacation-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.vacation-type {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.vacation-type:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.vacation-type__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.vacation-type h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.vacation-type p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- ACTIVITY CARDS ---------- */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.activity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    text-decoration: none;
    color: var(--color-text);
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-terracotta);
    color: var(--color-text);
}

.activity-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.activity-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.activity-card__desc {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.activity-card__arrow {
    color: var(--color-terracotta);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
}

.activity-card:hover .activity-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- PHOTO ACTIVITY CARDS ---------- */
.activity-card--photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/2;
    border: none;
    padding: 0;
    text-align: left;
}

.activity-card--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.activity-card--photo:hover img {
    transform: scale(1.08);
}

.activity-card--photo .activity-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.8) 0%, rgba(44, 24, 16, 0.1) 60%);
    z-index: 1;
}

.activity-card--photo .activity-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: var(--color-white);
}

.activity-card--photo .activity-card__title {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.activity-card--photo .activity-card__desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.activity-card--photo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.activity-card--photo:hover .activity-card__title {
    color: var(--color-white);
}

/* ---------- SURROUNDINGS ---------- */
.surroundings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.surrounding-card {
    display: block;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.surrounding-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: var(--color-text);
}

.surrounding-card__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.surrounding-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.surrounding-card__desc {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ---------- GOLF SECTION ---------- */
.golf-section {
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.golf-section__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.golf-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,24,16,0.85) 0%, rgba(44,24,16,0.6) 100%);
}

.golf-section__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.golf-section__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* ---------- REVIEWS ---------- */
.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}

.reviews__stars {
    color: var(--color-gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.reviews__score {
    font-weight: 600;
    font-size: 1.1rem;
}

.reviews__count {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.review-card {
    position: relative;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-card__stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.review-card__text {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-terracotta);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.review-card__name {
    display: block;
    font-size: 0.9rem;
}

.review-card__date {
    display: block;
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.review-card__google {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    opacity: 0.5;
}

/* ---------- REVIEWS CAROUSEL ---------- */
#reviews .section__header {
    margin-bottom: var(--space-sm);
}

.reviews-carousel {
    position: relative;
}

.reviews-carousel__nav-row {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
}

.reviews-carousel__track-wrapper {
    overflow: hidden;
}

.reviews-carousel__track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.4s ease;
}

.reviews-carousel__track .review-card {
    min-width: calc(33.333% - var(--space-md) * 2 / 3);
    max-width: calc(33.333% - var(--space-md) * 2 / 3);
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.reviews-carousel__track .review-card__text {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.review-card__read-more {
    display: none;
    background: none;
    border: none;
    color: var(--color-terracotta);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-top: 0.25rem;
}

.review-card__text--clamped + .review-card__read-more {
    display: inline-block;
}

.review-card__text--expanded {
    -webkit-line-clamp: unset !important;
}

/* ---------- DISTANCES ---------- */
.distances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.distance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    min-width: 140px;
    transition: all var(--transition-base);
}

.distance-badge:hover {
    border-color: var(--color-terracotta);
    transform: translateY(-2px);
}

.distance-badge__time {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: 0.25rem;
}

.distance-badge__place {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ---------- PRICING ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.pricing-card {
    position: relative;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}

.pricing-card--featured {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 0.25rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pricing-card__season {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
}

.pricing-card__price-old {
    font-size: 1rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-terracotta);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card__unit {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
}

.pricing-card__range {
    color: var(--color-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.pricing-card__dates {
    color: var(--color-text-light);
    font-size: 0.8rem;
}

/* Long stay banner */
.longstay-banner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-light) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    color: var(--color-white);
}

.longstay-banner__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.longstay-banner__content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.longstay-banner__content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.pricing-note {
    color: var(--color-text-light);
    font-size: 0.8rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

/* ---------- CALENDAR ---------- */
.calendar-section__title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--space-lg);
}

.cdb-calendar-outer {
    max-width: 960px;
    margin: 0 auto;
}

.cdb-calendar-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.cdb-calendar-nav-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.cdb-calendar-nav-btn {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.cdb-calendar-nav-btn:hover {
    background: var(--color-sand);
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
}

.cdb-calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

/* Hide individual calendar nav buttons (using shared nav row) */
.cdb-calendar__nav {
    display: none;
}

/* Hide legends inside individual calendars (using shared legend) */
.cdb-calendar .cdb-calendar__legend {
    display: none;
}

.cdb-calendar-legend-shared {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.cdb-calendar {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cdb-calendar__grid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cdb-calendar__header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.cdb-calendar__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Individual nav buttons removed - using shared nav row instead */

.cdb-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.cdb-calendar__weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.cdb-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 4px;
    flex: 1;
}

.cdb-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.cdb-calendar__day--empty {
    background: transparent;
}

.cdb-calendar__day--available {
    background: transparent;
    color: var(--color-text);
    font-weight: 400;
}

.cdb-calendar__day--booked {
    background: rgba(196, 93, 62, 0.1);
    color: var(--color-booked);
    opacity: 0.7;
}

.cdb-calendar__day--past {
    color: var(--color-text-light);
    opacity: 0.4;
}

.cdb-calendar__day--today {
    outline: 2px solid var(--color-terracotta);
    outline-offset: -2px;
    font-weight: 700;
}

/* Changeover end (checkout): red top-left, transparent bottom-right */
.cdb-calendar__day--changeover-end {
    background: linear-gradient(135deg, rgba(196, 93, 62, 0.1) 50%, transparent 50%);
    color: var(--color-text);
    font-weight: 500;
    opacity: 0.7;
}

/* Changeover start (check-in): transparent top-left, red bottom-right */
.cdb-calendar__day--changeover-start {
    background: linear-gradient(135deg, transparent 50%, rgba(196, 93, 62, 0.1) 50%);
    color: var(--color-text);
    font-weight: 500;
    opacity: 0.7;
}

.cdb-calendar__legend {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.cdb-calendar__legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.cdb-calendar__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.cdb-calendar__legend-dot--available {
    background: transparent;
    border: 1px solid var(--color-text-light);
}

.cdb-calendar__legend-dot--booked {
    background: rgba(196, 93, 62, 0.1);
    border: 1px solid var(--color-booked);
}

.cdb-calendar__legend-dot--changeover {
    background: linear-gradient(135deg, rgba(196, 93, 62, 0.1) 50%, transparent 50%);
    border: 1px solid var(--color-booked);
}

/* ---------- CONTACT ---------- */
.contact-split {
    display: grid;
    gap: var(--space-xl);
}

.contact-split__info {
    color: var(--color-white);
}

.contact-split__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: all var(--transition-base);
    font-size: 0.95rem;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transform: translateX(4px);
}

.contact-method svg {
    flex-shrink: 0;
}

.contact-split__form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
}

/* Contact Form Styling */
.contact-form .form-group,
.contact-split__form .wpcf7-form p {
    margin-bottom: var(--space-md);
}

.contact-form label,
.contact-split__form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.375rem;
    letter-spacing: 0.02em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-split__form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-sand-light);
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-split__form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* CF7 submit button override */
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-terracotta);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.wpcf7-submit:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-md) 0;
}

.footer__grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.footer__logo:hover {
    color: var(--color-gold-light);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

.footer__menu {
    list-style: none;
}

.footer__menu li {
    margin-bottom: 0.5rem;
}

.footer__menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer__menu a:hover {
    color: var(--color-white);
}

.footer__contact-list {
    list-style: none;
}

.footer__contact-list li {
    margin-bottom: 0.75rem;
}

.footer__contact-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer__contact-list a:hover {
    color: var(--color-white);
}

.footer__contact-list svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer__bottom {
    border-top: none;
    padding-top: var(--space-sm);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

/* ---------- BOOKING PLATFORMS ---------- */
.booking-platforms {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.booking-platforms__text {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.booking-platforms__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.booking-platforms__link {
    display: block;
    transition: transform var(--transition-base), opacity var(--transition-base);
    opacity: 0.7;
}

.booking-platforms__link:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.booking-platforms__icon {
    width: 120px;
    height: 40px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ---------- PAGE TEMPLATES ---------- */
.page-hero {
    padding: 4rem 0 3rem;
    background: var(--color-cream);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-hero__title {
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.page-hero__subtitle {
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero__breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-muted);
}

.page-hero__breadcrumb a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: color var(--transition-base);
}

.page-hero__breadcrumb a:hover {
    color: var(--color-terracotta-dark);
}

.page-content {
    padding: var(--space-2xl) 0;
}

.single-featured-img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.page-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-terracotta);
}

.page-content p {
    max-width: 75ch;
    margin-bottom: var(--space-md);
}

.page-content img {
    border-radius: var(--radius-lg);
    margin: var(--space-md) 0;
}

.page-content ul, .page-content ol {
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* --- Subpage heading normalization (Elementor legacy) --- */
.page-content h1 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.subpage-intro h1 {
    font-size: 1.2rem;
    font-weight: 500;
}

/* --- "Let wel:" note (h6 in Elementor) --- */
.page-content h6 {
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    font-style: italic;
    color: var(--color-terracotta);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-sand-light);
    border-left: 3px solid var(--color-terracotta-light);
    border-radius: var(--radius-sm);
}

/* --- Specialties duo (within restaurant kitchen section) --- */
.specialties-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    text-align: left;
    margin-top: var(--space-lg);
}

.specialties-duo__col p {
    font-weight: 600;
    color: var(--color-terracotta);
    font-size: 1.05rem;
    margin-bottom: var(--space-xs);
}

.specialties-duo__col ul {
    padding-left: 1.2rem;
}

.specialties-duo__col li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .specialties-duo {
        grid-template-columns: 1fr;
    }
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.page-content h2:first-child {
    border-top: none;
    padding-top: 0;
}

.page-content h5 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    font-family: var(--font-body);
    margin-bottom: var(--space-sm);
}

/* --- Subpage intro wrapper --- */
.subpage-intro {
    margin-bottom: var(--space-md);
}

.subpage-intro p {
    max-width: none;
}

/* --- Subpage image slider --- */
.subpage-slider {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-sm) 0 var(--space-md);
    margin: var(--space-md) 0;
}
/* When inside a slider-wrapper or intro-slider-wrap, remove top padding/margin so arrows center on images */
.slider-wrapper .subpage-slider,
.intro-slider-wrap .subpage-slider {
    padding-top: 0;
    padding-bottom: var(--space-md);
    margin-top: 0;
    margin-bottom: 0;
}

.subpage-slider::-webkit-scrollbar {
    height: 6px;
}

.subpage-slider::-webkit-scrollbar-track {
    background: var(--color-sand);
    border-radius: var(--radius-full);
}

.subpage-slider::-webkit-scrollbar-thumb {
    background: var(--color-terracotta-light);
    border-radius: var(--radius-full);
}

.subpage-slider img {
    height: 300px;
    width: auto;
    min-width: 200px;
    max-width: 80vw;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Override any inline height from Elementor/Flickity */
.subpage-slider img[style*="height"] {
    height: 300px !important;
}

/* Slider item wrapper (image + per-image caption) */
.slider-item {
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: start;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md);
}
.subpage-slider .slider-item img {
    width: auto;
    height: 100%;
    min-width: 0;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-md);
    scroll-snap-align: none; /* snap is on the wrapper now */
}
.slider-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.3;
    padding: 4px 8px;
    text-align: center;
    pointer-events: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* --- Slider Arrow Buttons --- */
.slider-wrapper {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    color: var(--color-dark);
}

.slider-arrow:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow--prev { left: 8px; }
.slider-arrow--next { right: 8px; }

/* --- "Bezoek website" button styling --- */
.page-content a.btn--outline {
    background: var(--color-terracotta);
    color: var(--color-white);
    border-color: var(--color-terracotta);
    margin: var(--space-sm) 0;
}

.page-content a.btn--outline:hover {
    background: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Split Layout (wine/golf pages) --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border);
    overflow: visible;
}

.split-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.split-text h2 {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.split-text p {
    max-width: none;
}

.split-media {
    position: relative;
    overflow: visible;
    min-width: 0;
}

.split-media .subpage-slider {
    margin: 0;
}

/* --- Subpage Section Separator (full-width heading between grid sections) --- */
.subpage-separator {
    padding: var(--space-md) 0 var(--space-xs);
    border-top: 1px solid var(--color-border);
    margin: var(--space-sm) 0;
}

.subpage-separator h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark);
    margin: 0;
}

/* --- Subpage Activity Grid (city-trips, ontspanning, kids, etc.) --- */
.subpage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.subpage-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.subpage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.subpage-card--img-bottom .subpage-card__img {
    order: 2;
    margin-top: auto;
}

.subpage-card--img-bottom .subpage-card__body {
    order: 1;
}

.subpage-card__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.subpage-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
}

/* Slider inside grid card */
.subpage-card__img .subpage-slider {
    display: flex;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.subpage-card__img .subpage-slider::-webkit-scrollbar { display: none; }
.subpage-card__img .subpage-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    display: block;
}
.subpage-card__img .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.subpage-card__img .slider-arrow--prev { left: 6px; }
.subpage-card__img .slider-arrow--next { right: 6px; }

/* Slider caption bar (alt text overlay) */
.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.3;
    padding: 6px 12px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-align: center;
}
.slider-caption:empty {
    display: none;
}
/* Restaurant hero: no caption needed for multi-image slider */

.subpage-card__body {
    padding: var(--space-md);
}

.subpage-card__body h2 {
    font-size: 1.15rem;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: var(--space-xs);
}

.subpage-card__body p {
    font-size: 0.92rem;
    max-width: none;
    margin-bottom: var(--space-xs);
    color: var(--color-text-light);
}

.subpage-card__body a.btn--outline {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}

/* --- Restaurant Layout --- */
.restaurant-hero {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.restaurant-hero h2 {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    font-size: 1.8rem;
}

.restaurant-hero p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

/* Restaurant hero slider: standard multi-image style */
/* Caption wrap and intro slider wrap: position arrows + caption relative to slider */
.slider-caption-wrap,
.intro-slider-wrap {
    position: relative;
    width: 100%;
}
.slider-caption-wrap .slider-arrow,
.intro-slider-wrap .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}
.slider-caption-wrap .slider-arrow--prev,
.intro-slider-wrap .slider-arrow--prev { left: 10px; }
.slider-caption-wrap .slider-arrow--next,
.intro-slider-wrap .slider-arrow--next { right: 10px; }

.restaurant-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.restaurant-column h2 {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--color-terracotta);
}

.restaurant-column p {
    max-width: none;
    font-size: 0.95rem;
}

.restaurant-hero strong,
.restaurant-column strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.3rem;
}

.restaurant-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.restaurant-duo__col h2 {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--color-terracotta);
}

.restaurant-duo__col p {
    max-width: none;
}

/* --- Mobile adjustments for subpages --- */
@media (max-width: 767px) {
    .subpage-slider img {
        height: 220px;
        min-width: 160px;
    }

    .page-content h2 {
        font-size: 1.3rem;
        margin-top: var(--space-lg);
        padding-top: var(--space-md);
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .split-text { order: 1; }
    .split-media { order: 2; }

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

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

    .restaurant-duo {
        grid-template-columns: 1fr;
    }

    .slider-arrow--prev { left: 4px; }
    .slider-arrow--next { right: 4px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .split-section {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

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

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

/* ---------- PHOTO GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--space-sm);
    row-gap: 4px;
}

.gallery-grid__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-base);
}

.gallery-grid__item:hover img {
    opacity: 0.8;
}

.gallery-grid.is-collapsed .gallery-grid__item {
    display: none;
}

.gallery-grid.is-collapsed .gallery-grid__item:nth-child(-n+9) {
    display: block;
}

@media (min-width: 768px) {
    .gallery-grid.is-collapsed .gallery-grid__item:nth-child(-n+12) {
        display: block;
    }
}

@media (min-width: 1024px) {
    .gallery-grid.is-collapsed .gallery-grid__item:nth-child(-n+15) {
        display: block;
    }
}

.gallery-toggle {
    display: block;
    margin: var(--space-lg) auto 0;
    background: none;
    border: 2px solid var(--color-terracotta);
    color: var(--color-terracotta);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base);
}

.gallery-toggle:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.gallery-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
}

.gallery-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 2;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-base);
    line-height: 1;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-base), background var(--transition-base);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__prev {
    left: 1.5rem;
}

.lightbox__next {
    right: 1.5rem;
}

.lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
    }

    .lightbox__prev {
        left: 0.75rem;
    }

    .lightbox__next {
        right: 0.75rem;
    }
}

/* ---------- ANIMATIONS ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* Mobile overrides */
@media (max-width: 767px) {
    .reviews-carousel__track .review-card {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .highlights__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
    }

    .vacation-types {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-grid {
        grid-template-columns: 2fr 1fr;
    }

    .property-grid__main .property-grid__image--large {
        aspect-ratio: 16/9;
    }

    .property-grid__side {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .property-grid__side .property-grid__image {
        flex: 1;
        aspect-ratio: auto;
        min-height: 0;
        position: relative;
        overflow: hidden;
        border-radius: var(--radius-lg);
    }

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

    .golf-section__content {
        max-width: 600px;
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .cdb-calendar-wrapper {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }

    .reviews-carousel__track .review-card {
        min-width: calc(33.333% - var(--space-md) * 2 / 3);
        max-width: calc(33.333% - var(--space-md) * 2 / 3);
    }

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

/* Desktop */
@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .header__cta {
        display: inline-flex;
    }

    .header__hamburger {
        display: none;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .vacation-types {
        grid-template-columns: repeat(5, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features {
        grid-template-columns: repeat(6, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Large screens */
@media (min-width: 1400px) {
    :root {
        --container-max: 1320px;
    }
}

/* ---------- PRINT ---------- */
@media print {
    .header, .whatsapp-float, .hero__scroll, .mobile-menu {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .section {
        padding: 2rem 0;
    }
}
