/* ===== DOHERTY BUILD — SHARED STYLES ===== */

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

:root {
    --charcoal: #1C1C1E;
    --slate: #2C2C30;
    --warm-stone: #F5F0EB;
    --cream: #FDFBF7;
    --amber: #C8963E;
    --amber-light: #D4A854;
    --amber-dark: #A67B2E;
    --text-dark: #1C1C1E;
    --text-mid: #5A5A5E;
    --text-light: #8A8A8E;
    --border: #E5E0DB;
    --white: #FFFFFF;
    --success: #2D7A3A;
    --urgent: #C0392B;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===== TOPBAR ===== */
.topbar {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.topbar a {
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
}
.topbar a:hover { color: var(--amber); }
.topbar__contact { display: flex; gap: 1.5rem; align-items: center; }
.topbar__item { display: flex; align-items: center; gap: 0.4rem; }

/* ===== HEADER ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo span {
    color: var(--amber);
    font-weight: 600;
}
.logo__icon { flex-shrink: 0; }

.nav { display: flex; align-items: center; gap: 0; }
.nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}
.nav__link:hover { color: var(--charcoal); }
.nav__link--active { color: var(--charcoal); }
.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--amber);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--amber);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav__cta:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,150,62,0.3);
}

/* Nav dropdown */
.nav__dropdown {
    position: relative;
}
.nav__dropdown-toggle {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font-family: var(--font-body);
}
.nav__dropdown-toggle:hover { color: var(--charcoal); }
.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-mid);
    transition: all 0.15s;
}
.nav__dropdown-menu a:hover {
    background: var(--warm-stone);
    color: var(--charcoal);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    position: absolute;
    left: 5px;
    transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 9px; }
.mobile-toggle span:nth-child(2) { top: 15px; }
.mobile-toggle span:nth-child(3) { top: 21px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--amber);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,150,62,0.35);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}
.btn--dark {
    background: var(--charcoal);
    color: var(--white);
}
.btn--dark:hover {
    background: var(--slate);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--white {
    background: var(--white);
    color: var(--amber-dark);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--white-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--white-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}
.btn--outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border);
}
.btn--outline-dark:hover {
    border-color: var(--amber);
    color: var(--amber-dark);
}

/* ===== SECTION STYLES ===== */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    color: var(--charcoal);
}
.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a32 50%, #1a1a22 100%);
    color: var(--white);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200,150,62,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200,150,62,0.05) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200,150,62,0.15);
    border: 1px solid rgba(200,150,62,0.3);
    color: var(--amber-light);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    max-width: 700px;
    letter-spacing: -0.02em;
}
.page-hero__title em {
    font-style: normal;
    color: var(--amber-light);
}
.page-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 300;
    margin-bottom: var(--space-lg);
}
.page-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.page-hero__breadcrumb {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-sm);
}
.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.page-hero__breadcrumb a:hover { color: var(--amber-light); }

/* ===== HOMEPAGE HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a32 50%, #1a1a22 100%);
    color: var(--white);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200,150,62,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200,150,62,0.05) 0%, transparent 50%);
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 45%;
    background: linear-gradient(135deg, rgba(200,150,62,0.06) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200,150,62,0.15);
    border: 1px solid rgba(200,150,62,0.3);
    color: var(--amber-light);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}
.hero__title em { font-style: normal; color: var(--amber-light); }
.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 520px;
    font-weight: 300;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}
.hero__trust {
    display: flex;
    gap: 2rem;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__trust-item { text-align: center; }
.hero__trust-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1;
}
.hero__trust-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}
.hero__visual { position: relative; }
.hero__image-main {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(200,150,62,0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero__image-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 200px;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.hero__image-accent-stars { color: var(--amber); font-size: 1rem; margin-bottom: 0.25rem; }
.hero__image-accent-text { font-size: 0.8125rem; color: var(--text-dark); font-weight: 600; }
.hero__image-accent-sub { font-size: 0.6875rem; color: var(--text-light); margin-top: 0.125rem; }

/* ===== SERVICE CARDS ===== */
.services { padding: var(--space-2xl) 0; background: var(--white); }
.services__header { text-align: center; margin-bottom: var(--space-xl); }
.services__header .section-subtitle { margin-left: auto; margin-right: auto; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.service-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 48px; height: 48px;
    background: rgba(200,150,62,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--amber);
}
.service-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}
.service-card__text {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s;
}
.service-card__link:hover { gap: 0.625rem; }

