:root {
    --plum: #7B1E7A;
    --plum-dark: #5a145a;
    --plum-light: #9e2b9d;
    --plum-pale: #f0d4ef;
    --gold: #F7E7CE;
    --gold-deep: #d4a84b;
    --gold-bright: #e8c96a;
    --black: #0d0d0d;
    --white: #fdfaf6;
    --gray: #4a4a4a;
    --border: 3px solid var(--black);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--plum);
    border-bottom: 3px solid var(--gold-deep);
}

#navbar.visible {
    transform: translateY(0);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-logo span {
    color: var(--gold-bright);
}

.nav-logo img {
    width: 86px;
    height: 86px;
    border-radius: 20%;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-bright);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--gold);
    color: var(--plum) !important;
    padding: 0.5rem 1.4rem;
    font-weight: 700 !important;
    border: 2px solid var(--gold-deep);
    transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
    background: var(--gold-bright) !important;
}

.nav-cta::after {
    display: none !important;
}

/* ─── HERO (BRUTALIST) ─── */
#hero {
    min-height: 100vh;
    background: var(--white);
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-left {
    padding: 7rem 3rem 4rem 4rem;
    border-right: var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hero-grid-line {
    position: absolute;
    background: var(--plum-pale);
    opacity: 0.5;
}

.hero-grid-line.h {
    height: 1px;
    width: 100%;
    left: 0;
}

.hero-grid-line.v {
    width: 1px;
    height: 100%;
    top: 0;
}

.hero-grid-line:nth-child(1) {
    top: 33%;
}

.hero-grid-line:nth-child(2) {
    top: 66%;
}

.hero-grid-line:nth-child(3) {
    left: 50%;
}

.hero-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 18vw, 18rem);
    line-height: 0.85;
    color: var(--plum-pale);
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 0;
    user-select: none;
}

.hero-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum);
    border: 1.5px solid var(--plum);
    display: inline-block;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 5vw, 5.5rem);
    line-height: 1.0;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.hero-headline .accent {
    color: var(--plum);
    display: block;
}

.hero-headline .sub-accent {
    color: var(--gold-deep);
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-deep);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    border: 3px solid var(--plum);
    padding: 1rem 2.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    display: inline-block;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--plum);
    transform: translateX(-101%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--gold);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--plum);
}

.btn-ghost svg {
    transition: transform 0.2s;
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

.hero-right {
    background: var(--plum);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem;
    overflow: hidden;
}

.hero-right-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            rgba(247, 231, 206, 0.06) 0px,
            rgba(247, 231, 206, 0.06) 1px,
            transparent 1px,
            transparent 40px);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.hero-stat {
    background: rgba(247, 231, 206, 0.08);
    border: 1px solid rgba(247, 231, 206, 0.2);
    padding: 2rem 1.5rem;
    text-align: center;
}

.hero-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 231, 206, 0.6);
    margin-top: 0.4rem;
}

.hero-badge {
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
    border: 2px solid rgba(247, 231, 206, 0.3);
    padding: 1.2rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.hero-badge-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-badge-sub {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 231, 206, 0.5);
    margin-top: 0.3rem;
}

.hero-phone-wrap {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.hero-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-phone:hover {
    color: var(--gold-bright);
}

.hero-phone-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 231, 206, 0.4);
    text-align: center;
}

/* ─── HOW WE WORK ─── */
#how-we-work {
    padding: 8rem 0;
    background: var(--white);
    border-bottom: var(--border);
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
    border-bottom: 3px solid var(--black);
    padding-bottom: 2rem;
}

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    color: var(--black);
}

.section-title .gold {
    color: var(--gold-deep);
}

.section-desc-col {
    max-width: 380px;
}

.section-desc-col p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.how-step {
    padding: 2.5rem 2rem;
    border-right: var(--border);
    position: relative;
    transition: background 0.3s;
}

.how-step:last-child {
    border-right: none;
}

.how-step:hover {
    background: var(--plum);
}

