:root {
    --bronze: #B66A3C;
    --bronze-light: #D4895A;
    --bronze-dark: #8A4E2A;
    --bronze-pale: #F5E8DC;
    --bronze-muted: #E8C9B0;
    --dark: #1A0F08;
    --dark2: #2C1A0E;
    --charcoal: #3D2B1F;
    --cream: #FDF6EE;
    --white: #FFFFFF;
    --text-muted: #7A5C4A;
    --shadow: 0 20px 60px rgba(182, 106, 60, 0.15);
    --shadow-deep: 0 40px 80px rgba(26, 15, 8, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ── NAVBAR ─────────────────────────────────── */
.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-stack {
    position: relative;
    height: 64px;
}

.nav-card {
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-card-3 {
    top: 8px;
    height: 60px;
    background: var(--bronze-dark);
    opacity: 0.4;
    border-radius: 18px;
}

.nav-card-2 {
    top: 4px;
    height: 60px;
    background: var(--bronze);
    opacity: 0.6;
    border-radius: 18px;
}

.nav-card-1 {
    top: 0;
    height: 60px;
    background: var(--dark);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    border: 1px solid rgba(182, 106, 60, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-stack:hover .nav-card-3 {
    top: 14px;
    opacity: 0.5;
}

.nav-stack:hover .nav-card-2 {
    top: 8px;
    opacity: 0.7;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-logo span {
    color: var(--bronze-light);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--bronze);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--bronze-light) !important;
    color: var(--white) !important;
}

/* ── HERO ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding: 112px 26px 72px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.hero-noise {
    background: linear-gradient(130deg, var(--bronze-dark) 0%, var(--bronze) 36%, var(--bronze-muted) 68%, var(--cream) 100%);
}

.hero-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(80% 60% at 20% 12%, rgba(245, 232, 220, 0.32), transparent 68%),
        radial-gradient(65% 55% at 88% 20%, rgba(182, 106, 60, 0.26), transparent 70%),
        radial-gradient(70% 60% at 50% 90%, rgba(138, 78, 42, 0.2), transparent 70%);
    pointer-events: none;
}

.hero-noise-layer {
    position: absolute;
    inset: -100%;
    opacity: 0.12;
    mix-blend-mode: multiply;
    background-image:
        repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 3px),
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0 1px, transparent 1px 4px);
    animation: grainShift 1.2s steps(6) infinite;
    pointer-events: none;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(253, 246, 238, 0.88), rgba(232, 201, 176, 0.14));
    border: 1px solid rgba(245, 232, 220, 0.62);
    box-shadow: inset 0 0 30px rgba(245, 232, 220, 0.24), 0 18px 34px rgba(61, 43, 31, 0.18);
}

.orb-a {
    width: 150px;
    height: 150px;
    top: 18%;
    left: 7%;
    animation: orbDrift 14s ease-in-out infinite;
}

.orb-b {
    width: 92px;
    height: 92px;
    top: 68%;
    left: 16%;
    animation: orbDrift 12s ease-in-out infinite -3s;
}

.orb-c {
    width: 132px;
    height: 132px;
    top: 22%;
    right: 10%;
    animation: orbDrift 15s ease-in-out infinite -6s;
}

.hero-shell {
    width: min(1140px, 100%);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-card {
    width: min(900px, 100%);
    text-align: center;
    border-radius: 30px;
    padding: 44px 42px 38px;
    background: linear-gradient(145deg, rgba(253, 246, 238, 0.52), rgba(245, 232, 220, 0.24));
    border: 1px solid rgba(253, 246, 238, 0.62);
    box-shadow: 0 32px 70px rgba(61, 43, 31, 0.24);
    backdrop-filter: blur(11px);
}

.hero-script {
    margin: 0 0 6px;
    font-family: 'Caveat', cursive;
    color: var(--bronze-dark);
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(182, 106, 60, 0.18);
    border: 1px solid rgba(138, 78, 42, 0.36);
    color: var(--bronze-dark);
    padding: 7px 18px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5.7vw, 5.2rem);
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    line-height: 1.03;
    letter-spacing: -0.02em;
    max-width: 760px;
    margin: 0 auto 18px;
    text-wrap: balance;
}

.hero-heading em {
    font-style: normal;
    color: var(--bronze-dark);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(138, 78, 42, 0.35);
    text-underline-offset: 6px;
}

.hero-sub {
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    text-align: center;
    max-width: 610px;
    line-height: 1.75;
    margin: 0 auto 24px;
}

.hero-wax-btn {
    width: 128px;
    height: 128px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--cream);
    background:
        radial-gradient(circle at 30% 30%, var(--bronze-light) 0%, var(--bronze) 45%, var(--bronze-dark) 82%);
    border: 2px solid rgba(245, 232, 220, 0.44);
    box-shadow:
        inset 0 12px 24px rgba(212, 137, 90, 0.34),
        inset 0 -14px 20px rgba(138, 78, 42, 0.36),
        0 18px 26px rgba(61, 43, 31, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-wax-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        inset 0 12px 24px rgba(212, 137, 90, 0.38),
        inset 0 -14px 20px rgba(138, 78, 42, 0.4),
        0 22px 30px rgba(61, 43, 31, 0.34);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.stat-card {
    min-width: 165px;
    background: rgba(138, 78, 42, 0.24);
    border: 1px solid rgba(245, 232, 220, 0.34);
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 232, 220, 0.58);
    background: rgba(138, 78, 42, 0.32);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.stat-label {
    color: var(--charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── ABOUT ─────────────────────────────────── */
.about {
    padding: 100px 40px;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-label {
    display: inline-block;
    color: var(--bronze);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
}

.about-heading span {
    color: var(--bronze);
}

.about-text {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.97rem;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.about-feat-dot {
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-image-block {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-deep);
}

.about-badge-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--bronze);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(182, 106, 60, 0.4);
}

.about-badge-float strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.about-badge-float span {
    font-size: 0.82rem;
    opacity: 0.85;
}

/* ── FEATURES ─────────────────────────────────── */
.features {
    padding: 100px 40px;
    background: var(--dark);
}

.section-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--bronze-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.section-heading.dark {
    color: var(--dark);
}

.section-sub {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 14px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(182, 106, 60, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.feat-card:hover {
    background: rgba(182, 106, 60, 0.08);
    border-color: rgba(182, 106, 60, 0.5);
    transform: translateY(-6px);
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.feat-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── SERVICES (PARALLAX) ─────────────────────── */
.services-section {
    padding: 100px 40px;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-parallax-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-parallax-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.parallax-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s linear;
}

.parallax-bg-1 {
    background: linear-gradient(135deg, #1a0f08 0%, #8A4E2A 100%);
}

.parallax-bg-2 {
    background: linear-gradient(135deg, #2C1A0E 0%, #B66A3C 100%);
}

.parallax-bg-3 {
    background: linear-gradient(135deg, #3D2B1F 0%, #D4895A 100%);
}

.parallax-bg-4 {
    background: linear-gradient(135deg, #1a0f08 0%, #6B3820 100%);
}

.parallax-bg-5 {
    background: linear-gradient(135deg, #2C1A0E 0%, #B66A3C 100%);
}

.service-parallax-card .s-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.12;
    pointer-events: none;
}

.service-parallax-card .s-icon svg {
    width: 140px;
    height: 140px;
    display: block;
}

.service-text-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 15, 8, 0.95) 0%, rgba(26, 15, 8, 0.7) 60%, transparent 100%);
    padding: 40px 28px 32px;
    transition: all 0.3s;
}

.service-parallax-card:hover .service-text-card {
    background: linear-gradient(to top, rgba(26, 15, 8, 0.98) 0%, rgba(26, 15, 8, 0.85) 70%, transparent 100%);
}

.s-tag {
    display: inline-block;
    background: rgba(182, 106, 60, 0.3);
    color: var(--bronze-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

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

.s-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.s-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bronze-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.s-btn:hover {
    gap: 14px;
}

/* ── FAQ ─────────────────────────────────── */
.faq-section {
    padding: 100px 40px;
    background: var(--dark);
    max-width: 100%;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(182, 106, 60, 0.2);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(182, 106, 60, 0.6);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    color: var(--white);
    font-weight: 500;
    font-size: 0.97rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--bronze-light);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(182, 106, 60, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bronze-light);
    font-size: 1rem;
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    background: var(--bronze);
    border-color: var(--bronze);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

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

.faq-answer-inner {
    padding: 0 28px 22px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ── SERVICE AREAS ─────────────────────────────────── */
.service-areas {
    padding: 100px 40px;
    background: var(--cream);
}

.areas-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.areas-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.areas-left h2 span {
    color: var(--bronze);
}

.areas-left p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: var(--bronze-pale);
    border: 1px solid var(--bronze-muted);
    color: var(--bronze-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}

.area-tag:hover {
    background: var(--bronze);
    color: var(--white);
    border-color: var(--bronze);
}

.areas-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

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

.areas-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(182, 106, 60, 0.15);
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.2s;
}

.areas-list li:hover {
    border-color: var(--bronze);
    background: var(--bronze-pale);
    transform: translateX(6px);
}

.area-dot {
    width: 10px;
    height: 10px;
    background: var(--bronze);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── ADDITIONAL SERVICES ─────────────────────────── */
.additional-services {
    padding: 100px 40px;
    background: var(--dark2);
}

.add-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.add-service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(182, 106, 60, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.add-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(182, 106, 60, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.add-service-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.add-service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 15, 8, 0.55) 0%, rgba(26, 15, 8, 0.1) 55%, rgba(26, 15, 8, 0) 100%);
}

.add-service-img-1 {
    background-image: url('../img/service3.jpg');
}

.add-service-img-2 {
    background-image: url('../img/service4.jpg');
}

.add-service-img-3 {
    background-image: url('../img/hero.jpg');
}

.add-service-img-4 {
    background-image: url('../img/about.jpg');
}

.add-service-body {
    padding: 28px;
}

.add-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.add-service-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.add-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bronze);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s;
}

.add-service-btn:hover {
    background: var(--bronze-light);
    gap: 14px;
}

/* ── HOW WE WORK ─────────────────────────────────── */
.how-we-work {
    padding: 100px 40px;
    background: var(--cream);
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--bronze), var(--bronze-light), var(--bronze));
    z-index: 0;
}

.step-card {
    background: var(--white);
    border: 1px solid rgba(182, 106, 60, 0.2);
    border-radius: 20px;
    padding: 32px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(182, 106, 60, 0.15);
    border-color: var(--bronze);
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--bronze);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(182, 106, 60, 0.4);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.7;
}

/* ── COMPREHENSIVE SERVICES ─────────────────────────── */
.comprehensive-services {
    padding: 100px 40px;
    background: var(--cream);
}

.comp-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.comp-card {
    background: var(--white);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(182, 106, 60, 0.18);
    box-shadow: 0 20px 60px rgba(26, 15, 8, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.comp-card:hover {
    transform: translateY(-10px);
    border-color: rgba(182, 106, 60, 0.45);
    box-shadow: 0 30px 80px rgba(26, 15, 8, 0.15);
}

.comp-media {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.comp-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(182, 106, 60, 0.25) 0%, transparent 45%),
        linear-gradient(to top, rgba(26, 15, 8, 0.65) 0%, rgba(26, 15, 8, 0.15) 60%, rgba(26, 15, 8, 0) 100%);
}

.comp-media-1 {
    background-image: url('../img/service.jpg');
}

.comp-media-2 {
    background-image: url('../img/service2.jpg');
}

.comp-body {
    padding: 30px 28px 28px;
}

.comp-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(182, 106, 60, 0.12);
    border: 1px solid rgba(182, 106, 60, 0.22);
    color: var(--bronze-dark);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.comp-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.6rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.comp-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.comp-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    padding-left: 0;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(26, 15, 8, 0.72);
    font-size: 0.92rem;
    line-height: 1.6;
}

.comp-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--bronze);
    box-shadow: 0 0 0 4px rgba(182, 106, 60, 0.15);
    flex-shrink: 0;
}

.comp-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.comp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.comp-btn-primary {
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(26, 15, 8, 0.2);
}

.comp-btn-primary:hover {
    transform: translateY(-2px);
    background: #0f0905;
}

.comp-btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid rgba(182, 106, 60, 0.35);
}

.comp-btn-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(182, 106, 60, 0.7);
    background: rgba(182, 106, 60, 0.08);
}

/* ── CONTACT ─────────────────────────────────── */
.contact {
    padding: 100px 40px;
    background: var(--dark);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(182, 106, 60, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) sepia(20%);
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-info h2 span {
    color: var(--bronze-light);
}

.contact-intro {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(182, 106, 60, 0.2);
    border-radius: 16px;
    padding: 18px 22px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: rgba(182, 106, 60, 0.5);
    transform: translateX(6px);
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(182, 106, 60, 0.15);
    border: 1px solid rgba(182, 106, 60, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-body label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bronze-light);
    margin-bottom: 4px;
}

.contact-item-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-item-body a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-body a:hover {
    color: var(--bronze-light);
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bronze);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 28px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(182, 106, 60, 0.4);
}

.contact-cta:hover {
    background: var(--bronze-light);
    transform: translateY(-2px);
}

/* ── FOOTER ─────────────────────────────────── */
footer {
    background: var(--dark2);
    border-top: 1px solid rgba(182, 106, 60, 0.15);
    padding: 60px 40px 30px;
}

.footer-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(182, 106, 60, 0.2);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--bronze-light);
}

