/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Earthy, warm primary palette */
    --primary: #2c2014;
    /* Deep timber brown */
    --primary-mid: #3d2d1a;
    --primary-light: #6b4a28;

    /* Warm amber accent — premium gold */
    --accent: #b87333;
    /* Copper/amber */
    --accent-dark: #8f5620;
    --accent-light: rgba(184, 115, 51, 0.12);
    --gold: #c49a38;
    --gold-light: rgba(196, 154, 56, 0.15);

    /* Stone / sand neutrals */
    --bg: #f7f4ef;
    --bg-warm: #f0ebe1;
    --bg-surface: #ffffff;
    --bg-dark: #1e160c;
    --bg-dark-alt: #2c2014;
    --bg-dark-card: #38271a;

    /* Text */
    --text: #1e160c;
    --text-secondary: #5c4a35;
    --text-muted: #9c8872;
    --text-on-dark: #e8ddd0;
    --text-on-dark-muted: #9c8872;

    /* Borders */
    --border: #ddd4c4;
    --border-light: #ece6da;

    /* Danger / success */
    --danger: #b03a2e;
    --success: #2a6e3f;

    /* Typography */
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Fraunces', Georgia, serif;
    --font-ui: 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --section-py: 96px;
    --container-px: 24px;

    /* Radius — softer, more premium than VVS */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(44, 32, 20, 0.08), 0 2px 8px rgba(44, 32, 20, 0.05);
    --shadow-md: 0 4px 24px rgba(44, 32, 20, 0.12);
    --shadow-lg: 0 12px 48px rgba(44, 32, 20, 0.18);
    --shadow-xl: 0 24px 64px rgba(44, 32, 20, 0.22);

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.28s;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease);
}

/* Fraunces serif for headings — editorial, NOT condensed industrial */
h1,
h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    letter-spacing: -0.02em;
}

h3,
h4 {
    font-family: var(--font-ui);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
}

h1 em {
    font-style: italic;
    color: var(--accent);
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
    font-size: 1.15rem;
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}


/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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


/* ===================================================================
   BUTTONS — premium, warm, with depth
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.btn i {
    font-size: 1.1em;
}

/* Primary — dark timber */
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3), 0 4px 16px rgba(44, 32, 20, 0.25);
}

.btn-primary:hover {
    background: var(--primary-mid);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 2px 8px rgba(44, 32, 20, 0.2);
    transform: translateY(1px);
}

/* Gold / amber CTA */
.btn-gold {
    background: var(--gold);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 2px 0 var(--accent-dark), 0 4px 20px rgba(196, 154, 56, 0.4);
}

.btn-gold:hover {
    background: #d4a83e;
    box-shadow: 0 1px 0 var(--accent-dark), 0 2px 10px rgba(196, 154, 56, 0.3);
    transform: translateY(1px);
}

