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

:root {
    /* Light mode — warm cream background, deep forest green primary, amber accent */
    --background: oklch(0.98 0.008 80);
    --foreground: oklch(0.2 0.02 60);
    --card: oklch(0.99 0.005 80);
    --card-foreground: oklch(0.2 0.02 60);
    --primary: oklch(0.32 0.07 155);
    --primary-foreground: oklch(0.98 0.005 80);
    --secondary: oklch(0.93 0.02 80);
    --secondary-foreground: oklch(0.25 0.04 60);
    --muted-foreground: oklch(0.5 0.03 60);
    --accent: oklch(0.65 0.12 65);
    --border: oklch(0.88 0.015 80);
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --stone-900: #1c1917;
    --green-500: #22c55e;
    --green-600: oklch(0.62 0.1 155);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Lato",
        ui-sans-serif,
        system-ui,
        -apple-system,
        sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.font-serif {
    font-family: "Playfair Display", ui-serif, Georgia, serif;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}
ul {
    list-style: none;
}

/* ===== SCROLL ANIMATIONS ===== */
.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);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal-child {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

/* delay classes */
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}
.delay-5 {
    transition-delay: 0.5s;
}
.delay-6 {
    transition-delay: 0.6s;
}
.delay-7 {
    transition-delay: 0.7s;
}
.delay-8 {
    transition-delay: 0.8s;
}
.delay-9 {
    transition-delay: 0.9s;
}
.delay-10 {
    transition-delay: 1s;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    background: transparent;
    padding: 1.25rem 0;
}
.navbar.scrolled {
    background: color-mix(in srgb, var(--background) 92%, transparent);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}
