/* =============================================
   ARCADIAN LANDSCAPE - Premium Coastal Design
   Cormorant Garamond + DM Sans
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* =============================================
   RESET + CUSTOM PROPERTIES
   ============================================= */

*, *::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;
}

:root {
    /* Colors -- Arcadian Green + Clean White */
    --color-primary: #0d4000;
    --color-secondary: #1a5c0a;
    --color-accent: #1f67e7;
    --color-accent-dark: #1854c4;
    --color-stone: #555555;
    --color-bg: #FFFFFF;
    --color-surface: #f4f4f4;
    --color-text: #222222;
    --color-text-muted: #555555;
    --color-border: #e0e0e0;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1280px;
    --narrow: 720px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 80px;
    --space-4xl: 120px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(27, 46, 31, 0.06);
    --shadow-md: 0 4px 12px rgba(27, 46, 31, 0.08);
    --shadow-lg: 0 12px 24px rgba(27, 46, 31, 0.12);

    /* Transitions */
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Nav height */
    --nav-height: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* =============================================
   BASE TYPOGRAPHY
   ============================================= */

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

h4 {
    font-family: var(--font-body);
    color: var(--color-primary);
}

h1 {
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
}

h3 {
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: var(--space-sm);
}

h4 {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
}

p {
    max-width: 70ch;
    margin-bottom: var(--space-md);
}

p:last-child { margin-bottom: 0; }

.text-large {
    font-size: 1.0625rem;
    line-height: 1.65;
}

.text-small {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

.text-caption {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.text-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Body links */
.content a,
.section__text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.content a:hover,
.section__text a:hover {
    color: var(--color-accent-dark);
}

/* Desktop type scale */
@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.625rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }
    body { font-size: 1.0625rem; }
    .text-large { font-size: 1.1875rem; }
    .text-small { font-size: 0.875rem; }
}

/* =============================================
   UTILITIES
   ============================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden { display: none !important; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--narrow);
}

.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                box-shadow var(--transition), transform var(--transition);
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
}

.btn--primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
}

.btn--white:hover {
    background: var(--color-bg);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* =============================================
   SKIP LINK
   ============================================= */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-accent);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
}

.skip-link:focus {
    top: var(--space-md);
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition), padding var(--transition),
                box-shadow var(--transition), border-color var(--transition);
}