.footer-address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-btn-primary {
    background: var(--bronze);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(182, 106, 60, 0.35);
}

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

.footer-btn-outline {
    background: transparent;
    border: 1px solid rgba(182, 106, 60, 0.4);
    color: var(--bronze-light);
}

.footer-btn-outline:hover {
    background: rgba(182, 106, 60, 0.1);
    border-color: var(--bronze-light);
}

.footer-divider {
    height: 1px;
    background: rgba(182, 106, 60, 0.15);
    margin: 0 auto 30px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--bronze-light);
}

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes grainShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(6%, -8%);
    }

    50% {
        transform: translate(-7%, 5%);
    }

    75% {
        transform: translate(4%, 7%);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -16px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .about,
    .areas-layout,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .steps-grid::before {
        display: none;
    }

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

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

    .hero {
        padding: 104px 16px 54px;
    }

    .hero-card {
        padding: 34px 20px 28px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .stat-card {
        min-width: 46%;
    }

    .hero-wax-btn {
        width: 114px;
        height: 114px;
    }
}

@media (max-width: 600px) {

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

    .hero-heading {
        font-size: clamp(1.95rem, 10vw, 2.6rem);
    }

    .hero-script {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

    .hero-sub {
        font-size: 0.94rem;
        margin-bottom: 20px;
    }

    .hero-card {
        border-radius: 24px;
        padding: 26px 14px 22px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-card {
        min-width: 100%;
    }

    .hero-orb {
        opacity: 0.55;
    }
}