:root {
    --rose: #F7CAC9;
    --rose-light: #fde8e7;
    --rose-dark: #e8a5a3;
    --black: #0D0D0D;
    --black-soft: #1a1a1a;
    --black-mid: #2a2a2a;
    --white: #fafafa;
    --glass: rgba(247, 202, 201, 0.08);
    --glass-border: rgba(247, 202, 201, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background: var(--rose);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, mix-blend-mode 0.3s ease;
    mix-blend-mode: normal;
}

#cursor-ring {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(247, 202, 201, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, border-color 0.3s;
}

body.cursor-hover #cursor {
    width: 56px;
    height: 56px;
    mix-blend-mode: difference;
    background: var(--white);
}

body.cursor-hover #cursor-ring {
    width: 72px;
    height: 72px;
    border-color: var(--rose);
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 28px 60px;
}

#navbar.large {
    background: transparent;
}

#navbar.compact {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    padding: 16px 60px;
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-logo-image {
    width: 120px;
    height: auto;
    display: block;
    transition: width 0.4s;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: 0.02em;
    transition: font-size 0.4s;
}

.nav-tagline {
    font-size: 0.68rem;
    color: rgba(247, 202, 201, 0.55);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s;
    overflow: hidden;
    max-height: 20px;
}

#navbar.compact .nav-tagline {
    max-height: 0;
    opacity: 0;
}

#navbar.compact .nav-logo {
    font-size: 1.1rem;
}

#navbar.compact .nav-logo-image {
    width: 140px;
}

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

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--rose);
}

.nav-cta {
    background: var(--rose);
    color: var(--black);
    padding: 10px 26px;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.nav-cta-large {
    transition: all 0.4s;
}

#navbar.compact .nav-cta-large {
    padding: 8px 20px;
    font-size: 0.72rem;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(247, 202, 201, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 202, 201, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, var(--black) 100%);
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(247, 202, 201, 0.12);
    border-radius: 2px;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.fs1 {
    width: 120px;
    height: 120px;
    top: 18%;
    left: 10%;
    transform: rotate(12deg);
}

.fs2 {
    width: 60px;
    height: 60px;
    top: 65%;
    left: 8%;
    transform: rotate(-8deg);
    border-radius: 50%;
}

.fs3 {
    width: 200px;
    height: 1px;
    background: rgba(247, 202, 201, 0.15);
    border: none;
    top: 42%;
    right: 8%;
    transform: rotate(-30deg);
}

.fs4 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 14%;
    transform: rotate(45deg);
}

.fs5 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 18%;
    transform: rotate(20deg);
    border-radius: 50%;
}

.fs6 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    left: 18%;
    transform: rotate(-15deg);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 32px;
    display: block;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
}

.hero-headline em {
    font-style: italic;
    color: var(--rose);
    display: block;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(250, 250, 250, 0.55);
    margin-top: 28px;
    font-style: italic;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 52px;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
}

.btn-primary {
    background: var(--rose);
    color: var(--black);
    padding: 16px 40px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(247, 202, 201, 0.4);
    color: var(--rose);
    padding: 16px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(247, 202, 201, 0.08);
    border-color: var(--rose);
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 1.3s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--rose), transparent);
    animation: scrollPulse 2s infinite;
}

.scroll-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.4);
}

/* ─── SECTION BASE ─── */
section {
    position: relative;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--rose);

}

.section-title em {
    font-style: italic;
    color: var(--rose);
}

/* ─── WHAT WE DO ─── */
#what-we-do {
    padding: 120px 60px;
    background: var(--black);
    overflow: hidden;
}

.wwd-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wwd-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(250, 250, 250, 0.65);
    line-height: 1.8;
    margin-top: 28px;
    font-style: italic;
}

.wwd-desc strong {
    color: var(--rose);
    font-style: normal;
    font-weight: 600;
}

.wwd-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.stat {
    border-left: 2px solid var(--rose);
    padding-left: 20px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--rose);
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.45);
    margin-top: 4px;
}

.wwd-image-wrap {
    position: relative;
}

.wwd-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--black-soft);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.wwd-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 202, 201, 0.06) 0%, transparent 60%);
}

