/* ==========================================================
   Redolence Decor — stylesheet
   ========================================================== */

:root {
    --cream:        #FBF6F1;
    --cream-alt:     #F6EEE6;
    --ink:          #2B221D;
    --ink-soft:     #5B4F48;
    --rose:         #C4685F;
    --rose-dark:    #A84E47;
    --rose-tint:    #F1DCDA;
    --gold:         #B8874B;
    --line:         #E7DCD2;
    --white:        #FFFFFF;

    /* --font-display: "Fraunces", Georgia, serif;
    --font-body:    "Inter", Arial, sans-serif; */

    --container:    1180px;
    --radius:       6px;
    --shadow-soft:  0 18px 40px -20px rgba(43, 34, 29, 0.25);
}


.main-nav a {
    font-family: "Cormorant Garamond", Georgia, serif !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: var(--ink);
}

p { margin: 0; line-height: 1.7; color: var(--ink-soft); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

em { font-style: italic; color: var(--rose-dark); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 10px 24px -10px rgba(196,104,95,.65);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    border-color: var(--rose);
    color: var(--rose-dark);
}
.btn-outline:hover { background: var(--rose-tint); }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 10px;
}
.section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 36px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.why-copy .eyebrow, .why-copy h2 { text-align: left; }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(251, 246, 241, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ---------- Logo image (header + footer + mobile menu) ---------- */
.site-logo-img {
    display: block;
    width: auto;
    height: 65px;          /* desktop header/footer height */
    max-width: 220px;
    object-fit: contain;
}
.mobile-footer-logo .site-logo-img--mark { height: 64px; max-width: 260px; margin: 0 auto; }
.footer-brand .site-logo-img { height: 50px; max-width: 230px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.main-nav a {
    position: relative;
    padding: 6px 2px;
    color: var(--ink-soft);
    transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--rose-dark); }
.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--rose);
}
.has-dropdown { position: relative; }
.chev { font-size: 10px; }

/* ---------- Services mega-dropdown (Bonvera-style icon + title + description panel) ---------- */
.mega-dropdown {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translate(-50%, 6px);
    width: 420px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 40;
}
.has-dropdown:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-dropdown-grid { padding: 8px; }
.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 10px;
    border-radius: 6px;
    transition: background .2s ease;
}
.mega-item:hover { background: var(--cream-alt); }
.mega-item-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--rose-tint);
    color: var(--rose-dark);
    display: flex; align-items: center; justify-content: center;
}
.mega-item-icon svg { width: 18px; height: 18px; }
.mega-item-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.mega-item-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: 0; text-transform: none; }
.mega-item-desc { font-family: var(--font-body); font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; letter-spacing: 0; text-transform: none; }
.mega-dropdown-footer {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--cream-alt);
    border-top: 1px solid var(--line);
}
.mega-dropdown-footer:hover { color: var(--rose-dark); }

.header-cta { flex-shrink: 0; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    flex-shrink: 0;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 86vw);
    height: 100%;
    background: var(--cream);
    z-index: 900;
    overflow-y: auto;
    padding: 26px 22px;
    transition: right .35s ease;
    box-shadow: -20px 0 40px rgba(0,0,0,.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.close-btn { background: none; border: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--ink-soft); }
.mobile-nav { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.mobile-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--rose-dark); background: var(--rose-tint); font-weight: 500; }
.mobile-nav a i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .55; flex-shrink: 0; }
.mobile-nav a .plus { margin-left: auto; opacity: .6; }

