/* ═══════════════════════════════════════════════════════════════════════════
   MP SNEKKER AS - Premium Scandinavian Carpentry Aesthetic
   A bespoke design celebrating Nordic craft traditions
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   FONTS
   ─────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─────────────────────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ─────────────────────────────────────────────────────────────────────────── */
:root {
    /* Brand - Warm Wood Tones */
    --timber: #7D5A3C;
    --timber-light: #9A7454;
    --timber-dark: #5C3D28;
    --timber-deep: #3D2817;

    /* Secondary - Nordic Slate */
    --slate: #3D4F5F;
    --slate-light: #5A6D7A;
    --slate-dark: #2A3640;

    /* Accent - Craft Gold */
    --gold: #C4A35A;
    --gold-light: #D9BE7E;
    --gold-dark: #A68A45;

    /* Neutrals */
    --cream: #FAF8F5;
    --cream-warm: #F5F1EB;
    --sand: #E8E2D9;
    --stone: #9C968D;
    --charcoal: #2C2A28;
    --charcoal-light: #3E3C3A;

    /* Success */
    --forest: #4A7C59;
    --forest-light: #5E9A6F;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-3xs: 0.25rem;
    --space-2xs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Layout */
    --container: 1320px;
    --container-narrow: 900px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 42, 40, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 42, 40, 0.1);
    --shadow-lg: 0 20px 50px rgba(44, 42, 40, 0.15);
    --shadow-xl: 0 30px 80px rgba(44, 42, 40, 0.2);
    --shadow-glow: 0 0 40px rgba(196, 163, 90, 0.2);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

::selection {
    background-color: var(--gold);
    color: var(--charcoal);
}

/* ─────────────────────────────────────────────────────────────────────────────
   GRAIN OVERLAY
   ─────────────────────────────────────────────────────────────────────────── */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ─────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.0625rem;
    color: var(--charcoal);
    opacity: 0.85;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT
   ─────────────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER & NAVIGATION
   ─────────────────────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-mark {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--timber), var(--timber-dark));
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(125, 90, 60, 0.3);
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.logo-initials {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.logo-wood-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin-top: 4px;
    border-radius: 1px;
    position: relative;
    z-index: 1;
}

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

.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.08em;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 3px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: var(--space-2xs) 0;
    transition: color var(--duration-fast) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--timber), var(--gold));
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--timber);
}

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

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2xs);
    font-weight: 600;
    color: var(--slate);
    transition: color var(--duration-fast) ease;
}

.nav-phone svg {
    color: var(--timber);
}

.nav-phone:hover {
    color: var(--timber);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2xs);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--duration-fast) ease;
    transform-origin: center;
}

.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);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ─────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn svg {
    transition: transform var(--duration-fast) ease;
}

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

.btn-nav {
    background: var(--charcoal);
    color: white;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--timber) 0%, var(--timber-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(125, 90, 60, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--timber-light) 0%, var(--timber) 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(125, 90, 60, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    position: relative;
    z-index: 1;
}

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

.btn-outline:hover {
    background: var(--timber);
    color: white;
    transform: translateY(-3px);
}

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

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-wood-texture {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(196, 163, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(125, 90, 60, 0.05) 0%, transparent 40%);
}

.hero-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream-warm) 0%, transparent 60%);
}

.hero-gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg, rgba(196, 163, 90, 0.06) 0%, transparent 60%);
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    pointer-events: none;
}

.hero-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--sand), transparent);
    opacity: 0.5;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

/* Hero Content */
.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--sand);
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--timber);
    font-style: italic;
}

.hero-title-small {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--slate);
    margin-top: var(--space-xs);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--slate);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--sand);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.hero-trust-icon {
    width: 36px;
    height: 36px;
    background: var(--cream-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--timber);
}

.hero-trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
}

.hero-trust-divider {
    width: 1px;
    height: 30px;
    background: var(--sand);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(44, 42, 40, 0.3) 100%);
}

