:root {
    --dark: #2B2B2B;
    --dark2: #1e1e1e;
    --dark3: #333;
    --gold: #c8866e;
    --gold2: #e2c48a;
    --white: #f5f2ee;
    --offwhite: #ece8e1;
    --muted: #888;
    --light: #d4cfc8;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ──────────────────────────────────────────────
NAVBAR
────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(43, 43, 43, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav-logo span {
    display: block;
    font-size: 0.65rem;
    color: var(--light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.menu-btn {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 4px;
    padding: 10px;
    transition: border-color 0.3s;
}

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

.menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(.77, 0, .175, 1);
    transform-origin: center;
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Full-screen overlay menu */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--dark2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.fullscreen-menu.open {
    opacity: 1;
    pointer-events: all;
}

.fullscreen-menu a {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s;
    opacity: 0;
    transform: translateY(30px);
    display: block;
    text-align: center;
}

.fullscreen-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu a:nth-child(1) {
    transition: color 0.3s, opacity 0.5s 0.1s, transform 0.5s 0.1s;
}

.fullscreen-menu a:nth-child(2) {
    transition: color 0.3s, opacity 0.5s 0.15s, transform 0.5s 0.15s;
}

.fullscreen-menu a:nth-child(3) {
    transition: color 0.3s, opacity 0.5s 0.2s, transform 0.5s 0.2s;
}

.fullscreen-menu a:nth-child(4) {
    transition: color 0.3s, opacity 0.5s 0.25s, transform 0.5s 0.25s;
}

.fullscreen-menu a:nth-child(5) {
    transition: color 0.3s, opacity 0.5s 0.3s, transform 0.5s 0.3s;
}

.fullscreen-menu a:nth-child(6) {
    transition: color 0.3s, opacity 0.5s 0.35s, transform 0.5s 0.35s;
}

.fullscreen-menu a:hover {
    color: var(--gold);
}

.fullscreen-menu .menu-close-contact {
    margin-top: 40px;
    font-size: 1rem;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.5s 0.5s;
}

.fullscreen-menu.open .menu-close-contact {
    opacity: 1;
}

/* ──────────────────────────────────────────────
HERO — Layered Cards
────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--dark2);
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(90deg, rgba(200, 169, 110, 0.04) 0, rgba(200, 169, 110, 0.04) 1px, transparent 1px, transparent 60px);
}

.hero-layout {
    position: relative;
    z-index: 1;
    width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(180px, 0.85fr) minmax(0, 2fr) minmax(180px, 0.85fr);
    gap: clamp(16px, 2.2vw, 32px);
    align-items: stretch;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.hero-side-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200, 169, 110, 0.22);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    min-height: 480px;
}

.hero-side-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 30, 30, 0.68), rgba(30, 30, 30, 0.2));
}

.hero-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

.hero-side-left {
    transform: translateY(42px);
}

.hero-side-right {
    transform: translateY(-42px);
}

.hero-card-back2 {
    position: absolute;
    inset: 0;
    background: rgba(200, 169, 110, 0.06);
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 16px;
    transform: translate(16px, 16px) scale(0.97);
}

.hero-card-back1 {
    position: absolute;
    inset: 0;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 16px;
    transform: translate(8px, 8px) scale(0.985);
}

.hero-card-main {
    position: relative;
    background: linear-gradient(145deg, #323232 0%, #252525 100%);
    border: 1px solid rgba(200, 169, 110, 0.35);
    border-radius: 16px;
    padding: clamp(40px, 6vw, 72px) clamp(32px, 6vw, 72px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title em {
    color: var(--gold);
    font-style: normal;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--light);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark2);
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

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

.btn-outline {
    border: 1px solid rgba(200, 169, 110, 0.5);
    color: var(--gold);
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    background: none;
    transition: border-color 0.3s, background 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.08);
}

.hero-phone-strip {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-phone-strip .ph-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-strip .ph-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.hero-phone-strip .ph-label {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-phone-strip .ph-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gold);
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        max-width: 900px;
    }

    .hero-side-image {
        display: none;
    }
}

/* ──────────────────────────────────────────────
ABOUT
────────────────────────────────────────────── */
#about {
    background: var(--dark);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 32px;
}

.section-title em {
    color: var(--gold);
    font-style: normal;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

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

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.85) contrast(1.1);
}

.about-img-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(43, 43, 43, 0.9);
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    gap: 32px;
}

.about-stat-mini h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 900;
}

