/* ========================================
   OAK SQUARE PLANTATION — STYLESHEET
   ======================================== */

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

:root {
    --midnight: #0f2b3c;
    --midnight-light: #1a3d52;
    --midnight-dark: #091e2a;
    --mint: #a8e6cf;
    --mint-light: #d4f5e4;
    --mint-pale: #f0f7f4;
    --mint-accent: #7bc8a8;
    --cream: #faf9f7;
    --cream-warm: #f5f2ed;
    --sand: #e8e0d6;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--midnight);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--midnight-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 43, 60, 0.25);
}

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

.btn-outline:hover {
    background: var(--midnight);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--midnight);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(15, 43, 60, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding 0.4s var(--ease-smooth);
}

.nav.scrolled .nav-inner {
    padding: 14px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--midnight);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nav-logo-icon {
    color: var(--midnight);
    transition: color 0.3s;
}

.nav-logo-text {
    transition: color 0.3s;
}

.nav.scrolled .nav-logo,
.nav.scrolled .nav-logo-icon,
.nav.scrolled .nav-logo-text {
    color: var(--midnight);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--mint-accent);
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
    color: var(--midnight);
}

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

.nav-cta {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--midnight);
    color: var(--white) !important;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--midnight-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 43, 60, 0.2);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--midnight);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

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

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

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

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--midnight);
    transition: color 0.3s;
}

.nav-overlay-link:hover {
    color: var(--mint-accent);
}

.nav-overlay-cta {
    margin-top: 16px;
    padding: 16px 40px;
    border-radius: 100px;
    background: var(--midnight);
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 500;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--mint-pale) 50%, var(--cream-warm) 100%);
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-accent);
    margin-bottom: 20px;
    display: block;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 500;
    line-height: 1.0;
    color: var(--midnight);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--mint-accent);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

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

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand);
}

/* Hero image stack */
.hero-image-stack {
    position: relative;
    height: 620px;
}

.hero-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 43, 60, 0.15);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-primary {
    width: 380px;
    height: 500px;
    right: 0;
    top: 0;
    z-index: 2;
}

.hero-img-secondary {
    width: 260px;
    height: 340px;
    left: 0;
    bottom: 0;
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-img-badge {
    position: absolute;
    bottom: 140px;
    right: 40px;
    z-index: 4;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--midnight);
    box-shadow: 0 8px 32px rgba(15, 43, 60, 0.12);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
    background: var(--mint-pale);
}

/* ---------- ROOMS ---------- */
.rooms {
    padding: 120px 0;
    background: var(--mint-pale);
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.room-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 2px 12px rgba(15, 43, 60, 0.06);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 43, 60, 0.12);
}

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

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

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

.room-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--midnight);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.room-card-content {
    padding: 28px;
}

.room-card-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 12px;
}

.room-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.room-card-amenities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-card-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.room-card-amenities svg {
    color: var(--mint-accent);
    flex-shrink: 0;
}

.rooms-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(15, 43, 60, 0.06);
}

.rooms-cta p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--midnight);
    margin-bottom: 20px;
}

/* ---------- EXPERIENCE ---------- */
.experience {
    padding: 120px 0;
    background: var(--cream);
}

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

.experience-text .section-subtitle {
    margin-bottom: 48px;
}

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

.experience-feature {
    display: flex;
    gap: 20px;
}

.experience-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--mint-pale);
    color: var(--midnight);
}

.experience-feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 6px;
}

.experience-feature-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.experience-image-grid {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 20px;
    height: 100%;
}

.experience-img {
    border-radius: 16px;
    overflow: hidden;
}

.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-img-tall {
    height: 420px;
}

.experience-img-short {
    height: 220px;
}

/* ---------- QUOTE ---------- */
.quote-section {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(168, 230, 207, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.quote-mark {
    color: var(--mint);
    margin-bottom: 24px;
}

.quote-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 28px;
}

.quote-attr {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint);
}

/* ---------- LOCATION ---------- */
.location {
    padding: 120px 0;
    background: var(--cream);
}

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

.location-info .section-subtitle {
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

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

.location-detail svg {
    color: var(--mint-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--midnight);
    margin-bottom: 4px;
}

.location-detail span,
.location-detail a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.location-detail a:hover {
    color: var(--mint-accent);
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 43, 60, 0.1);
}

.location-image-col {
    position: relative;
}

.location-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 43, 60, 0.12);
}

.location-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-img-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 8px 24px rgba(15, 43, 60, 0.12);
}

.location-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content .section-eyebrow {
    color: var(--mint);
}

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

.cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 40px;
    max-width: 480px;
}

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

/* ---------- CONTACT ---------- */
.contact {
    padding: 120px 0;
    background: var(--mint-pale);
}

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

.contact-text .section-subtitle {
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(15, 43, 60, 0.08);
}

.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: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: all 0.3s var(--ease-smooth);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint-accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.3);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

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

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--midnight);
}

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

/* ---------- FOOTER ---------- */
.footer {
    background: var(--midnight-dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--mint);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-note {
    font-size: 0.75rem;
}

/* ---------- ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-stack {
        height: 480px;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-img-primary {
        width: 300px;
        height: 400px;
    }

    .hero-img-secondary {
        width: 200px;
        height: 260px;
    }

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

    .experience-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .experience-image-grid {
        max-width: 500px;
    }

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

    .location-img-accent {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-image-stack {
        height: 380px;
    }

    .hero-img-primary {
        width: 220px;
        height: 300px;
    }

    .hero-img-secondary {
        width: 160px;
        height: 210px;
    }

    .hero-img-badge {
        bottom: 80px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.75rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .rooms {
        padding: 80px 0;
    }

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

    .experience {
        padding: 80px 0;
    }

    .experience-img-tall {
        height: 300px;
    }

    .experience-img-short {
        height: 180px;
    }

    .quote-section {
        padding: 80px 0;
    }

    .location {
        padding: 80px 0;
    }

    .cta-section {
        padding: 80px 0;
    }

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

    .contact {
        padding: 80px 0;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

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

    .footer {
        padding: 60px 0 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.8rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-image-stack {
        height: 320px;
    }

    .hero-img-primary {
        width: 180px;
        height: 240px;
    }

    .hero-img-secondary {
        width: 130px;
        height: 170px;
    }

    .section-title {
        font-size: 2rem;
    }

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