/* ========================================
   The Escape at Weymouth - Styles
   ======================================== */

:root {
    --color-primary: #2d2d2d;
    --color-primary-light: #4a4a4a;
    --color-accent: #c8964e;
    --color-accent-hover: #b5833b;
    --color-accent-text: #83642a;
    --color-text: #3a3a3a;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-grey: #f5f4f2;
    --color-border: #e8e6e3;
    --font-main: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1120px;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
}

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

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

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

.container-narrow {
    max-width: 760px;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-intro {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent-text);
    color: #fff;
    border-color: var(--color-accent-text);
}

.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow);
}

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

.nav-logo {
    font-family: var(--font-main);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--color-accent);
}

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

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

/* ========================================
   Scroll Reveal Animations
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered hero entrance */
.hero-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.hero-anim.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-anim[data-delay="0"] { transition-delay: 0.15s; }
.hero-anim[data-delay="1"] { transition-delay: 0.35s; }
.hero-anim[data-delay="2"] { transition-delay: 0.55s; }
.hero-anim[data-delay="3"] { transition-delay: 0.75s; }
.hero-anim[data-delay="4"] { transition-delay: 0.95s; }

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    min-height: 90dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    background-image: url('images/weymouth-holiday-rental-hero.webp');
    transform: scale(1.1);
    transition: transform 0.1s linear;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: -10%;
    background: linear-gradient(
        to bottom,
        rgba(35, 35, 35, 0.4) 0%,
        rgba(35, 35, 35, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 24px;
    max-width: 750px;
}

.hero-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.hero h1 {
    font-family: var(--font-main);
    font-size: 3.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.br-desktop br {
    display: none;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.hero-stats span:not(.dot) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-stats span:not(.dot) svg {
    opacity: 0.85;
    flex-shrink: 0;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    display: inline-block;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    min-width: 220px;
    text-align: center;
    padding: 14px 32px;
    font-size: 1rem;
}

/* ========================================
   Scene Banners
   ======================================== */
.scene-banner {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
}

.scene-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 480px) {
    .scene-banner,
    .scene-banner img {
        height: 200px;
        max-height: 200px;
    }
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
    max-width: 560px;
    margin: 32px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.date-hint {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: -8px 0 16px;
}

.date-hint a {
    color: var(--color-accent);
    font-weight: 500;
}

.form-group input[readonly] {
    background: var(--color-bg-grey);
    cursor: default;
}

.save-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 20px;
    font-style: italic;
}

/* ========================================
   About
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--color-bg-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

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

/* ========================================
   Gallery
   ======================================== */
.gallery-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.gallery-tab {
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.gallery-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

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

.gallery-item.gallery-hidden {
    display: none;
}

.gallery-toggle {
    display: block;
    margin: 28px auto 0;
    padding: 10px 24px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--color-border);
    border-radius: 40px;
    background: #fff;
    width: fit-content;
    transition: border-color 0.2s, color 0.2s;
    letter-spacing: 0.3px;
}

.gallery-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    padding: 16px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 16px;
    right: 24px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

/* ========================================
   Location
   ======================================== */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: stretch;
}

.location-map iframe {
    height: 100%;
    min-height: 400px;
}

.distance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.distance-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.distance-name {
    font-weight: 500;
}

.distance-value {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.distance-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.distance-link:hover .distance-name {
    color: var(--color-accent);
}

.location-grid h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

/* ========================================
   Reviews
   ======================================== */
.reviews-header {
    margin-bottom: 40px;
}

.reviews-score {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.score-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.score-stars {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.score-count {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.review-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--color-text);
}

.review-author {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.reviews-cta {
    text-align: center;
    margin-top: 32px;
    color: var(--color-text-light);
}

.reviews-cta a {
    color: var(--color-accent-text);
    font-weight: 600;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    margin-top: 32px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 0 20px;
    color: var(--color-text);
    line-height: 1.7;
}

.faq-item p a {
    color: var(--color-accent);
    font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.section-cta {
    background: var(--color-primary);
    text-align: center;
    padding: 80px 0;
}

.section-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 400;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-cta .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.section-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #2d2d2d;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 32px;
}

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

.footer h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-contact-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .hero-stats {
        font-size: 0.85rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

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

    .review-card {
        padding: 24px;
    }
}

/* ========================================
   Availability Calendar
   ======================================== */
.calendar-grid {
    max-width: 420px;
    margin: 8px auto 0;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.calendar-nav button {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.calendar-nav button:hover:not(:disabled) {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.calendar-nav button:disabled {
    opacity: 0.3;
    cursor: default;
}

.calendar-nav-label {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    min-width: 180px;
    text-align: center;
}

.calendar-month {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    background: #fff;
}

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

.calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    text-align: center;
    font-size: 0.95rem;
    padding: 8px 4px;
    border-radius: 8px;
    line-height: 1;
}

.calendar-day.empty {
    visibility: hidden;
}

.calendar-day.past {
    color: var(--color-border);
}

.calendar-day.available {
    color: #1e8449;
    background: #eafaf1;
    font-weight: 500;
}

.calendar-day.booked {
    color: var(--color-text-light);
    background: var(--color-bg-grey);
    text-decoration: line-through;
}

.calendar-day.today {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
    font-weight: 700;
}

.calendar-day.available:hover {
    background: #c8e6c9;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
    background: var(--color-accent) !important;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
}

.calendar-day.selected-range {
    background: #faecd8 !important;
    color: var(--color-text) !important;
    text-decoration: none !important;
}

.calendar-updated {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 16px;
    font-style: italic;
}

/* ========================================
   Sub-page Layout
   ======================================== */
.subpage-hero {
    padding: 140px 0 60px;
    background: var(--color-primary);
    text-align: center;
    color: #fff;
}

.subpage-hero .breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

.subpage-hero .breadcrumb a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.subpage-hero .breadcrumb a:hover {
    opacity: 1;
}

.subpage-hero h1 {
    font-family: var(--font-main);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subpage-hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.subpage-content {
    padding: 60px 0;
}

.subpage-content h2 {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-primary);
    margin: 40px 0 16px;
    line-height: 1.3;
}

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

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

.subpage-content ul {
    margin: 0 0 16px 24px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--color-text);
}

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

.subpage-content a {
    color: var(--color-accent);
    font-weight: 500;
}

.subpage-content a:hover {
    text-decoration: underline;
}

/* Where to Stay CTA */
.where-to-stay {
    background: var(--color-bg-grey);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 48px;
    text-align: center;
}

.where-to-stay h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.where-to-stay p {
    max-width: 520px;
    margin: 0 auto 24px;
    color: var(--color-text-light);
}

.where-to-stay .cta-buttons {
    justify-content: center;
}

/* Attractions Grid (hub page) */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.attraction-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.attraction-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.attraction-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.attraction-card-body h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.attraction-card-body p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    flex: 1;
}

.attraction-card-distance {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Internal Links */
.related-attractions {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.related-attractions h3 {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-links a {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--color-text);
    transition: all 0.2s ease;
    text-decoration: none;
}

.related-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
}

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

@media (max-width: 480px) {
    /* Hero */
    .hero {
        min-height: 85vh;
        min-height: 85dvh;
        align-items: center;
        padding-top: 72px;
    }

    .hero-bg {
        background-position: 35% center;
    }

    .hero h1 {
        font-size: 1.65rem;
        font-weight: 600;
        letter-spacing: 0;
        margin-bottom: 18px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 22px;
        opacity: 0.85;
    }

    .br-desktop br {
        display: block;
    }

    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
        gap: 6px;
    }

    .hero-tag .hero-stars svg {
        width: 11px;
        height: 11px;
    }

    .hero-stats {
        font-size: 0.75rem;
        gap: 8px;
        margin-bottom: 24px;
    }

    .hero-stats span:not(.dot) svg {
        width: 14px;
        height: 14px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0;
    }

    .btn-hero {
        min-width: unset;
        padding: 12px 32px;
        font-size: 0.9rem;
        width: auto;
    }

    /* Buttons */
    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .cta-buttons .btn {
        text-align: center;
        width: auto;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Sub-pages */
    .subpage-hero {
        padding: 110px 0 40px;
    }

    .subpage-hero h1 {
        font-size: 1.5rem;
    }

    .subpage-hero p {
        font-size: 1rem;
    }

    .subpage-content h2 {
        font-size: 1.4rem;
    }

    .subpage-content p,
    .subpage-content ul {
        font-size: 0.95rem;
    }

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

    .where-to-stay {
        padding: 28px 20px;
    }

    .where-to-stay .cta-buttons {
        padding: 0;
    }

    .related-links a {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    /* Sections */
    .section {
        padding: 48px 0;
    }

    .section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .section-intro {
        font-size: 1rem;
    }

    /* CTA section */
    .section-cta {
        padding: 40px 0;
    }

    .section-cta h2 {
        font-size: 1.4rem;
    }

    .section-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    /* Contact form */
    .contact-form {
        margin-top: 24px;
    }

    /* FAQ */
    .faq-item summary {
        font-size: 0.95rem;
        padding: 16px 0;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }
}