.about-stat-mini p {
    font-size: 0.78rem;
    color: var(--light);
    margin-top: 2px;
}

.about-text p {
    font-size: 1.02rem;
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.feature-box {
    background: rgba(200, 169, 110, 0.06);
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 10px;
    padding: 20px;
}

.feature-box .f-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-box p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ──────────────────────────────────────────────
SERVICES — Numbered
────────────────────────────────────────────── */
#services {
    background: var(--dark2);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}

.services-top-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 72px;
    filter: brightness(0.7) contrast(1.1);
    display: block;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}

.services-header-right {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 300px;
    line-height: 1.6;
}

.numbered-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2px;
}

.num-service {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 169, 110, 0.1);
    padding: 40px 36px;
    transition: background 0.3s, border-color 0.3s;
    cursor: default;
}

.num-service:hover {
    background: rgba(200, 169, 110, 0.06);
    border-color: rgba(200, 169, 110, 0.3);
}

.svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(200, 169, 110, 0.18);
    line-height: 1;
    margin-bottom: 20px;
}

.svc-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.svc-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ──────────────────────────────────────────────
WHAT WE DO
────────────────────────────────────────────── */
#whatwedo {
    background: var(--dark);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}

.wwd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media(max-width:768px) {
    .wwd-grid {
        grid-template-columns: 1fr;
    }
}

.wwd-visual {
    position: relative;
    height: 480px;
}

.wwd-img-main {
    width: 80%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    right: 0;
    top: 0;
    filter: brightness(0.8);
}

.wwd-img-accent {
    width: 50%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    border: 3px solid var(--dark);
    z-index: 2;
    filter: brightness(0.85);
}

.wwd-tag {
    position: absolute;
    top: 24px;
    left: 12px;
    z-index: 3;
    background: var(--gold);
    color: var(--dark2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
}

.wwd-text .section-title {
    margin-bottom: 24px;
}

.wwd-text p {
    font-size: 1rem;
    color: var(--light);
    line-height: 1.78;
    margin-bottom: 16px;
}

.wwd-checklist {
    margin-top: 28px;
    list-style: none;
}

.wwd-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.wwd-checklist li:last-child {
    border-bottom: none;
}

.wwd-check {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────
FAQ Timeline
────────────────────────────────────────────── */
#faq {
    background: var(--dark2);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

@media(max-width:768px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

.faq-intro p {
    font-size: 1rem;
    color: var(--light);
    line-height: 1.75;
    margin-top: 20px;
}

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

.faq-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(200, 169, 110, 0.1));
}

.faq-item {
    position: relative;
    margin-bottom: 36px;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-q .faq-toggle {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    border-left: 2px solid rgba(200, 169, 110, 0.25);
    padding-left: 16px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.faq-divider {
    width: 2px;
    background: rgba(200, 169, 110, 0.08);
    height: 24px;
    margin-left: 0;
    margin-bottom: 0;
}

/* ──────────────────────────────────────────────
STATS
────────────────────────────────────────────── */
#stats {
    background: var(--gold);
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 100px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stat-item {}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--dark2);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(43, 43, 43, 0.7);
    margin-top: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ──────────────────────────────────────────────
SERVICE AREAS — Stacked Cards
────────────────────────────────────────────── */
#areas {
    background: var(--dark);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}

.areas-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
}

@media(max-width:768px) {
    .areas-intro {
        grid-template-columns: 1fr;
    }
}

.areas-intro-right {
    font-size: 1rem;
    color: var(--light);
    line-height: 1.75;
}

.stacked-card-container {
    position: relative;
    padding-bottom: 40px;
}