/* ---------- Mobile "Services" accordion ---------- */
.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-group:last-child { border-bottom: none; }
.mobile-nav-toggle {
    width: 100%;
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    background: none; border: none; cursor: pointer;
    color: var(--ink-soft);
    text-align: left;
}
.mobile-nav-toggle i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .55; flex-shrink: 0; }
.mobile-nav-toggle .plus { margin-left: auto; opacity: .6; transition: transform .25s ease; font-size: 16px; line-height: 1; }
.mobile-nav-toggle.active { color: var(--rose-dark); background: var(--rose-tint); font-weight: 500; }
.mobile-nav-toggle[aria-expanded="true"] .plus { transform: rotate(45deg); }
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: var(--cream-alt);
    transition: max-height .3s ease;
}
.mobile-submenu.open { max-height: 400px; }
.mobile-submenu a {
    display: block;
    padding: 11px 16px 11px 34px;
    font-size: 14px;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
}
.mobile-submenu a:first-child { border-top: 1px solid var(--line); }
.mobile-submenu a:hover { color: var(--rose-dark); }
.mobile-cta { width: 100%; justify-content: center; margin-bottom: 34px; }
.mobile-menu-footer { text-align: center; border-top: 1px solid var(--line); padding-top: 28px; }
.mobile-footer-logo { justify-content: center; margin-bottom: 10px; }
.brand-name { font-family: var(--font-display); letter-spacing: 2px; color: var(--rose-dark); font-size: 15px; margin: 0 0 8px; }
.mobile-menu-footer .tagline { font-size: 13px; max-width: 240px; margin: 0 auto 16px; }
.socials { display: flex; gap: 10px; justify-content: center; }
.mobile-menu-footer .socials { margin-bottom: 4px; }
.socials a {
    width: 36px; height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.socials a svg { width: 16px; height: 16px; }
.socials a:hover {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
    transform: translateY(-3px);
}

.overlay {
    position: fixed; inset: 0;
    background: rgba(43,34,29,.45);
    z-index: 800;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease;
}
.overlay.show { opacity: 1; visibility: visible; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 56px 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        var(--cream) 0%,
        rgba(251, 246, 241, .93) 26%,
        rgba(251, 246, 241, .6) 46%,
        rgba(251, 246, 241, .18) 66%,
        rgba(251, 246, 241, 0) 82%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: none; margin: 0; padding-left: clamp(24px, 6vw, 96px); padding-right: 24px; }
.hero-copy { max-width: 560px; }
.hero-copy h1 {
    font-size: clamp(32px, 4.4vw, 52px);
    margin: 0 0 16px;
}
.hero-desc { max-width: 440px; margin-bottom: 26px; font-size: 16px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 12px; }
.stat-icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.stat-icon svg { width: 19px; height: 19px; }
.stat strong { font-family: var(--font-display); font-size: 20px; color: var(--rose-dark); display: block; line-height: 1.3; }
.stat span { font-size: 12.5px; color: var(--ink-soft); }

/* ==========================================================
   SERVICES
   ========================================================== */
.services { padding: 60px 0; background: var(--cream-alt); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 26px 30px;
    text-align: left;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.service-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.service-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--rose-tint);
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-dark);
    transition: background .3s ease, color .3s ease, transform .35s ease;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
    background: var(--rose);
    color: var(--white);
    transform: rotate(-6deg) scale(1.08);
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; transition: color .25s ease; }
.service-card:hover h3 { color: var(--rose-dark); }
.service-card p { font-size: 14px; }
.service-arrow {
    display: inline-flex;
    margin-top: 16px;
    color: var(--rose-dark);
    font-size: 15px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .3s ease, transform .3s ease;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ==========================================================
   COLLECTIONS
   ========================================================== */
.collections { padding: 60px 0; }
.collections-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.collection-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(20,12,10,0);
    transition: transform .4s ease, box-shadow .4s ease;
}
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.collection-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,12,10,.8), rgba(20,12,10,.05) 55%, rgba(20,12,10,0) 75%);
    transition: background .4s ease;
    z-index: 1;
}
.collection-card::after {
    content: "";
    position: absolute; inset: 8px;
    border: 1px solid rgba(255,255,255,0);
    border-radius: calc(var(--radius) - 4px);
    transition: border-color .4s ease;
    z-index: 2;
    pointer-events: none;
}
.collection-label {
    position: absolute; left: 16px; bottom: 16px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 15px;
    z-index: 3;
    transition: transform .4s ease;
}
.collection-view {
    position: absolute; left: 16px; bottom: 16px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .4px;
    font-weight: 500;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.collection-card:hover img { transform: scale(1.08); }
.collection-card:hover::before { background: linear-gradient(to top, rgba(20,12,10,.88), rgba(20,12,10,.15) 60%, rgba(20,12,10,0) 85%); }
.collection-card:hover::after { border-color: rgba(212,175,110,.55); }
.collection-card:hover .collection-label { transform: translateY(-22px); }
.collection-card:hover .collection-view { opacity: 1; transform: translateY(0); }
.center-cta { text-align: center; margin-top: 38px; }

.dots { display: none; justify-content: center; gap: 8px; margin-top: 22px; }
.dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.dots span.active { background: var(--rose); width: 20px; border-radius: 4px; }

/* ==========================================================
   WHY CHOOSE
   ========================================================== */
.why-choose { padding: 60px 0; background: var(--cream-alt); }
.why-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.why-media img { width: 100%; height: 460px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-soft); }
.why-copy h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 28px; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-list li { display: flex; gap: 16px; }
.why-num {
    color: var(--white);
    background: var(--gold);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .25s ease, transform .25s ease;
}
.why-num svg { width: 18px; height: 18px; }
.why-list li:hover .why-num { background: var(--rose-dark); transform: rotate(-8deg); }
.why-list h4 { font-size: 16px; margin-bottom: 4px; }
.why-list p { font-size: 14px; }