.navbar.scrolled {
    background: var(--color-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-links {
    margin-left: auto;
}

.navbar__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar__logo-img {
    height: 50px;
    width: auto;
    transition: filter var(--transition);
}

.navbar.scrolled .navbar__logo-img {
    filter: none;
}

.navbar__logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-left: 10px;
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.navbar.scrolled .navbar__logo-text {
    color: var(--color-text);
}

.navbar.scrolled .navbar__logo {
    color: var(--color-primary);
}

.navbar__phone {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar__phone svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.navbar.scrolled .navbar__phone {
    color: var(--color-text);
}

.navbar__phone:hover {
    color: var(--color-accent);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links__item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    cursor: pointer;
}

.nav-links__item:hover {
    color: var(--color-accent);
}

.nav-links__item.active {
    color: var(--color-white);
    border-bottom: 2px solid var(--color-accent);
}

.navbar.scrolled .nav-links__item {
    color: var(--color-text);
}

.navbar.scrolled .nav-links__item:hover {
    color: var(--color-accent);
}

.navbar.scrolled .nav-links__item.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-accent);
}

.nav-links__item:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* Nav CTA */
.nav-links .btn--primary {
    padding: 10px 24px;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown__arrow {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown__arrow,
.nav-dropdown.open .nav-dropdown__arrow {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__link {
    display: block;
    padding: 10px 24px;
    color: var(--color-text);
    text-transform: none;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0;
    transition: color var(--transition), background var(--transition);
}

.nav-dropdown__link:hover {
    color: var(--color-accent);
    background: var(--color-surface);
}

.nav-dropdown__link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -2px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
    display: block;
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-primary);
}

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

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

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

/* Mobile Navigation Panel */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    padding: 80px var(--space-lg) var(--space-lg);
    transition: right var(--transition-slow);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.nav-mobile.open {
    right: 0;
}

.nav-mobile__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.nav-mobile__overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-mobile__link {
    display: block;
    padding: 14px 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}

.nav-mobile__link:hover {
    color: var(--color-accent);
}

.nav-mobile__link.active {
    color: var(--color-accent);
}

.nav-mobile__sub {
    padding-left: var(--space-lg);
}

.nav-mobile__sub a {
    display: block;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}

.nav-mobile__sub a:hover {
    color: var(--color-accent);
}

.nav-mobile__cta {
    margin-top: var(--space-xl);
}

.nav-mobile__phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

/* =============================================
   HERO
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 var(--space-3xl);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero__bg img,
.hero__bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 46, 31, 0.55);
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: var(--nav-height);
    width: 100%;
}

.hero__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    max-width: 720px;
}

.hero__subtitle {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: var(--space-xl);
}

.hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* Trust Badges */
.hero__trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    stroke-width: 2;
    fill: none;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero__scroll::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    animation: scrollLine 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* Hero Variants */
.hero--short {
    min-height: 50vh;
}

.hero--compact {
    min-height: 40vh;
}

/* =============================================
   BREADCRUMBS
   ============================================= */

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

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

.breadcrumbs__item {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Breadcrumbs in hero context */
.hero .breadcrumbs__item {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs__link {
    text-decoration: none;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.breadcrumbs__link:hover {
    color: var(--color-accent);
}

.hero .breadcrumbs__link {
    color: rgba(255, 255, 255, 0.6);
}

.hero .breadcrumbs__link:hover {
    color: var(--color-accent);
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: '/';
    margin-right: var(--space-sm);
    color: var(--color-border);
}

.hero .breadcrumbs__item + .breadcrumbs__item::before {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs__link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* =============================================
   SECTIONS
   ============================================= */

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

.section--surface {
    background: var(--color-surface);
}

.section--dark {
    background: var(--color-primary);
    color: var(--color-bg);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-bg);
}

.section--dark p {
    color: rgba(250, 248, 245, 0.8);
}

.section--dark .text-label {
    color: var(--color-accent);
}

.section--white {
    background: var(--color-white);
}

/* Section Header */
.section-header {
    margin-bottom: var(--space-2xl);
}

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

.section-header__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: block;
}

.section-header__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.section-header__subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.65;
}

.section-header--center .section-header__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section--dark .section-header__title {
    color: var(--color-bg);
}

.section--dark .section-header__subtitle {
    color: rgba(250, 248, 245, 0.75);
}

@media (min-width: 1024px) {
    .section { padding: var(--space-4xl) 0; }
    .section-header__title { font-size: 2.625rem; }
}

/* =============================================
   LAYOUT PATTERNS
   ============================================= */

/* Asymmetric Split - 60/40 */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split__media {
    overflow: hidden;
}

.split__media img,
.split__media picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.split__content {
    padding: var(--space-lg) 0;
}

/* Reverse Split (image right by default, text left) */
.split--reverse .split__media {
    order: -1;
}

/* Wide Split - 70/30 */
.split--wide .split__content {
    padding: var(--space-xl) 0;
}

/* Full Bleed */
.full-bleed {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.full-bleed__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.full-bleed__bg img,
.full-bleed__bg picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-bleed__overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 46, 31, 0.55);
    z-index: 1;
}

.full-bleed__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-3xl) 24px;
    color: var(--color-bg);
}

.full-bleed__content h2 {
    color: var(--color-white);
}

.full-bleed__content p {
    color: rgba(250, 248, 245, 0.85);
}

/* Stagger - Offset image */
.stagger {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.stagger__media {
    overflow: hidden;
}

.stagger__media img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.stagger__content {
    padding: var(--space-lg) 0;
}

/* Centered Block */
.centered-block {
    max-width: var(--narrow);
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .split {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-2xl);
    }

    .split--reverse {
        grid-template-columns: 1fr 1.5fr;
    }

    .split--reverse .split__media {
        order: 0;
    }

    .split--wide {
        grid-template-columns: 2fr 1fr;
    }

    .stagger {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-2xl);
    }

    .stagger__media {
        position: relative;
        top: 40px;
    }
}