/* ===== WHY / ABOUT SECTION ===== */
.why { padding: var(--space-2xl) 0; background: var(--warm-stone); }
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.why__image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--border) 0%, #d5d0cb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
    overflow: hidden;
}
.why__features { display: grid; gap: 1.25rem; margin-top: var(--space-lg); }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon {
    width: 36px; height: 36px; min-width: 36px;
    background: rgba(200,150,62,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    margin-top: 2px;
}
.feature__title { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.feature__text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ===== PORTFOLIO CARDS ===== */
.portfolio { padding: var(--space-2xl) 0; background: var(--white); }
.portfolio__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-xl);
}
.portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--warm-stone);
    cursor: pointer;
    transition: transform 0.3s;
}
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card__overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}
.portfolio-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}
.portfolio-card__type {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: var(--space-2xl) 0; background: var(--charcoal); color: var(--white); }
.testimonials .section-label { color: var(--amber-light); }
.testimonials .section-title { color: var(--white); }
.testimonials__header { text-align: center; margin-bottom: var(--space-xl); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}
.testimonial-card__stars { color: var(--amber); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card__text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-card__author { font-weight: 600; font-size: 0.9375rem; }
.testimonial-card__location { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-top: 0.125rem; }

/* ===== PROCESS ===== */
.process { padding: var(--space-2xl) 0; background: var(--cream); }
.process__header { text-align: center; margin-bottom: var(--space-xl); }
.process__header .section-subtitle { margin-left: auto; margin-right: auto; }
.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.process__steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__number {
    width: 56px; height: 56px;
    background: var(--amber);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(200,150,62,0.25);
}
.step__title { font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; }
.step__text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ===== AREAS ===== */
.areas { padding: var(--space-xl) 0; background: var(--white); border-top: 1px solid var(--border); }
.areas__header { text-align: center; margin-bottom: var(--space-lg); }
.areas__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.areas__tag {
    padding: 0.5rem 1.25rem;
    background: var(--warm-stone);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 500;
    transition: all 0.2s;
}
.areas__tag:hover { background: var(--amber); color: var(--white); }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 50%, var(--amber-light) 100%);
    color: var(--white);
    text-align: center;
}
.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}
.cta-banner__text {
    font-size: 1.0625rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}
.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { padding: var(--space-2xl) 0; background: var(--cream); }
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}
.contact__info-items { display: grid; gap: 1.5rem; margin-top: var(--space-lg); }
.contact__info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact__info-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(200,150,62,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
}
.contact__info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}
.contact__info-value { font-weight: 600; font-size: 1rem; }
.contact__info-value a { color: var(--charcoal); transition: color 0.2s; }
.contact__info-value a:hover { color: var(--amber); }

/* Form */
.contact__form {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}
.form__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form__subtitle { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1rem; }
.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
}
.form__input, .form__select, .form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    background: var(--cream);
    transition: border-color 0.2s;
    color: var(--text-dark);
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: var(--white);
}
.form__textarea { resize: vertical; min-height: 100px; }
.form__submit { width: 100%; margin-top: 0.5rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: var(--space-xl) 0 var(--space-lg);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--space-lg);
}
.footer__brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer__brand .logo span { color: var(--amber-light); }
.footer__text { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
    font-size: 0.875rem;
}
.footer__social-link:hover { background: var(--amber); color: var(--white); }
.footer__heading { font-weight: 600; color: var(--white); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.footer__links { list-style: none; display: grid; gap: 0.625rem; }
.footer__link { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__link:hover { color: var(--amber-light); }
.footer__bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
}

/* ===== CONTENT SECTIONS (service pages) ===== */
.content-section { padding: var(--space-2xl) 0; }
.content-section:nth-child(even) { background: var(--white); }
.content-section:nth-child(odd) { background: var(--cream); }
.content-section--white { background: var(--white); }
.content-section--cream { background: var(--cream); }
.content-section--stone { background: var(--warm-stone); }

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }

.content-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--warm-stone);
}
.content-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FEATURE GRID (icons + text) ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
}
.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.feature-box__icon {
    width: 56px; height: 56px;
    background: rgba(200,150,62,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--amber);
}
.feature-box__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-box__text { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* ===== MOBILE STICKY PHONE ===== */
.mobile-phone {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--amber);
    color: var(--white);
    text-align: center;
    padding: 0.875rem;
    font-weight: 600;
    font-size: 1rem;
    z-index: 200;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .content-grid--reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .nav { display: none; }
    .mobile-toggle { display: block; }
    .nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .nav--open .nav__link { padding: 0.75rem 1rem; }
    .nav--open .nav__cta { margin: 0.5rem 1rem; text-align: center; justify-content: center; }
    .nav__link--active::after { display: none; }
    .nav__dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1rem; display: block; }
    .nav__dropdown-toggle svg { display: none; }

    .hero { min-height: auto; padding: var(--space-xl) 0; }
    .hero__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .hero__visual { order: -1; }
    .hero__trust { gap: 1.5rem; }

    .services__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }
    .portfolio__grid { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .process__steps { grid-template-columns: 1fr 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .feature-grid { grid-template-columns: 1fr; }

    .hero__image-accent { display: none; }
    .mobile-phone { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
    body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
    .hero__actions, .page-hero__actions { flex-direction: column; }
    .btn { justify-content: center; width: 100%; }
    .cta-banner__actions { flex-direction: column; align-items: center; }
    .process__steps { grid-template-columns: 1fr; }
}