/* ==========================================================
   WORK / GALLERY
   ========================================================== */
.work { padding: 60px 0; }
.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.work-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-item:hover img { transform: scale(1.06); }

/* ==========================================================
   PROCESS
   ========================================================== */
.process { padding: 60px 0; background: var(--cream-alt); }
.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process-track::before {
    content: "";
    position: absolute;
    top: 26px; left: 12%; right: 12%;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--rose) 0 6px, transparent 6px 12px);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-icon {
    position: relative;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--rose);
    color: var(--rose-dark);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.process-icon svg { width: 24px; height: 24px; }
.process-num {
    position: absolute;
    top: -6px; right: -6px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 3px var(--cream-alt);
}
.process-step:hover .process-icon { background: var(--rose); color: var(--white); transform: translateY(-3px); }
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; max-width: 220px; margin: 0 auto; }

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { padding: 60px 0; overflow: hidden; }
.marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.testimonial-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: marquee 34s linear infinite;
}
.marquee-wrap:hover .testimonial-track { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    width: min(360px, 84vw);
    flex-shrink: 0;
    transition: box-shadow .25s ease, transform .25s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.quote { font-size: 14.5px; font-style: italic; margin-bottom: 22px; color: var(--ink-soft); }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--rose-tint);
    color: var(--rose-dark);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: 14.5px; font-family: var(--font-body); font-weight: 600; }