@media (min-width: 1024px) {
    .container { padding: 0 48px; }
}

@media (min-width: 1440px) {
    .container { padding: 0 80px; }
}

/* =============================================
   SERVICE SHOWCASE (Asymmetric Blocks)
   ============================================= */

/* Service Showcase -- Full-bleed photo cards with text overlay */
.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-showcase__item {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    cursor: pointer;
}

.service-showcase__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-showcase__media img,
.service-showcase__media picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-showcase__item:hover .service-showcase__media img {
    transform: scale(1.05);
}

.service-showcase__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
    transition: background var(--transition-slow);
}

.service-showcase__item:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1) 100%);
}

.service-showcase__content {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl) var(--space-xl);
    max-width: 650px;
}

.service-showcase__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: block;
}

.service-showcase__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
    color: #fff;
}

.service-showcase__desc {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-showcase__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 10px 24px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.service-showcase__link:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.service-showcase__link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.service-showcase__link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (min-width: 768px) {
    .service-showcase__item {
        min-height: 550px;
    }
    .service-showcase__content {
        padding: var(--space-3xl) var(--space-2xl);
    }
    .service-showcase__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .service-showcase__item {
        min-height: 600px;
    }
    .service-showcase__content {
        padding: var(--space-3xl) var(--space-3xl);
    }
    .service-showcase__title {
        font-size: 3.5rem;
    }
}

/* Photo strip -- horizontal scrolling gallery */
.photo-strip {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px var(--space-lg);
    scrollbar-width: none;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    overflow: hidden;
}
.photo-strip__item img {
    height: 350px;
    width: auto;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}
.photo-strip__item:hover img { transform: scale(1.03); }
@media (min-width: 768px) {
    .photo-strip__item img { height: 450px; }
    .photo-strip { gap: var(--space-lg); }
}
@media (min-width: 1024px) {
    .photo-strip__item img { height: 550px; }
}

/* Full-bleed photo break (edge-to-edge between sections) */
.photo-break {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}
.photo-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .photo-break img { height: 500px; }
}

/* =============================================
   GALLERY
   ============================================= */

/* Filter Buttons */
.gallery__filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.gallery__filter {
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
}

.gallery__filter:hover {
    border-color: var(--color-stone);
    color: var(--color-text);
}

.gallery__filter.active {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

.gallery__filter:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* Masonry Grid */
.gallery__grid {
    column-count: 1;
    column-gap: var(--space-md);
}

.gallery__item {
    break-inside: avoid;
    margin-bottom: var(--space-md);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 46, 31, 0.6);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.02);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
}

.gallery__item-category {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.gallery__load-more {
    display: block;
    margin: var(--space-2xl) auto 0;
}

@media (min-width: 768px) {
    .gallery__grid { column-count: 2; }
}

@media (min-width: 1024px) {
    .gallery__grid { column-count: 3; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.lightbox.open,
.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: color var(--transition);
}

.lightbox__close:hover {
    color: var(--color-accent);
}

.lightbox__close:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.lightbox__close svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: color var(--transition);
}

.lightbox__nav:hover {
    color: var(--color-accent);
}

.lightbox__nav:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.lightbox__nav svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 600px;
}

/* Before / After Slider */
.before-after {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.before-after__before,
.before-after__after {
    display: block;
    width: 100%;
}

.before-after__before {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%;
    z-index: 1;
}

.before-after__before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 0;
}

.before-after__after img {
    width: 100%;
    object-fit: cover;
}

.before-after__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--color-white);
    z-index: 2;
    transform: translateX(-50%);
}

.before-after__handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.before-after__label {
    position: absolute;
    top: var(--space-md);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.before-after__label--before {
    left: var(--space-md);
}

.before-after__label--after {
    right: var(--space-md);
}

/* =============================================
   TESTIMONIAL
   ============================================= */

.testimonial {
    background: var(--color-surface);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.testimonial__inner {
    max-width: var(--narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial__quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial__quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-accent);
    position: absolute;
    top: -20px;
    left: -8px;
    line-height: 1;
    opacity: 0.6;
}

.testimonial__author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.testimonial__project {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.testimonial__stars svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
    stroke: none;
}

@media (min-width: 1024px) {
    .testimonial { padding: var(--space-4xl) 0; }
    .testimonial__quote { font-size: 2rem; }
}

/* =============================================
   FAQ ACCORDION
   ============================================= */

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-border);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
    gap: var(--space-md);
}