.hero-image {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.hero-image-border {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    right: calc(-1 * var(--space-md));
    bottom: calc(-1 * var(--space-md));
    border: 3px solid var(--gold);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.4;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    bottom: var(--space-xl);
    left: calc(-1 * var(--space-xl));
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-floating-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--forest), var(--forest-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-floating-text {
    display: flex;
    flex-direction: column;
}

.hero-floating-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.hero-floating-desc {
    font-size: 0.8125rem;
    color: var(--stone);
}

.hero-stats-card {
    position: absolute;
    top: var(--space-xl);
    right: calc(-1 * var(--space-lg));
    background: var(--charcoal);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite 0.5s;
}

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

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-top: var(--space-3xs);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.hero-scroll-dot {
    width: 3px;
    height: 12px;
    background: var(--timber);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION STYLES
   ─────────────────────────────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--timber);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-overline::before,
.section-overline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-overline::before {
    right: calc(100% + var(--space-sm));
}

.section-overline::after {
    left: calc(100% + var(--space-sm));
}

.section-overline-light {
    color: var(--gold);
}

.section-overline-light::before,
.section-overline-light::after {
    background: rgba(255,255,255,0.3);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-title-light {
    color: white;
}

.section-lead {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    color: var(--slate);
    line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SERVICES SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.services {
    padding: var(--space-4xl) 0;
    background: var(--cream);
    position: relative;
}

/* Uniform Services Grid (Homepage) */
.services-grid-uniform {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.service-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--sand);
    transition: all var(--duration-normal) var(--ease-out);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--timber);
}

.service-box-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cream-warm), var(--sand));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--timber);
    transition: all var(--duration-normal) ease;
}

.service-box:hover .service-box-icon {
    background: linear-gradient(135deg, var(--timber), var(--timber-dark));
    color: white;
    transform: scale(1.05);
}

.service-box h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.service-box p {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.service-box-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--timber);
    transition: gap var(--duration-fast) ease;
    margin-top: auto;
}

.service-box-link:hover {
    gap: var(--space-sm);
}

@media (max-width: 1200px) {
    .services-grid-uniform {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-uniform {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid-uniform {
        grid-template-columns: 1fr;
    }
}

/* Old services grid (kept for compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg);
}

/* Featured Service Card */
.service-card-featured {
    grid-column: span 7;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sand);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.service-card-featured .service-card-content {
    padding: var(--space-xl);
}

.service-card-featured .service-card-image {
    position: relative;
    overflow: hidden;
}

.service-card-featured .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

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

/* Regular Service Cards */
.service-card {
    grid-column: span 5;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sand);
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:nth-child(3),
.service-card:nth-child(5) {
    grid-column: span 4;
}

.service-card:nth-child(4) {
    grid-column: span 4;
}

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

.service-card-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--sand);
    line-height: 1;
    transition: color var(--duration-normal) ease;
}

.service-card:hover .service-card-number {
    color: var(--gold-light);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cream-warm), var(--sand));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--timber);
    transition: all var(--duration-normal) ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--timber), var(--timber-dark));
    color: white;
    transform: scale(1.05);
}

.service-card-title {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.service-card-desc {
    font-size: 0.9375rem;
    color: var(--slate);
    margin-bottom: var(--space-md);
}

.service-card-list {
    margin-bottom: var(--space-md);
}

.service-card-list li {
    font-size: 0.875rem;
    color: var(--slate);
    padding: var(--space-2xs) 0;
    padding-left: var(--space-md);
    position: relative;
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--timber);
    transition: gap var(--duration-fast) ease;
}

.service-card-link:hover {
    gap: var(--space-sm);
}

.services-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ─────────────────────────────────────────────────────────────────────────────
   WHY US SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.why-us {
    padding: var(--space-4xl) 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
}

.why-us-texture {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(196, 163, 90, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(125, 90, 60, 0.06) 0%, transparent 40%);
}

.why-us-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-lead {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.why-us-features {
    display: grid;
    gap: var(--space-lg);
}

.why-us-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.why-us-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(196, 163, 90, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all var(--duration-normal) ease;
}

.why-us-feature:hover .why-us-feature-icon {
    background: var(--gold);
    color: var(--charcoal);
    transform: scale(1.05);
}

.why-us-feature-text h4 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-2xs);
}

.why-us-feature-text p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

/* Why Us Visual */
.why-us-visual {
    position: relative;
}

.why-us-image-stack {
    position: relative;
}

.why-us-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-us-image-1 {
    position: relative;
    z-index: 1;
}

.why-us-image-1 img {
    height: 400px;
    object-fit: cover;
}

.why-us-image-2 {
    position: absolute;
    bottom: calc(-1 * var(--space-xl));
    right: calc(-1 * var(--space-xl));
    width: 55%;
    z-index: 2;
    border: 4px solid var(--charcoal);
}

.why-us-image-2 img {
    height: 220px;
    object-fit: cover;
}

.why-us-quote {
    margin-top: var(--space-3xl);
    padding: var(--space-lg);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--gold);
    backdrop-filter: blur(10px);
}

