/* ==========================================================================
   ROCACORBA CYCLING — Lifestyle Magazine + Country Outdoor Aesthetic
   ========================================================================== */

/* --- Design Tokens --- */
:root {
    /* Brand Colors (from logo) */
    --navy: #1a2744;
    --navy-deep: #0f1a2e;
    --coral: #c83c5a;
    --coral-light: #e28a7e;
    --coral-pale: #f5ddd8;

    /* Natural / Country palette */
    --cream: #f7f3ee;
    --cream-warm: #f0ebe3;
    --stone: #e5ddd3;
    --earth: #8c7b6b;
    --olive: #5a6b4a;
    --olive-light: #7a8e68;
    --charcoal: #2c2c2c;
    --warm-white: #faf8f5;
    --warm-black: #1a1a18;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    width: 80px;
    margin-bottom: 1.5rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.97); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--stone);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--coral);
    transition: width 0.8s var(--ease-out);
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2.5rem;
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
    z-index: 10;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-dark {
    display: none;
}

.site-header.scrolled .logo-white {
    display: none;
}

.site-header.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
    width: 100%;
}

.site-header.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--coral);
    padding: 0.75rem 1.75rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--navy);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: white;
    transition: all 0.3s var(--ease-out);
}

.site-header.scrolled .nav-toggle span {
    background: var(--charcoal);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

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

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin-bottom: 1.5rem;
}

.mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--warm-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.open .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu-links li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-menu-links li:nth-child(6) a { transition-delay: 0.35s; }
.mobile-menu-links li:nth-child(7) a { transition-delay: 0.4s; }

.mobile-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: var(--coral) !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-image-1 {
    background-image: url('assets/images/photos/hero-1.jpg');
    background-color: var(--navy);
}

.hero-image-2 {
    background-image: url('assets/images/photos/hero-2.jpg');
    background-color: var(--navy-deep);
    background-position: center 40%;
}

.hero-image-3 {
    background-image: url('assets/images/photos/hero-3.jpg');
    background-color: #3a2a1a;
    background-position: center 35%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 26, 46, 0.85) 0%,
        rgba(15, 26, 46, 0.4) 40%,
        rgba(15, 26, 46, 0.15) 70%,
        rgba(15, 26, 46, 0.1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5vw var(--space-2xl);
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero-line-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--coral-light);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 5vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-scroll span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

.hero-issue {
    position: absolute;
    top: 50%;
    right: 5vw;
    z-index: 2;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.hero-issue-sep {
    opacity: 0.3;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--navy);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: white;
    color: var(--navy);
    border-color: white;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: white;
    color: var(--navy);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.8rem;
}

/* --- Editorial Strip --- */
.editorial-strip {
    background: var(--navy);
    padding: 2.5rem 0;
    overflow: hidden;
}

.strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.strip-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--coral-light);
    line-height: 1.2;
}

.strip-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* --- Section Shared Styles --- */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.8rem;
    height: 1px;
    background: var(--coral);
}

.section-label-light {
    color: var(--coral-light);
}

.section-label-light::before {
    background: var(--coral-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--coral);
}

.section-title-light {
    color: var(--warm-white);
}

.section-title-light em {
    color: var(--coral-light);
}

.section-intro {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--earth);
    line-height: 1.8;
    max-width: 600px;
}

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

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

.story-editorial {
    grid-column: 1;
    padding-top: var(--space-md);
}

.story-body {
    grid-column: 2;
    padding-top: var(--space-md);
}

.story-lead {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.story-body p {
    margin-bottom: 1.25rem;
    color: #555;
    font-size: 0.95rem;
}

.story-image-1 {
    grid-column: 1;
}

.story-image-2 {
    grid-column: 2;
}

.story-image img,
.story-image-1 img,
.story-image-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-image-1 img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.story-image-2 img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.image-caption {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--earth);
    margin-top: 0.75rem;
    text-transform: uppercase;
}

/* --- Story Feature Grid --- */
.story-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: var(--space-lg);
}

.story-feature-item {
    text-align: center;
}

.story-feature-image {
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.story-feature-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.story-feature-item:hover .story-feature-image img {
    transform: scale(1.04);
}

.story-feature-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
}

