/* ==========================================================================
   Yasunari Salon Masażu & SPA - Modern & Minimalist CSS Design System
   Inspired by yasumi.pl - Elegance, Clarity, Premium Aesthetics
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Color Palette */
    --color-primary: #8a171c;        /* Elegant Deep Crimson / Burgundy */
    --color-primary-hover: #6c0e12;  /* Darker Crimson for interaction */
    --color-primary-light: #fdf5f5;  /* Soft Pink/Cream for backgrounds */
    --color-primary-muted: #c38b8e;  /* Muted Rose for borders/accents */
    
    --color-dark: #1c1816;           /* Premium Charcoal Black */
    --color-text: #443e3b;           /* Dark Brown-Grey for readable body */
    --color-text-muted: #7c726e;     /* Muted Earthy Grey for secondary text */
    
    --color-bg: #faf7f4;             /* Soft Sand/Cream Background */
    --color-bg-white: #ffffff;       /* Pure White for cards and elements */
    --color-border: #eae2dc;         /* Warm grey border */
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Effects & Transitions */
    --shadow-sm: 0 2px 8px rgba(28, 24, 22, 0.04);
    --shadow-md: 0 10px 30px rgba(28, 24, 22, 0.06);
    --shadow-lg: 0 20px 40px rgba(28, 24, 22, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
    --border-radius-sm: 6px;
    
    /* Layout Constants */
    --header-height: 80px;
    --header-shrink-height: 70px;
    --container-width: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.625;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

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

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

/* --- Layout Components --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

/* --- Reusable Components (Buttons, Tags, Typography) --- */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

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

/* Elegant Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 23, 28, 0.15);
}

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

.btn-secondary:hover {
    background-color: var(--color-bg-white);
    border-color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary-muted);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
}

.btn-text {
    padding: 0;
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 1px dashed var(--color-primary);
    border-radius: 0;
}

.btn-text:hover {
    color: var(--color-primary-hover);
    border-bottom-style: solid;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: var(--transition);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* --- Header / Navigation Styles --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

/* Sticky Class triggered by JS */
.main-header.is-sticky {
    height: var(--header-shrink-height);
    background-color: rgba(250, 247, 244, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-bg-white); /* Jasny kolor domyślnie na ciemnym tle Hero */
    line-height: 1.1;
    transition: var(--transition);
}

.logo-sub {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: rgba(250, 247, 244, 0.75); /* Jasny kolor domyślnie na ciemnym tle Hero */
    margin-top: 2px;
    transition: var(--transition);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-bg-white); /* Jasne linki domyślnie na ciemnym tle Hero */
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-bg-white);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--color-primary-muted);
}

.desktop-nav a:hover::after {
    width: 100%;
    background-color: var(--color-primary-muted);
}

.btn-nav-cta {
    padding: 10px 20px;
    font-size: 13px;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-bg-white); /* Jasne linie domyślnie na ciemnym tle Hero */
    transition: var(--transition);
}

/* Nadpisanie stylów dla stanu Sticky oraz aktywnego menu mobilnego */
.main-header.is-sticky .logo-main {
    color: var(--color-dark);
}

.main-header.is-sticky .logo-sub {
    color: var(--color-text-muted);
}

.main-header.is-sticky .desktop-nav a {
    color: var(--color-text);
}

.main-header.is-sticky .desktop-nav a::after {
    background-color: var(--color-primary);
}

.main-header.is-sticky .desktop-nav a:hover {
    color: var(--color-primary);
}

.main-header.is-sticky .desktop-nav a:hover::after {
    width: 100%;
    background-color: var(--color-primary);
}

.main-header.is-sticky .hamburger-line {
    background-color: var(--color-dark);
}

/* Wymuszenie ciemnego hamburgera, gdy menu mobilne jest otwarte */
.menu-toggle.is-active .hamburger-line {
    background-color: var(--color-dark) !important;
}

@media (max-width: 991px) {
    .desktop-nav, .btn-nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: var(--transition);
    opacity: 0;
}

.mobile-nav-overlay.is-active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav {
    text-align: center;
    width: 100%;
    padding: 40px;
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-nav li {
    margin-bottom: 24px;
}

.mobile-nav ul a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-dark);
}

.mobile-nav ul a:hover {
    color: var(--color-primary);
}

.btn-mobile-cta {
    display: inline-flex;
    width: 80%;
    max-width: 300px;
}

/* Hamburger active state */
.menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* --- Hero Section Styles --- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0;
    color: var(--color-bg-white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 24, 22, 0.8) 0%, rgba(28, 24, 22, 0.4) 60%, rgba(28, 24, 22, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary-muted);
    margin-bottom: 20px;
    animation: fadeInDown 1s var(--transition);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 1s var(--transition) 0.2s both;
}

.hero-description {
    font-size: 17px;
    font-weight: 300;
    color: rgba(250, 247, 244, 0.85);
    margin-bottom: 40px;
    line-height: 1.65;
    animation: fadeInUp 1s var(--transition) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--transition) 0.6s both;
}

.hero-actions .btn-secondary {
    border-color: rgba(250, 247, 244, 0.4);
    color: var(--color-bg-white);
}