.how-step:hover .step-num,
.how-step:hover .step-title,
.how-step:hover .step-desc {
    color: var(--gold);
}

.how-step:hover .step-icon-wrap {
    border-color: var(--gold);
    background: rgba(247, 231, 206, 0.1);
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--plum-pale);
    transition: color 0.3s;
}

.step-icon-wrap {
    width: 52px;
    height: 52px;
    border: 2px solid var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    transition: border-color 0.3s, background 0.3s;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.step-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--gray);
    transition: color 0.3s;
}

/* ─── SERVICES ─── */
#services {
    padding: 8rem 0;
    background: var(--black);
    border-bottom: 3px solid var(--gold-deep);
}

.services-intro {
    max-width: 1300px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(247, 231, 206, 0.15);
    padding-bottom: 3rem;
}

.services-intro .section-eyebrow {
    color: var(--gold-deep);
}

.services-intro .section-title {
    color: var(--gold);
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: var(--border);
    border-color: rgba(247, 231, 206, 0.2);
}

.service-card {
    padding: 2.5rem 1.8rem;
    border-right: 1px solid rgba(247, 231, 206, 0.15);
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:last-child {
    border-right: none;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--plum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    background: rgba(123, 30, 122, 0.15);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(247, 231, 206, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
}

.service-card:hover .service-icon {
    border-color: var(--plum-light);
    background: rgba(123, 30, 122, 0.3);
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-brief {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(247, 231, 206, 0.5);
    margin-bottom: 1.5rem;
}

.service-expand-btn {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
}

.service-expand-btn:hover {
    color: var(--gold-bright);
}

/* Fullscreen Service Overlay */
#service-overlay {
    position: fixed;
    inset: 0;
    background: var(--plum-dark);
    z-index: 2000;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    overflow-y: auto;
}

#service-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-overlay-inner {
    max-width: 900px;
    margin: auto;
    padding: 5rem 4rem;
    position: relative;
}

.service-overlay-close {
    position: fixed;
    top: 2rem;
    right: 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: none;
    border: 2px solid rgba(247, 231, 206, 0.3);
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.service-overlay-close:hover {
    background: rgba(247, 231, 206, 0.1);
    border-color: var(--gold);
}

.overlay-service-tag {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.5rem;
}

.overlay-service-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1.05;
    margin-bottom: 2rem;
}

.overlay-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-deep);
    margin-bottom: 2rem;
}

.overlay-service-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(247, 231, 206, 0.8);
    margin-bottom: 2rem;
}

.overlay-service-list {
    list-style: none;
    margin-bottom: 3rem;
}

.overlay-service-list li {
    font-size: 0.9rem;
    color: rgba(247, 231, 206, 0.7);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.overlay-service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-deep);
    display: block;
    flex-shrink: 0;
}

.overlay-cta {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    background: var(--gold);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid var(--gold-deep);
    transition: background 0.2s;
}

.overlay-cta:hover {
    background: var(--gold-bright);
}

/* ─── ABOUT ─── */
#about {
    padding: 8rem 0;
    background: var(--white);
    border-bottom: var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-left {
    padding: 0 4rem 0 3rem;
    border-right: var(--border);
}

.about-right {
    padding: 0 3rem 0 4rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.about-img {
    aspect-ratio: 4/3;
    background: var(--plum);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--plum-pale);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-1 {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 60%, #3a0c3a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.about-img-placeholder svg {
    opacity: 0.4;
}

.about-img-placeholder span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 231, 206, 0.4);
}

.about-img-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--plum);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--border);
    margin-top: 3rem;
}

.about-stat {
    padding: 2rem 1.5rem;
    border-right: var(--border);
    text-align: center;
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--plum);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0.4rem;
}

.about-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--plum-pale);
    font-size: 0.92rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold-deep);
    display: block;
    flex-shrink: 0;
}

/* ─── FAQ ─── */
#faq {
    padding: 8rem 0;
    background: var(--plum);
    border-bottom: 3px solid var(--gold-deep);
}

