*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum: #6B215C;
    --plum-deep: #4A1540;
    --plum-light: #8B3A70;
    --plum-muted: #A8558A;
    --amber: #E8A020;
    --amber-light: #F5C060;
    --amber-dark: #C4820A;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --charcoal: #1A1A2E;
    --charcoal-light: #2D2D44;
    --white: #FFFFFF;
    --gray-100: #F7F7F8;
    --gray-200: #E8E8EC;
    --gray-300: #D1D1DB;
    --gray-500: #6B6B80;
    --gray-700: #3A3A4D;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(107, 33, 92, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 33, 92, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 33, 92, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    font-weight: 800;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 33, 92, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--plum);
    letter-spacing: 0.02em;
}

.nav__logo-icon {
    font-size: 1.5rem;
    color: var(--amber);
    line-height: 1;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--plum);
    background: rgba(107, 33, 92, 0.06);
}

.nav__link--cta {
    background: var(--plum);
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 8px;
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

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

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-menu__link {
    padding: 14px 32px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--plum);
    background: rgba(107, 33, 92, 0.06);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    background: var(--plum);
    color: var(--white) !important;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 33, 92, 0.3);
}

.btn--primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 33, 92, 0.4);
}

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

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

.btn--light {
    background: var(--white);
    color: var(--plum);
}

.btn--light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

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

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-dark);
    background: rgba(232, 160, 32, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-title-accent {
    color: var(--plum);
    position: relative;
}

.section-title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--amber);
    border-radius: 3px;
    opacity: 0.6;
}

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

.section-title--light::after {
    background: var(--amber-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.7;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--plum);
    top: -200px;
    right: -100px;
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--amber);
    bottom: 10%;
    left: -80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero__shape--3 {
    width: 150px;
    height: 150px;
    background: var(--plum-light);
    top: 30%;
    left: 40%;
    border-radius: 20%;
    transform: rotate(45deg);
    opacity: 0.06;
}

.hero__shape--4 {
    width: 80px;
    height: 80px;
    background: var(--amber);
    top: 20%;
    right: 30%;
    border-radius: 12px;
    transform: rotate(30deg);
    opacity: 0.15;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--plum);
    background: rgba(107, 33, 92, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    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-size: clamp(2.8rem, 5.5vw, 4.5rem);
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero__headline-accent {
    display: block;
    color: var(--plum);
    position: relative;
}

.hero__headline-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--amber);
    border-radius: 4px;
    opacity: 0.5;
    z-index: -1;
}

.hero__subheadline {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

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

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

.hero__stat-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Image Column */
.hero__image-col {
    position: relative;
    height: 620px;
}

.hero__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

.hero__image-float {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

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

.hero__image-float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--plum);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum-light));
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.service-card {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(107, 33, 92, 0.1);
    background: var(--white);
}

.service-card--featured {
    background: var(--plum);
    color: var(--white);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__desc,
.service-card--featured .service-card__features li {
    color: var(--white);
}

.service-card--featured .service-card__features li::before {
    color: var(--amber-light);
}

.service-card--featured:hover {
    background: var(--plum-deep);
    border-color: transparent;
}

.service-card__geo {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.1;
}

.service-card--featured .service-card__geo {
    background: var(--white);
    opacity: 0.1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(107, 33, 92, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card--featured .service-card__icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--amber-light);
}

.service-card:hover .service-card__icon {
    background: var(--plum);
    color: var(--white);
    transform: scale(1.05);
}

.service-card--featured:hover .service-card__icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card__title {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__features li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--plum);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: var(--plum);
    border-radius: 50%;
    opacity: 0.04;
}

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

.about__image-stack {
    position: relative;
    height: 580px;
}

.about__image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--cream);
}

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

.about__image-badge {
    position: absolute;
    top: 55%;
    right: 10%;
    background: var(--amber);
    color: var(--charcoal);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 2;
}

.about__image-badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about__image-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.3;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.about__highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(107, 33, 92, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}

.about__highlight strong {
    display: block;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.about__highlight span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery__header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 33, 92, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.gallery__item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 420px;
}

.gallery__item--wide {
    grid-column: span 7;
    min-height: 200px;
}

.gallery__item:not(.--large):not(.--wide) {
    min-height: 200px;
}

/* ========== VISIT / CTA ========== */
.visit {
    padding: 100px 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

.visit__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.visit__shape {
    position: absolute;
    border-radius: 50%;
}

.visit__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    top: -150px;
    right: -100px;
    opacity: 0.08;
}

.visit__shape--2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: -60px;
    left: 10%;
    opacity: 0.05;
}

.visit__shape--3 {
    width: 100px;
    height: 100px;
    background: var(--amber-light);
    top: 20%;
    left: 30%;
    border-radius: 20%;
    transform: rotate(45deg);
    opacity: 0.06;
}

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

.visit__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.visit__info-item {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.visit__info-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.visit__info-icon {
    width: 44px;
    height: 44px;
    background: var(--amber);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.visit__info-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.visit__info-item span,
.visit__info-item a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.visit__info-item a:hover {
    color: var(--amber-light);
}

/* Form */
.visit__form-side {
    position: relative;
}

.visit__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.visit__form-title {
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.visit__form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--gray-100);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107, 33, 92, 0.08);
}

.form-input::placeholder {
    color: var(--gray-300);
}

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

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

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

.form-success__icon {
    width: 64px;
    height: 64px;
    background: var(--plum);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.form-success p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== MAP SECTION ========== */
.map-section {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 33, 92, 0.6), rgba(74, 21, 64, 0.8));
    display: flex;
    align-items: center;
}

.map-section__content {
    width: 100%;
}

.map-section__title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.map-section__info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-icon {
    font-size: 1.4rem;
    color: var(--amber);
}

.footer__brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 16px;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer__links li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.footer__contact li svg {
    min-width: 16px;
    margin-top: 3px;
    color: var(--amber);
}

.footer__contact li a:hover {
    color: var(--amber-light);
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__image-col {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .about__image-stack {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .nav__toggle {
        display: flex;
    }

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

    .hero__inner {
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-col {
        height: 380px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--large {
        min-height: 280px;
    }

    .visit__info-grid {
        grid-template-columns: 1fr;
    }

    .visit__form-card {
        padding: 28px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__headline {
        font-size: 2.2rem;
    }

    .hero__image-col {
        height: 300px;
    }

    .hero__image-float {
        display: none;
    }

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

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

    .services, .about, .gallery, .visit {
        padding: 70px 0;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }

    .about__image-stack {
        height: 350px;
    }
}