/* Outline white (on dark backgrounds) */
.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Outline amber */
.btn-outline-amber {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline-amber:hover {
    background: var(--accent);
    color: #fff;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.92rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}


/* ===================================================================
   SECTION HEADER
   =================================================================== */
.section-header {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-header h2 {
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ===================================================================
   TOP BAR
   =================================================================== */
.top-bar {
    background: var(--primary);
    padding: 9px 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-ui);
}

.top-bar-phone i {
    color: var(--gold);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-bar-hours {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-hours i {
    color: #68c97a;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.55);
}

.top-bar-right a:hover {
    color: #fff;
}

.badge-rot {
    background: var(--gold);
    color: var(--primary);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}


/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(44, 32, 20, 0.07);
    transition: box-shadow 0.3s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-name em {
    font-style: italic;
    color: var(--accent);
}

.logo-tag {
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    padding: 8px 14px;
    font-family: var(--font-ui);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--bg-warm);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ===================================================================
   HERO — Split layout with real image, warm dark overlay
   =================================================================== */
.hero {
    position: relative;
    background: linear-gradient(160deg, #2c2014 0%, #1a0f08 60%, #0e0a05 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 90% at 80% 50%, rgba(184, 115, 51, 0.12), transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(196, 154, 56, 0.06), transparent 60%);
    pointer-events: none;
}

/* Subtle wood grain texture pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 60px),
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.008) 0px,
            rgba(255, 255, 255, 0.008) 1px,
            transparent 1px,
            transparent 80px);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding: 100px var(--container-px) 96px;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
}



.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(196, 154, 56, 0.15);
    border: 1px solid rgba(196, 154, 56, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 0.95rem;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.12rem;
    color: rgba(232, 221, 208, 0.82);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 14px;
    border-radius: var(--radius-full);
}

.trust-pill i {
    color: var(--gold);
    font-size: 0.95rem;
}

/* Hero image card */
.hero-image-wrap {
    position: relative;
}

.hero-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    max-height: 560px;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-img-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(44, 32, 20, 0.55) 0%, transparent 50%);
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.hero-img-badge i {
    font-size: 1.6rem;
    color: var(--accent);
}

.hero-img-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-img-badge span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-family: var(--font-ui);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.4rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}


/* ===================================================================
   STATS BAND
   =================================================================== */
.stats-band {
    background: var(--primary);
    padding: 0;
}

.stats-grid {
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    text-align: center;
    gap: 4px;
}

.stat-item strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-item span {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: 16px 0;
}


/* ===================================================================
   SERVICES — Card with image top
   =================================================================== */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s var(--ease);
}

.service-card:hover .service-img img {
    transform: scale(1.06);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 32, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

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

.service-body {
    padding: 22px 22px 26px;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    margin-bottom: 12px;
    background: var(--accent-light);
    color: var(--accent);
}

.service-icon.icon-amber {
    background: rgba(184, 115, 51, 0.12);
    color: var(--accent);
}

.service-icon.icon-sky {
    background: rgba(2, 132, 199, 0.1);
    color: #0284c7;
}

.service-icon.icon-green {
    background: rgba(42, 110, 63, 0.1);
    color: var(--success);
}

.service-icon.icon-orange {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.service-icon.icon-red {
    background: rgba(176, 58, 46, 0.1);
    color: var(--danger);
}

.service-body h3 {
    margin-bottom: 8px;
    color: var(--primary);
}

.service-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.services-cta {
    text-align: center;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.services-cta p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}


/* ===================================================================
   WHY CHOOSE US — Split layout, light warm bg
   =================================================================== */
.why-us {
    padding: var(--section-py) 0;
    background: var(--bg-warm);
}

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

.why-text .section-tag {
    display: inline-flex;
    margin-bottom: 14px;
}

.why-text h2 {
    margin-bottom: 16px;
}

.why-text>p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.75;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-top: 2px;
}

.why-list li strong {
    display: block;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.why-list li p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Certifications grid */
.why-certs {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.why-certs h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-family: var(--font-ui);
    font-weight: 600;
}

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

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
}

.cert-badge:hover {
    border-color: var(--gold);
    background: var(--gold-light);
}

.cert-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 4px;
}

.cert-badge strong {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.cert-badge span {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ===================================================================
   PORTFOLIO
   =================================================================== */
.portfolio {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
}

.portfolio-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 9px 22px;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.tab-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.portfolio-item:hover img {
    transform: scale(1.07);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(44, 32, 20, 0.85) 0%, rgba(44, 32, 20, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gold);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    align-self: flex-start;
}

.portfolio-overlay h4 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.portfolio-overlay p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}


/* ===================================================================
   PROCESS — Vertical timeline, centered
   =================================================================== */
.process {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
}

.process .section-header h2 {
    color: #fff;
}

.process .section-tag {
    color: var(--gold);
    background: rgba(196, 154, 56, 0.15);
}

.process .section-desc {
    color: var(--text-on-dark-muted);
}

.process-timeline {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    width: 100%;
    align-items: start;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(196, 154, 56, 0.15);
}

.step-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    position: relative;
    margin-bottom: 0;
}

.step-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(196, 154, 56, 0.15);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-card h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.step-card p {
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(196, 154, 56, 0.4);
    font-size: 1.2rem;
    padding: 10px 0;
    width: 56px;
    align-self: flex-start;
    margin-left: 0;
    padding-left: 0;
}


/* ===================================================================
   TESTIMONIALS — Carousel
   =================================================================== */
.reviews {
    padding: var(--section-py) 0;
    background: var(--bg-warm);
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -12px;
    padding: 0 12px;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(3, calc(33.333% - 16px));
    gap: 24px;
    transition: transform 0.5s var(--ease);
}

.review-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 28px 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow var(--duration) var(--ease);
    min-width: 0;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 1rem;
}

.review-text {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.rev-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease);
}

.rev-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.rev-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.rev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    padding: 0;
}

