/*
Theme Name: Creekside Modern
Theme URI: https://creeksideinn.com
Description: Modern hotel theme for Creekside Inn & Resort — a riverside gem among the redwoods in Guerneville, CA.
Version: 1.0.0
Author: Roger
Text Domain: creekside-modern
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --color-river: #3a6b8a;
    --color-river-dark: #2d5570;
    --color-river-light: #e8f0f5;
    --color-gold: #c4a97d;
    --color-gold-dark: #a8905f;
    --color-bg: #f8f6f3;
    --color-surface: #e8e4df;
    --color-text: #2c2c2c;
    --color-text-light: #666;
    --color-white: #ffffff;
    --color-forest: #5a8a5c;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-logo img {
    height: 50px;
    width: auto;
    margin-top: 25px;
    position: relative;
    z-index: 1001;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--color-text);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin-top: 10px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-river);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
    padding: 12px 48px;
    background: var(--color-river);
    color: var(--color-white) !important;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background var(--transition);
}

.nav-cta:hover {
    background: var(--color-river-dark);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* Top bar */
.top-bar {
    background: var(--color-text);
    color: var(--color-white);
    font-size: 0.8rem;
    padding: 6px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 24px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content .tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* ============================================
   BOOKING BAR
   ============================================ */
.booking-bar {
    background: var(--color-white);
    border-radius: 8px;
    padding: 20px 28px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    max-width: 800px;
    margin: 0 auto;
}

.booking-bar.sticky {
    position: fixed;
    top: var(--header-height);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-field label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.booking-field input,
.booking-field select {
    padding: 10px 12px;
    border: 1px solid var(--color-surface);
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition);
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--color-river);
}

.booking-bar .btn-book {
    padding: 12px 28px;
    background: var(--color-river);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.booking-bar .btn-book:hover {
    background: var(--color-river-dark);
}

/* ============================================
   SECTION PATTERNS
   ============================================ */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header .section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 16px auto 0;
}

/* ============================================
   INTRO / WELCOME
   ============================================ */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.highlight-item {
    text-align: center;
    padding: 24px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--color-river);
}

.highlight-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* ============================================
   ROOM CARDS
   ============================================ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.room-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.room-card-image {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-card-type {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: rgba(0,0,0,0.6);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

.room-card-body {
    padding: 24px;
}

.room-card-body h3 {
    margin-bottom: 8px;
}

.room-card-body h3 a {
    color: var(--color-text);
}

.room-card-body h3 a:hover {
    color: var(--color-river);
}

.room-card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-river);
    margin-bottom: 12px;
}

.room-card-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    list-style: none;
}

.room-card-amenities li {
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 4px 8px;
    background: var(--color-bg);
    border-radius: 3px;
}

.room-card-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-river);
    border: 1px solid var(--color-river);
}

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

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

.btn-gold:hover {
    background: var(--color-gold-dark);
    color: var(--color-white);
}

/* Room type filter */
.room-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.room-filter-btn {
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--color-surface);
    border-radius: 24px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition);
    color: var(--color-text-light);
}

.room-filter-btn:hover,
.room-filter-btn.active {
    background: var(--color-river);
    border-color: var(--color-river);
    color: var(--color-white);
}

/* ============================================
   SINGLE ROOM
   ============================================ */
.room-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 500px;
    margin-top: var(--header-height);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.room-gallery-main {
    grid-row: 1 / -1;
}

.room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-detail {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 48px 0;
}

.room-description {
    font-size: 1.05rem;
    line-height: 1.8;
}

.room-amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.room-amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.room-amenities-list li svg {
    width: 16px;
    height: 16px;
    color: var(--color-forest);
    flex-shrink: 0;
}

.room-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
}

.room-booking-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.room-booking-card .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 4px;
}

.room-booking-card .price-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.room-booking-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 0.9rem;
}

.room-nav {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--color-surface);
    margin-top: 48px;
}

.room-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.room-nav a:hover {
    color: var(--color-river);
}

/* ============================================
   PHOTO GALLERY STRIP
   ============================================ */
.gallery-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px;
    scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
    display: none;
}

