:root {
    --primary: #2C1810;
    --primary-light: #3E2723;
    --cta: #C17F59;
    --cta-hover: #A86B48;
    --cta-light: rgba(193, 127, 89, 0.12);
    --background: #FAF7F4;
    --surface: #FFFFFF;
    --text: #2D2420;
    --text-light: #6B5B52;
    --accent-green: #4A7C5E;
    --accent-green-light: rgba(74, 124, 94, 0.1);
    --border: #E8E0D8;
    --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 12px 40px rgba(44, 24, 16, 0.12);
    --shadow-xl: 0 20px 60px rgba(44, 24, 16, 0.16);

    --header-height: 5rem;
    --section-padding: 7rem 0;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1rem; }

a {
    color: var(--cta);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--cta-hover); }

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center { text-align: center; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cta);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--cta);
}

.section-title {
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--cta);
    color: #fff;
    box-shadow: 0 4px 15px rgba(193, 127, 89, 0.3);
}

.btn-primary:hover {
    background: var(--cta-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(193, 127, 89, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    color: var(--cta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.btn svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition);
}

.btn:hover svg {
    transform: translateX(3px);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-header.scrolled {
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(44, 24, 16, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    z-index: 1001;
    transition: color var(--transition);
}

.site-header.scrolled .logo {
    color: var(--primary);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--cta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

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

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.site-header.scrolled .main-nav a {
    color: var(--text);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: var(--cta);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width var(--transition);
}

.site-header.scrolled .main-nav a::after {
    background: var(--cta);
}

.main-nav a:hover,
.main-nav a.active {
    color: rgba(255, 255, 255, 0.8);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--cta) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-sm) !important;
}

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

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

/* Mobile Nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.site-header.scrolled .nav-toggle span {
    background: var(--primary);
}

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

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

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

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 24, 16, 0.82) 0%,
        rgba(44, 24, 16, 0.55) 50%,
        rgba(44, 24, 16, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: var(--header-height);
}

.hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 .highlight {
    color: var(--cta);
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
    color: var(--cta);
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 24, 16, 0.85) 0%,
        rgba(44, 24, 16, 0.7) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
    color: var(--cta);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs .current {
    color: var(--cta);
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-image {
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card-body {
    padding: 2rem;
}

.service-card-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

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

.service-card-body .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cta);
}

.service-card-body .service-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ── Feature Section ── */
.features-section {
    background: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 127, 89, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-md);
    background: rgba(193, 127, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--cta);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.feature-item h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Portfolio/Projects ── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.portfolio-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44, 24, 16, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.portfolio-overlay h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* ── Testimonials ── */
.testimonials-section {
    background: linear-gradient(135deg, #F5F0EB 0%, var(--background) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}

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

.testimonial-quote {
    font-size: 3rem;
    color: var(--cta);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--cta-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author-info h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--primary);
}

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

.testimonial-stars {
    color: var(--cta);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ── Process / Timeline ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 2px;
    background: var(--border);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--cta);
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── About Split ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 60%;
    border: 3px solid var(--cta);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-content .section-label { margin-bottom: 1rem; }

.about-content h2 { margin-bottom: 1.25rem; }

.about-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cta-light);
    border-radius: var(--radius-md);
}

.about-value-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    background: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-value-icon svg {
    width: 1rem;
    height: 1rem;
}

.about-value h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--primary);
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--primary);
    padding: 4rem 0;
}

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

.stat-item h3 {
    color: var(--cta);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9) 0%, rgba(62, 39, 35, 0.85) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-banner-content .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--radius-md);
    background: var(--cta-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta);
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item a {
    color: var(--cta);
}

.contact-form-wrapper {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--background);
    transition: all var(--transition);
    outline: none;
}

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

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

/* ── Services Detail ── */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.service-feature-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--accent-green-light);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-icon svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* ── Team ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.team-card-image {
    height: 300px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 1.75rem;
}

.team-card-body h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.team-card-body .role {
    color: var(--cta);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
}

.team-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-brand .logo-icon {
    background: var(--cta);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--cta);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--cta);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--cta);
    color: #fff;
}

.footer-social a svg {
    width: 1rem;
    height: 1rem;
}

/* ── Scroll Reveal ── */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-item:nth-child(3) { transition-delay: 0.2s; }
.reveal-item:nth-child(4) { transition-delay: 0.3s; }
.reveal-item:nth-child(5) { transition-delay: 0.4s; }
.reveal-item:nth-child(6) { transition-delay: 0.5s; }

/* ── Map Embed ── */
.map-section {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 4rem;
    border: 1px solid var(--border);
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ── Service Areas ── */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.area-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
}

.area-tag svg {
    width: 1rem;
    height: 1rem;
    color: var(--cta);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .portfolio-item.tall {
        grid-row: span 1;
        aspect-ratio: 4 / 3;
    }

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

    .about-split {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 4.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--surface);
        box-shadow: var(--shadow-xl);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
        color: var(--text) !important;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--cta) !important;
    }

    .main-nav a::after { display: none; }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .hero-stat {
        flex: 1 1 40%;
    }

    .portfolio-item {
        aspect-ratio: 16 / 10;
    }

    .portfolio-overlay {
        opacity: 1;
    }

    .service-detail-image img {
        height: 280px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .services-grid,
    .testimonials-grid,
    .team-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-split,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .about-image-accent { display: none; }

    .about-values {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 2rem);
    }

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

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }

    .page-hero {
        padding: 8rem 0 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .service-card-body {
        padding: 1.5rem;
    }

    .map-section iframe {
        height: 280px;
    }

    .cta-banner {
        padding: 4rem 0;
    }

    .features-grid {
        padding: 2rem !important;
    }
}