.wwd-img-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.door-illustration {
    width: 180px;
    height: 220px;
    border: 2px solid rgba(247, 202, 201, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
    position: relative;
}

.door-panel {
    background: rgba(247, 202, 201, 0.05);
    border: 1px solid rgba(247, 202, 201, 0.12);
    transition: background 0.3s;
}

.door-illustration:hover .door-panel {
    background: rgba(247, 202, 201, 0.12);
}

.door-handle {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: var(--rose);
    border-radius: 3px;
}

.wwd-img-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(247, 202, 201, 0.25);
    padding: 8px 12px;
    backdrop-filter: blur(4px);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.85);
}

.wwd-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.wwd-img-frame:hover .wwd-photo {
    transform: scale(1.04);
}

.wwd-corner-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(247, 202, 201, 0.15);
    transform: rotate(15deg);
}

/* ─── SERVICES GRID ─── */
#services {
    padding: 120px 60px;
    background: var(--black-soft);
}

#services .container {
    max-width: 1400px;
    margin: 0 auto;
}

#services .head {
    text-align: center;
    margin-bottom: 70px;
}

#services .head .section-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(250, 250, 250, 0.5);
    margin-top: 16px;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(247, 202, 201, 0.08);
}

.service-card {
    background: var(--black-soft);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: none;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 202, 201, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: var(--black-mid);
    transform: translateY(-4px);
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.service-card:hover .svc-expand {
    max-height: 200px;
    opacity: 1;
}

.service-card:hover .svc-num {
    color: var(--rose);
}

.svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(247, 202, 201, 0.07);
    position: absolute;
    top: 24px;
    right: 28px;
    transition: color 0.4s;
    line-height: 1;
}

.svc-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    position: relative;
}

.svc-icon-shape {
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(247, 202, 201, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: border-color 0.3s, background 0.3s;
}

.service-card:hover .svc-icon-shape {
    border-color: var(--rose);
    background: rgba(247, 202, 201, 0.08);
}

.svc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.svc-short {
    font-size: 0.82rem;
    color: rgba(250, 250, 250, 0.5);
    line-height: 1.6;
}

.svc-expand {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(247, 202, 201, 0.1);
}

.svc-expand p {
    font-size: 0.8rem;
    color: rgba(247, 202, 201, 0.7);
    line-height: 1.7;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    text-decoration: none;
}

.svc-link::after {
    content: '→';
    transition: transform 0.3s;
}

.svc-link:hover::after {
    transform: translateX(4px);
}

.service-card-image {
    padding: 0;
    min-height: 340px;
    justify-content: stretch;
}

.svc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 28px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.2) 55%, rgba(10, 10, 10, 0) 100%);
}

.svc-photo-tag {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.92);
}

.svc-photo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* ─── FAQ ─── */
#faq {
    padding: 120px 60px;
    background: var(--black);
}

#faq .container {
    max-width: 1000px;
    margin: 0 auto;
}

#faq .head {
    margin-bottom: 70px;
}

.faq-timeline {
    position: relative;
    padding-left: 60px;
}

.faq-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(247, 202, 201, 0.3), transparent);
}

.faq-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.faq-dot {
    position: absolute;
    left: -52px;
    top: 6px;
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(247, 202, 201, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    transition: all 0.3s;
}

.faq-dot-inner {
    width: 8px;
    height: 8px;
    background: rgba(247, 202, 201, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}

.faq-item.active .faq-dot {
    border-color: var(--rose);
    background: rgba(247, 202, 201, 0.08);
}

.faq-item.active .faq-dot-inner {
    background: var(--rose);
}

.faq-step-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.4);
    margin-bottom: 8px;
}

.faq-item.active .faq-step-label {
    color: var(--rose);
}

.faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    cursor: none;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(247, 202, 201, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: rgba(247, 202, 201, 0.5);
    transition: all 0.3s;
}

