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

/* CSS Variables for consistent colors */
:root {
  --color-warm-ivory: #faf9f7;
  --color-light-taupe: #e8e1d6;
  --color-warm-gray: #8b7355;
  --color-espresso: #5a5a5a;
  --color-dark-chocolate: #4a4a4a;
  --font-sans: 'Inter', sans-serif;
  --color-pewter: #a99485; 
}

/* Footer service area links */
.footer .service-areas a,
.footer .service-areas a:visited {
  color: var(--color-pewter);
  text-decoration: none;
}

/* optional */
.footer .service-areas a:hover,
.footer .service-areas a:focus {
  color: var(--color-espresso);
  text-decoration: none;
}


body {
    font-family: 'Georgia', serif;
    background-color: #f8f6f3;
    color: #5a5a5a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Styles */
#main-header {
    background-color: var(--color-warm-ivory);
    border-bottom: 1px solid var(--color-light-taupe);
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* show desktop links on ≥768px, hamburger on <768px */
.desktop-nav{display:none; gap:2rem;}
.mobile-toggle{display:block;}
@media (min-width:768px){
  .desktop-nav{display:flex;}
  .mobile-toggle{display:none;}
}

/* hide/show helper */
.hidden{display:none;}


/* 1) Reset the hamburger button so it's not a grey rounded square */
#mobile-menu-button{
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: .5rem;           /* keeps a nice tap target */
  line-height: 1;
  border-radius: .5rem;     /* optional */
}

/* Optional hover/active feedback */
#mobile-menu-button:active { transform: scale(.96); }

/* 2) Mobile dropdown: subtle separators, cleaner type */
/* 2) Mobile dropdown: base look/feel */
#mobile-menu{
  background-color: var(--color-warm-ivory);
  padding: .5rem 0;
  border-top: none;                 /* no thick bar at the top */
  box-shadow: inset 0 1px 0 var(--color-light-taupe); /* subtle hairline */
}
#mobile-menu a{
  display:block;
  text-align:center;
  padding:.75rem 1rem;
  font-size:.95rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  text-decoration:none;
  color: var(--color-espresso);
  background: transparent;
  border: 0;                        /* kill any box/border look */
}


/* hover/active (you already had these) */
#mobile-menu a:hover{ background: rgba(0,0,0,.03); }
#mobile-menu a.active{ color: var(--color-dark-chocolate); font-weight:600; }

/* IMPORTANT: limit desktop underline effect to desktop links only */
.desktop-nav .nav-link::after{ /* existing underline rule */ 
  content:''; position:absolute; width:100%; height:1px;
  left:0; bottom:-4px; background: var(--color-espresso);
  transform:scaleX(0); transform-origin:bottom right;
  transition:transform .3s ease-out;
}
.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after { transform:scaleX(1); transform-origin:bottom left; }


/* hover/active state */
#mobile-menu a:hover{ background: rgba(0,0,0,.03); }
#mobile-menu a.active{ color: var(--color-dark-chocolate); font-weight:700; }

.container {
    max-width: 1200px;
}

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

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

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

.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .md\\:space-x-8 > * + * {
        margin-left: 2rem;
    }
}

.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);
    text-decoration: none;
    font-size: 16px;
}

.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);
}

/* Mobile menu styles */
.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.focus\\:outline-none:focus {
    outline: none;
}

.block {
    display: block;
}

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

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

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

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

/* Hero Image Section */
.hero-image {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in;
}

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

/* Carousel Section from provided code */
.carousel-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    animation: slideUp 1.5s ease-out 0.5s both;
}

.hero-title {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #8b7355;
    text-align: center;
}

.hero-main {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    max-width: 800px;
    line-height: 1.4;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 60px;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 500px;
    margin: 0 auto 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.15);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d4c4a8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #8b7355;
    transform: scale(1.2);
}

.tagline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tagline-script {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #8b7355;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
}

.tagline-text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #5a5a5a;
    line-height: 1.5;
}

.tagline-text span {
    font-weight: 400;
}

.tagline-cta-button {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(135deg, #8b7355 0%, #a99485 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
    text-decoration: none;
}

.tagline-cta-button:hover {
    background: linear-gradient(135deg, #6b5d52 0%, #8b7355 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 115, 85, 0.3);
}

.tagline-cta-button:active {
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background-color: #ffffff;
    animation: fadeIn 1.5s ease-in;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 2;
    animation: slideInLeft 1.2s ease-out;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.1);
}

.about-text {
    flex: 5;
    animation: slideInRight 1.2s ease-out;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #5a5a5a;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 22px;
    font-weight: 300;
    color: #8b7355;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.highlight {
    color: #8b7355;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a5a5a;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
}

.gallery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.gallery-header h2 {
    font-size: 32px;
    font-weight: 300;
    color: #5a5a5a;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* Lazy Load Gallery Styles */
.card-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    padding: 0;
    max-width: 1400px;
    list-style: none;
}

.card {
    width: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.2);
}