.why-us-quote p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: white;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.why-us-quote cite {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.why-us-quote strong {
    font-size: 1rem;
    color: var(--gold);
}

.why-us-quote span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SERVICE AREA SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.area {
    padding: var(--space-4xl) 0;
    background: var(--cream-warm);
    position: relative;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.area-lead {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    color: var(--slate);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.area-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.area-list-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.area-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.area-marker-primary {
    background: var(--timber);
}

.area-marker-secondary {
    background: var(--slate);
    opacity: 0.6;
}

.area-list ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.area-list li {
    font-size: 1rem;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.area-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gold);
    color: var(--charcoal);
    padding: 2px 8px;
    border-radius: 100px;
}

.area-stats {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.area-stat {
    display: flex;
    flex-direction: column;
}

.area-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--timber);
    line-height: 1;
}

.area-stat-label {
    font-size: 0.8125rem;
    color: var(--stone);
    margin-top: var(--space-2xs);
}

/* Area Map */
.area-map {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.area-map-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--sand) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.area-map-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

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

.area-map-pin svg {
    width: 48px;
    height: 48px;
    color: var(--timber);
    filter: drop-shadow(0 4px 8px rgba(125, 90, 60, 0.3));
}

.area-map-pin span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    background: white;
    padding: var(--space-2xs) var(--space-sm);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.area-map-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-map-rings span {
    position: absolute;
    border: 2px dashed var(--timber);
    border-radius: 50%;
    opacity: 0.2;
}

.area-map-rings span:nth-child(1) {
    width: 120px;
    height: 120px;
    animation: pulse-ring 3s ease-out infinite;
}

.area-map-rings span:nth-child(2) {
    width: 200px;
    height: 200px;
    animation: pulse-ring 3s ease-out infinite 0.5s;
}

.area-map-rings span:nth-child(3) {
    width: 280px;
    height: 280px;
    animation: pulse-ring 3s ease-out infinite 1s;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { opacity: 0.15; }
    100% { transform: scale(1.1); opacity: 0; }
}

.area-map-note {
    font-size: 0.9375rem;
    color: var(--slate);
    text-align: center;
    padding: var(--space-md);
    background: var(--cream-warm);
    border-radius: var(--radius-lg);
}

.area-map-note strong {
    color: var(--timber);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTION
   ─────────────────────────────────────────────────────────────────────────── */
.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--timber) 0%, var(--timber-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

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

.cta-title {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-title em {
    color: var(--gold-light);
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color var(--duration-fast) ease;
}

.cta-phone svg {
    color: var(--gold-light);
}

.cta-phone:hover {
    color: var(--gold-light);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-mark {
    width: 44px;
    height: 44px;
}

.footer-logo .logo-initials {
    font-size: 1rem;
}

.footer-logo .logo-wood-line {
    width: 20px;
}

.footer-logo .logo-name {
    font-size: 1.25rem;
    color: white;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-nav-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav-col a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--duration-fast) ease;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.footer-contact svg {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer-credit {
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ─────────────────────────────────────────────────────────────────────────── */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeLeft 0.8s var(--ease-out) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

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

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        display: none;
    }

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

    .service-card-featured {
        grid-column: span 2;
    }

    .service-card,
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-normal) ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .why-us-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .service-card-featured {
        grid-template-columns: 1fr;
    }

    .service-card-featured .service-card-image {
        height: 250px;
    }

    .why-us-image-2 {
        position: static;
        width: 100%;
        margin-top: var(--space-lg);
        border: none;
    }

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

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

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

    .service-card-featured,
    .service-card,
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .area-lists {
        grid-template-columns: 1fr;
    }

    .area-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .footer-nav {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .logo-text {
        display: none;
    }

    .hero-badge {
        padding: var(--space-xs) var(--space-sm);
    }

    .hero-badge span {
        font-size: 0.75rem;
    }

    .btn-lg {
        padding: var(--space-sm) var(--space-lg);
    }

    .section-overline::before,
    .section-overline::after {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE HERO (for subpages)
   ─────────────────────────────────────────────────────────────────────────── */
.page-hero {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(196, 163, 90, 0.08) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero .section-overline {
    margin-bottom: var(--space-sm);
}

.page-hero h1 {
    margin-bottom: var(--space-md);
}

.page-hero .lead {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--slate);
    max-width: 600px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FORM STYLES
   ─────────────────────────────────────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
}

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

.form-group label .required {
    color: var(--timber);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--sand);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--timber);
    box-shadow: 0 0 0 4px rgba(125, 90, 60, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239C968D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-sm) center;
    padding-right: var(--space-xl);
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--timber);
    cursor: pointer;
}

.form-message {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    display: none;
}

.form-message.success {
    background: rgba(74, 124, 89, 0.1);
    border: 2px solid var(--forest);
    color: var(--forest);
    display: block;
}

.form-message.error {
    background: rgba(180, 60, 60, 0.1);
    border: 2px solid #b43c3c;
    color: #b43c3c;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUBPAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   NAV COMPONENT (for subpages using .nav class directly)
   ─────────────────────────────────────────────────────────────────────────── */
nav.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out);
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

nav.nav.scrolled {
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.nav-logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--timber), var(--timber-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(125, 90, 60, 0.3);
}

.nav-logo-mark span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.06em;
    line-height: 1;
}

.nav-logo-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 2px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2xs);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--slate);
    transition: color var(--duration-fast) ease;
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    color: var(--timber);
}

