/* ===== CSS Custom Properties ===== */
:root {
    --burgundy: #781F37;
    --burgundy-dark: #5A1528;
    --burgundy-light: #9A2D4A;
    --blush: #F5E6E0;
    --blush-light: #FDF6F3;
    --blush-dark: #E8CFC4;
    --cream: #FDF9F7;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F3A;
    --warm-gray: #8A7E7A;
    --warm-gray-light: #B8AFAA;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
}

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

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

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

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

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

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
}

em {
    font-style: italic;
}

.text-accent {
    color: var(--burgundy);
}

.logo-accent {
    color: var(--burgundy);
    font-family: var(--font-serif);
    font-weight: 700;
}

/* ===== Layout ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.25rem;
    display: block;
}

.section-eyebrow.light {
    color: var(--blush);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

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

.title-divider {
    width: 60px;
    height: 2px;
    background: var(--burgundy);
    margin-bottom: 2rem;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

.lead-text {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 31, 55, 0.3);
}

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

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

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

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

.btn-large {
    padding: 1.25rem 2.75rem;
    font-size: 0.85rem;
}

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

/* ===== Mobile Header ===== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--cream);
    border-bottom: 1px solid var(--blush-dark);
    z-index: 1001;
    padding: 0 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition-fast);
}

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

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

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

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 32, 0.5);
    z-index: 999;
}

/* ===== Side Navigation ===== */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: var(--charcoal);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 3rem 2.5rem;
    overflow-y: auto;
}

.nav-content {
    width: 100%;
}

.nav-brand {
    margin-bottom: 4rem;
}

.nav-brand .logo-accent {
    color: var(--blush);
    font-size: 2rem;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.nav-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    font-family: var(--font-sans);
}

.nav-links {
    margin-bottom: 4rem;
}

.nav-link {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--warm-gray-light);
    padding: 0.75rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--blush);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-contact {
    border-top: 1px solid var(--charcoal-light);
    padding-top: 2rem;
}

.nav-phone,
.nav-email {
    display: block;
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.nav-phone:hover,
.nav-email:hover {
    color: var(--blush);
}

/* ===== Main Content ===== */
.main-content {
    margin-left: 320px;
    min-height: 100vh;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(44, 36, 32, 0.85) 0%,
        rgba(44, 36, 32, 0.6) 50%,
        rgba(44, 36, 32, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 0 4rem;
    color: var(--white);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero-title .text-accent {
    color: var(--blush);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--blush);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 1;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ===== About Section ===== */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.image-main {
    overflow: hidden;
}

.image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.image-accent {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 55%;
    overflow: hidden;
    border: 8px solid var(--cream);
}

.image-accent img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-text-col {
    padding: 2rem 0;
}

.about-text-col .lead-text {
    margin-bottom: 1.25rem;
}

.about-text-col p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--blush-dark);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 0.5rem;
}

/* ===== Accommodation Section ===== */
.accommodation {
    background: var(--blush-light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(120, 31, 55, 0.12);
}

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

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

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

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.room-info p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.room-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

.room-features svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

/* Amenities */
.amenities-section {
    text-align: center;
    padding-top: 2rem;
}

.amenities-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    transition: all var(--transition-fast);
}

.amenity:hover {
    background: var(--burgundy);
}

.amenity:hover svg,
.amenity:hover span {
    color: var(--white);
}

.amenity svg {
    color: var(--burgundy);
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.amenity span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color var(--transition-fast);
}

/* ===== Environment Section ===== */
.environment {
    background: var(--cream);
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.env-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.env-image {
    overflow: hidden;
    height: 450px;
}

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

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

.env-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.9) 0%, transparent 100%);
    color: var(--white);
}

.env-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.env-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ===== Experiences Section ===== */
.experiences {
    background: var(--blush-light);
    padding: 8rem 0;
}

.experiences-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.exp-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    opacity: 0.4;
    flex-shrink: 0;
    width: 3rem;
}

.exp-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.exp-content p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.experiences-gallery {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.gallery-main {
    overflow: hidden;
}

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

.gallery-side {
    position: absolute;
    bottom: 0;
    right: -2rem;
    width: 60%;
    overflow: hidden;
    border: 8px solid var(--blush-light);
}

.gallery-side img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(90, 21, 40, 0.92) 0%,
        rgba(120, 31, 55, 0.85) 100%
    );
}

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

.cta-content .section-title {
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    padding-top: 1rem;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--burgundy);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

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

.contact-text a:hover {
    color: var(--burgundy);
}

.contact-map {
    overflow: hidden;
    border: 1px solid var(--blush-dark);
}

.contact-form-col {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--blush-dark);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--blush-light);
    border: 1px solid var(--blush-dark);
    border-radius: 0;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(120, 31, 55, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--warm-gray);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--blush);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--warm-gray);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--blush);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--warm-gray);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid .room-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .side-nav {
        transform: translateX(-100%);
        transition: transform var(--transition);
    }
    
    .side-nav.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .menu-overlay.open {
        display: block;
    }
    
    .about-grid,
    .experiences-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-col {
        order: -1;
    }
    
    .image-accent {
        right: 1rem;
        bottom: -2rem;
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
    }
    
    .env-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .env-image {
        height: 350px;
    }
    
    .hero-content {
        padding: 0 2rem;
    }
    
    .scroll-indicator {
        left: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid .room-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity {
        justify-content: center;
        text-align: center;
    }
    
    .about-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-col {
        padding: 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-side {
        right: 0;
        width: 70%;
    }
    
    .experiences-gallery {
        min-height: 300px;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-brand {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
}
