/* Shared styles for /services/*.html — Light theme v2 */
html, body { background: #FAF7F2 !important; color: #1A1A1A !important; }
:root {
    --bg: #FAF7F2;
    --bg-soft: #F2EDE4;
    --bg-deep: #ECE5D8;
    --gold: #C9A87C;
    --gold-dark: #8B7355;
    --text: #1A1A1A;
    --text-soft: #3D3D3D;
    --muted: #6B6B6B;
    --line: rgba(0,0,0,0.08);
    --line-soft: rgba(0,0,0,0.05);
    /* Legacy aliases (kept for any inline references) */
    --black: var(--bg);
    --black-soft: var(--bg-soft);
    --white: var(--text);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    background: var(--bg); color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === Header (matches main site) === */
#header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 1.25rem 0;
    background: rgba(250,247,242,0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s ease;
}
#header.scrolled { padding: 0.75rem 0; background: rgba(250,247,242,0.97); box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
.header-container {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { width: 42px; height: 42px; object-fit: contain; }
.logo h1 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600;
    letter-spacing: 0.5px; line-height: 1;
}
.logo h1 span { color: var(--gold); }
.logo-sub {
    display: block; font-family: 'Montserrat', sans-serif; font-size: 0.55rem;
    letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-top: 2px;
}
nav ul { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
nav a {
    color: var(--text); font-size: 0.8rem; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase;
    position: relative; padding: 0.5rem 0;
    transition: color 0.3s ease;
}
nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.3s ease;
}
nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--gold); }
nav a.active::after { width: 100%; }

/* Submenu */
nav .has-submenu { position: relative; }
nav .submenu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--line);
    border-radius: 6px; padding: 0.6rem 0;
    min-width: 220px;
    flex-direction: column; gap: 0;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    z-index: 100;
}
nav .has-submenu:hover .submenu,
nav .has-submenu:focus-within .submenu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    display: flex;
}
nav .submenu li { width: 100%; }
nav .submenu a {
    display: block; padding: 0.7rem 1.4rem;
    font-size: 0.72rem; letter-spacing: 0.18em;
    white-space: nowrap; text-align: left;
}
nav .submenu a::after { display: none; }
nav .submenu a:hover { color: var(--gold-dark); background: rgba(201,168,124,0.10); }

.nav-cta {
    padding: 0.75rem 1.5rem !important; border: 1px solid var(--gold);
    color: var(--gold-dark) !important;
}
.nav-cta:hover { background: var(--gold); color: #fff !important; }
.nav-cta::after { display: none !important; }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.mobile-menu-toggle span { width: 26px; height: 2px; background: var(--text); transition: all 0.3s ease; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* === Service hero === */
.service-hero {
    position: relative; padding: 10rem 2rem 5rem;
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}
.service-hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
}
.service-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(250,247,242,0.55) 0%, rgba(250,247,242,0.92) 100%);
    z-index: 2;
}
.service-hero-content { position: relative; z-index: 3; max-width: 900px; }
.breadcrumb {
    display: flex; gap: 0.5rem; align-items: center; justify-content: center;
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1.5rem;
}
.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }
.service-hero-tag {
    display: inline-block; font-size: 0.7rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.service-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500;
    line-height: 1.05; margin-bottom: 1.25rem;
}
.service-hero-lede {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: var(--text-soft);
    max-width: 700px; margin: 0 auto;
}

/* === Service intro === */
.service-intro { padding: 6rem 2rem 5rem; }
.service-intro-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start;
}
.section-label {
    display: inline-block; font-size: 0.7rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.service-intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500;
    line-height: 1.15; margin-bottom: 1.75rem;
}
.service-intro-text h2 em { color: var(--gold); font-style: italic; }
.service-intro-text p {
    color: var(--text-soft); margin-bottom: 1.25rem; font-size: 1.02rem;
}
.service-intro-text p em { color: var(--gold-dark); font-style: normal; font-weight: 500; }

.service-intro-side {
    background: var(--bg-soft); border: 1px solid var(--line);
    padding: 2.25rem; border-radius: 6px; position: sticky; top: 6rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.service-intro-side h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600;
    margin-bottom: 1.25rem; color: var(--text);
}
.service-bullets { list-style: none; margin-bottom: 1.75rem; }
.service-bullets li {
    display: flex; gap: 0.7rem; align-items: flex-start;
    padding: 0.55rem 0; color: var(--text-soft); font-size: 0.92rem;
    border-bottom: 1px solid var(--line-soft);
}
.service-bullets li:last-child { border-bottom: none; }
.service-bullets svg { width: 16px; height: 16px; color: var(--gold); flex: 0 0 16px; margin-top: 4px; }

.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.95rem 1.75rem; border-radius: 50px;
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
    transition: all 0.3s ease; cursor: pointer; border: none; font-family: 'Montserrat', sans-serif;
}
.btn svg { width: 14px; height: 14px; }
.btn-gold { background: var(--gold); color: #fff; width: 100%; justify-content: center; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-gold-lg {
    background: var(--gold); color: #fff;
    padding: 1.1rem 2.5rem; font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(201,168,124,0.30);
}
.btn-gold-lg:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-text {
    display: block; text-align: center; margin-top: 1rem;
    font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); transition: color 0.2s ease;
}
.btn-text:hover { color: var(--gold); }