.faq__question:hover {
    color: var(--color-accent);
}

.faq__question:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-secondary);
    transition: transform var(--transition);
}

.faq__icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq__item.active .faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq__item.active .faq__question {
    color: var(--color-accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq__answer-inner {
    padding: 0 0 var(--space-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

@media (min-width: 1024px) {
    .faq__question { font-size: 1.5rem; }
}

/* =============================================
   CONTACT FORM
   ============================================= */

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

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

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

.form__label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

.form__input:focus-visible,
.form__textarea:focus-visible,
.form__select:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-stone);
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
}

.form__select {
    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='%235A5A5A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form__submit {
    align-self: flex-start;
}

/* Success / Error States */
.form__message {
    padding: var(--space-md) var(--space-lg);
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.9375rem;
}

.form__message--success {
    background: rgba(92, 107, 82, 0.1);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.form__message--error {
    background: rgba(220, 53, 69, 0.08);
    color: #c0392b;
    border: 1px solid #c0392b;
}

.form__group--error .form__input,
.form__group--error .form__textarea,
.form__group--error .form__select {
    border-color: #c0392b;
}

.form__error-text {
    font-size: 0.8125rem;
    color: #c0392b;
    font-weight: 500;
}

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

/* =============================================
   CTA SECTION
   ============================================= */

.cta {
    background: var(--color-primary);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.cta--accent {
    background: var(--color-accent);
}

.cta__inner {
    max-width: var(--narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.cta__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 1.15;
    color: var(--color-bg);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: 1.0625rem;
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: var(--space-xl);
    margin-left: auto;
    margin-right: auto;
}

.cta--accent .cta__title {
    color: var(--color-white);
}

.cta--accent .cta__text {
    color: rgba(255, 255, 255, 0.9);
}

.cta--accent .btn--primary {
    background: var(--color-white);
    color: var(--color-accent);
}

.cta--accent .btn--primary:hover {
    background: var(--color-bg);
}

.cta__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .cta { padding: var(--space-4xl) 0; }
    .cta__title { font-size: 2.625rem; }
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--color-primary);
    color: var(--color-bg);
    padding: var(--space-3xl) 0 0;
}

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

.footer__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-bg);
    margin-bottom: var(--space-lg);
}

.footer__about p {
    color: rgba(250, 248, 245, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer__license {
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.5);
    margin-top: var(--space-md);
}

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

.footer__link {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.7);
    text-decoration: none;
    transition: color var(--transition);
    padding: 4px 0;
}

.footer__link:hover {
    color: var(--color-accent);
}

.footer__link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* Footer Contact */
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.7);
}

.footer__contact-item a {
    color: rgba(250, 248, 245, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Social Links */
.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(250, 248, 245, 0.6);
    transition: color var(--transition);
}

.footer__social-link:hover {
    color: var(--color-accent);
}

.footer__social-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Legal Bar */
.footer__legal {
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    padding: var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

.footer__copyright {
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.4);
}

.footer__legal-links {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal-link {
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.4);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__legal-link:hover {
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer__legal {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* =============================================
   BLOG
   ============================================= */

/* Blog Listing - Staggered layout */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition);
}

.blog-card:hover {
    transform: translateY(-2px);
}

.blog-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.02);
}

.blog-card__date {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-stone);
    margin-bottom: var(--space-sm);
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