.faq-item.active .faq-arrow {
    border-color: var(--rose);
    color: var(--rose);
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-body {
    max-height: 400px;
}

.faq-content {
    padding: 20px 0 4px;
}

.faq-problem,
.faq-process,
.faq-solution {
    padding: 14px 20px;
    margin-bottom: 10px;
    font-size: 0.84rem;
    line-height: 1.7;
    position: relative;
}

.faq-problem {
    background: rgba(247, 202, 201, 0.04);
    border-left: 2px solid rgba(247, 202, 201, 0.2);
    color: rgba(250, 250, 250, 0.55);
}

.faq-process {
    background: rgba(247, 202, 201, 0.06);
    border-left: 2px solid rgba(247, 202, 201, 0.4);
    color: rgba(250, 250, 250, 0.65);
}

.faq-solution {
    background: rgba(247, 202, 201, 0.1);
    border-left: 2px solid var(--rose);
    color: var(--rose-light);
}

.faq-step-mini {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    opacity: 0.6;
}

/* ─── CTA BAND ─── */
#cta-band {
    padding: 100px 60px;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

#cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(247, 202, 201, 0.06) 0%, transparent 70%);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--rose);

}

.cta-title em {
    font-style: italic;
    color: var(--rose);
    display: block;
}

.cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(250, 250, 250, 0.5);
    margin-top: 20px;
    font-style: italic;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 44px;
    flex-wrap: wrap;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 1px solid rgba(247, 202, 201, 0.25);
    color: var(--rose);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.phone-cta:hover {
    background: rgba(247, 202, 201, 0.06);
    border-color: var(--rose);
}

.phone-icon {
    font-size: 1.1rem;
}

/* ─── SERVICE AREAS ─── */
#service-areas {
    padding: 120px 60px;
    background: var(--black);
}

#service-areas .container {
    max-width: 1400px;
    margin: 0 auto;
}

.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.areas-text .section-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(250, 250, 250, 0.55);
    line-height: 1.8;
    margin-top: 24px;
    font-style: italic;
}

.areas-text .section-desc strong {
    color: var(--rose-light);
    font-style: normal;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
}

.area-tag {
    padding: 10px 16px;
    border: 1px solid rgba(247, 202, 201, 0.15);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(250, 250, 250, 0.6);
    text-align: center;
    transition: all 0.3s;
    cursor: none;
}

.area-tag:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(247, 202, 201, 0.04);
}

.areas-map-side {
    position: relative;
}

.map-frame {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    background: var(--black-soft);
}

.map-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-pin-container {
    position: relative;
}

.map-pin {
    width: 16px;
    height: 16px;
    background: var(--rose);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    animation: pinPulse 2s infinite;
}

.map-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(247, 202, 201, 0.3);
    animation: ripple 2s infinite;
}

.map-label-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    background: rgba(10, 10, 10, 0.62);
    border: 1px solid rgba(247, 202, 201, 0.25);
    padding: 8px 12px;
    backdrop-filter: blur(4px);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.9);
}

.map-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(247, 202, 201, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 202, 201, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.map-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.map-frame:hover .map-photo {
    transform: scale(1.03);
}

/* ─── DETAILED SERVICES ─── */
#detailed-services {
    padding: 120px 60px;
    background: var(--black-soft);
}

#detailed-services .container {
    max-width: 1400px;
    margin: 0 auto;
}

.detail-head {
    margin-bottom: 70px;
}

.detail-timeline {
    position: relative;
}

.detail-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    align-items: start;
}

.detail-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.detail-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(247, 202, 201, 0.15);
    line-height: 1;
}

.detail-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(247, 202, 201, 0.2), transparent);
}

.detail-content {
    padding: 40px;
    border: 1px solid rgba(247, 202, 201, 0.1);
    background: var(--black);
    transition: border-color 0.3s;
}

.detail-content:hover {
    border-color: rgba(247, 202, 201, 0.25);
}

.detail-content-inner {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: start;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--rose);

}

.detail-title em {
    font-style: italic;
    color: var(--rose);
}

.detail-desc {
    font-size: 0.88rem;
    color: rgba(250, 250, 250, 0.55);
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feat-tag {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.6);
    padding: 5px 12px;
    border: 1px solid rgba(247, 202, 201, 0.15);
}