@media (max-width: 1024px) {
    .story-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .story-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* --- Pull Quote --- */
.pull-quote-section {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.pull-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.pull-quote cite {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
}

/* --- Stay Section --- */
.stay-section {
    padding: var(--space-xl) 0 var(--space-lg);
}

.stay-header {
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

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

.stay-card {
    position: relative;
    overflow: hidden;
}

.stay-card-image {
    overflow: hidden;
}

.stay-card-image img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.stay-card:hover .stay-card-image img {
    transform: scale(1.05);
}

.stay-card-content {
    padding: 1.5rem 0;
}

.stay-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.stay-card-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* --- Feature Band --- */
.feature-band {
    background: var(--navy-deep);
    overflow: hidden;
}

.feature-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.feature-band-text {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-band-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.feature-band-text h2 em {
    font-style: italic;
    color: var(--coral-light);
}

.feature-band-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2rem;
}

.feature-band-image {
    position: relative;
    overflow: hidden;
}

.feature-band-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Image Break --- */
.image-break {
    overflow: hidden;
    max-height: 500px;
}

.image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.image-break-small {
    max-height: 350px;
}

.image-break-small img {
    height: 350px;
}

/* --- Ride / Services Section --- */
.ride-section {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.ride-header {
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

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

.service-card {
    background: var(--warm-white);
    padding: 2.5rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

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

.dine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.dine-images {
    display: grid;
    gap: 1.5rem;
}

.dine-images img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
}

.dine-img-main {
    aspect-ratio: 1 / 1;
}

.dine-img-secondary {
    aspect-ratio: 4 / 3;
}

.dine-content {
    padding-left: var(--space-md);
}

.dine-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.dine-details {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--stone);
}

.dine-detail h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.35rem;
}

.dine-detail p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.gallery-header {
    margin-bottom: var(--space-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 0 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-large img {
    aspect-ratio: 2 / 1;
}

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

.gallery-item-tall img {
    aspect-ratio: auto;
    height: 100%;
}

.gallery-item-wide {
    grid-column: span 3;
}

.gallery-item-wide img {
    aspect-ratio: 3 / 1;
}

/* --- Testimonials --- */
.testimonial-section {
    padding: var(--space-xl) 0;
    background: var(--warm-white);
}

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

.testimonial-card {
    padding: 2.5rem;
    background: var(--cream);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 40px;
    height: 3px;
    background: var(--coral);
}

.testimonial-stars {
    font-size: 0.85rem;
    color: var(--coral);
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.testimonial-card p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.testimonial-card cite {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--earth);
}

/* --- Blog / Journal Section --- */
.blog-section {
    padding: var(--space-xl) 0;
    background: var(--cream);
}
.blog-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.blog-section-header p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #6b6b6b;
}
.blog-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-section-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.blog-section-card-image {
    display: block;
    overflow: hidden;
}
.blog-section-card-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-section-card:hover .blog-section-card-image img {
    transform: scale(1.03);
}
.blog-section-card-content {
    padding: 1.25rem 1.5rem 1.5rem;
}
.blog-section-card-meta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.blog-section-card-tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    background: var(--cream);
    color: var(--navy);
    border-radius: 20px;
}
.blog-section-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.blog-section-card-content h3 a {
    color: inherit;
    text-decoration: none;
}
.blog-section-card-content h3 a:hover {
    color: var(--coral);
}
.blog-section-card-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0.75rem;
}
.blog-section-card-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    text-decoration: none;
    font-weight: 500;
}
.blog-section-card-link:hover {
    text-decoration: underline;
}
.blog-section-cta {
    text-align: center;
    margin-top: 2.5rem;
}
@media (max-width: 1024px) {
    .blog-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .blog-section-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Book Section --- */
.book-section {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.book-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/photos/booking-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--navy-deep);
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 46, 0.88);
}

.book-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.book-content p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.book-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.book-option {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.book-option:hover {
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.03);
}

.book-option h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--warm-white);
    margin-bottom: 0.35rem;
}

.book-option p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0;
    line-height: 1.5;
}

.book-note {
    margin-top: 1.5rem;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.book-note a {
    color: var(--coral-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- RoomRaccoon Availability Widget --- */
.rr-availability-widget {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.rr-date-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.rr-date-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.rr-date-field label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
}
.rr-date-field input[type="date"] {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    min-width: 170px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.rr-date-field input[type="date"]:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255,255,255,0.15);
}
.rr-date-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}
.rr-check-btn {
    white-space: nowrap;
    margin-bottom: 0;
}
.book-extras-note {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    margin-bottom: 0;
}
.book-divider-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin: 1rem 0;
}
@media (max-width: 640px) {
    .rr-date-row {
        flex-direction: column;
        align-items: stretch;
    }
    .rr-date-field input[type="date"] {
        min-width: auto;
        width: 100%;
    }
    .rr-check-btn {
        text-align: center;
    }
}

/* --- Contact Section --- */
.contact-section {
    padding: var(--space-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.contact-detail a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--stone);
}

.contact-detail a:hover {
    text-decoration-color: var(--coral);
}

.contact-social {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--earth);
    position: relative;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--coral);
    border-bottom-color: var(--coral);
}

.contact-map {
    width: 100%;
    min-height: 400px;
    background: var(--cream-warm);
}

.contact-map iframe {
    width: 100%;
    min-height: 400px;
    display: block;
}

/* --- Footer --- */
.site-footer {
    background: var(--navy);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 120px;
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--coral-light);
}

.footer-bottom {
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
}

/* --- Image Placeholders --- */
.image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--cream-warm);
    border: 2px dashed var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.image-placeholder span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--earth);
    line-height: 1.8;
}

.image-placeholder code {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.image-placeholder::before {
    content: attr(data-label);
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    background: white;
    padding: 0.2rem 0.5rem;
}

.image-placeholder-dark {
    background: var(--navy);
    border-color: rgba(255,255,255,0.15);
}

.image-placeholder-dark span {
    color: rgba(255,255,255,0.5);
}

.image-placeholder-dark code {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.image-placeholder-dark::before {
    background: var(--navy-deep);
    color: var(--coral-light);
}

/* Placeholder aspect ratios for specific sections */
.stay-card-image .image-placeholder {
    aspect-ratio: 2 / 3;
}

.dine-images .image-placeholder:first-child {
    aspect-ratio: 1 / 1;
}

.dine-images .image-placeholder:last-child {
    aspect-ratio: 4 / 3;
}

.image-break .image-placeholder {
    aspect-ratio: auto;
    height: 500px;
}

.feature-band-image .image-placeholder {
    aspect-ratio: auto;
    height: 100%;
    min-height: 400px;
}

.gallery-item .image-placeholder {
    aspect-ratio: 1;
}

.gallery-item-large .image-placeholder {
    aspect-ratio: 2 / 1;
}

.gallery-item-tall .image-placeholder {
    aspect-ratio: auto;
    height: 100%;
    min-height: 400px;
}

.story-image-1 .image-placeholder {
    aspect-ratio: 3 / 4;
}

.story-image-2 .image-placeholder {
    aspect-ratio: 16 / 10;
}

/* --- Stay Card Overlay --- */
.stay-card {
    cursor: pointer;
}

.stay-card-image {
    position: relative;
}

.stay-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 46, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.stay-card:hover .stay-card-overlay {
    opacity: 1;
}

.stay-card-cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.stay-card:hover .stay-card-cta {
    background: var(--coral);
    border-color: var(--coral);
}

/* --- Accommodation Modals --- */
.accommodation-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.accommodation-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 30, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    z-index: 1;
    width: 92vw;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--warm-white);
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.5s var(--ease-out);
}

