/* ═══════════════════════════════════════════
   Schoolhouse B and B — Custom Styles
   Color Palette: Emerald Green + Cream
   ═══════════════════════════════════════════ */

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

:root {
    --emerald: #064E3B;
    --emerald-light: #065F46;
    --emerald-dark: #053629;
    --emerald-accent: #047857;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --cream-mid: #FAF3E8;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(6, 78, 59, 0.06);
    --shadow-md: 0 8px 30px rgba(6, 78, 59, 0.10);
    --shadow-lg: 0 20px 60px rgba(6, 78, 59, 0.14);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Page Wrapper & Accent Bar ── */
.page-wrapper {
    position: relative;
}

.accent-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100vh;
    background: linear-gradient(180deg, var(--emerald) 0%, var(--emerald-accent) 50%, var(--emerald) 100%);
    z-index: 9999;
}

/* ── Typography ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-accent);
    background: rgba(6, 78, 59, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag.light {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.section-title .accent-text {
    color: var(--emerald);
    font-style: italic;
    font-weight: 500;
}

.section-title .accent-text-light {
    color: var(--cream);
    font-style: italic;
    font-weight: 500;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
}

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

.section-header.center .section-sub {
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.3);
}

.btn-primary:hover {
    background: var(--emerald-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--emerald);
    border: 1.5px solid var(--emerald);
}

.btn-ghost:hover {
    background: var(--emerald);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--emerald);
    border: 1.5px solid var(--emerald);
    padding: 11px 24px;
    font-size: 0.88rem;
}

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

.btn-cream {
    background: var(--cream);
    color: var(--emerald);
    box-shadow: var(--shadow-md);
}

.btn-cream:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(255, 248, 240, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 248, 240, 0.1);
    border-color: var(--cream);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

.btn-ghost-sm {
    background: transparent;
    color: var(--emerald);
    border: 1.5px solid var(--emerald);
    padding: 10px 22px;
    font-size: 0.85rem;
    margin-top: 16px;
}

.btn-ghost-sm:hover {
    background: var(--emerald);
    color: var(--white);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 4px;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
}

.logo-mark {
    color: var(--emerald);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--emerald);
}

.logo-secondary {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-mid);
    letter-spacing: 0.04em;
}

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

.nav-desktop a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}

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

.nav-desktop a:hover {
    color: var(--emerald);
}

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

.nav-cta {
    background: var(--emerald);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--emerald-light) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--emerald);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 4px;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 78, 59, 0.06);
    transition: color var(--transition);
}

.mobile-nav a:last-child {
    border-bottom: none;
    color: var(--emerald);
    font-weight: 600;
}

.mobile-nav a:hover {
    color: var(--emerald);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(6, 78, 59, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(6, 78, 59, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(6, 78, 59, 0.015) 40px, rgba(6, 78, 59, 0.015) 80px);
    pointer-events: none;
}

.hero-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-accent);
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-headline .accent-text {
    color: var(--emerald);
    font-style: italic;
    font-weight: 500;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(6, 78, 59, 0.15);
}

/* Hero Image Stack */
.hero-right {
    position: relative;
    height: 600px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.hero-img:hover img {
    transform: scale(1.03);
}

.hero-img-main {
    width: 75%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-accent {
    width: 55%;
    height: 45%;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 5px solid var(--cream);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(6, 78, 59, 0.15) 100%);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    bottom: 38%;
    left: -10px;
    z-index: 4;
    background: var(--emerald);
    color: var(--cream);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ── Intro / About ── */
.intro {
    padding: 100px 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-visual {
    position: relative;
}

.intro-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.intro-accent-block {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: var(--emerald);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.accent-geo {
    position: absolute;
    opacity: 0.2;
}

.accent-circle {
    width: 120px;
    height: 120px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

.accent-square {
    width: 60px;
    height: 60px;
    border: 2px solid var(--cream);
    bottom: -10px;
    left: -10px;
    transform: rotate(15deg);
}

.accent-dots {
    width: 40px;
    height: 40px;
    background-image: radial-gradient(circle, var(--cream) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    top: 20px;
    left: 10px;
    opacity: 0.4;
}

.accent-block-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    text-align: center;
    line-height: 1.2;
    z-index: 1;
}

.intro-content .section-tag {
    margin-bottom: 16px;
}

.intro-content .section-title {
    margin-bottom: 24px;
}

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

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(6, 78, 59, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

/* ── Rooms ── */
.rooms {
    padding: 100px 0;
    background: var(--cream-mid);
}

.rooms .section-header {
    margin-bottom: 60px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.room-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

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

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

.room-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 78, 59, 0.08) 100%);
}

.room-info {
    padding: 28px;
}

.room-tag {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-accent);
    background: rgba(6, 78, 59, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.room-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

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

.room-amenities li {
    font-size: 0.8rem;
    color: var(--text-mid);
    background: var(--cream);
    padding: 5px 12px;
    border-radius: 100px;
}

/* ── Experience ── */
.experience {
    padding: 100px 0;
    background: var(--emerald);
    position: relative;
    overflow: hidden;
}

.exp-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(255,248,240,0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255,248,240,0.04) 0%, transparent 40%),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,248,240,0.02) 60px, rgba(255,248,240,0.02) 120px);
    pointer-events: none;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.exp-content .section-tag {
    margin-bottom: 16px;
}

.exp-content .section-title {
    margin-bottom: 20px;
}

.exp-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.75);
    margin-bottom: 40px;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.exp-feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 248, 240, 0.2);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.exp-feature-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}