.testimonial-person span { font-size: 12.5px; color: var(--ink-soft); }
.stars { color: var(--gold); font-size: 12px; margin-top: 2px; }

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner { padding: 56px 0; }
.cta-card {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: stretch;
    background: linear-gradient(135deg, #FBEFEA, #F6E4DE);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.cta-card::before {
    content: "";
    position: absolute; inset: 0;
    border: 1px solid rgba(184, 135, 75, .25);
    border-radius: 14px;
    margin: 10px;
    pointer-events: none;
}
.cta-media { position: relative; overflow: hidden; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.cta-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(43,34,29,.08), rgba(43,34,29,.08)); }
.cta-inner {
    text-align: center;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-inner .eyebrow { margin-bottom: 6px; }
.cta-inner h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 12px; max-width: 420px; }
.cta-inner p { margin-bottom: 26px; max-width: 380px; }
.cta-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.cta-phone { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.cta-phone-icon {
    width: 34px; height: 34px;
    border: 1px solid var(--rose);
    color: var(--rose-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: background .2s ease, color .2s ease;
}
.cta-phone:hover .cta-phone-icon { background: var(--rose); color: var(--white); }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: #2A211C; color: #D9CFC7; padding: 52px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #F1DCDA; }
.footer-brand .logo-mark { border-color: var(--gold); color: var(--gold); }
.footer-brand p { color: #B7ABA2; font-size: 14px; margin: 14px 0 18px; max-width: 260px; }
.footer-brand .socials { justify-content: flex-start; }
.footer-brand .socials a { border-color: rgba(255,255,255,.18); color: #D9CFC7; }
.footer-brand .socials a:hover { border-color: var(--rose); }

/* ---------- Footer contact list with icons ---------- */
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list .contact-ico {
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin-top: 1px;
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.contact-list .contact-ico svg { width: 16px; height: 16px; }
.contact-list a { transition: color .2s ease; }
.footer-col h5 { font-family: var(--font-display); color: #F1DCDA; font-size: 15px; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .contact-list li { font-size: 14px; color: #B7ABA2; }
.footer-col a:hover { color: var(--rose); }
.contact-list li { line-height: 1.6; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 13px; color: #8B8078; }

/* ==========================================================
   BACK TO TOP
   ========================================================== */
.back-to-top {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .3s ease;
    z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .main-nav, .header-cta { display: none; }
    .hamburger { display: flex; }

    .header-inner { padding-top: 10px; padding-bottom: 10px; gap: 14px; }
    .logo { line-height: 0; }

    /* Logo — mobile sizing (header, mobile menu, footer) */
    .site-logo-img { height: 32px; max-width: 150px; }
    .mobile-footer-logo .site-logo-img--mark { height: 46px; max-width: 190px; }
    .footer-brand .site-logo-img { height: 36px; max-width: 170px; }

    .hamburger { width: 34px; height: 34px; gap: 4px; }
    .hamburger span { width: 20px; }

    .hero { min-height: 480px; background-position: center 65%; }
    .hero::before {
        background: linear-gradient(180deg,
            rgba(251, 246, 241, .96) 0%,
            rgba(251, 246, 241, .9) 45%,
            rgba(251, 246, 241, .55) 100%);
    }
    .hero-copy, .hero-desc { text-align: left; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .collections-track {
        grid-auto-flow: column;
        grid-auto-columns: 62%;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        -ms-overflow-style: none; scrollbar-width: none;
    }
    .collections-track::-webkit-scrollbar { display: none; }
    .collection-card { scroll-snap-align: start; }
    .dots { display: flex; }

    .why-inner { grid-template-columns: 1fr; gap: 34px; }
    .why-media img { height: 320px; }
    .why-copy .eyebrow, .why-copy h2 { text-align: left; }

    .work-grid { grid-template-columns: repeat(2, 1fr); }

    .process-track { grid-template-columns: 1fr; gap: 34px; text-align: left; }
    .process-track::before { display: none; }
    .process-step { display: flex; align-items: flex-start; gap: 18px; text-align: left; }
    .process-icon { margin: 0; flex-shrink: 0; }
    .process-step p { max-width: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 34px; }

    .cta-card { grid-template-columns: 1fr; }
    .cta-media { display: none; }
    .cta-inner { padding: 40px 26px; }
}

@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .hero { padding: 40px 0; min-height: 420px; }
    .services, .collections, .why-choose, .work, .process, .testimonials { padding: 42px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: row; }
    .hero-actions .btn { flex: 1; justify-content: center; }
    .section-head { margin-bottom: 26px; }

    .header-inner { padding-top: 8px; padding-bottom: 8px; }
    .site-logo-img { height: 28px; max-width: 130px; }
    .hamburger { width: 30px; height: 30px; }
    .hamburger span { width: 18px; }
    .mobile-menu { padding: 20px 16px; width: min(320px, 88vw); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.page-hero {
    background: var(--cream-alt, #F5EDE6);
    padding: 52px 0 40px;
    text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); margin: 10px 0 14px; }
.page-hero-desc { max-width: 560px; margin: 0 auto; color: var(--ink-soft); }

/* ==========================================================
   GALLERY PAGE
   ========================================================== */
.gallery-filters-section { padding: 8px 0 0; }
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.filter-btn {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose-dark); transform: translateY(-1px); }
.filter-btn.active { background: var(--rose); border-color: var(--rose); color: var(--white); }

.gallery-main { padding: 40px 0 60px; }
.gallery-grid {
    columns: 4 240px;
    column-gap: 16px;
}
.gallery-item {
    position: relative;
    margin: 0 0 16px;
    break-inside: avoid;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(20, 12, 10, 0);
    transition: transform .35s ease, box-shadow .35s ease, opacity .25s ease;
}
.gallery-item.is-hidden { display: none; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.gallery-item img { width: 100%; height: auto; display: block; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.78); }
.gallery-item figcaption {
    position: absolute; inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(to top, rgba(20,12,10,.78), rgba(20,12,10,0) 55%);
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item-label { color: var(--white); font-family: var(--font-display); font-size: 14px; }
.gallery-item-zoom {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.5);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item-zoom svg { width: 15px; height: 15px; }
.gallery-empty { text-align: center; color: var(--ink-soft); padding: 40px 0; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0;
    z-index: 1000;
    background: rgba(15, 10, 8, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure { max-width: 900px; max-height: 86vh; margin: 0; text-align: center; }
.lightbox-figure img { max-width: 100%; max-height: 78vh; border-radius: 6px; display: block; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-figure figcaption { color: #EFE4DC; font-family: var(--font-display); font-size: 15px; margin-top: 14px; }
.lightbox-close {
    position: absolute; top: 22px; right: 26px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.18); }
.lightbox-nav {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-nav:hover { background: rgba(255,255,255,.18); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

@media (max-width: 900px) {
    .gallery-grid { columns: 2 160px; }
    .gallery-main { padding: 28px 0 48px; }
    .lightbox { padding: 20px; }
    .lightbox-nav { width: 38px; height: 38px; font-size: 20px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 14px; right: 14px; }
}
@media (max-width: 560px) {
    .gallery-grid { columns: 1; column-gap: 0; }
    .gallery-filters { gap: 8px; }
    .filter-btn { font-size: 12.5px; padding: 8px 14px; }
}

.contact-cards-section { padding: 44px 0 10px; }
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--rose);
}
.contact-info-icon {
    width: 54px; height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--rose-tint);
    color: var(--rose-dark);
    display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-card h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

.contact-main { padding: 52px 0 64px; }
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-form-wrap h2 { font-size: clamp(24px, 3vw, 32px); margin: 8px 0 12px; }
.contact-form-sub { color: var(--ink-soft); margin-bottom: 30px; max-width: 460px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-alert {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 22px;
}
.form-alert span { flex-shrink: 0; font-weight: 700; }
.form-alert--success { background: #E9F3EA; color: #2E5B34; border: 1px solid #BFE0C3; }
.form-alert--error { background: #FBEAE8; color: #A02F27; border: 1px solid #F3C4BE; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: .2px; }
.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px var(--rose-tint);
}
.contact-submit { align-self: flex-start; margin-top: 6px; }

.contact-map-wrap { display: flex; flex-direction: column; gap: 22px; }
.contact-map {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}
.contact-social-card {
    background: #2A211C;
    color: #D9CFC7;
    border-radius: var(--radius);
    padding: 26px 24px;
}
.contact-social-card h4 { font-family: var(--font-display); color: #F1DCDA; font-size: 17px; margin-bottom: 8px; }
.contact-social-card p { font-size: 14px; color: #B7ABA2; margin-bottom: 16px; }
.contact-socials { justify-content: flex-start; }
.contact-socials a { border-color: rgba(255,255,255,.18); color: #D9CFC7; }
.contact-socials a:hover { border-color: var(--rose); }

@media (max-width: 900px) {
    .contact-cards-grid { grid-template-columns: 1fr 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { padding: 50px 0 40px; }
}

/* ==========================================================
   ALL SERVICES PAGE
   ========================================================== */
.services-detail { padding: 52px 0 24px; }
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 100px;
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-row.is-flipped .service-detail-media { order: 2; }
.service-detail-row.is-flipped .service-detail-copy { order: 1; }
.service-detail-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--rose-tint);
    color: var(--rose-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.service-detail-icon svg { width: 24px; height: 24px; }
.service-detail-copy h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.service-detail-copy > p { margin-bottom: 20px; max-width: 460px; }
.service-detail-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.service-detail-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.service-detail-points .tick {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--rose-tint);
    color: var(--rose-dark);
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}

@media (max-width: 900px) {
    .service-detail-row { grid-template-columns: 1fr; gap: 26px; padding: 36px 0; }
    .service-detail-row.is-flipped .service-detail-media,
    .service-detail-row.is-flipped .service-detail-copy { order: initial; }
}

/* ==========================================================
   SERVICES HUB PAGE (services.php)
   ========================================================== */
.services-hub { padding: 52px 0 64px; }
.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.services-hub-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.services-hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.services-hub-media { aspect-ratio: 4/3; overflow: hidden; }
.services-hub-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.services-hub-card:hover .services-hub-media img { transform: scale(1.06); }
.services-hub-body { padding: 24px; }
.services-hub-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--rose-tint);
    color: var(--rose-dark);
    margin-bottom: 14px;
}
.services-hub-icon svg { width: 20px; height: 20px; }
.services-hub-body h3 { font-size: 19px; margin-bottom: 8px; }
.services-hub-body p { font-size: 14px; margin-bottom: 16px; }
.services-hub-link { font-size: 13px; font-weight: 600; letter-spacing: .6px; color: var(--gold); }
.services-hub-card:hover .services-hub-link { color: var(--rose-dark); }

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

/* ==========================================================
   INDIVIDUAL SERVICE PAGE
   ========================================================== */
.eyebrow--light { color: #F0D9C8; }
.btn-outline--light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline--light:hover { background: rgba(255,255,255,.14); }

.service-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 120px 0 70px;
}
.service-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,12,10,.55) 0%, rgba(20,12,10,.72) 100%);
}
.service-hero-inner { position: relative; z-index: 1; max-width: 680px; color: var(--white); }
.service-hero h1 { font-size: clamp(34px, 5.2vw, 58px); color: var(--white); margin: 10px 0 18px; }
.service-hero-desc { color: #F1E7DE; font-size: 17px; line-height: 1.7; margin-bottom: 30px; max-width: 560px; }

.whats-included { padding: 60px 0; background: var(--cream-alt); }
.whats-included .service-detail-row { border-bottom: none; padding: 0; }

.service-why { padding: 60px 0; }
.service-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-why-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.service-why-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--rose-tint);
    color: var(--rose-dark);
    margin-bottom: 18px;
}
.service-why-icon svg { width: 22px; height: 22px; }
.service-why-card h4 { font-size: 17px; margin-bottom: 10px; }
.service-why-card p { font-size: 14px; }

.perfect-for { padding: 60px 0; }
.perfect-for-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.perfect-for-card { text-align: center; padding: 22px 14px; border-radius: var(--radius); background: var(--cream-alt); }
.perfect-for-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--rose-dark);
    margin-bottom: 14px;
}
.perfect-for-icon svg { width: 18px; height: 18px; }
.perfect-for-card h4 { font-size: 14.5px; margin-bottom: 6px; }
.perfect-for-card p { font-size: 12.5px; }

.service-testimonial { padding: 20px 0 80px; }
.service-testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: var(--cream-alt);
    border-radius: var(--radius);
    padding: 44px 40px;
}
.service-testimonial-card .quote { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--ink); margin-bottom: 22px; line-height: 1.6; }
.service-testimonial-card .testimonial-person { display: flex; align-items: center; justify-content: center; gap: 12px; }

.service-faq { padding: 20px 0 90px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 18px 22px;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 600; font-size: 16px;
    color: var(--ink);
    text-align: left;
}
.faq-plus { flex-shrink: 0; font-size: 20px; color: var(--gold); transition: transform .25s ease; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-question[aria-expanded="true"] { color: var(--rose-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 22px 20px; font-size: 14.5px; }
.faq-answer.open { max-height: 260px; }

.other-services { padding: 0 0 90px; text-align: center; }
.other-services h3 { font-size: clamp(20px, 2.4vw, 26px); margin: 8px 0 26px; }
.other-services-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.other-service-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--ink-soft);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.other-service-chip svg { width: 15px; height: 15px; }
.other-service-chip:hover { background: var(--rose-tint); border-color: var(--rose); color: var(--rose-dark); }

@media (max-width: 900px) {
    .service-why-grid { grid-template-columns: 1fr 1fr; }
    .perfect-for-grid { grid-template-columns: repeat(3, 1fr); }
    .service-hero { min-height: 78vh; padding: 130px 0 60px; }
}
@media (max-width: 560px) {
    .service-why-grid { grid-template-columns: 1fr; }
    .perfect-for-grid { grid-template-columns: 1fr 1fr; }
    .service-hero { min-height: 82vh; padding: 120px 0 50px; }
    .service-hero-desc { font-size: 15.5px; }
    .service-testimonial-card { padding: 30px 22px; }
    .faq-question { padding: 16px; font-size: 14.5px; }
}