.stacked-card {
    background: linear-gradient(145deg, #303030 0%, #252525 100%);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 14px;
    padding: 36px 40px;
    margin-bottom: 16px;
    transform: translateY(0);
    transition: transform 0.4s;
    position: relative;
}

.stacked-card:hover {
    transform: translateY(-4px);
}

.stacked-card:nth-child(2) {
    margin-left: 20px;
    margin-right: -20px;
}

.stacked-card:nth-child(3) {
    margin-left: 40px;
    margin-right: -40px;
}

.area-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.area-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.area-card-badge {
    background: rgba(200, 169, 110, 0.12);
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: var(--gold);
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: 100px;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.83rem;
    color: var(--light);
    text-align: center;
    transition: border-color 0.3s, color 0.3s;
}

.area-tag:hover {
    border-color: rgba(200, 169, 110, 0.35);
    color: var(--gold);
}

/* ──────────────────────────────────────────────
ADDITIONAL SERVICES
────────────────────────────────────────────── */
#additional {
    background: var(--dark2);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}

.add-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media(max-width:768px) {
    .add-grid {
        grid-template-columns: 1fr;
    }
}

.add-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    filter: brightness(0.75);
}

.add-text p {
    font-size: 1rem;
    color: var(--light);
    line-height: 1.78;
    margin-bottom: 16px;
}

.add-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}