.card-image {
    display: block;
    height: 300px;
    background: #fff center center no-repeat;
    background-size: cover;
    filter: blur(3px);
    transition: filter 1.2s ease-out, transform 0.3s ease;
    position: relative;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #8b7355;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.card-image.is-loaded::before {
    opacity: 0;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.card-image > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.card-image.is-loaded {
    filter: none;
}

/* Hover hint for desktop */
@media (hover: hover) {
    .card:not(:nth-child(-n+2)) .card-image:not(.is-loaded)::after {
        content: 'Hover to load';
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(139, 115, 85, 0.9);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        letter-spacing: 0.5px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card:not(:nth-child(-n+2)):hover .card-image:not(.is-loaded)::after {
        opacity: 1;
    }
}

.card-description {
    display: block;
    padding: 25px;
    text-decoration: none;
    background: white;
}

.card-description h2 {
    font-size: 20px;
    font-weight: 400;
    color: #5a5a5a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.card-description p {
    font-size: 14px;
    color: #8b7355;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

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

.lightbox-close:hover {
    color: #8b7355;
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Georgia', serif;
    font-size: 18px;
    letter-spacing: 0.5px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: -30px;
        font-size: 28px;
    }
    
    #lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-caption {
        font-size: 16px;
        padding: 15px;
    }
}

/* Tell Your Families Story Section */
.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-out forwards;
    animation-play-state: paused;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.15);
    transition: transform 0.3s ease;
}

.story-image-wrapper:hover {
    transform: translateY(-5px);
}

.story-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: filter 0.8s ease, transform 0.3s ease;
    filter: grayscale(0%);
}

.story-image-wrapper:hover .story-image {
    filter: grayscale(100%);
    transform: scale(1.02);
}

.story-cta-button {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.story-cta-button:hover {
    background: rgba(139, 115, 85, 0.9);
    border-color: #8b7355;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 115, 85, 0.3);
}

.story-content {
    padding-left: 0;
    order: -1;
}

.story-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #5a5a5a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.story-subtitle-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 300;
    color: #8b7355;
    margin-top: 15px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Responsive Design for Story Section */
@media (max-width: 968px) {
    .story-container {
        gap: 40px;
    }
    
    .story-heading {
        font-size: 40px;
    }
    
    .story-subtitle-cursive {
        font-size: 24px;
    }
    
    .story-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 80px 20px;
    }
    
    .story-heading {
        font-size: 32px;
    }
    
    .story-subtitle-cursive {
        font-size: 20px;
    }
    
    .story-image {
        height: 400px;
    }
    
    .story-cta-button {
        bottom: 60px;
        padding: 12px 28px;
        font-size: 14px;
    }
}

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

/* Inquiry Form Section */
.inquiry-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    border-top: 1px solid rgba(200, 180, 160, 0.2);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #5a5a5a;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.form-label {
    display: flex;
    flex-direction: column;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 400;
    color: #5a5a5a;
    gap: 8px;
}

.form-input,
.form-textarea {
    padding: 15px 20px;
    border: 2px solid #e8e1d6;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    color: #5a5a5a;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a99485;
    font-style: italic;
}

/* Accordion Styles */
.accordion {
    border: 2px solid #e8e1d6;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.accordion-item {
    border-bottom: 1px solid #e8e1d6;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 500;
    color: #5a5a5a;
    background-color: #faf9f7;
    transition: background-color 0.3s ease;
    list-style: none;
}

.accordion-summary::-webkit-details-marker {
    display: none;
}

.accordion-summary:hover {
    background-color: #f2efe9;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: #8b7355;
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-panel {
    padding: 20px;
    background-color: #ffffff;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: #5a5a5a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-grid label:hover {
    color: #8b7355;
}

.checkbox-grid input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8b7355;
    cursor: pointer;
}

/* Submit Button */
.form-submit {
    padding: 18px 40px;
    background: linear-gradient(135deg, #8b7355 0%, #a99485 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    justify-self: center;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
}

.form-submit:hover {
    background: linear-gradient(135deg, #6b5d52 0%, #8b7355 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 115, 85, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Partners Banner - Adapted for Family Page */
.partners-banner {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e8e1d6;
}

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

.partners-title {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 300;
    color: #5a5a5a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.partners-subtitle {
    font-size: 16px;
    color: #8b7355;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

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

.partner-logo {
    height: 60px;
    opacity: 0.5;
    filter: grayscale(100%) sepia(20%) hue-rotate(30deg);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.7;
    transform: translateY(-3px);
}

/* FAQ Section - Adapted for Family Page */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
}

.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: 12px;
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.15);
}

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

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

.faq-title {
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 20px;
}

.current-question {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    color: #5a5a5a;
    line-height: 1.3;
    margin-bottom: 30px;
}

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

.nav-button {
    background: none;
    border: none;
    font-family: 'Georgia', serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a89883;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.nav-button:hover {
    color: #8b7355;
}

.nav-button.active {
    color: #5a5a5a;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background-color: #d4c4a8;
}

.current-answer {
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 40px;
}

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

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid #d4c4a8;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #8b7355;
}

.nav-arrow:hover {
    border-color: #8b7355;
    background-color: #faf9f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.1);
}

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

.nav-arrow.disabled:hover {
    transform: none;
    border-color: #d4c4a8;
    background-color: white;
    box-shadow: none;
}

/* Testimonials Section */
.testimonial-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 120px;
    position: relative;
}