.navbar.scrolled .navbar-brand-name,
.navbar.scrolled .navbar-nav button,
.navbar.scrolled .navbar-phone,
.navbar.scrolled .mobile-menu-btn,
.navbar.scrolled .lang-switch {
    color: var(--foreground);
}
.navbar.scrolled .navbar-brand-sub {
    color: var(--muted-foreground);
}
.navbar.scrolled .navbar-nav button:hover,
.navbar.scrolled .navbar-phone:hover {
    color: var(--primary);
}
.navbar-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.navbar-brand-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25;
    color: white;
}
.navbar-brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}
.navbar-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}
.navbar-nav button {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}
.navbar-nav button:hover {
    color: white;
}
.navbar-right {
    display: none;
    align-items: center;
    gap: 1rem;
}
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}
.lang-btn {
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
}
.lang-btn.active {
    background: var(--accent);
    color: white;
}
.lang-btn:not(.active) {
    opacity: 0.6;
}
.lang-btn:not(.active):hover {
    opacity: 1;
}
.navbar-phone {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}
.navbar-phone:hover {
    color: white;
}
.navbar-phone svg {
    width: 1rem;
    height: 1rem;
}
.mobile-menu-btn {
    display: block;
    color: white;
    position: relative;
    z-index: 60;
}
.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}
.mobile-menu-btn .icon-close {
    display: none;
}
.mobile-menu-btn.open {
    color: var(--foreground);
}
.mobile-menu-btn.open .icon-open {
    display: none;
}
.mobile-menu-btn.open .icon-close {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 55;
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: var(--foreground);
    padding: 0.5rem;
    line-height: 0;
}
.mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
}
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.mobile-menu-nav button {
    text-align: left;
    padding: 1rem 0.5rem;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
    transition: color 0.2s, padding 0.2s;
}
.mobile-menu-nav button:hover,
.mobile-menu-nav button:active {
    color: var(--primary);
    padding-left: 1rem;
}
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
}
.mobile-menu-footer .lang-switch,
.mobile-menu-footer .navbar-phone {
    color: var(--foreground);
}
.mobile-menu-footer .navbar-phone {
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex;
    }
    .navbar-right {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .mobile-menu {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/images/hero-bg.webp") center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
}
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, var(--background), transparent);
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}
.hero-sub {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    animation: heroFadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-wrap: balance;
    opacity: 0;
    animation: heroFadeUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .italic {
    font-style: italic;
    color: var(--amber-300);
}
.hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-wrap: balance;
    line-height: 1.7;
    opacity: 0;
    animation: heroFadeUp 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: heroFadeUp 1s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.btn-primary-hero {
    background: var(--amber-400);
    color: var(--stone-900);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    display: inline-block;
}
.btn-primary-hero:hover {
    background: var(--amber-300);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
.btn-outline-hero {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline-hero:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}
.hero-price {
    margin-top: 2.5rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    color: white;
    font-size: 0.875rem;
    opacity: 0;
    animation: heroFadeUp 1s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-price strong {
    font-weight: 700;
    color: var(--amber-300);
    font-size: 1rem;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
}
.hero-scroll svg {
    width: 2rem;
    height: 2rem;
    animation: bounce 2s infinite;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-desc {
        font-size: 1.25rem;
    }
    .hero-buttons {
        flex-direction: row;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 6rem 0;
    overflow: hidden;
}
.section-bg {
    background: var(--background);
}
.section-alt {
    background: var(--secondary);
}
.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-label {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.about-text .section-title {
    margin-bottom: 1.5rem;
}
.about-p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    height: 20rem;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}
.about-image-badge .small {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}
.about-image-badge .bold {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
}
.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: color-mix(in srgb, var(--primary) 15%, transparent);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}
.stat-card span {
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.875rem;
}

/* ===== AMENITIES ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.amenity-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}
.amenity-icon {
    width: 3rem;
    height: 3rem;
    background: color-mix(in srgb, var(--primary) 15%, transparent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.amenity-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}
.amenity-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.3;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.3s;
}
.gallery-item:hover .overlay {
    background: rgba(0, 0, 0, 0.3);
}
.gallery-item .caption {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .caption {
    opacity: 1;
}
.gallery-item .caption p {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 16/9;
}
.gallery-regular {
    aspect-ratio: 4/3;
}

/* ===== ACTIVITIES ===== */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.tabs-inner {
    display: inline-flex;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.375rem;
    gap: 0.25rem;
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}
.tab-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.tab-btn:not(.active) {
    color: var(--muted-foreground);
}
.tab-btn:not(.active):hover {
    color: var(--foreground);
}
.tab-btn svg {
    width: 1rem;
    height: 1rem;
}

.activities-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.activity-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.activity-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}
.activity-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: color-mix(in srgb, var(--primary) 15%, transparent);
    transition: background 0.3s;
}
.activity-card:hover .activity-icon {
    background: color-mix(in srgb, var(--primary) 25%, transparent);
}
.activity-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}
.activity-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Season grid switching */
.season-grid {
    display: none;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
.season-grid.season-active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}
.season-grid.season-entering {
    display: grid;
    animation: seasonFadeIn 0.4s ease forwards;
}
@keyframes seasonFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Summer accent icon colors */
.summer-icon {
    background: color-mix(in srgb, var(--accent) 15%, transparent);
}
.activity-card:hover .summer-icon {
    background: color-mix(in srgb, var(--accent) 25%, transparent);
}
.summer-icon svg {
    color: var(--accent);
}

/* Summer active tab */
.tab-btn.active-summer {
    background: var(--accent) !important;
    color: var(--foreground) !important;
}

/* Activity card as link */
.activity-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
}
.activity-link:hover {
    background: color-mix(in srgb, var(--primary) 6%, var(--card));
    border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}
.activity-link:hover h3 {
    color: var(--primary);
}
#summer-grid .activity-link:hover {
    background: color-mix(in srgb, var(--accent) 8%, var(--card));
    border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
}
#summer-grid .activity-link:hover h3 {
    color: var(--accent);
}

.card-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s;
}
.activity-link:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}
#summer-grid .activity-link:hover .card-arrow {
    color: var(--accent);
}
.activity-card p {
    color: var(--muted-foreground);
    font-size: 0.75rem;
    line-height: 1.6;
}

.activity-banner {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}
.activity-banner-bg {
    position: absolute;
    inset: 0;
    background: url("/images/activity-banner.webp") center/cover;
}
.activity-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3)
    );
}
.activity-banner-content {
    position: relative;
    padding: 2.5rem 2rem;
    max-width: 32rem;
}
.activity-banner-content .label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}
.activity-banner-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}
.activity-banner-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.btn-amber {
    display: inline-block;
    background: var(--amber-400);
    color: var(--stone-900);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    font-size: 0.875rem;
}
.btn-amber:hover {
    background: var(--amber-300);
}

@media (min-width: 768px) {
    .activity-banner-content {
        padding: 3rem;
    }
}