.hero-actions .btn-secondary:hover {
    border-color: var(--color-bg-white);
    background-color: rgba(250, 247, 244, 0.1);
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-down a {
    display: block;
    width: 24px;
    height: 40px;
    border: 1.5px solid rgba(250, 247, 244, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    display: block;
    width: 4px;
    height: 8px;
    background-color: var(--color-primary-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.8s infinite ease-in-out;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}


/* --- About Us Section Styles --- */
.about-section {
    background-color: var(--color-bg);
}

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

.about-lead {
    font-size: 19px;
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-body {
    color: var(--color-text);
    margin-bottom: 40px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    gap: 20px;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Image frame with offset border */
.about-image-column {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.image-decorative-box {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-primary-muted);
    border-radius: var(--border-radius);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-column {
        order: -1; /* Image first on mobile */
    }
    
    .about-img {
        height: 380px;
    }
    
    .image-decorative-box {
        right: -15px;
        top: 15px;
    }
}


/* --- Gift Vouchers Section Styles --- */
.vouchers-section {
    background-color: var(--color-primary-light);
}

.voucher-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.voucher-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.voucher-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voucher-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.voucher-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.voucher-description {
    color: var(--color-text);
    margin-bottom: 30px;
    font-size: 15px;
}

.voucher-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.voucher-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}

.voucher-check {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.voucher-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Gift Card Graphic Mockup */
.voucher-visual {
    background: linear-gradient(135deg, #4c1113 0%, #29080a 100%); /* Elegant deep burgundy/wine, no black */
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.voucher-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(195, 139, 142, 0.3) 0%, transparent 70%); /* Soft rose-gold glow */
    pointer-events: none;
}

.voucher-mockup {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1.58 / 1; /* Standard credit/gift card aspect ratio */
    background: linear-gradient(135deg, #f2d4d6 0%, #dca0a5 100%); /* Sophisticated dusty rose/pink card */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg), 0 10px 40px rgba(138, 23, 28, 0.15);
    position: relative;
}

.voucher-mockup-inner {
    border: 1px solid rgba(92, 15, 18, 0.15); /* Muted burgundy inner border */
    height: 100%;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.voucher-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #5c0f12; /* Deep wine red for readable branding */
    text-align: center;
}

.voucher-label {
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #8c5256; /* Soft rose-brown for the label */
    margin-top: 15px;
}

.voucher-benefit {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: #2c0507; /* Very dark burgundy/brown for maximum readability */
    text-align: center;
}

.voucher-footer {
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(92, 15, 18, 0.7); /* Readable secondary text */
    text-align: center;
}

@media (max-width: 991px) {
    .voucher-card {
        grid-template-columns: 1fr;
    }
    
    .voucher-content {
        padding: 40px 24px;
    }
    
    .voucher-visual {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .voucher-visual {
        padding: 35px 12px; /* Less outer padding, allowing the card to stretch wider */
    }
    
    .voucher-mockup {
        padding: 16px; /* Less inner padding of the card wrapper */
    }
    
    .voucher-mockup-inner {
        padding: 12px; /* Less inner padding of the content wrapper */
    }
    
    .voucher-logo {
        font-size: 0.95rem; /* Scale down main branding */
    }
    
    .voucher-label {
        margin-top: 8px; /* Less margin */
        font-size: 8px; /* Smaller label text */
    }
    
    .voucher-benefit {
        font-size: 1.05rem; /* Scale down to prevent text from wrapping excessively and overflowing */
    }
    
    .voucher-footer {
        font-size: 7px; /* Smaller footer text */
    }
}


/* --- Offer / Cennik Section Styles --- */
.offer-section {
    background-color: var(--color-bg-white);
}

.offer-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.offer-lead {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* Tabs Design */
.offer-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--color-dark);
    border-color: var(--color-text-muted);
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(138, 23, 28, 0.2);
}

/* Tabs Content Switching */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: var(--color-bg-white);
    border-color: var(--color-primary-muted);
    box-shadow: var(--shadow-md);
}

.service-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.service-duration {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-duration::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary-muted);
}

.service-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 12px;
}

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

.service-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price-box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.price-val {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.price-item.for-two .price-val {
    color: var(--color-dark);
}

.service-cta {
    width: 100%;
    text-align: center;
}

/* Premium Card Layout (with image) */
.service-card.premium-card {
    grid-column: span 1;
}

.service-img-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Contact & Map Section Styles --- */
.contact-section {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.contact-lead {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--color-text-muted);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-text h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 16px;
    color: var(--color-dark);
}

.contact-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Locations Column */
.locations-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.locations-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

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

.location-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover {
    border-color: var(--color-primary-muted);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.location-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card-icon svg {
    width: 20px;
    height: 20px;
}

.location-card-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.location-card-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.map-link-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-cta-box {
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px dashed var(--color-primary-muted);
}

.contact-cta-box p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* --- Footer Styles --- */
.main-footer {
    background-image: linear-gradient(rgba(28, 24, 22, 0.94), rgba(28, 24, 22, 0.94)), url('assets/images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ded6d2;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(229, 215, 203, 0.1);
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(229, 215, 203, 0.6);
    margin-top: 16px;
    max-width: 320px;
}

.footer-logo {
    color: var(--color-bg-white);
}

.footer-logo .logo-main {
    color: var(--color-bg-white);
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(229, 215, 203, 0.8);
}

.footer-links a:hover {
    color: var(--color-bg-white);
    padding-left: 4px;
}

.footer-bottom {
    grid-column: span 2;
    padding-top: 40px;
    border-top: 1px solid rgba(229, 215, 203, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: rgba(229, 215, 203, 0.5);
}

.designer-credit {
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
}


/* --- Keyframe Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollAnimation {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(-50%, 14px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ==========================================================================
   Active Nav Link (Scroll Spy Styles)
   ========================================================================== */
.desktop-nav a.active {
    color: var(--color-primary-muted);
}

.desktop-nav a.active::after {
    width: 100%;
    background-color: var(--color-primary-muted);
}

/* Sticky state active nav link override */
.main-header.is-sticky .desktop-nav a.active {
    color: var(--color-primary);
}

.main-header.is-sticky .desktop-nav a.active::after {
    width: 100%;
    background-color: var(--color-primary);
}

