:root {
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-playfair: 'Playfair Display', serif;
    
    /* Timeless Corporate Palette */
    --color-espresso: #3d2817;          /* Rich espresso brown */
    --color-dark-chocolate: #2c1810;     /* Deep chocolate */
    --color-warm-ivory: #fefcf8;        /* Consistent warm ivory */
    --color-warm-gray: #8b8680;         /* Warm gray accent */
    --color-pewter: #a39e98;            /* Soft pewter */
    --color-light-taupe: #d4cfc7;       /* Light taupe for borders */
    
    /* Applied Colors */
    --color-text-dark: var(--color-dark-chocolate);
    --color-text-medium: var(--color-warm-gray);
    --color-accent: var(--color-espresso);
    --color-background: var(--color-warm-ivory);
    --color-background-alt: #faf8f4;    /* Slightly darker ivory */
}

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

body {
    font-family: var(--font-serif);
    color: var(--color-text-dark);
    background-color: var(--color-warm-ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

.font-sans { font-family: var(--font-sans); }
.font-serif { font-family: var(--font-serif); }
.font-playfair { font-family: var(--font-playfair); }

/* Navigation Styles */
#main-header {
    background-color: var(--color-warm-ivory);
    border-bottom: 1px solid var(--color-light-taupe);
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
    color: var(--color-warm-gray);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-espresso);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

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

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-link.active {
    color: var(--color-dark-chocolate);
}

/* Button Styling */
.btn {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-dark {
    background-color: var(--color-espresso);
    color: var(--color-warm-ivory);
}

.btn-dark:hover {
    background-color: var(--color-dark-chocolate);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(61, 40, 23, 0.2);
}

/* Hero Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.2s; }
.fade-in-up.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Desktop hero image positioning - stretch vertically to show full heads */
@media (min-width: 769px) {
    .hero-slide img {
        object-fit: cover;
        object-position: top;
        height: 120% !important;
        width: 100%;
    }
}

/* Mobile hero image positioning - keep right alignment */
@media (max-width: 768px) {
    .hero-slide img {
        object-position: right bottom !important;
    }
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

.hero-text-part-one {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    z-index: 2;
    position: relative;
}

.hero-text-part-two {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    z-index: 2;
    position: relative;
}

.hero-image {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    position: relative;
    z-index: 3;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(61, 40, 23, 0.1);
    transform: translateX(2rem);
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 4rem 2rem;
    background-color: var(--color-background-alt);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-espresso);
    font-style: italic;
    margin-bottom: 1rem;
}

.portfolio-description {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
    font-style: italic;
}

.portfolio-mission {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
}

.portfolio-mission .highlight {
    color: var(--color-espresso);
    font-style: italic;
    font-weight: 500;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 5px;
    transition: .3s;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1440px) {
    .gallery {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery:hover .gallery__image {
    filter: grayscale(100%);
}

.gallery__thumb {
    overflow: hidden;
    height: 400px;
    max-height: 400px;
    position: relative;
}

.gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.gallery__image:hover {
    transform: scale(1.1);
    filter: grayscale(0%) !important;
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: 'Helvetica', sans-serif;
    font-size: 14px;
    color: white;
    opacity: 0 !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: .3s;
}


/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--color-warm-ivory);
    position: relative;
}

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

.services-image {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.services-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(61, 40, 23, 0.1);
    position: relative;
    z-index: 1;
}

.services-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 19px;
    background: linear-gradient(45deg, 
        var(--color-light-taupe) 0%,
        var(--color-pewter) 25%,
        var(--color-warm-gray) 50%,
        var(--color-pewter) 75%,
        var(--color-light-taupe) 100%);
    background-size: 400% 400%;
    z-index: 0;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% { background-position: 14% 0%; }
    50% { background-position: 87% 100%; }
    100% { background-position: 14% 0%; }
}

.services-text {
    display: grid;
    gap: 24px;
}

.service-item {
    background: linear-gradient(
        to bottom,
        rgba(254, 252, 248, 0.95) 0%,
        rgba(254, 252, 248, 0.8) 100%
    );
    backdrop-filter: blur(20px);
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(212, 207, 199, 0.3);
    border-bottom: 1px solid rgba(212, 207, 199, 0.3);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -6px 12px rgba(61, 40, 23, 0.05),
                0 6px 12px rgba(61, 40, 23, 0.05);
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 207, 199, 0.3), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.service-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-item:nth-child(1) { transition-delay: 0.2s; }
.service-item:nth-child(2) { transition-delay: 0.3s; }
.service-item:nth-child(3) { transition-delay: 0.4s; }
.service-item:nth-child(4) { transition-delay: 0.5s; }

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(61, 40, 23, 0.08);
}

