/* ===== CSS Custom Properties ===== */
:root {
    --plum: #7B2D3B;
    --plum-deep: #5A1F2B;
    --plum-light: #A84458;
    --plum-pale: #F5E6E8;
    --amber: #E8A020;
    --amber-light: #F5C060;
    --amber-pale: #FFF8E8;
    --cream: #FFFAF5;
    --warm-white: #FFFDF9;
    --dark: #1A0A0E;
    --dark-soft: #2D1520;
    --text: #3D1F2A;
    --text-light: #7A5560;
    --text-muted: #A88090;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
    --shadow-md: 0 8px 32px rgba(123, 45, 59, 0.12);
    --shadow-lg: 0 16px 64px rgba(123, 45, 59, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--dark);
}

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

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

ul {
    list-style: none;
}

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

/* ===== Geometric Background Shapes ===== */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.04;
}

.shape--circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--plum);
    top: -200px;
    right: -150px;
}

.shape--circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--amber);
    bottom: 10%;
    left: -100px;
}

.shape--triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid var(--plum);
    top: 40%;
    right: -50px;
    transform: rotate(15deg);
}

.shape--square {
    width: 200px;
    height: 200px;
    background: var(--amber);
    top: 60%;
    left: 5%;
    transform: rotate(45deg);
}

.shape--dot-group {
    display: grid;
    grid-template-columns: repeat(3, 12px);
    gap: 16px;
    top: 75%;
    right: 8%;
}

.shape--dot-group span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--plum);
}

.shape--dot-group span:nth-child(even) {
    background: var(--amber);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text em {
    color: var(--plum);
    font-style: italic;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--plum-pale);
    color: var(--plum);
}

.nav-cta {
    background: var(--plum);
    color: white !important;
    font-weight: 600;
}

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

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    transition: var(--transition);
}

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

.mobile-nav-cta {
    font-size: 1.2rem !important;
    background: var(--amber);
    color: var(--dark) !important;
    padding: 12px 32px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 10, 14, 0.85) 0%,
        rgba(123, 45, 59, 0.7) 50%,
        rgba(26, 10, 14, 0.8) 100%
    );
}

.hero-geometric {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.geo-accent {
    position: absolute;
}

.geo-accent--top-right {
    width: 400px;
    height: 400px;
    border: 3px solid var(--amber);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.geo-accent--bottom-left {
    width: 250px;
    height: 250px;
    background: var(--plum);
    border-radius: 50%;
    bottom: -50px;
    left: 5%;
    opacity: 0.4;
}

.geo-accent--stripe {
    width: 300px;
    height: 6px;
    background: linear-gradient(90deg, var(--amber), transparent);
    bottom: 30%;
    right: -50px;
    transform: rotate(-30deg);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.4);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.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-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: white;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-title .text-plum {
    color: var(--plum-light);
    display: block;
}

.hero-title .text-amber {
    color: var(--amber);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

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

.stat-number {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--amber);
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--amber);
    color: var(--dark);
    border-color: var(--amber);
}

.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 160, 32, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

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

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

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 12px;
}

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

.section-title .text-plum {
    color: var(--plum);
}

.section-title .text-amber {
    color: var(--amber);
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    border-radius: 2px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(123, 45, 59, 0.06);
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--plum);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card.card-plum::before {
    background: var(--plum);
}

.service-card.card-amber::before {
    background: var(--amber);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
}

.service-card.card-amber .service-icon {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--plum);
}