/* === Gallery === */
.service-gallery { padding: 5rem 2rem; background: var(--bg-soft); }
.section-container { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
}
.section-header h2 em { color: var(--gold); font-style: italic; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px; gap: 8px;
}
.gallery-item { overflow: hidden; border-radius: 4px; background: var(--bg-deep); }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* === CTA Banner === */
.service-cta {
    padding: 6rem 2rem; text-align: center;
    background:
        linear-gradient(180deg, rgba(250,247,242,0.78), rgba(242,237,228,0.92)),
        url('https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=1800&fit=crop') center/cover;
}
.service-cta-inner { max-width: 800px; margin: 0 auto; }
.service-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
    margin: 1rem 0 1.25rem;
}
.service-cta h2 em { color: var(--gold); font-style: italic; }
.service-cta p {
    color: var(--text-soft); margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* === Related === */
.related-services { padding: 5rem 2rem; }
.related-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.related-card {
    position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/5;
    transition: transform 0.4s ease;
}
.related-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.related-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0) 0%, rgba(26,26,26,0.78) 100%);
}
.related-card:hover img { transform: scale(1.05); }
.related-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem; z-index: 2;
}
.related-tag {
    font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.related-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500;
    color: #fff;
}

/* === Footer === */
footer { background: var(--bg-soft); padding: 4rem 2rem 2rem; border-top: 1px solid var(--line); color: var(--text); }
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; line-height: 1; }
.footer-brand h3 span { color: var(--gold); }
.footer-sub {
    display: block; font-size: 0.6rem; letter-spacing: 0.4em; color: var(--gold);
    text-transform: uppercase; margin: 4px 0 1rem;
}
.footer-brand p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 1.25rem; }
.footer-contact-inline { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-inline a { color: var(--text-soft); font-size: 0.85rem; transition: color 0.2s ease; }
.footer-contact-inline a:hover { color: var(--gold-dark); }
.footer-links h4 {
    font-size: 0.85rem; font-weight: 600; color: var(--gold-dark);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-soft); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-dark); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; border-top: 1px solid var(--line);
}
.footer-copyright { color: var(--muted); font-size: 0.85rem; }
.footer-legal a {
    color: var(--text-soft); font-size: 0.85rem; margin-left: 1.5rem; transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--gold-dark); }

/* === Choose Your Backdrop pricing === */
.backdrop-section {
    padding: 5rem 2rem;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.backdrop-container { max-width: 1000px; margin: 0 auto; }
.backdrop-header { text-align: center; margin-bottom: 2.5rem; }
.backdrop-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500;
}
.backdrop-header h2 em { color: var(--gold); font-style: italic; }
.backdrop-packages { display: flex; justify-content: center; }
.backdrop-card {
    width: 100%; max-width: 520px;
    border: 1px solid var(--gold);
    border-radius: 8px; overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.backdrop-card-top {
    background: linear-gradient(135deg, rgba(201,168,124,0.18), rgba(201,168,124,0.06));
    padding: 2.25rem 2.5rem 2rem;
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.backdrop-tag {
    display: inline-block; font-size: 0.65rem; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--gold-dark);
    border: 1px solid rgba(201,168,124,0.5); padding: 0.35rem 0.9rem;
    border-radius: 50px; margin-bottom: 1rem;
}
.backdrop-card-top h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 600;
    margin-bottom: 0.25rem;
}
.backdrop-subtitle {
    color: var(--muted); font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1.25rem;
}
.backdrop-price {
    font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700;
    color: var(--gold-dark); line-height: 1;
}
.backdrop-card-body { padding: 2rem 2.5rem; }
.backdrop-includes-label {
    font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1rem; display: block;
}
.backdrop-includes { list-style: none; margin-bottom: 2rem; }
.backdrop-includes li {
    display: flex; gap: 0.75rem; align-items: flex-start;
    padding: 0.6rem 0; color: var(--text-soft); font-size: 0.93rem;
    border-bottom: 1px solid var(--line-soft);
}
.backdrop-includes li:last-child { border-bottom: none; }
.backdrop-includes svg { width: 16px; height: 16px; color: var(--gold); flex: 0 0 16px; margin-top: 3px; }

/* === Single-row gallery === */
.gallery-row {
    grid-template-columns: repeat(6, 1fr) !important;
    grid-auto-rows: 340px !important;
}
.gallery-row .gallery-item { grid-row: span 1 !important; grid-column: span 1 !important; }

/* === Responsive === */
@media (max-width: 968px) {
    .service-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .service-intro-side { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
    .gallery-row { grid-template-columns: repeat(3, 1fr) !important; grid-auto-rows: 220px !important; }
}
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(250,247,242,0.98); backdrop-filter: blur(20px);
        display: flex; align-items: center; justify-content: center;
        transform: translateX(100%); transition: transform 0.4s ease; z-index: 1000;
    }
    nav.active { transform: translateX(0); }
    nav ul { flex-direction: column; gap: 1.5rem; text-align: center; }
    nav a { font-size: 1rem; }
    nav .submenu {
        position: static; transform: none; opacity: 1; visibility: visible;
        pointer-events: auto; background: transparent; border: none;
        box-shadow: none; padding: 0.6rem 0 0; min-width: 0; display: flex;
    }
    nav .submenu a { text-align: center; font-size: 0.78rem; padding: 0.4rem 0; }

    .service-hero { padding: 7rem 1.25rem 3rem; min-height: 50vh; }
    .service-intro { padding: 4rem 1.25rem 3rem; }
    .service-gallery, .service-cta, .related-services { padding: 4rem 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