.accommodation-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--stone);
    color: var(--charcoal);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.modal-header {
    padding: 3.5rem 3.5rem 2rem;
}

.modal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}

.modal-description {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--earth);
    line-height: 1.8;
    max-width: 700px;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0 3.5rem;
}

.modal-gallery-item {
    overflow: hidden;
}

.modal-gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.modal-gallery-item:hover img {
    transform: scale(1.04);
}

.modal-footer {
    padding: 2.5rem 3.5rem 3rem;
    text-align: center;
}

.modal-book-btn {
    display: inline-block;
}

/* --- Suite Listings (Full Click-Through) --- */
.modal-container-full {
    max-width: 1200px;
}

.suite-listing {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 0 3.5rem 3.5rem;
    border-bottom: 1px solid var(--stone);
    margin-bottom: 3rem;
}

.suite-listing-reverse {
    direction: rtl;
}

.suite-listing-reverse > * {
    direction: ltr;
}

.suite-listing-images {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.suite-listing-image-main img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.suite-listing-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.suite-listing-image-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.suite-listing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.suite-listing-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.suite-listing-type {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.25rem;
}

.suite-listing-desc {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--earth);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.suite-listing-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1.5rem;
    margin-bottom: 2rem;
}

.suite-listing-amenities li {
    font-size: 0.85rem;
    color: #555;
    padding-left: 1.2rem;
    position: relative;
}

.suite-listing-amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

/* --- Villa Photo Grid --- */
.villa-photo-grid {
    padding: 2rem 3.5rem;
}
.villa-grid-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.5rem;
}
.villa-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}
.villa-grid-item {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
/* Row 1: 3 items spanning 2 cols each */
.villa-grid-item:nth-child(1),
.villa-grid-item:nth-child(2),
.villa-grid-item:nth-child(3) {
    grid-column: span 2;
}
/* Row 2: 3 items spanning 2 cols each */
.villa-grid-item:nth-child(4),
.villa-grid-item:nth-child(5),
.villa-grid-item:nth-child(6) {
    grid-column: span 2;
}
/* Row 3: 2 items spanning 3 cols each */
.villa-grid-item:nth-child(7),
.villa-grid-item:nth-child(8) {
    grid-column: span 3;
}
.villa-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.villa-grid-item:hover img {
    transform: scale(1.03);
}
@media (max-width: 640px) {
    .villa-photo-grid {
        padding: 1.5rem 1rem;
    }
    .villa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .villa-grid-item:nth-child(n) {
        grid-column: span 1;
    }
    .villa-grid-item:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

/* --- Grounds Modal (Magazine Layout) --- */
.grounds-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}
.grounds-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grounds-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3.5rem 2.5rem;
    background: linear-gradient(transparent, rgba(26, 39, 68, 0.75));
    color: #fff;
}
.grounds-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin: 0.5rem 0 0.25rem;
    color: #fff;
}
.grounds-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.grounds-editorial {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 3.5rem 2rem;
    text-align: center;
}
.grounds-editorial-lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 1rem;
}
.grounds-editorial p:last-child {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.7;
}

/* Grounds Feature (alternating image/text) */
.grounds-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: 0 3.5rem 3rem;
    align-items: center;
}
.grounds-feature-reverse {
    direction: rtl;
}
.grounds-feature-reverse > * {
    direction: ltr;
}
.grounds-feature-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}
.grounds-feature-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 1rem;
}
.grounds-feature-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Grounds Duo (side-by-side features) */
.grounds-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 1rem 3.5rem 3rem;
}
.grounds-duo-image {
    margin-bottom: 1.25rem;
    border-radius: 4px;
    overflow: hidden;
}
.grounds-duo-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.grounds-duo-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.75rem;
}
.grounds-duo-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Grounds Pull Quote */
.grounds-pullquote {
    padding: 2.5rem 3.5rem;
    margin: 1rem 3.5rem 2rem;
    border-left: 3px solid var(--coral);
    background: var(--cream);
    border-radius: 0 4px 4px 0;
}
.grounds-pullquote blockquote {
    margin: 0;
}
.grounds-pullquote p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--navy);
    margin: 0;
}

/* Grounds Photo Grid (3 across) */
.grounds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 3.5rem 2rem;
}
.grounds-grid-item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.grounds-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.grounds-grid-item:hover img {
    transform: scale(1.03);
}

/* Grounds Footer */
.grounds-footer {
    text-align: center;
    padding: 2.5rem 3.5rem 3rem;
    border-top: 1px solid var(--stone);
    margin-top: 1rem;
}
.grounds-footer-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.grounds-footer-contact {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: #6b6b6b;
}
.grounds-footer-contact a {
    color: var(--coral);
    text-decoration: none;
}