.service-card.card-amber .service-accent {
    background: var(--amber);
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-block {
    position: absolute;
    border-radius: var(--radius-xl);
}

.geo-block--plum {
    width: 300px;
    height: 300px;
    background: var(--plum);
    opacity: 0.05;
    top: -50px;
    left: -80px;
    transform: rotate(15deg);
}

.geo-block--amber {
    width: 200px;
    height: 200px;
    background: var(--amber);
    opacity: 0.06;
    bottom: 10%;
    right: 5%;
    transform: rotate(-10deg);
}

.geo-dots {
    position: absolute;
    top: 20%;
    right: 15%;
    display: grid;
    grid-template-columns: repeat(4, 10px);
    gap: 12px;
}

.geo-dots::before,
.geo-dots::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--plum);
    opacity: 0.15;
}

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

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

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

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

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--amber);
    border-radius: var(--radius-xl);
    z-index: -1;
}

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

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

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--plum-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 14, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item--wide {
    grid-column: 6 / 13;
    grid-row: 2 / 3;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 4;
    grid-row: 1 / 2;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide):nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide):nth-child(5) {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
}

/* ===== Quote Section ===== */
.quote-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

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

.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--plum-deep), var(--plum));
    opacity: 0.92;
}

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

.quote-icon {
    color: var(--amber);
    margin-bottom: 24px;
}

.quote-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
}

.quote-divider {
    width: 60px;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.quote-attr {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ===== Visit Section ===== */
.visit {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.visit-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.geo-circle--1 {
    width: 350px;
    height: 350px;
    border: 3px solid var(--plum);
    opacity: 0.06;
    top: -100px;
    right: -100px;
}

.geo-circle--2 {
    width: 200px;
    height: 200px;
    background: var(--amber);
    opacity: 0.05;
    bottom: 5%;
    left: 3%;
}

.geo-stripe {
    position: absolute;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--plum), transparent);
    top: 30%;
    left: 0;
    opacity: 0.1;
}

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

.visit-info .section-tag {
    text-align: left;
}

.visit-info .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.contact-card-arrow {
    color: var(--text-muted);
    transition: var(--transition);
}

.contact-card:hover .contact-card-arrow {
    color: var(--plum);
    transform: translateX(4px);
}

.hours-box {
    background: var(--plum-pale);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}

.hours-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--plum);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
    font-size: 0.95rem;
}

.hours-row:last-of-type {
    border-bottom: none;
}

.hours-closed span:last-child {
    color: var(--plum-light);
    font-weight: 600;
}

.hours-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.visit-map {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

/* ===== CTA Section ===== */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

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

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

.cta-geo--1 {
    width: 500px;
    height: 500px;
    background: var(--plum);
    opacity: 0.15;
    top: -200px;
    left: -150px;
}

.cta-geo--2 {
    width: 300px;
    height: 300px;
    background: var(--amber);
    opacity: 0.1;
    bottom: -100px;
    right: -50px;
}

.cta-geo--3 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--amber);
    opacity: 0.2;
    top: 20%;
    right: 15%;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: white;
    margin-bottom: 20px;
}

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

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

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

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

.footer-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--plum);
    opacity: 0.05;
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.footer-shape--2 {
    width: 200px;
    height: 200px;
    background: var(--amber);
    opacity: 0.04;
    bottom: 0;
    left: 10%;
    border-radius: var(--radius-xl);
    transform: rotate(30deg);
}

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

.logo--light {
    color: white;
    margin-bottom: 16px;
    display: inline-flex;
}

.logo--light .logo-icon {
    background: var(--amber);
    color: var(--dark);
}

.logo--light .logo-text em {
    color: var(--amber);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--amber);
}

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

.footer-bottom p:last-child {
    color: rgba(255, 255, 255, 0.25);
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 220px);
    }
    
    .gallery-item--large {
        grid-column: 1 / 7;
        grid-row: 1 / 2;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 3;
        grid-row: 2 / 3;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide):nth-child(4) {
        grid-column: 1 / 4;
        grid-row: 3 / 4;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide):nth-child(5) {
        grid-column: 4 / 7;
        grid-row: 3 / 4;
    }
    
    .gallery-item--wide {
        grid-column: 1 / 7;
        grid-row: 2 / 3;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 400px;
        order: -1;
    }
    
    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large,
    .gallery-item--wide,
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 1;
        grid-row: auto;
        height: 220px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