.detail-img-box {
    aspect-ratio: 1;
    background: var(--black-soft);
    border: 1px solid rgba(247, 202, 201, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s;
}

.detail-content:hover .detail-img-box {
    border-color: rgba(247, 202, 201, 0.2);
}

.detail-icon-big {
    width: 56px;
    height: 56px;
    border: 1.5px solid rgba(247, 202, 201, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.detail-img-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.25);
}

/* ─── FEATURED SERVICE ─── */
#featured-service {
    padding: 80px 60px;
    background: var(--black);
    border-top: 1px solid rgba(247, 202, 201, 0.08);
    border-bottom: 1px solid rgba(247, 202, 201, 0.08);
}

.fs-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fs-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--rose);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 24px;
}

.fs-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--rose);

}

.fs-title em {
    font-style: italic;
    color: var(--rose);
}

.fs-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(250, 250, 250, 0.55);
    line-height: 1.8;
    margin-top: 20px;
    font-style: italic;
}

.fs-img-wrap {
    position: relative;
}

.fs-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--black-soft);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.garage-anim {
    width: 160px;
    height: 180px;
    border: 2px solid rgba(247, 202, 201, 0.4);
    position: relative;
    overflow: hidden;
}

.garage-door-anim {
    width: 100%;
    height: 0;
    background: repeating-linear-gradient(0deg,
            rgba(247, 202, 201, 0.08) 0px,
            rgba(247, 202, 201, 0.08) 20px,
            transparent 20px,
            transparent 22px);
    border-bottom: 1px solid rgba(247, 202, 201, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    animation: doorOpen 3s 1s ease-in-out infinite alternate;
}

.fs-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.fs-img-main:hover .fs-photo {
    transform: scale(1.04);
}

.fs-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 26px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.15) 58%, rgba(10, 10, 10, 0) 100%);
}

.fs-photo-badge {
    align-self: flex-start;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    border: 1px solid rgba(247, 202, 201, 0.4);
    padding: 6px 10px;
    background: rgba(10, 10, 10, 0.35);
}

.fs-photo-text {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.04em;
}

.fs-corner {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(247, 202, 201, 0.12);
    transform: rotate(-10deg);
}

/* ─── CONTACT ─── */
#contact {
    padding: 120px 60px 0;
    background: var(--black-soft);
}

#contact .container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-head {
    text-align: center;
    margin-bottom: 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info h3 em {
    font-style: italic;
    color: var(--rose);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(247, 202, 201, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--rose);
}

.info-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.4);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.95rem;
    color: var(--white);
}

.info-value a {
    color: var(--rose);
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.contact-map-frame {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: var(--black);
    border: 1px solid rgba(247, 202, 201, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.contact-map-embed {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.contact-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(247, 202, 201, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 202, 201, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.contact-map-pin {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cpin {
    width: 20px;
    height: 20px;
    background: var(--rose);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pinPulse 2s infinite;
}

.cpin-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(247, 202, 201, 0.25);
    animation: ripple 2s infinite;
}

.cpin-label {
    transform: rotate(0);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.5);
    margin-top: 20px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(247, 202, 201, 0.08);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(247, 202, 201, 0.03) 0%, transparent 70%);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.glass-card {
    background: rgba(247, 202, 201, 0.04);
    border: 1px solid rgba(247, 202, 201, 0.12);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 2px;
    transition: border-color 0.3s, background 0.3s;
}

.glass-card:hover {
    border-color: rgba(247, 202, 201, 0.22);
    background: rgba(247, 202, 201, 0.06);
}

.footer-brand .nav-logo {
    font-size: 1.6rem;
}

.footer-brand .nav-tagline {
    max-height: none;
    opacity: 1;
    margin-top: 6px;
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(250, 250, 250, 0.4);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 202, 201, 0.5);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(250, 250, 250, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--rose);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(247, 202, 201, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(247, 202, 201, 0.4);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(247, 202, 201, 0.04);
}

.footer-bottom {
    max-width: 1400px;
    margin: 50px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(247, 202, 201, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(250, 250, 250, 0.25);
    letter-spacing: 0.05em;
}

.footer-copy span {
    color: var(--rose);
}

.footer-lic {
    font-size: 0.7rem;
    color: rgba(250, 250, 250, 0.2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes pinPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 202, 201, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(247, 202, 201, 0);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes doorOpen {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}