/* Grounds Modal Responsive */
@media (max-width: 1024px) {
    .grounds-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .grounds-feature-reverse {
        direction: ltr;
    }
}
@media (max-width: 640px) {
    .grounds-hero {
        aspect-ratio: 16 / 10;
    }
    .grounds-hero-title {
        font-size: 2rem;
    }
    .grounds-hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    .grounds-editorial {
        padding: 2rem 1.5rem 1.5rem;
    }
    .grounds-feature {
        padding: 0 1.5rem 2rem;
    }
    .grounds-duo {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 2rem;
    }
    .grounds-pullquote {
        margin: 1rem 1.5rem 2rem;
        padding: 1.5rem;
    }
    .grounds-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 1.5rem 2rem;
    }
    .grounds-grid-item:last-child {
        grid-column: span 2;
    }
    .grounds-footer {
        padding: 2rem 1.5rem;
    }
}

/* --- Guided Tours Modal --- */
.tours-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}
.tours-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tours-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3.5rem 2.5rem;
    background: linear-gradient(transparent, rgba(26, 39, 68, 0.8));
    color: #fff;
}
.tours-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin: 0.5rem 0 0.25rem;
    color: #fff;
}
.tours-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.tours-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 3.5rem 2rem;
    text-align: center;
}
.tours-intro-lead {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--navy);
}

/* Tour Cards */
.tour-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    margin: 0 3.5rem 2.5rem;
    border: 1px solid var(--stone);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.tour-card-image {
    position: relative;
    overflow: hidden;
}
.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}
.tour-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--coral);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 3px;
}
.tour-badge-soldout {
    background: #6b6b6b;
}
.tour-badge-new {
    background: var(--navy);
}
.tour-card-content {
    padding: 2.5rem;
}
.tour-card-dates {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    font-weight: 600;
}
.tour-card-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0.35rem 0 0.75rem;
}
.tour-card-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}
.tour-card-soldout {
    opacity: 0.7;
}
.tour-card-soldout .tour-card-image img {
    filter: grayscale(40%);
}

/* Tour Itinerary */
.tour-itinerary {
    margin-bottom: 1.5rem;
}
.tour-itinerary-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    font-weight: 600;
    margin: 0 0 0.75rem;
}
.tour-day {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
}
.tour-day:last-child {
    border-bottom: none;
}
.tour-day-label {
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    margin-right: 1rem;
}
.tour-day-detail {
    color: #5a5a5a;
    text-align: right;
}

/* Tour Includes */
.tour-includes {
    margin-bottom: 1.25rem;
}
.tour-includes h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    font-weight: 600;
    margin: 0 0 0.5rem;
}
.tour-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tour-includes li {
    font-size: 0.85rem;
    color: #4a4a4a;
    padding: 0.2rem 0 0.2rem 1.25rem;
    position: relative;
}
.tour-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 600;
}

/* Tour Extras */
.tour-extras {
    font-size: 0.8rem;
    color: #6b6b6b;
    margin-bottom: 1.5rem;
}
.tour-extras h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    font-weight: 600;
    margin: 0 0 0.35rem;
}
.tour-extras-dot {
    margin: 0 0.4rem;
    color: var(--stone);
}

/* Tour Card Footer */
.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--stone);
    gap: 1rem;
}
.tour-price {
    display: flex;
    flex-direction: column;
}
.tour-price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1;
}
.tour-price-label {
    font-size: 0.85rem;
    color: #6b6b6b;
}
.tour-price-soldout {
    font-style: italic;
    color: #999;
}
.tour-price-supplement {
    font-size: 0.8rem;
    color: #6b6b6b;
    margin-top: 0.2rem;
}

/* Hire a Guide Section */
.tours-hire-guide {
    margin: 0 3.5rem 2.5rem;
    background: var(--navy);
    border-radius: 6px;
    overflow: hidden;
    padding: 3rem;
}
.tours-hire-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.75rem;
}
.tours-hire-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}
.tours-hire-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.tours-hire-option {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.tours-hire-type {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.tours-hire-detail {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}
.tours-hire-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--coral);
}

/* Tours Enquiry Form */
.tours-enquiry {
    padding: 3rem 3.5rem;
    background: var(--cream);
    margin: 0 3.5rem 2rem;
    border-radius: 6px;
}
.tours-enquiry-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.25rem;
    text-align: center;
}
.tours-enquiry-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 2rem;
}
.tours-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.tours-form .form-group {
    display: flex;
    flex-direction: column;
}
.tours-form label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.tours-form input,
.tours-form select,
.tours-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--stone);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.2s;
}
.tours-form input:focus,
.tours-form select:focus,
.tours-form textarea:focus {
    outline: none;
    border-color: var(--navy);
}
.tours-form button {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
}

/* Tours Footer */
.tours-footer {
    text-align: center;
    padding: 2rem 3.5rem 3rem;
    border-top: 1px solid var(--stone);
}
.tours-footer p {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin: 0;
}
.tours-footer a {
    color: var(--coral);
    text-decoration: none;
}