.exp-feature-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.6);
}

.exp-visual {
    position: relative;
    padding-top: 40px;
}

.exp-img-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exp-img-tall {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.exp-img-tall img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.exp-img-short {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.exp-img-short img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.exp-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--cream);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.exp-floating-card svg {
    color: var(--emerald);
    flex-shrink: 0;
}

.exp-floating-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.exp-floating-card span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── Location ── */
.location {
    padding: 100px 0;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-content .section-tag {
    margin-bottom: 16px;
}

.location-content .section-title {
    margin-bottom: 20px;
}

.location-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 36px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.loc-icon {
    width: 40px;
    height: 40px;
    background: rgba(6, 78, 59, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.loc-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.loc-detail span,
.loc-detail a {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.loc-detail a:hover {
    color: var(--emerald);
}

.location-map {
    position: relative;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--emerald);
    opacity: 0.15;
    z-index: 1;
}

/* ── Reviews ── */
.reviews {
    padding: 100px 0;
    background: var(--cream-mid);
}

.reviews .section-header {
    margin-bottom: 60px;
}

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

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.review-stars {
    display: flex;
    gap: 3px;
    color: #F59E0B;
    margin-bottom: 18px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(6, 78, 59, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.author-avatar svg {
    width: 20px;
    height: 20px;
}

.review-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 0;
    background: var(--emerald-dark);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,248,240,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,248,240,0.04) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255,248,240,0.015) 80px, rgba(255,248,240,0.015) 160px);
    pointer-events: none;
}

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

.cta-content .section-tag {
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.7);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 36px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.contact-channel:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.channel-icon {
    width: 44px;
    height: 44px;
    background: rgba(6, 78, 59, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    flex-shrink: 0;
}

.contact-channel strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-channel span,
.contact-channel a {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.contact-channel a:hover {
    color: var(--emerald);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(6, 78, 59, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--emerald-dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 90% 10%, rgba(255,248,240,0.04) 0%, transparent 40%),
        repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(255,248,240,0.01) 100px, rgba(255,248,240,0.01) 200px);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.logo-light .logo-primary {
    color: var(--cream);
}

.logo-light .logo-secondary {
    color: rgba(255, 248, 240, 0.6);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.6);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong,
.footer-contact strong {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 0.92rem;
    color: rgba(255, 248, 240, 0.6);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 240, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom span {
    font-size: 0.82rem;
    color: rgba(255, 248, 240, 0.4);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-right {
        height: 480px;
    }
    
    .intro-grid,
    .exp-grid,
    .location-grid,
    .contact-grid {
        gap: 50px;
    }
    
    .rooms-grid {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-right {
        height: 400px;
        order: -1;
    }
    
    .hero-img-main {
        width: 80%;
        height: 75%;
    }
    
    .hero-img-accent {
        width: 55%;
        height: 40%;
    }
    
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .intro-grid,
    .exp-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-visual {
        order: -1;
    }
    
    .intro-accent-block {
        right: -10px;
        bottom: -20px;
        width: 140px;
        height: 140px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .exp-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }
    
    .header-inner {
        padding: 0 18px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