.service-name {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-espresso);
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.service-name:hover {
    color: var(--color-dark-chocolate);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--color-warm-ivory);
    padding: 100px 0;
    border-top: 1px solid var(--color-light-taupe);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-espresso);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.contact-form {
    background: var(--color-background-alt);
    border: 1px solid var(--color-light-taupe);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(61, 40, 23, 0.08);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, 
        rgba(212, 207, 199, 0.3) 0%,
        transparent 25%,
        transparent 75%,
        rgba(212, 207, 199, 0.3) 100%);
    z-index: -1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 30px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-espresso);
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    margin-top: 8px;
    border: 1px solid var(--color-light-taupe);
    border-radius: 10px;
    background-color: var(--color-warm-ivory);
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(61, 40, 23, 0.02);
}

.form-input:focus {
    border-color: var(--color-espresso);
    box-shadow: 0 0 0 3px rgba(61, 40, 23, 0.15), 0 4px 12px rgba(61, 40, 23, 0.08);
    outline: none;
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: var(--color-pewter);
    font-style: italic;
}

select.form-input {
    cursor: pointer;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit {
    margin-top: 20px;
    width: 100%;
    padding: 18px 40px;
    font-size: 1rem;
    letter-spacing: 1.5px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(61, 40, 23, 0.25);
}

/* Mobile Responsiveness for Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 0 20px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}

/* Partners Banner */
.partners-banner {
    background: linear-gradient(135deg, var(--color-background-alt) 0%, var(--color-warm-ivory) 100%);
    padding: 60px 0;
    border-top: 1px solid var(--color-light-taupe);
    border-bottom: 1px solid var(--color-light-taupe);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.partners-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-espresso);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    opacity: 0.7;
    filter: grayscale(100%) contrast(1.2) brightness(0.4);
    transition: all 0.3s ease;
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 0.9;
    filter: grayscale(90%) contrast(1.3) brightness(0.5);
    transform: translateY(-2px);
}

/* FAQ Styles */
.faq-section {
    padding: 100px 0;
    background-color: var(--color-warm-ivory);
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.faq-image-section {
    position: sticky;
    top: 100px;
}

.faq-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(61, 40, 23, 0.1);
    filter: grayscale(100%) contrast(1.2) brightness(0.7);
    transition: filter 0.3s ease;
}

.faq-hero-image:hover {
    filter: grayscale(80%) contrast(1.1) brightness(0.8);
}

.faq-content {
    padding-left: 40px;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-pewter);
    margin-bottom: 20px;
}

.current-question {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-dark-chocolate);
    line-height: 1.2;
    margin-bottom: 30px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.nav-button {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-pewter);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.nav-button:hover {
    color: var(--color-espresso);
}

.nav-button.active {
    color: var(--color-espresso);
}

.nav-separator {
    width: 1px;
    height: 20px;
    background-color: var(--color-light-taupe);
}

.current-answer {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-warm-gray);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: -0.2px;
}

.faq-navigation {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-light-taupe);
    background: var(--color-warm-ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--color-warm-gray);
}

.nav-arrow:hover {
    border-color: var(--color-espresso);
    background-color: var(--color-background-alt);
    transform: translateY(-2px);
    color: var(--color-espresso);
}

.nav-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow.disabled:hover {
    transform: none;
    border-color: var(--color-light-taupe);
    background-color: var(--color-warm-ivory);
    color: var(--color-warm-gray);
}

/* Testimonial Styles */
.testimonial-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 120px;
    position: relative;
    background: var(--color-background-alt);
}

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

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-espresso);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 0px;
    align-items: start;
}

.text-content {
    padding-right: 0px;
    padding-left: 120px;
    max-width: 550px;
}

.image-content {
    padding-right: 120px;
    padding-left: 0px;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: var(--color-dark-chocolate);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.quote-highlight {
    font-style: italic;
    color: var(--color-espresso);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-warm-gray);
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: -0.2px;
}

.testimonial-text em {
    font-style: italic;
    color: var(--color-espresso);
    font-weight: 400;
}

.testimonial-text strong {
    font-weight: 600;
    color: var(--color-dark-chocolate);
}

.client-info {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-pewter);
    font-weight: 500;
}

.testimonial-image {
    position: relative;
}

.image-frame {
    width: 100%;
    max-width: 450px;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(61, 40, 23, 0.1);
}

.testimonial-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-light-taupe);
    background: rgba(254, 252, 248, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav-arrow:hover {
    background: var(--color-warm-ivory);
    border-color: var(--color-espresso);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-arrow.prev {
    left: 60px;
}

.testimonial-nav-arrow.next {
    right: 60px;
}

.testimonial-nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-warm-gray);
    transition: stroke 0.3s ease;
}