/* Tours Responsive */
@media (max-width: 1024px) {
    .tour-card {
        grid-template-columns: 1fr;
    }
    .tour-card-image img {
        min-height: 240px;
        max-height: 300px;
    }
    .tour-day {
        flex-direction: column;
        gap: 0.15rem;
    }
    .tour-day-detail {
        text-align: left;
    }
}
@media (max-width: 640px) {
    .tours-hero {
        aspect-ratio: 16 / 10;
    }
    .tours-hero-title {
        font-size: 2rem;
    }
    .tours-hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    .tours-intro {
        padding: 2rem 1.5rem 1.5rem;
    }
    .tour-card {
        margin: 0 1rem 2rem;
    }
    .tour-card-content {
        padding: 1.5rem;
    }
    .tour-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .tours-hire-guide {
        margin: 0 1rem 2rem;
        padding: 2rem 1.5rem;
    }
    .tours-hire-pricing {
        grid-template-columns: 1fr;
    }
    .tours-enquiry {
        margin: 0 1rem 2rem;
        padding: 2rem 1.5rem;
    }
    .tours-form .form-row {
        grid-template-columns: 1fr;
    }
    .tours-footer {
        padding: 2rem 1.5rem;
    }
}

/* --- Bike Hire Modal --- */
.bike-hero {
    background: var(--navy);
    background-image: linear-gradient(rgba(26, 39, 68, 0.55), rgba(26, 39, 68, 0.7)), url('assets/images/photos/bike-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 3.5rem;
    text-align: center;
}
.bike-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    margin: 0.5rem 0 0.5rem;
}
.bike-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.bike-hero .section-label {
    color: var(--coral);
}

.bike-intro {
    padding: 3rem 3.5rem 2rem;
    max-width: 860px;
    margin: 0 auto;
}
.bike-intro-lead {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2.5rem;
}
.bike-included {
    background: var(--cream);
    border-radius: 6px;
    padding: 2rem 2.5rem;
}
.bike-included-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 1rem;
    text-align: center;
}
.bike-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}
.bike-included-list li {
    font-size: 0.9rem;
    color: #4a4a4a;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}
.bike-included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 600;
}

/* Bike Listings */
.bike-listing {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding: 2.5rem 3.5rem;
    border-bottom: 1px solid var(--stone);
    align-items: center;
}
.bike-listing-reverse {
    direction: rtl;
}
.bike-listing-reverse > * {
    direction: ltr;
}
.bike-listing-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    background: var(--stone);
}
.bike-listing-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    font-weight: 600;
}
.bike-listing-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0.25rem 0 0.75rem;
}
.bike-listing-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}
.bike-listing-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}
.bike-listing-specs li {
    font-size: 0.85rem;
    color: #5a5a5a;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.bike-listing-specs li:last-child {
    border-bottom: none;
}
.bike-listing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}
.bike-price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    font-weight: 400;
}
.bike-price-period {
    font-size: 0.9rem;
    color: #6b6b6b;
}
.bike-listing-multi {
    font-size: 0.8rem;
    color: #6b6b6b;
}
.bike-price-divider {
    margin: 0 0.5rem;
    color: var(--stone);
}

/* Bike Workshop */
.bike-workshop {
    text-align: center;
    padding: 2.5rem 3.5rem;
    max-width: 720px;
    margin: 0 auto;
}
.bike-workshop-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.75rem;
}
.bike-workshop p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Bike Enquiry Form */
.bike-enquiry {
    padding: 3rem 3.5rem;
    background: var(--cream);
    margin: 0 3.5rem 2rem;
    border-radius: 6px;
}
.bike-enquiry-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.25rem;
    text-align: center;
}
.bike-enquiry-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #6b6b6b;
    margin-bottom: 2rem;
}
.bike-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.bike-form .form-group {
    display: flex;
    flex-direction: column;
}
.bike-form label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.bike-form input,
.bike-form select,
.bike-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--stone);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.2s;
}
.bike-form input:focus,
.bike-form select:focus,
.bike-form textarea:focus {
    outline: none;
    border-color: var(--navy);
}
.bike-form button {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
}

/* Bike Footer */
.bike-footer {
    text-align: center;
    padding: 2rem 3.5rem 3rem;
    border-top: 1px solid var(--stone);
}
.bike-footer p {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin: 0;
}
.bike-footer a {
    color: var(--coral);
    text-decoration: none;
}
.bike-footer-hours {
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
    color: #6b6b6b !important;
}

/* Bike Hire Responsive */
@media (max-width: 1024px) {
    .bike-listing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .bike-listing-reverse {
        direction: ltr;
    }
}
@media (max-width: 640px) {
    .bike-hero {
        padding: 2.5rem 1.5rem;
    }
    .bike-hero-title {
        font-size: 2rem;
    }
    .bike-intro {
        padding: 2rem 1.5rem 1.5rem;
    }
    .bike-included-list {
        grid-template-columns: 1fr;
    }
    .bike-listing {
        padding: 2rem 1.5rem;
    }
    .bike-enquiry {
        margin: 0 1rem 2rem;
        padding: 2rem 1.5rem;
    }
    .bike-form .form-row {
        grid-template-columns: 1fr;
    }
    .bike-workshop {
        padding: 2rem 1.5rem;
    }
    .bike-footer {
        padding: 2rem 1.5rem;
    }
}

/* --- Rocacorba Collective Modal --- */
.collective-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}
.collective-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collective-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3.5rem 2.5rem;
    background: linear-gradient(transparent, rgba(26, 39, 68, 0.75));
    color: #fff;
}
.collective-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin: 0.5rem 0 0.25rem;
    color: #fff;
}
.collective-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.collective-intro {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 3.5rem 2rem;
    text-align: center;
}
.collective-intro-lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 1rem;
}
.collective-intro p:last-child {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.7;
}

.collective-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}

