/* ============================================================
   FURNOIA — Main Stylesheet
   Palette: Logo-matched — dark navy, warm gold, sage green, cream
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

:root {
    --bg:          #F5F1EB;
    --surface:     #EDE8DF;
    --surface-alt: #E3DDD4;
    --primary:     #252830;
    --sage:        #8B9D8B;
    --accent:      #D4A843;
    --accent-dark: #B88E2F;
    --text:        #252830;
    --text-muted:  #68656F;
    --border:      #DDD8CF;
    --white:       #FFFFFF;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --container:   1160px;
    --radius:      4px;
    --radius-lg:   12px;

    --transition:  0.25s ease;

    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  7rem;
}

/* ── Scroll fade-in (JS adds .js-fade, then .js-fade-in) ── */
.js-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-fade.js-fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { font-size: 1.0625rem; line-height: 1.8; color: var(--text-muted); }

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

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

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

.btn-hero-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
    padding-block: 1.25rem;
}

.site-header.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.logo-wordmark {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
}

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

.primary-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.primary-nav .nav-list a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
}

.primary-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.primary-nav .nav-list a:hover { color: var(--primary); }
.primary-nav .nav-list a:hover::after { width: 100%; }

.site-header.hero-header .nav-list a { color: rgba(255,255,255,0.85); }
.site-header.hero-header.scrolled .nav-list a { color: var(--text); }

.nav-list .nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid currentColor;
    border-radius: var(--radius);
}
.nav-list .nav-cta::after { display: none; }
.nav-list .nav-cta:hover { background: var(--primary); color: var(--white) !important; border-color: var(--primary); }

.site-header.hero-header .nav-cta {
    border-color: rgba(255,255,255,0.6);
    color: var(--white) !important;
}
.site-header.hero-header .nav-cta:hover {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
}

/* Restore CTA button to dark when header scrolls to light background */
.site-header.hero-header.scrolled .nav-cta {
    color: var(--primary) !important;
    border-color: var(--primary);
}
.site-header.hero-header.scrolled .nav-cta:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--primary);
    transition: transform var(--transition), opacity var(--transition);
}
.site-header.hero-header .nav-toggle span { background: var(--white); }
.site-header.hero-header.scrolled .nav-toggle span { background: var(--primary); }

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    background-image: linear-gradient(160deg, #2E3240 0%, #252830 55%, #1A1C23 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 60% at 65% 50%, rgba(212,168,67,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 10% 90%, rgba(139,157,139,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding-block: var(--space-xl);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero-heading {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 1.5rem;
}

.hero-heading em {
    font-style: italic;
    color: var(--accent);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Base ── */
.section {
    padding-block: var(--space-xl);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.0625rem;
}

/* ── About Intro ── */
.about-intro {
    background: var(--bg);
}

.about-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro-text h2 {
    margin-bottom: 1.5rem;
}

.about-intro-text p {
    margin-bottom: 1.25rem;
}

.about-intro-text p:last-of-type {
    margin-bottom: 2rem;
}

.about-intro-visual {
    position: relative;
}

.about-intro-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stat-item.wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
    flex-shrink: 0;
    margin-top: -1rem;
}

.stat-item.wide p {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.5;
}

/* ── Services ── */
.services {
    background: var(--surface);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: box-shadow var(--transition), translate var(--transition), border-top-color var(--transition);
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(37, 40, 48, 0.09);
    translate: 0 -4px;
    border-top-color: var(--accent);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: background var(--transition), border-color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

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

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* 5th card full-width at bottom */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 1;
}

.services-grid .service-card:last-child:nth-child(5) {
    grid-column: 2 / 3;
}

/* ── Who We Work With ── */
.clients {
    background: var(--bg);
}

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

.client-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: box-shadow var(--transition), translate var(--transition);
}

.client-card:hover {
    box-shadow: 0 12px 40px rgba(37, 40, 48, 0.09);
    translate: 0 -4px;
}

.client-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--sage);
}

.client-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.client-card p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ── Values ── */
.values {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,168,67,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.values .section-label { color: var(--accent); }
.values h2 { color: var(--white); }
.values .section-header p { color: rgba(255,255,255,0.6); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
    transition: background var(--transition), border-color var(--transition);
}

.value-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(184,134,47,0.3);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ── Promise ── */
.promise {
    background: var(--surface);
}

.promise-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.promise-text h2 { margin-bottom: 1.25rem; }
.promise-text p { margin-bottom: 1.25rem; }

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

.clients-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.clients-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.promise-visual {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.promise-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--sage);
    padding-left: 1.5rem;
}

.promise-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Commitment ── */
.commitment {
    background: var(--bg);
}

.commitment-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.commitment-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: box-shadow var(--transition), translate var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.commitment-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sage);
}

.commitment-card:hover {
    box-shadow: 0 12px 40px rgba(37, 40, 48, 0.09);
    translate: 0 -4px;
}

.commitment-card h3 {
    font-size: 1.1875rem;
    margin-bottom: 0.5rem;
}

.commitment-card p {
    font-size: 0.9375rem;
}