/* ===== REVIEWS ===== */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.reviews-header img {
    height: 1.5rem;
    object-fit: contain;
}
.reviews-header span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.review-name {
    font-weight: 600;
    color: var(--foreground);
}
.review-date {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}
.review-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}
.review-stars svg {
    width: 1rem;
    height: 1rem;
}
.star-filled {
    fill: #fbbf24;
    color: #fbbf24;
}
.star-empty {
    fill: none;
    color: rgba(161, 161, 170, 0.3);
}
.review-score {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--amber-500);
    margin-left: 0.25rem;
}
.review-text {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-style: italic;
    font-size: 0.875rem;
}
.reviews-link {
    margin-top: 2.5rem;
}
.reviews-link a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
    font-size: 0.875rem;
}
.reviews-link a:hover {
    color: var(--accent);
}

/* ===== PRICING ===== */
.pricing-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.pricing-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-main {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}
.pricing-amount {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.pricing-amount .number {
    font-size: 3.75rem;
    font-weight: 700;
}
.pricing-amount .currency {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}
.pricing-per {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}
.pricing-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.pricing-includes-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}
.pricing-list svg {
    width: 1rem;
    height: 1rem;
    color: var(--amber-300);
    flex-shrink: 0;
}
.btn-pricing {
    display: block;
    text-align: center;
    background: var(--amber-400);
    color: var(--stone-900);
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    margin-top: 1rem;
}
.btn-pricing:hover {
    background: var(--amber-300);
}

.pricing-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.pricing-info {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.pricing-info h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}
.pricing-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== CONTACTS ===== */
.contacts-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
.contact-card.static:hover {
    transform: none;
    cursor: default;
}
.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}
.contact-icon.primary {
    background: color-mix(in srgb, var(--primary) 15%, transparent);
}
.contact-card:hover .contact-icon.primary {
    background: color-mix(in srgb, var(--primary) 25%, transparent);
}
.contact-icon.green {
    background: rgba(34, 197, 94, 0.1);
}
.contact-card:hover .contact-icon.green {
    background: rgba(34, 197, 94, 0.2);
}
.contact-icon.accent {
    background: rgba(217, 119, 6, 0.1);
}
.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}
.contact-icon.primary svg {
    color: var(--primary);
}
.contact-icon.green svg {
    color: var(--green-600);
}
.contact-icon.accent svg {
    color: var(--accent);
}
.contact-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
}
.contact-value {
    font-weight: 600;
    color: var(--foreground);
}
.contact-sub {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}
.contact-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.map-frame {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: 18rem;
    border: 1px solid var(--border);
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.cta-box {
    border-radius: 1rem;
    padding: 1.75rem;
    background: linear-gradient(
        135deg,
        oklch(0.32 0.07 155) 0%,
        oklch(0.25 0.06 170) 100%
    );
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.btn-cta-primary {
    flex: 1;
    text-align: center;
    background: var(--amber-400);
    color: var(--stone-900);
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
}
.btn-cta-primary:hover {
    background: var(--amber-300);
}
.btn-cta-secondary {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}
.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0;
}
.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--background);
}
.footer-desc {
    color: color-mix(in srgb, var(--background) 60%, transparent);
    font-size: 0.875rem;
    line-height: 1.6;
}
.footer h4 {
    font-weight: 600;
    color: color-mix(in srgb, var(--background) 70%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-nav button {
    color: color-mix(in srgb, var(--background) 60%, transparent);
    font-size: 0.875rem;
    transition: color 0.3s;
    text-align: left;
}
.footer-nav button:hover {
    color: var(--background);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: color-mix(in srgb, var(--background) 65%, transparent);
    font-size: 0.875rem;
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: var(--background);
}
.footer-contact a svg {
    width: 1rem;
    height: 1rem;
}
.footer-contact .address {
    color: color-mix(in srgb, var(--background) 50%, transparent);
    font-size: 0.875rem;
}
.footer-bottom {
    border-top: 1px solid color-mix(in srgb, var(--background) 15%, transparent);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}
.footer-bottom p {
    font-size: 0.75rem;
}
.footer-copy {
    color: color-mix(in srgb, var(--background) 40%, transparent);
}
.footer-domain {
    color: color-mix(in srgb, var(--background) 30%, transparent);
}