/* Video Embed */
.collective-video {
    padding: 2rem 3.5rem 3rem;
}
.collective-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.collective-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Membership Tiers */
.collective-tiers {
    padding: 2rem 3.5rem 3rem;
}
.collective-tiers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.collective-tier {
    background: var(--cream);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.collective-tier-featured {
    background: var(--navy);
    color: #fff;
    transform: scale(1.03);
}
.collective-tier-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.collective-tier-featured .collective-tier-header {
    border-bottom-color: rgba(255,255,255,0.2);
}
.collective-tier-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--coral);
    display: block;
    margin-bottom: 0.25rem;
}
.collective-tier-price small {
    font-size: 1rem;
    opacity: 0.7;
}
.collective-tier-featured .collective-tier-price {
    color: #fff;
}
.collective-tier-header h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0;
}
.collective-tier-featured .collective-tier-header h4 {
    color: rgba(255,255,255,0.8);
}
.collective-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    flex: 1;
}
.collective-tier-features li {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #4a4a4a;
}
.collective-tier-featured .collective-tier-features li {
    color: rgba(255,255,255,0.85);
}
.collective-tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
}

/* eSports Racing */
.collective-esports {
    padding: 2rem 3.5rem 3rem;
    background: var(--cream);
}
.collective-esports-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.collective-esports-content > p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}
.collective-divisions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.collective-division {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    min-width: 100px;
}
.division-letter {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--coral);
}
.division-range {
    font-size: 0.8rem;
    color: #6b6b6b;
    margin-top: 0.25rem;
}
.collective-esports-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Khaltsha Initiative */
.collective-khaltsha {
    padding: 3rem 3.5rem;
}
.collective-khaltsha-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    border: 2px solid var(--coral);
    border-radius: 8px;
}
.collective-khaltsha-lead {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 1rem;
}
.collective-khaltsha-content p:not(.collective-khaltsha-lead) {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Camp CTA */
.collective-camp-cta {
    padding: 2.5rem 3.5rem 3rem;
    background: var(--navy);
    text-align: center;
    color: #fff;
}
.collective-camp-cta .collective-section-title {
    color: #fff;
}
.collective-camp-cta p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* Collective Footer */
.collective-footer {
    text-align: center;
    padding: 2rem 3.5rem;
    border-top: 1px solid var(--stone);
}
.collective-footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
.collective-footer-links a {
    font-size: 0.9rem;
    color: var(--coral);
    text-decoration: none;
}
.collective-footer-links a:hover {
    text-decoration: underline;
}
.collective-footer p {
    font-size: 0.85rem;
    color: #6b6b6b;
}
.collective-footer p a {
    color: var(--coral);
    text-decoration: none;
}

/* Collective Responsive */
@media (max-width: 1024px) {
    .collective-tiers-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    .collective-tier-featured {
        transform: none;
    }
}
@media (max-width: 640px) {
    .collective-hero {
        aspect-ratio: 16 / 10;
    }
    .collective-hero-title {
        font-size: 2rem;
    }
    .collective-hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    .collective-intro {
        padding: 2rem 1.5rem 1.5rem;
    }
    .collective-video {
        padding: 1.5rem;
    }
    .collective-tiers {
        padding: 1.5rem;
    }
    .collective-esports {
        padding: 1.5rem;
    }
    .collective-divisions {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .collective-division {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }
    .collective-khaltsha {
        padding: 1.5rem;
    }
    .collective-khaltsha-content {
        padding: 1.5rem;
    }
    .collective-camp-cta {
        padding: 2rem 1.5rem;
    }
    .collective-footer {
        padding: 1.5rem;
    }
    .collective-footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* --- Massage Modal --- */
.massage-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}
.massage-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.massage-hero-overlay {
    background: linear-gradient(transparent, rgba(26, 39, 68, 0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3.5rem 2.5rem;
    color: #fff;
}
.massage-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin: 0.5rem 0 0.25rem;
    color: #fff;
}
.massage-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.massage-intro {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 3.5rem 2rem;
    text-align: center;
}
.massage-intro-lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 1rem;
}
.massage-intro p:last-child {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.7;
}

.massage-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}

/* Pricing Cards */
.massage-pricing {
    padding: 2rem 3.5rem 3rem;
}
.massage-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.massage-price-card {
    position: relative;
    background: var(--cream);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}
.massage-price-card:hover {
    transform: translateY(-3px);
}
.massage-price-featured {
    background: var(--navy);
    color: #fff;
    transform: scale(1.05);
}
.massage-price-featured:hover {
    transform: scale(1.05) translateY(-3px);
}
.massage-price-featured .massage-duration {
    color: rgba(255,255,255,0.7);
}
.massage-price-featured .massage-price {
    color: #fff;
}
.massage-price-featured p {
    color: rgba(255,255,255,0.8);
}
.massage-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}
.massage-duration {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b6b6b;
    margin-bottom: 0.5rem;
}
.massage-price {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--coral);
    margin-bottom: 1rem;
}
.massage-price-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #6b6b6b;
    margin: 0;
}

/* Benefits */
.massage-benefits {
    padding: 2rem 3.5rem 3rem;
    background: var(--cream);
}
.massage-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.massage-benefit {
    text-align: center;
    padding: 1rem;
}
.massage-benefit-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    color: var(--coral);
}
.massage-benefit-icon svg {
    width: 100%;
    height: 100%;
}
.massage-benefit h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.massage-benefit p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #6b6b6b;
}