.rev-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: var(--radius-full);
}

.reviews-cta {
    text-align: center;
    margin-top: 44px;
}


/* ===================================================================
   ROT BANNER
   =================================================================== */
.rot-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.rot-banner::before {
    content: '%';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 14rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
}

.rot-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.rot-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--gold);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.rot-content {
    flex: 1;
    min-width: 260px;
}

.rot-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.rot-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.rot-content strong {
    color: var(--gold);
}


/* ===================================================================
   CONTACT
   =================================================================== */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.contact-info .section-tag {
    display: inline-flex;
    margin-bottom: 14px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.detail-item>i {
    font-size: 1.25rem;
    color: var(--accent);
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-item div strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.detail-item div a,
.detail-item div span {
    font-size: 0.98rem;
    color: var(--text-secondary);
}

.detail-item div a:hover {
    color: var(--accent);
}

.contact-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ctrust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--gold-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.ctrust-item i {
    color: var(--gold);
}

/* Form */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

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

.form-group label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--text);
    background: var(--bg-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    outline: none;
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
    background: #fff;
}

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

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    justify-content: center;
}

.form-disclaimer i {
    color: var(--success);
}

/* Form success */
.form-success {
    text-align: center;
    padding: 48px 16px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
}


/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
    background: var(--bg-dark);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-certs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-certs span {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.footer .logo .logo-name {
    color: #fff;
}

.footer .logo .logo-tag {
    color: rgba(255, 255, 255, 0.3);
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

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

.footer-nav a {
    font-size: 0.92rem;
    color: var(--text-on-dark-muted);
    transition: color var(--duration) var(--ease);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    transition: color var(--duration) var(--ease);
}

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

.footer-contact i {
    color: var(--accent);
    font-size: 1rem;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}


/* ===================================================================
   STICKY CTA (mobile)
   =================================================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: stretch;
    transform: translateY(100%);
    transition: transform 0.3s var(--ease);
    box-shadow: 0 -4px 24px rgba(44, 32, 20, 0.2);
}

.sticky-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary-mid);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 16px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    min-width: 88px;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--primary);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 24px;
    flex: 1;
}


/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

    .hero h1 {
        font-size: clamp(2.4rem, 5vw, 3.6rem);
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-certs {
        max-width: 560px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-card {
        max-width: 560px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .top-bar-right .badge-rot,
    .top-bar-right .top-bar-divider {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(30, 22, 12, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        z-index: 999;
        padding: 40px;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        color: rgba(255, 255, 255, 0.8);
        font-weight: 800;
        padding: 10px 0;
        background: none;
        text-align: center;
    }

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

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 45%;
    }

    .stat-divider {
        display: none;
    }

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

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

    .reviews-track {
        grid-template-columns: calc(100% - 48px);
        gap: 16px;
    }

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

    .contact-form-card {
        padding: 28px 20px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rot-inner {
        flex-direction: column;
        text-align: center;
    }

    .rot-icon {
        align-self: center;
    }

    .process-connector {
        padding-left: 16px;
    }

    .hero-trust {
        gap: 6px;
    }

    .trust-pill {
        font-size: 0.76rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}