#faq .section-eyebrow {
    color: var(--gold-deep);
}

#faq .section-title {
    color: var(--gold);
}

#faq .section-header {
    border-color: rgba(247, 231, 206, 0.2);
}

.faq-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    counter-reset: faq-counter;
}

.faq-item {
    border: 1px solid rgba(247, 231, 206, 0.15);
    border-top: none;
    counter-increment: faq-counter;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-item:first-child {
    border-top: 1px solid rgba(247, 231, 206, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(247, 231, 206, 0.05);
}

.faq-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(247, 231, 206, 0.25);
    min-width: 3rem;
    line-height: 1;
}

.faq-q-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(247, 231, 206, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.3s;
    color: var(--gold);
}

.faq-item.open .faq-toggle {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: var(--plum);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 2.5rem 0 calc(3rem + 2.5rem);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(247, 231, 206, 0.65);
    border-top: 1px solid rgba(247, 231, 206, 0.1);
    padding-top: 1.5rem;
}

/* ─── CTA BANNER ─── */
#cta-banner {
    padding: 7rem 0;
    background: var(--white);
    border-bottom: var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 20vw, 22rem);
    color: var(--plum-pale);
    white-space: nowrap;
    user-select: none;
    z-index: 0;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 5rem);
    color: var(--black);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.cta-title span {
    color: var(--plum);
}

.cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-gold {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    background: var(--gold);
    border: 3px solid var(--gold-deep);
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

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

.btn-outline-dark {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    border: 3px solid var(--black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

/* ─── SERVICE AREAS ─── */
#service-areas {
    padding: 7rem 0;
    background: var(--gold);
    border-bottom: var(--border);
}

#service-areas .section-title {
    color: var(--plum);
}

#service-areas .section-eyebrow {
    color: var(--plum-light);
}

#service-areas .section-header {
    border-color: var(--plum-pale);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0;
    border: var(--border);
    border-color: var(--plum-pale);
}

.area-item {
    padding: 1.5rem 1.8rem;
    border-right: 1px solid var(--plum-pale);
    border-bottom: 1px solid var(--plum-pale);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: background 0.2s;
    cursor: default;
}

.area-item:hover {
    background: var(--plum-pale);
}

.area-dot {
    width: 6px;
    height: 6px;
    background: var(--plum);
    flex-shrink: 0;
    border-radius: 0;
}

.area-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--plum);
}

/* ─── DETAIL SERVICE ─── */
#detail-service {
    padding: 8rem 0;
    background: var(--white);
    border-bottom: var(--border);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.detail-left {
    padding: 0 4rem 0 3rem;
    border-right: var(--border);
}

.detail-right {
    padding: 0 3rem 0 4rem;
}

.detail-images {
    position: relative;
}

.detail-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 50%, #2e0a2e 100%);
    border: 2px solid var(--plum-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.detail-img-main img,
.detail-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.15), transparent);
    z-index: 1;
}

.detail-img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.detail-img-small {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #4a1249 0%, var(--plum-dark) 100%);
    border: 2px solid var(--plum-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.detail-img-small:hover {
    transform: scale(1.02);
}

.detail-img-small::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.65), transparent 70%);
    z-index: 1;
}

.img-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 231, 206, 0.95);
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.7rem;
    z-index: 2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.detail-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.detail-feature {
    padding: 1.2rem;
    border: 1.5px solid var(--plum-pale);
    transition: border-color 0.2s, background 0.2s;
}

.detail-feature:hover {
    border-color: var(--plum);
    background: rgba(123, 30, 122, 0.03);
}

.detail-feature-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--plum);
    margin-bottom: 0.4rem;
}

.detail-feature-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ─── CONTACT ─── */
#contact {
    padding: 8rem 0;
    background: var(--black);
    border-bottom: 3px solid var(--gold-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-map {
    border-right: 1px solid rgba(247, 231, 206, 0.1);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0a1a 0%, #2d0d2c 50%, #1a0a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 500px;
}

.map-placeholder svg {
    opacity: 0.5;
}

.map-placeholder-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: rgba(247, 231, 206, 0.3);
}