.gallery-strip img {
    height: 300px;
    width: auto;
    border-radius: 8px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ============================================
   THINGS TO DO CARDS
   ============================================ */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.activity-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.activity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.activity-card-overlay h3 {
    color: var(--color-white);
    font-size: 1.3rem;
}

/* ============================================
   SPECIALS BANNER
   ============================================ */
.specials-banner {
    background: var(--color-river);
    color: var(--color-white);
    text-align: center;
    padding: 60px 24px;
}

.specials-banner h2 {
    color: var(--color-white);
    margin-bottom: 12px;
}

.specials-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ============================================
   MAP & DIRECTIONS
   ============================================ */
.map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.map-embed {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.directions-content h3 {
    margin-bottom: 16px;
}

.directions-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-text);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(10);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-river);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-surface);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 16px;
    background: var(--color-white);
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-river);
}

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

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-intro-text h2 {
    margin-bottom: 0;
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

.about-intro-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-bg);
    border-radius: 8px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--color-river);
}

.about-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.about-feature p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.about-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-amenity {
    padding: 32px 24px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 3px solid var(--color-gold);
}

.about-amenity h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.about-amenity p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ============================================
   THINGS TO DO PAGE
   ============================================ */
.ttd-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.ttd-row:last-child {
    margin-bottom: 0;
}

.ttd-row-reverse {
    direction: rtl;
}

.ttd-row-reverse > * {
    direction: ltr;
}

.ttd-image {
    border-radius: 8px;
    overflow: hidden;
    height: 360px;
}

.ttd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ttd-row:hover .ttd-image img {
    transform: scale(1.03);
}

.ttd-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.ttd-icon {
    color: var(--color-river);
    margin-bottom: 12px;
}

.ttd-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.ttd-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.ttd-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ttd-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-text);
}

.ttd-highlights li svg {
    width: 16px;
    height: 16px;
    color: var(--color-forest);
    flex-shrink: 0;
}

.ttd-extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ttd-extra {
    padding: 32px 24px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform var(--transition);
}

.ttd-extra:hover {
    transform: translateY(-2px);
}

.ttd-extra h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.ttd-extra p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ============================================
   SPECIALS PAGE
   ============================================ */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.special-card {
    position: relative;
    background: var(--color-white);
    border-radius: 8px;
    padding: 40px 32px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.special-card-featured {
    border: 2px solid var(--color-gold);
}

.special-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.special-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--color-river);
}

.special-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.special-card-discount {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-river);
    margin-bottom: 16px;
}

.special-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.special-card-details {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.special-card-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-bg);
}

.special-card-details li svg {
    width: 16px;
    height: 16px;
    color: var(--color-forest);
    flex-shrink: 0;
}

.special-card .btn {
    width: 100%;
}

.specials-info-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.specials-info-grid h2 {
    margin-bottom: 0;
}

.specials-info-grid p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.specials-info-contact {
    background: var(--color-bg);
    padding: 32px;
    border-radius: 8px;
}

/* ============================================
   ACCESSIBILITY PAGE
   ============================================ */
.accessibility-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.accessibility-content h2 {
    margin-bottom: 0;
}

.accessibility-content h3 {
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.accessibility-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.accessibility-list {
    list-style: none;
    margin: 16px 0 24px;
}

.accessibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-surface);
    font-size: 0.95rem;
    color: var(--color-text);
}

.accessibility-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-forest);
    flex-shrink: 0;
    margin-top: 2px;
}

.accessibility-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.accessibility-contact-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.accessibility-contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.accessibility-contact-card > p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.accessibility-contact-card h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

/* ============================================
   POLICY / LEGAL PAGES
   ============================================ */
.policy-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-surface);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0 20px 24px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 6px;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .specials-info-grid {
        grid-template-columns: 1fr;
    }

    .accessibility-layout {
        grid-template-columns: 1fr;
    }

    .accessibility-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .main-nav.open {
        display: flex;
    }

    .top-bar {
        display: none;
    }

    .hero {
        height: 70vh;
    }

    .booking-bar {
        flex-direction: column;
        padding: 16px;
    }

    .booking-field {
        width: 100%;
    }

    .highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .room-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .room-detail {
        grid-template-columns: 1fr;
    }

    .room-sidebar {
        position: static;
    }

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

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

    .gallery-strip img {
        height: 200px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .ttd-row,
    .ttd-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .ttd-image {
        height: 250px;
    }

    .ttd-extras-grid {
        grid-template-columns: 1fr;
    }

    .ttd-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }

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

    .room-filters {
        flex-wrap: wrap;
    }
}