/* ── CTA Section ── */
.cta-section {
    background: var(--accent);
    padding-block: var(--space-lg);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding-top: var(--space-lg);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-wordmark {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.footer-location {
    color: rgba(255,255,255,0.4);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--white); }

.footer-contact p {
    color: rgba(255,255,255,0.55);
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-email {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-email:hover { color: var(--white); }

.footer-bottom {
    padding-block: 1.5rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.footer-commitment {
    color: rgba(184,134,47,0.7) !important;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    background: var(--surface);
    padding: 8rem 0 4rem;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.125rem; max-width: 560px; }

/* ── Generic Page Content ── */
.page-content {
    padding-block: var(--space-lg);
}

.page-content .entry-content h2 { margin: 2rem 0 1rem; }
.page-content .entry-content p  { margin-bottom: 1.25rem; }
.page-content .entry-content ul { margin: 1rem 0 1.25rem 1.5rem; list-style: disc; }
.page-content .entry-content ul li { margin-bottom: 0.5rem; color: var(--text-muted); }

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */
.about-story-inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
}

.about-aside-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: sticky;
    top: 6rem;
}

.about-aside-quote {
    margin-block: 1.25rem;
}

.about-aside-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--primary);
    line-height: 1.6;
}

.about-aside-divider {
    height: 1px;
    background: var(--border);
    margin-block: 1.5rem;
}

.about-aside-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.aside-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aside-meta-value {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--accent);
}

.aside-meta-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
}

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

.about-story-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* What makes us different */
.about-difference { background: var(--surface); }

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

.difference-item {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), translate var(--transition), border-top-color var(--transition);
}

.difference-icon {
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
    transition: background var(--transition), border-color var(--transition);
}

.difference-item:hover {
    box-shadow: 0 12px 40px rgba(37, 40, 48, 0.09);
    translate: 0 -4px;
    border-top-color: var(--accent);
}

.difference-item:hover .difference-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.difference-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.difference-item p { font-size: 0.9375rem; }

/* ════════════════════════════════
   SERVICES PAGE
════════════════════════════════ */
.services-detail { background: var(--bg); }

.service-detail-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding-block: 3.5rem;
    border-bottom: 1px solid var(--border);
}

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

.service-detail-item--alt { background: transparent; }

.service-detail-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    padding-top: 0.25rem;
    flex-shrink: 0;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    margin: 0;
}

.service-detail-lead {
    font-size: 1.075rem;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-content p { margin-bottom: 1rem; }

.service-detail-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.service-detail-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

/* Process steps */
.process { background: var(--surface); }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.process-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 0 1rem;
}

.process-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.process-connector {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: var(--border);
    margin-top: 23px;
}

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-section { background: var(--bg); }

.contact-inner {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-wrap h2 { margin-bottom: 0.5rem; }

.contact-form-note {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

/* Form feedback */
.form-success,
.form-error {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.form-success {
    background: #EDF7ED;
    border: 1px solid #8BC48B;
    color: #2E5E2E;
}

.form-error {
    background: #FDF0ED;
    border: 1px solid #E8A090;
    color: #7A2E1E;
}

.form-error a { color: inherit; text-decoration: underline; }

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: flex; gap: 1.25rem; }
.form-row--2 > .form-group { flex: 1; min-width: 0; }

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.form-group label span { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2368656F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0ACB8; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
}

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

.btn-submit { width: 100%; justify-content: center; padding-block: 1rem; }

/* Contact info sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 6rem;
}

.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-info-value {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 500;
}

a.contact-info-value {
    color: var(--accent);
    transition: color var(--transition);
}
a.contact-info-value:hover { color: var(--accent-dark); }

.contact-note-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-note-icon {
    width: 38px;
    height: 38px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-note-body { flex: 1; min-width: 0; }

.contact-note-card h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

.contact-note-card p { font-size: 0.875rem; line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-intro-inner    { grid-template-columns: 1fr; gap: 3rem; }
    .about-story-inner    { grid-template-columns: 1fr; gap: 3rem; }
    .about-aside-card     { position: static; }
    .promise-inner        { grid-template-columns: 1fr; gap: 3rem; }
    .values-grid          { grid-template-columns: repeat(2, 1fr); }
    .clients-grid         { grid-template-columns: repeat(2, 1fr); }
    .services-grid        { grid-template-columns: repeat(2, 1fr); }
    .services-grid .service-card:last-child:nth-child(5) { grid-column: 1 / -1; }
    .difference-grid      { grid-template-columns: 1fr; }
    .contact-inner        { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info         { position: static; }
    .footer-inner         { grid-template-columns: 1fr 1fr; }
    .service-detail-item  { grid-template-columns: 60px 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
    :root { --space-xl: 4rem; --space-lg: 3rem; }

    .nav-toggle { display: flex; }

    .primary-nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--bg);
        z-index: 99;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .primary-nav.open { display: flex; }

    .primary-nav .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .primary-nav .nav-list a {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .hero-inner { padding-block: 5rem 4rem; }

    .about-intro-card    { grid-template-columns: 1fr; }
    .stat-item.wide      { grid-column: 1; }
    .service-detail-item { grid-template-columns: 1fr; }
    .service-detail-number { font-size: 2rem; }
    .process-steps       { flex-wrap: wrap; justify-content: center; }
    .process-connector   { display: none; }
    .process-step        { min-width: 140px; max-width: 180px; }
    .form-row--2         { flex-direction: column; }
    .about-story-cta     { flex-direction: column; }

    .services-grid       { grid-template-columns: 1fr; }
    .services-grid .service-card:last-child:nth-child(5) { grid-column: 1; }

    .clients-grid        { grid-template-columns: repeat(2, 1fr); }
    .values-grid         { grid-template-columns: 1fr; }
    .commitment-inner    { grid-template-columns: 1fr; }

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

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

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .clients-grid { grid-template-columns: 1fr; }
}