.map-pin-label {
    font-size: 0.8rem;
    color: var(--gold-deep);
    letter-spacing: 0.1em;
}

/* Google Maps embed */
.map-embed {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: grayscale(30%) sepia(20%);
}

.contact-info {
    padding: 4rem;
}

#contact .section-eyebrow {
    color: var(--gold-deep);
}

#contact .section-title {
    color: var(--gold);
}

#contact .section-header {
    border-color: rgba(247, 231, 206, 0.15);
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(247, 231, 206, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(247, 231, 206, 0.04);
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
}

.contact-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: var(--gold-bright);
}

.contact-sub {
    font-size: 0.82rem;
    color: rgba(247, 231, 206, 0.45);
    margin-top: 0.2rem;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(247, 231, 206, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(247, 231, 206, 0.04);
    border: 1.5px solid rgba(247, 231, 206, 0.15);
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(247, 231, 206, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--plum-light);
}

.form-group select option {
    background: var(--plum-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--plum);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.1rem;
    border: 2px solid var(--gold-deep);
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.form-submit:hover {
    background: var(--gold-bright);
}

/* ─── COMPREHENSIVE SERVICE ─── */
#comprehensive-service {
    padding: 8rem 0;
    background: var(--plum-pale);
    border-bottom: var(--border);
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--border);
    margin-top: 4rem;
}

.comp-item {
    padding: 2.5rem 2rem;
    border-right: var(--border);
    border-bottom: var(--border);
    transition: background 0.3s;
    position: relative;
}

.comp-item:nth-child(3n) {
    border-right: none;
}

.comp-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.comp-item:hover {
    background: var(--white);
}

.comp-icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--plum-pale);
    border-color: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}

.comp-item:hover .comp-icon {
    background: var(--plum);
}

.comp-item:hover .comp-icon svg {
    color: var(--gold);
}

.comp-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--plum);
    margin-bottom: 0.7rem;
}

.comp-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray);
}

/* ─── FOOTER ─── */
#footer {
    background: var(--plum-dark);
    border-top: 3px solid var(--gold-deep);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
}

.footer-col {
    padding: 4rem 2.5rem;
    border-right: 1px solid rgba(247, 231, 206, 0.1);
}

.footer-col:last-child {
    border-right: none;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.footer-logo span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.footer-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(247, 231, 206, 0.5);
    margin-bottom: 1.5rem;
}

.footer-col-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(247, 231, 206, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--plum-light);
    display: block;
    flex-shrink: 0;
}

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

.footer-contact-item {
    margin-bottom: 1.2rem;
}

.footer-contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.2rem;
}

.footer-contact-value {
    font-size: 0.88rem;
    color: rgba(247, 231, 206, 0.65);
}

.footer-contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-value a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 1.8rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(247, 231, 206, 0.3);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(247, 231, 206, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--gold-deep);
}

/* ─── SCROLL FADE IN ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .hero-headline {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

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

    .comp-item:nth-child(3n) {
        border-right: var(--border);
    }

    .comp-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 800px) {
    #hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        min-height: 350px;
    }

    .hero-left {
        padding: 6rem 2rem 3rem;
    }

    .about-grid,
    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-left,
    .detail-left {
        border-right: none;
        border-bottom: var(--border);
        padding: 0 2rem 3rem;
    }

    .about-right,
    .detail-right {
        padding: 3rem 2rem 0;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map {
        border-right: none;
        border-bottom: 1px solid rgba(247, 231, 206, 0.1);
    }

    .contact-info {
        padding: 3rem 2rem;
    }

    .how-steps {
        grid-template-columns: 1fr 1fr;
    }

    .how-step:nth-child(2) {
        border-right: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(247, 231, 206, 0.1);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .nav-links {
        display: none;
    }
}