.nav-phone:hover {
    color: var(--timber);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE HERO PATTERN
   ─────────────────────────────────────────────────────────────────────────── */
.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
}

.overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--timber);
    margin-bottom: var(--space-sm);
}

.lead {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    color: var(--slate);
    line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION UTILITIES
   ─────────────────────────────────────────────────────────────────────────── */
.section {
    padding: var(--space-3xl) 0;
}

.section-lg {
    padding: var(--space-4xl) 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ABOUT PAGE STYLES
   ─────────────────────────────────────────────────────────────────────────── */
.about-intro {
    background: var(--cream);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

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

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.about-intro-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: calc(-1 * var(--space-md));
    background: var(--charcoal);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-intro-badge .year {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.about-intro-badge span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-intro-text h2 {
    margin-bottom: var(--space-md);
}

.about-intro-text .lead {
    margin-bottom: var(--space-md);
}

.about-intro-text p {
    margin-bottom: var(--space-md);
}

.about-signature {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--sand);
}

.about-signature-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--timber);
}

.about-signature-title {
    font-size: 0.875rem;
    color: var(--stone);
}

/* Values Section */
.values {
    background: var(--cream-warm);
}

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.values-header h2 {
    margin-bottom: var(--space-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.value-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--sand);
    transition: all var(--duration-normal) var(--ease-out);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--timber);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cream-warm), var(--sand));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--timber);
    transition: all var(--duration-normal) ease;
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--timber), var(--timber-dark));
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--slate);
}

/* Company Info Section */
.company-info {
    background: var(--cream);
}

.company-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.company-info-text h2 {
    margin-bottom: var(--space-md);
}

.company-info-text > p {
    margin-bottom: var(--space-xl);
}

.company-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.company-detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--cream-warm);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) ease;
}

.company-detail:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.company-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--timber);
}

.company-detail-icon svg {
    width: 20px;
    height: 20px;
}

.company-detail h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone);
    margin-bottom: var(--space-3xs);
}

.company-detail p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    opacity: 1;
}

.company-info-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PROJECTS PAGE STYLES
   ─────────────────────────────────────────────────────────────────────────── */
.projects-intro {
    background: var(--cream);
    text-align: center;
}

.projects-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.projects-intro-content h2 {
    margin-bottom: var(--space-md);
}

.projects-gallery {
    background: var(--cream);
    padding-bottom: var(--space-4xl);
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    background: white;
    border: 2px solid var(--sand);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.filter-btn:hover {
    border-color: var(--timber);
    color: var(--timber);
}

.filter-btn.active {
    background: var(--timber);
    border-color: var(--timber);
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(44, 42, 40, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

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

.gallery-item-overlay .tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    background: var(--gold);
    padding: var(--space-3xs) var(--space-xs);
    border-radius: 100px;
    margin-bottom: var(--space-xs);
    align-self: flex-start;
}

.gallery-item-overlay h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--space-3xs);
}

.gallery-item-overlay p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    opacity: 1;
}

/* Projects Placeholder */
.projects-placeholder {
    grid-column: span 3;
    background: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 2px dashed var(--sand);
}

.projects-placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--cream-warm);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--timber);
}

.projects-placeholder-icon svg {
    width: 36px;
    height: 36px;
}

.projects-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.projects-placeholder p {
    max-width: 500px;
    margin: 0 auto;
    color: var(--slate);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE STYLES
   ─────────────────────────────────────────────────────────────────────────── */
.contact-section {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info > p {
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) ease;
}

.contact-method:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--cream-warm), var(--sand));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--timber);
    transition: all var(--duration-normal) ease;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
}

.contact-method:hover .contact-method-icon {
    background: linear-gradient(135deg, var(--timber), var(--timber-dark));
    color: white;
}