.blog-card:hover .blog-card__title {
    color: var(--color-accent);
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.blog-card__read-more {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    margin-top: var(--space-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .blog-card:first-child {
        grid-column: 1 / -1;
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }

    .blog-card:first-child .blog-card__title {
        font-size: 2rem;
    }
}

/* Blog Single Post */
.post {
    max-width: var(--narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.post__header {
    margin-bottom: var(--space-2xl);
}

.post__date {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-stone);
    margin-bottom: var(--space-md);
}

.post__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.post__meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.post__body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
}

.post__body h2 {
    font-size: 1.75rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.post__body h3 {
    font-size: 1.375rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.post__body p {
    margin-bottom: var(--space-lg);
}

.post__body a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post__body a:hover {
    color: var(--color-accent-dark);
}

.post__body img {
    margin: var(--space-xl) 0;
    width: 100%;
}

.post__body ul,
.post__body ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.post__body ul { list-style: disc; }
.post__body ol { list-style: decimal; }

.post__body li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.post__body blockquote {
    border-left: 3px solid var(--color-accent);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    background: var(--color-surface);
    font-style: italic;
}

@media (min-width: 1024px) {
    .post__title { font-size: 2.625rem; }
}

/* =============================================
   AREA PAGES
   ============================================= */

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

.area-service {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition), transform var(--transition);
}

.area-service:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.area-service:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.area-service__media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.area-service__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.area-service:hover .area-service__media img {
    transform: scale(1.02);
}

.area-service__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

.area-service:hover .area-service__title {
    color: var(--color-accent);
}

.area-service__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

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

    .area-service:first-child {
        grid-column: 1 / -1;
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .area-services {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* =============================================
   PROCESS / STEPS
   ============================================= */

.process {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    counter-reset: step;
}

.process__step {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
    counter-increment: step;
}

.process__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
    opacity: 0.4;
}

.process__number::before {
    content: counter(step, decimal-leading-zero);
}

.process__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.process__desc {
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .process__step {
        grid-template-columns: auto 1fr;
        gap: var(--space-xl);
        align-items: center;
    }

    .process__number { font-size: 4rem; }
}

/* =============================================
   STATS / BADGES
   ============================================= */

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    justify-content: center;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section--dark .stat__number {
    color: var(--color-accent);
}

.section--dark .stat__label {
    color: rgba(250, 248, 245, 0.6);
}

/* =============================================
   FEATURE LIST
   ============================================= */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.feature-list__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.feature-list__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.feature-list__text {
    font-size: 1rem;
    line-height: 1.5;
}

.feature-list__text strong {
    font-weight: 600;
    color: var(--color-primary);
}

/* =============================================
   RESPONSIVE - MOBILE FIRST
   ============================================= */

/* Tablet and up */
@media (min-width: 768px) {
    .navbar__phone { display: flex; }

    .hero__title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    :root { --nav-height: 80px; }

    .navbar__phone { display: flex; }

    .hero__subtitle {
        font-size: 1.1875rem;
    }
}

/* Large desktop */
@media (min-width: 1440px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

/* Mobile-only */
@media (max-width: 767px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-toggle.active {
        z-index: 1000;
    }

    .nav-mobile__sub {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .nav-mobile__sub.open {
        max-height: 600px;
    }

    .hero {
        align-items: center;
        padding: var(--space-3xl) 0;
    }

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

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

    .split,
    .split--reverse,
    .split--wide,
    .stagger {
        grid-template-columns: 1fr;
    }

    .split--reverse .split__media,
    .service-showcase__item:nth-child(even) .service-showcase__media {
        order: -1;
    }

    .stagger__media {
        top: 0;
    }

    .service-showcase__item,
    .service-showcase__item:nth-child(even) {
        grid-template-columns: 1fr;
    }

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

    .blog-card:first-child {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

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

    .area-service:first-child {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
}

/* Small mobile */
@media (max-width: 374px) {
    .container { padding: 0 16px; }

    .hero__buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   FOCUS STATES (Global)
   ============================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* =============================================
   REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .hero__scroll::after {
        animation: none;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
    .navbar,
    .nav-mobile,
    .nav-mobile__overlay,
    .footer,
    .cta,
    .hero__scroll,
    .hero__buttons,
    .gallery__filters,
    .lightbox,
    .skip-link,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 24pt 0;
    }

    .hero__overlay {
        display: none;
    }

    .hero__title,
    .hero__subtitle {
        color: #000;
    }

    .section {
        padding: 24pt 0;
        background: #fff !important;
        color: #000 !important;
    }

    h1, h2, h3, h4 {
        color: #000;
        page-break-after: avoid;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .split,
    .split--reverse,
    .split--wide,
    .stagger {
        grid-template-columns: 1fr;
    }
}