/* Therapist */
.massage-therapist {
    padding: 2.5rem 3.5rem 3rem;
}
.massage-therapist-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.massage-therapist-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--coral);
    margin: -0.5rem 0 1rem;
}
.massage-therapist-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* Massage Enquiry */
.massage-enquiry {
    padding: 3rem 3.5rem;
    background: var(--cream);
    margin: 0 3.5rem 2rem;
    border-radius: 8px;
}
.massage-enquiry-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #6b6b6b;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Massage Footer */
.massage-footer {
    text-align: center;
    padding: 2rem 3.5rem;
    border-top: 1px solid var(--stone);
}
.massage-footer p {
    font-size: 0.9rem;
    color: #6b6b6b;
}
.massage-footer a {
    color: var(--coral);
    text-decoration: none;
}

/* Massage Responsive */
@media (max-width: 1024px) {
    .massage-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .massage-price-featured {
        transform: none;
    }
    .massage-price-featured:hover {
        transform: translateY(-3px);
    }
    .massage-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .massage-hero {
        aspect-ratio: 16 / 10;
    }
    .massage-hero-title {
        font-size: 2rem;
    }
    .massage-hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    .massage-intro {
        padding: 2rem 1.5rem 1.5rem;
    }
    .massage-pricing {
        padding: 1.5rem;
    }
    .massage-benefits {
        padding: 1.5rem;
    }
    .massage-benefits-grid {
        grid-template-columns: 1fr;
    }
    .massage-therapist {
        padding: 1.5rem;
    }
    .massage-enquiry {
        padding: 1.5rem;
        margin: 0 1.5rem 2rem;
    }
    .massage-footer {
        padding: 1.5rem;
    }
}

/* --- Mechanic Services Modal --- */
.mechanic-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}
.mechanic-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mechanic-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3.5rem 2.5rem;
    background: linear-gradient(transparent, rgba(26, 39, 68, 0.75));
    color: #fff;
}
.mechanic-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin: 0.5rem 0 0.25rem;
    color: #fff;
}
.mechanic-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.mechanic-intro {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 3.5rem 2rem;
    text-align: center;
}
.mechanic-intro-lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 1rem;
}
.mechanic-intro p:last-child {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.7;
}

.mechanic-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}

/* Workshop Package Pricing */
.mechanic-package {
    padding: 2rem 3.5rem 3rem;
}
.mechanic-package-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}
.mechanic-package-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
.mechanic-price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--coral);
    display: block;
}
.mechanic-price-label {
    font-size: 0.85rem;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mechanic-price-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #ccc;
}
.mechanic-price-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin: 0;
}

/* What's Included Grid */
.mechanic-included {
    padding: 2rem 3.5rem 3rem;
}
.mechanic-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.mechanic-included-item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.mechanic-included-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--coral);
}
.mechanic-included-icon svg {
    width: 100%;
    height: 100%;
}
.mechanic-included-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.75rem;
}
.mechanic-included-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6b6b6b;
}

/* Additional Services */
.mechanic-extras {
    padding: 2rem 3.5rem 3rem;
    background: var(--cream);
}
.mechanic-extras-intro {
    text-align: center;
    font-size: 0.95rem;
    color: #6b6b6b;
    margin-top: -1rem;
    margin-bottom: 2rem;
}
.mechanic-extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.mechanic-extra {
    padding: 1.5rem;
    background: #fff;
    border-radius: 6px;
    border-left: 3px solid var(--coral);
}
.mechanic-extra h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.mechanic-extra p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Mechanic Enquiry */
.mechanic-enquiry {
    padding: 3rem 3.5rem;
    background: var(--cream);
    margin: 2rem 3.5rem;
    border-radius: 8px;
}
.mechanic-enquiry-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #6b6b6b;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Mechanic Footer */
.mechanic-footer {
    text-align: center;
    padding: 2rem 3.5rem;
    border-top: 1px solid var(--stone);
}
.mechanic-footer p {
    font-size: 0.9rem;
    color: #6b6b6b;
}
.mechanic-footer a {
    color: var(--coral);
    text-decoration: none;
}

/* Mechanic Responsive */
@media (max-width: 1024px) {
    .mechanic-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .mechanic-hero {
        aspect-ratio: 16 / 10;
    }
    .mechanic-hero-title {
        font-size: 2rem;
    }
    .mechanic-hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    .mechanic-intro {
        padding: 2rem 1.5rem 1.5rem;
    }
    .mechanic-package {
        padding: 1.5rem;
    }
    .mechanic-package-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }
    .mechanic-included {
        padding: 1.5rem;
    }
    .mechanic-included-grid {
        grid-template-columns: 1fr;
    }
    .mechanic-extras {
        padding: 1.5rem;
    }
    .mechanic-extras-grid {
        grid-template-columns: 1fr;
    }
    .mechanic-enquiry {
        padding: 1.5rem;
        margin: 1.5rem;
    }
    .mechanic-footer {
        padding: 1.5rem;
    }
}

/* --- Bespoke Tours Modal --- */
.bespoke-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}
.bespoke-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bespoke-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 3.5rem 2.5rem;
    background: linear-gradient(transparent, rgba(26, 39, 68, 0.75));
    color: #fff;
}
.bespoke-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin: 0.5rem 0 0.25rem;
    color: #fff;
}
.bespoke-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.bespoke-intro {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 3.5rem 2rem;
    text-align: center;
}
.bespoke-intro-lead {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--navy);
    margin-bottom: 1rem;
}
.bespoke-intro p:last-child {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.7;
}

/* How It Works Steps */
.bespoke-steps {
    padding: 2rem 3.5rem 3rem;
}
.bespoke-section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    text-align: center;
    margin-bottom: 2rem;
}
.bespoke-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.bespoke-step {
    text-align: center;
    padding: 1.5rem 1rem;
}
.bespoke-step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--coral);
    display: block;
    margin-bottom: 0.75rem;
}
.bespoke-step h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.75rem;
}
.bespoke-step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6b6b6b;
}