.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;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .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;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .testimonial-section {
        padding: 60px 40px;
    }

    .testimonial-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .text-content {
        order: 2;
        padding-left: 40px;
        padding-right: 40px;
    }

    .image-content {
        order: 1;
        padding-left: 40px;
        padding-right: 40px;
    }
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.quote-highlight {
    font-style: italic;
    color: #8b7355;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: -0.2px;
}

.testimonial-text em {
    font-style: italic;
    color: #8b7355;
}

.client-info {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    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(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .image-frame {
        height: 480px;
        max-width: 100%;
    }
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: #fff;
    border-color: #8b7355;
    transform: translateY(-50%) scale(1.1);
}

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

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

.nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: stroke 0.3s ease;
}

.nav-arrow:hover svg {
    stroke: #8b7355;
}

@media (max-width: 767px) {
    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .nav-arrow.prev {
        left: 10px;
    }

    .nav-arrow.next {
        right: 10px;
    }

    .nav-arrow svg {
        width: 16px;
        height: 16px;
    }
}

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

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8b7355;
    transform: scale(1.2);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f8f6f3 0%, #f2efe9 100%);
    padding: 0;
    margin: 0;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(200, 180, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 160, 140, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.brand-credit {
    font-size: 0.75rem;
    color: #a99485;
    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(0, 0, 0, 0.08);
}

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

.main-footer {
    background: #ffffff;
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(200, 180, 160, 0.2);
}

.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(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.intro-text {
    flex: 1;
}

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

.services-note {
    font-size: 0.9rem;
    color: #8b7a6b;
    line-height: 1.5;
}

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

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #6b5d52;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.footer-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(42%) sepia(8%) saturate(1234%) hue-rotate(356deg) brightness(95%) contrast(89%);
}

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

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

.brand-subtitle {
    font-size: 0.85rem;
    color: #8b7a6b;
    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: #8b7a6b;
    line-height: 1.5;
    margin-bottom: 25px;
}

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

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

/* =========================
   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%;
    top: 50%;
    transform: translate(-50%, -50%);
    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%;
}

.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; }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* --- Clean mobile dropdown: remove ALL lines/boxes --- */
#mobile-menu, 
#mobile-menu * { border: 0 !important; box-shadow: none !important; }

#mobile-menu a {
  background: transparent !important;
  position: static !important;   /* prevents underline positioning from desktop style */
}

#mobile-menu a.nav-link::after {
  content: none !important;
  display: none !important;
}

#mobile-menu li { border: 0 !important; box-shadow: none !important; }

/* B) Keep tel/sms clickable but not blue (sitewide) */
a[href^="tel:"],
a[href^="sms:"],
a[x-apple-data-detectors]{
  color: var(--color-espresso) !important;
  text-decoration: none !important;
  font-weight: inherit !important;
}

/* C) Lock mobile menu colors (overrides B inside the menu) */
#mobile-menu a,
#mobile-menu a:visited,
#mobile-menu a:active{
  color: var(--color-warm-gray) !important;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
#mobile-menu a.nav-link::after{ content: none !important; }
/* Force the hamburger (3-line) icon color */
#mobile-menu-button{
  color: var(--color-espresso) !important;   /* icon stroke color */
  -webkit-tap-highlight-color: transparent;
}

/* Slightly darker when open (since you toggle aria-expanded) */
#mobile-menu-button[aria-expanded="true"]{
  color: var(--color-dark-chocolate) !important;
}

/* iOS/Safari sometimes ignores parent color on SVGs — belt & suspenders */
#mobile-menu-button svg,
#mobile-menu-button svg path{
  stroke: currentColor !important;
}

/* Optional: focus ring that isn't blue */
#mobile-menu-button:focus-visible{
  outline: 2px solid var(--color-espresso);
  outline-offset: 4px;
}
/* Default so layout works before JS runs */
:root { --vh: 1vh; }

/* Use the stable variable by default */
.hero-image { height: calc(var(--vh) * 70); }

/* Prefer modern stable units when available */
@supports (height: 1svh) {
  .hero-image { height: 70svh; }
}