.add-svc-item {
    background: rgba(200, 169, 110, 0.06);
    border: 1px solid rgba(200, 169, 110, 0.12);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.83rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-svc-item .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────
CONTACT
────────────────────────────────────────────── */
#contact {
    background: var(--dark);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

@media(max-width:768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: linear-gradient(145deg, #313131 0%, #262626 100%);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 14px;
    padding: 40px 36px;
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.contact-row:last-of-type {
    border-bottom: none;
}

.contact-row .c-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(200, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row .c-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.contact-row .c-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.contact-row .c-val {
    font-size: 0.95rem;
    color: var(--white);
}

.contact-row .c-val a {
    color: var(--gold);
    text-decoration: none;
}

.contact-row .c-val a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: linear-gradient(145deg, #313131 0%, #262626 100%);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 14px;
    padding: 40px 36px;
}

.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

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

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:540px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ──────────────────────────────────────────────
FOOTER
────────────────────────────────────────────── */
footer {
    background: var(--dark2);
    padding: 60px clamp(24px, 6vw, 100px) 0;
    border-top: 1px solid rgba(200, 169, 110, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

@media(max-width:640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .nav-logo {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 280px;
    margin-top: 12px;
}

.footer-contact h4 {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-addr {
    font-size: 0.9rem;
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 169, 110, 0.08);
    border: 1px solid rgba(200, 169, 110, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    padding: 11px 18px;
    font-size: 0.88rem;
    transition: background 0.3s, border-color 0.3s;
}

.footer-btn:hover {
    background: rgba(200, 169, 110, 0.15);
    border-color: var(--gold);
}

.footer-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 169, 110, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

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

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

@media(max-width:640px) {
    nav {
        padding: 16px 20px;
    }

    #hero {
        padding: 112px 16px 72px;
    }

    .hero-card-main {
        padding: 36px 24px;
    }

    #about,
    #services,
    #whatwedo,
    #faq,
    #stats,
    #areas,
    #additional,
    #contact {
        padding: 64px 20px;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .stacked-card:nth-child(2),
    .stacked-card:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
    }
}


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

body {
    font-family: 'DM Sans', sans-serif;
    background: #f7f7f7;
}

.hero {
    background: #f7f7f7;
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal cross-hatch with soft grey, NO dots, as per screenshot */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, rgba(200, 200, 200, 0.12) 0px, rgba(200, 200, 200, 0.12) 2px, transparent 3px, transparent 18px),
        repeating-linear-gradient(-45deg, rgba(200, 200, 200, 0.1) 0px, rgba(200, 200, 200, 0.1) 1.5px, transparent 2.5px, transparent 18px);
    pointer-events: none;
    z-index: 0;
}

/* Accent bar at top */
.hero-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #c8866e;
    z-index: 10;
}

/* 2-cols, left: text/buttons, right: images */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    min-height: 92vh;
    padding: 60px 32px 60px 64px;
    gap: 32px;
}

/* === LEFT TEXT SIDE === */
.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-eyebrow {
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    color: #c8866e;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'DM Sans', 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.12;
    margin-bottom: 17px;
    letter-spacing: -0.01em;
}

.hero-title .underline-word {
    color: #222;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeUp 0.5s 0.1s both;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2.5px;
    background: #c8866e;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.07;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    animation: fadeUp 0.55s 0.2s both;
}

.hero-title .underline-word {
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.hero-title .underline-word::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #c8866e;
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 38px;
    font-weight: 400;
    animation: fadeUp 0.55s 0.32s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeUp 0.55s 0.42s both;
}

.btn-primary {
    background: #c8866e;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 38px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-block;
    transition: background 0.17s, transform 0.14s;
}

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

.btn-secondary {
    background: #4a4a4a;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 38px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-block;
    transition: background 0.17s, transform 0.14s;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 44px;
    padding-top: 30px;
    border-top: 1.5px solid #ddd;
    animation: fadeUp 0.55s 0.52s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.stat-num span {
    color: #c8866e;
}

.stat-desc {
    font-size: 0.78rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== RIGHT COLLAGE ===== */
.hero-right {
    position: relative;
    height: 620px;
    animation: fadeUp 0.7s 0.3s both;
}

/* Vertical red accent stripe */
.hero-right::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 80px;
    bottom: 80px;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #c8866e 30%, #c8866e 70%, transparent);
    z-index: 1;
}

.img-card {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
    background: #ddd;
}

.img-card:hover {
    box-shadow: 0 22px 66px rgba(0, 0, 0, 0.2);
    z-index: 20 !important;
    transform: scale(1.04) rotate(0deg) !important;
}

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

.card-1 {
    width: 290px;
    height: 205px;
    top: 28px;
    left: 10px;
    transform: rotate(-2.2deg);
    z-index: 3;
}

.card-2 {
    width: 340px;
    height: 245px;
    bottom: 32px;
    left: 50px;
    transform: rotate(1.6deg);
    z-index: 2;
}

.card-3 {
    width: 245px;
    height: 330px;
    top: 44px;
    right: 0px;
    transform: rotate(2.1deg);
    z-index: 4;
}

/* Decorative red/grey squares */
.deco-sq-1 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #c8866e;
    opacity: 0.1;
    bottom: 70px;
    right: 55px;
    z-index: 1;
}

.deco-sq-2 {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #4a4a4a;
    opacity: 0.09;
    top: 14px;
    right: 5px;
    z-index: 1;
}

/* Handwritten note */
.hw-note {
    position: absolute;
    bottom: 108px;
    right: 28px;
    z-index: 15;
    pointer-events: none;
}

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

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

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 56px 24px 44px;
        min-height: auto;
        gap: 34px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-right {
        height: 380px;
        width: 100%;
    }

    .card-1 {
        width: 180px;
        height: 130px;
        top: 8px;
        left: 4px;
    }

    .card-2 {
        width: 210px;
        height: 155px;
        bottom: 10px;
        left: 20px;
    }

    .card-3 {
        width: 155px;
        height: 210px;
        top: 20px;
        right: 10px;
    }

    .hero-right::after {
        display: none;
    }
}



.hero {
    padding: 80px 60px;
    background-color: var(--dark);
    /* dotted background */
    background-size: 22px 22px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    max-width: 55%;
}

.hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--gold);
}

.underline {
    position: relative;
}

.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 4px;
    background: #fff;
}

.hero-left p {
    margin-top: 20px;
    font-size: 20px;
    color: var(--gold2);
}

.buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
}

.btn-primary {
    background: #c8866e;
    color: white;
}

.btn-secondary {
    background: #5c6370;
    color: white;
}

/* IMAGE LAYOUT */
.hero-images {
    position: relative;
    width: 45%;
    height: 400px;
}

.img {
    position: absolute;
    object-fit: cover;
    border-radius: 4px;
}

/* Large right image */
.img-large {
    width: 60%;
    height: 100%;
    right: 0;
    top: 0;
}

/* Middle overlapping image */
.img-middle {
    width: 45%;
    height: 60%;
    left: 0;
    top: 20%;
    z-index: 2;
}

/* Small left image */
.img-small {
    width: 35%;
    height: 50%;
    left: -20%;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-images {
        width: 100%;
        height: 300px;
        margin-top: 40px;
    }

    .hero-left h1 {
        font-size: 42px;
    }
}