/* Add-Ons Grid */
.bespoke-addons {
    padding: 2rem 3.5rem 3rem;
    background: var(--cream);
    margin: 0 0 2rem;
}
.bespoke-addons-intro {
    text-align: center;
    font-size: 0.95rem;
    color: #6b6b6b;
    margin-top: -1rem;
    margin-bottom: 2rem;
}
.bespoke-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.bespoke-addon-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.bespoke-addon-item:hover {
    transform: translateY(-3px);
}
.bespoke-addon-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--coral);
}
.bespoke-addon-icon svg {
    width: 100%;
    height: 100%;
}
.bespoke-addon-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.bespoke-addon-item p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #6b6b6b;
}

/* Who Is It For */
.bespoke-audience {
    padding: 2rem 3.5rem 3rem;
}
.bespoke-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.bespoke-audience-item {
    padding: 1.5rem;
    border-left: 3px solid var(--coral);
}
.bespoke-audience-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 0.5rem;
}
.bespoke-audience-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Bespoke Enquiry */
.bespoke-enquiry {
    padding: 3rem 3.5rem;
    background: var(--cream);
    margin: 0 3.5rem 2rem;
    border-radius: 8px;
}
.bespoke-enquiry-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #6b6b6b;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Bespoke Footer */
.bespoke-footer {
    text-align: center;
    padding: 2rem 3.5rem;
    border-top: 1px solid var(--stone);
}
.bespoke-footer p {
    font-size: 0.9rem;
    color: #6b6b6b;
}
.bespoke-footer a {
    color: var(--coral);
    text-decoration: none;
}

/* Bespoke Responsive */
@media (max-width: 1024px) {
    .bespoke-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bespoke-addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .bespoke-hero {
        aspect-ratio: 16 / 10;
    }
    .bespoke-hero-title {
        font-size: 2rem;
    }
    .bespoke-hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    .bespoke-intro {
        padding: 2rem 1.5rem 1.5rem;
    }
    .bespoke-steps {
        padding: 1.5rem;
    }
    .bespoke-steps-grid {
        grid-template-columns: 1fr;
    }
    .bespoke-addons {
        padding: 1.5rem;
    }
    .bespoke-addons-grid {
        grid-template-columns: 1fr;
    }
    .bespoke-audience {
        padding: 1.5rem;
    }
    .bespoke-audience-grid {
        grid-template-columns: 1fr;
    }
    .bespoke-enquiry {
        padding: 1.5rem;
        margin: 0 1.5rem 2rem;
    }
    .bespoke-footer {
        padding: 1.5rem;
    }
}

/* --- Suite Enquiry Form --- */
.suite-enquiry {
    padding: 3.5rem;
    background: var(--cream);
    margin: 0 3.5rem 2rem;
}

.suite-enquiry-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.suite-enquiry-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.suite-enquiry-header p {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--earth);
    line-height: 1.7;
}

.suite-enquiry-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--stone);
    background: var(--warm-white);
    color: var(--charcoal);
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.suite-enquiry-form .btn {
    width: 100%;
    text-align: center;
}

.suite-footer-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--earth);
}

.suite-footer-note a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Modal responsive */
@media (max-width: 1024px) {
    .modal-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .suite-listing {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2.5rem 2.5rem;
    }

    .suite-listing-reverse {
        direction: ltr;
    }

    .suite-enquiry {
        margin: 0 2.5rem 2rem;
        padding: 2.5rem;
    }
}

@media (max-width: 640px) {
    .modal-container {
        width: 100vw;
        max-height: 100vh;
        max-width: 100%;
    }

    .modal-header {
        padding: 3rem 1.5rem 1.5rem;
    }

    .modal-gallery {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .modal-footer {
        padding: 2rem 1.5rem 2.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }

    .suite-listing {
        padding: 0 1.5rem 2rem;
        gap: 1.5rem;
    }

    .suite-listing-amenities {
        grid-template-columns: 1fr;
    }

    .suite-enquiry {
        margin: 0 1.5rem 1.5rem;
        padding: 1.5rem;
    }

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

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .story-editorial,
    .story-body,
    .story-image-1,
    .story-image-2 {
        grid-column: 1;
    }

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

    .feature-band-inner {
        grid-template-columns: 1fr;
    }

    .feature-band-image {
        min-height: 350px;
        position: relative;
    }

    .feature-band-image img {
        position: relative;
        height: 350px;
    }

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

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

    .dine-content {
        padding-left: 0;
    }

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

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

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

    .book-options {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .site-header {
        padding: 1rem 1.25rem;
    }

    .site-header.scrolled {
        padding: 0.75rem 1.25rem;
    }

    .nav-logo img {
        height: 36px;
    }

    .hero-content {
        padding: 0 1.5rem var(--space-xl);
    }

    .hero-scroll,
    .hero-issue {
        display: none;
    }

    .section-container {
        padding: 0 1.25rem;
    }

    .strip-inner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.25rem;
    }

    .strip-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .feature-band-text {
        padding: var(--space-lg) 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
    }

    .gallery-item-large {
        grid-column: 1;
    }

    .gallery-item-large img {
        aspect-ratio: 16 / 10;
    }

    .dine-details {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .book-options {
        grid-template-columns: 1fr;
    }

    .image-break img {
        height: 300px;
    }
}

/* --- Print --- */
@media print {
    .site-header,
    .preloader,
    .hero-scroll,
    .hero-issue,
    .mobile-menu {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 2rem;
    }
}
