/* ============================================
   Artistic Underground — Stylesheet
   Classic & Elegant | Burgundy + Blush
   ============================================ */

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

:root {
    --burgundy: #722F37;
    --burgundy-deep: #5A252C;
    --burgundy-light: #8B3A42;
    --blush: #F5E6E0;
    --blush-light: #FBF4F1;
    --blush-mid: #F0D5CC;
    --cream: #FDF8F5;
    --warm-white: #FEFAF8;
    --charcoal: #2C2424;
    --dark-text: #1E1616;
    --mid-text: #4A3838;
    --light-text: #7A6060;
    --gold: #B8860B;
    --gold-light: #D4A843;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Raleway', 'Segoe UI', sans-serif;

    --nav-height: 80px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* ---------- Section Common ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--burgundy);
}

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

.section-label-light::before {
    background: var(--blush-mid);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark-text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

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

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--light-text);
    max-width: 520px;
    line-height: 1.8;
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.25);
}

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

.btn-ghost:hover {
    background: var(--burgundy);
    color: var(--warm-white);
    transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 248, 245, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(114, 47, 55, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--warm-white);
    border: 1px solid rgba(253, 248, 245, 0.4);
    padding: 6px 10px;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.navbar.scrolled .logo-mark {
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--warm-white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--dark-text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 248, 245, 0.85);
    transition: var(--transition);
    position: relative;
}

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

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

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

.navbar.scrolled .nav-link {
    color: var(--mid-text);
}

.navbar.scrolled .nav-link:hover {
    color: var(--burgundy);
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--burgundy);
    padding: 10px 24px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
}

.navbar.scrolled .nav-cta {
    color: var(--warm-white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 14px;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--warm-white);
    transition: var(--transition);
}

.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }

.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--dark-text);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(253,248,245,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253,248,245,0.2) 0%, transparent 40%);
}

.hero-deco-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(253, 248, 245, 0.05);
    border-radius: 50%;
    right: -200px;
    top: -100px;
    pointer-events: none;
}

.hero-deco-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(253,248,245,0.15), transparent);
    left: 60px;
    bottom: 120px;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--blush-mid);
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush-mid);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--warm-white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.title-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--blush);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 300;
    color: rgba(253, 248, 245, 0.7);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 40px;
}

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

.hero-actions .btn-ghost {
    color: var(--blush);
    border-color: rgba(253, 248, 245, 0.3);
}

.hero-actions .btn-ghost:hover {
    background: var(--warm-white);
    color: var(--burgundy);
    border-color: var(--warm-white);
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(253, 248, 245, 0.55);
    letter-spacing: 0.03em;
}

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

.hero-img {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

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

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

.hero-img-secondary {
    width: 260px;
    height: 340px;
    bottom: 40px;
    right: 140px;
    z-index: 3;
    border: 4px solid var(--burgundy);
}

.hero-img-accent {
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 0;
    z-index: 4;
    border: 3px solid rgba(253, 248, 245, 0.2);
    border-radius: 50%;
    overflow: hidden;
}

.hero-img-accent img {
    border-radius: 50%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 245, 0.4);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
}

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

.service-card {
    background: var(--warm-white);
    padding: 48px 36px;
    border: 1px solid rgba(114, 47, 55, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(114, 47, 55, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blush-mid);
    color: var(--burgundy);
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--burgundy);
    color: var(--warm-white);
    border-color: var(--burgundy);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--light-text);
    line-height: 1.8;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--warm-white);
    overflow: hidden;
}

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

.about-images {
    position: relative;
    height: 650px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    border: 6px solid var(--warm-white);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--burgundy);
    color: var(--warm-white);
    padding: 32px 40px;
    text-align: center;
    z-index: 2;
}

.about-experience .exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 4px;
    color: var(--blush);
}

.about-experience .exp-text {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 248, 245, 0.7);
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--mid-text);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--mid-text);
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--burgundy);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-content .btn {
    margin-top: 8px;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0 80px;
    background: var(--cream);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(114, 47, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--warm-white);
    font-style: italic;
    letter-spacing: 0.05em;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-lg {
    grid-column: span 5;
}

.gallery-item:not(.gallery-item-lg) {
    grid-column: span 3.5;
}

/* ---------- Visit ---------- */
.visit {
    padding: 120px 0;
    background: var(--burgundy-deep);
    position: relative;
    overflow: hidden;
}

.visit-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(253,248,245,0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(253,248,245,0.3) 0%, transparent 40%);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.visit-content {
    padding: 20px 0;
}

.visit-intro {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(253, 248, 245, 0.65);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 440px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: rgba(253, 248, 245, 0.05);
    border: 1px solid rgba(253, 248, 245, 0.08);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(253, 248, 245, 0.08);
    border-color: rgba(253, 248, 245, 0.15);
    transform: translateX(6px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(253, 248, 245, 0.15);
    color: var(--blush-mid);
    flex-shrink: 0;
}

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

.contact-label {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 248, 245, 0.4);
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--warm-white);
    line-height: 1.5;
}

.visit-map {
    min-height: 400px;
    border: 1px solid rgba(253, 248, 245, 0.08);
    overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(253, 248, 245, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm-white);
    border: 1px solid rgba(253, 248, 245, 0.2);
    display: inline-block;
    padding: 8px 14px;
    width: fit-content;
    letter-spacing: 0.05em;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--warm-white);
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(253, 248, 245, 0.4);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(253, 248, 245, 0.5);
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.footer-links a:hover {
    color: var(--blush-mid);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(253, 248, 245, 0.4);
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: rgba(253, 248, 245, 0.25);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(253, 248, 245, 0.25);
    letter-spacing: 0.03em;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--burgundy-deep);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--warm-white);
    padding: 8px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--warm-white);
    padding: 12px 24px;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--blush);
}

.mobile-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blush-mid);
    border: 1px solid rgba(253, 248, 245, 0.2);
    padding: 14px 32px;
    transition: var(--transition);
}

.mobile-cta:hover {
    background: var(--warm-white);
    color: var(--burgundy);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

    .hero-right {
        display: none;
    }

    .hero-container {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-details {
        align-items: center;
    }

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

    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .gallery-item-lg {
        grid-column: span 1;
    }

    .gallery-item:not(.gallery-item-lg) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 260px;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-container {
        padding: 100px 24px 100px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 36px 28px;
    }

    .about {
        padding: 80px 0;
    }

    .about-images {
        height: 380px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery {
        padding: 80px 0 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 240px;
    }

    .visit {
        padding: 80px 0;
    }

    .contact-card {
        padding: 20px 24px;
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .section-header {
        margin-bottom: 48px;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-indicator {
        animation: none;
    }
}