.contact-method h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone);
    margin-bottom: var(--space-3xs);
}

.contact-method p {
    font-size: 1rem;
    opacity: 1;
}

.contact-method a {
    color: var(--charcoal);
    font-weight: 500;
    transition: color var(--duration-fast) ease;
}

.contact-method a:hover {
    color: var(--timber);
}

/* Contact Hours */
.contact-hours {
    padding: var(--space-lg);
    background: var(--cream-warm);
    border-radius: var(--radius-xl);
}

.contact-hours h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.contact-hours h4 svg {
    width: 20px;
    height: 20px;
    color: var(--timber);
}

.contact-hours ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.contact-hours li span:first-child {
    color: var(--slate);
}

.contact-hours li span:last-child {
    font-weight: 500;
    color: var(--charcoal);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sand);
}

.contact-form-header {
    margin-bottom: var(--space-lg);
}

.contact-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.contact-form-header p {
    font-size: 0.9375rem;
    color: var(--slate);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-submit {
    margin-top: var(--space-sm);
}

.form-submit .btn {
    width: 100%;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--stone);
    text-align: center;
}

/* Contact Map */
.contact-map {
    background: var(--cream-warm);
}

.contact-map-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.contact-map-header h2 {
    margin-bottom: var(--space-sm);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-overlay {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
}

.map-overlay-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--timber), var(--timber-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-overlay-icon svg {
    width: 22px;
    height: 22px;
}

.map-overlay h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-3xs);
}

.map-overlay p {
    font-size: 0.875rem;
    color: var(--slate);
    opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTION (for subpages)
   ─────────────────────────────────────────────────────────────────────────── */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--timber) 0%, var(--timber-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-xl);
    opacity: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-ghost:hover {
    background: white;
    color: var(--timber);
    border-color: white;
    transform: translateY(-3px);
}

.btn-ghost svg {
    width: 20px;
    height: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER (for subpages using different structure)
   ─────────────────────────────────────────────────────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    max-width: 280px;
    margin-top: var(--space-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--timber), var(--timber-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--duration-fast) ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--duration-fast) ease;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   TJENESTER PAGE STYLES
   ─────────────────────────────────────────────────────────────────────────── */
.tjenester-intro {
    background: var(--cream);
    text-align: center;
}

.tjenester-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.tjenester-intro-content h2 {
    margin-bottom: var(--space-md);
}

/* Service Detail Sections */
.service-detail {
    padding: var(--space-4xl) 0;
}

.service-detail:nth-child(even) {
    background: var(--cream-warm);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: var(--space-md);
}

.service-detail-content .lead {
    margin-bottom: var(--space-lg);
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--slate);
}

.service-list li svg {
    width: 18px;
    height: 18px;
    color: var(--forest);
    flex-shrink: 0;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

/* Pricing Section */
.pricing-section {
    background: var(--charcoal);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(196, 163, 90, 0.08) 0%, transparent 50%);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.pricing-header p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--duration-normal) var(--ease-out);
}

.pricing-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.pricing-card-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-card-header h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--space-xs);
}

.pricing-card-header p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    opacity: 1;
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
}

.pricing-card li svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE RESPONSIVE
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .about-intro-content,
    .company-info-content,
    .contact-content,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }

    .about-intro-badge {
        right: var(--space-md);
    }

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

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

    .projects-placeholder {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .nav-cta {
        display: none;
    }
}

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

    .company-details {
        grid-template-columns: 1fr;
    }

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

    .projects-placeholder {
        grid-column: span 1;
    }

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

    .service-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

    .map-overlay {
        left: var(--space-sm);
        right: var(--space-sm);
        bottom: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .nav-logo-text {
        display: none;
    }

    .contact-form-wrapper {
        padding: var(--space-md);
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CLEAN BIRCH BACKGROUND (used in prosjekter.html)
   ─────────────────────────────────────────────────────────────────────────── */
.clean-birch {
    --clean-birch: var(--cream-warm);
}

.services[style*="clean-birch"] {
    background: var(--cream-warm);
}

/* Service card for services section on prosjekter page */
.services .service-card {
    grid-column: span 1;
}

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.services .service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cream), var(--sand));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--timber);
    transition: all var(--duration-normal) ease;
}

.services .service-icon svg {
    width: 26px;
    height: 26px;
}

.services .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--timber), var(--timber-dark));
    color: white;
}

.services .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.services .service-card p {
    font-size: 0.9375rem;
    color: var(--slate);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.services-header h2 {
    margin-bottom: var(--space-md);
}

@media (max-width: 992px) {
    .services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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