.testimonial-nav-arrow:hover svg {
    stroke: var(--color-espresso);
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-light-taupe);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-espresso);
    transform: scale(1.2);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--color-background-alt) 0%, var(--color-warm-ivory) 100%);
    padding: 0;
    margin: 0;
}

.footer-hero-section {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 40, 23, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 134, 128, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: var(--color-espresso);
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.brand-credit {
    font-size: 0.75rem;
    color: var(--color-pewter);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.portfolio-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 60px 0;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.portfolio-image {
    width: 160px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(20%) contrast(1.1);
    box-shadow: 0 8px 30px rgba(61, 40, 23, 0.08);
}

.portfolio-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(61, 40, 23, 0.15);
    filter: grayscale(0%) contrast(1.2);
}

.main-footer {
    background: var(--color-warm-ivory);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--color-light-taupe);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

.left-section {
    text-align: left;
}

.photographer-intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.photographer-image {
    width: 120px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(61, 40, 23, 0.1);
    flex-shrink: 0;
}

.intro-text {
    flex: 1;
}

.intro-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-espresso);
    line-height: 1.6;
    margin-bottom: 20px;
}

.intro-quote .highlight {
    font-style: normal;
    font-weight: 600;
    color: var(--color-dark-chocolate);
}

.services-note {
    font-size: 0.9rem;
    color: var(--color-warm-gray);
    line-height: 1.5;
}

.brand-section {
    text-align: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.brand-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 4rem;
    color: var(--color-pewter);
    margin: -10px 0 15px;
    opacity: 0.7;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: var(--color-warm-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px;
}

.brand-description {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--color-warm-gray);
    line-height: 1.5;
    margin-bottom: 25px;
}

.service-areas {
    font-size: 0.7rem;
    color: var(--color-pewter);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 25px;
    white-space: nowrap;
}

.service-areas a:hover {
    color: var(--color-espresso) !important;
}

.contact-phone {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--color-espresso);
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1px;
}

.instagram-logo img:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-caption {
    color: white;
    font-size: 18px;
    margin-top: 15px;
    font-family: var(--font-serif);
    font-style: italic;
}

/* =========================
   Floating Text Us Button
   ========================= */
.text-us-bt {
    background: var(--color-espresso);
    border: 2px solid var(--color-espresso);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(42, 42, 42, 0.3);
    cursor: pointer;
    height: 68px;
    text-align: center;
    width: 68px;
    position: fixed;
    right: 8%;
    bottom: 18%;
    z-index: 999;
    transition: all 0.3s ease;
    animation: text-us-pulse 3s infinite;
}

.text-us-bt .text-call {
    height: 68px;
    width: 68px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.text-us-bt .text-call span {
    text-align: center;
    color: var(--color-espresso);
    opacity: 0;
    font-size: 0;
    position: absolute;
    left: 50%; /* Centering adjustment */
    top: 50%; /* Centering adjustment */
    transform: translate(-50%, -50%); /* Centering adjustment */
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s linear, font-size 0.3s linear;
    font-family: var(--font-sans);
    width: 100%; /* Ensure full width for centering */
}

.text-us-bt .text-call:hover span {
    opacity: 1;
    font-size: 11px;
}

.text-us-bt:hover i {
    display: none;
}

.text-us-bt:hover {
    z-index: 1000;
    background: #fff;
    border-color: var(--color-light-taupe);
    transform: scale(1.05);
}

.text-us-bt i {
    color: #fff;
    font-size: 29px;
    transition: all 0.3s ease;
    line-height: 66px;
    animation: icon-pulse 3s infinite;
}

@keyframes text-us-pulse {
    0% {
        box-shadow: 0 8px 20px rgba(42, 42, 42, 0.3), 0 0 0 0 rgba(42, 42, 42, 0.2), 0 0 0 0 rgba(42, 42, 42, 0.2);
    }
    40% {
        box-shadow: 0 8px 20px rgba(42, 42, 42, 0.3), 0 0 0 15px rgba(42, 42, 42, 0.2), 0 0 0 0 rgba(42, 42, 42, 0.2);
    }
    80% {
        box-shadow: 0 8px 20px rgba(42, 42, 42, 0.3), 0 0 0 30px rgba(42, 42, 42, 0), 0 0 0 26.7px rgba(42, 42, 42, 0.067);
    }
    100% {
        box-shadow: 0 8px 20px rgba(42, 42, 42, 0.3), 0 0 0 30px rgba(42, 42, 42, 0), 0 0 0 40px rgba(42, 42, 42, 0);
    }
}

@keyframes icon-pulse {
    0% { opacity: 0; }
    40% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Responsive Design */