/* ==========================================================================
   Sash Restoration Belfast - Design System
   Premium editorial architectural aesthetic
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
    /* Brand Colors */
    --navy: #011E82;
    --navy-dark: #010F41;
    --sky: #88CCF1;
    --pale: #C1DFF0;
    --teal: #2D848A;
    --mint: #A3E0D1;
    --white: #ffffff;
    --body-color: #444444;

    /* Complementary Palette */
    --cream: #F2F6D0;
    --mint-soft: #D0E1D4;
    --beige: #D9D2B6;
    --peach: #E4BE9E;
    --plum: #71697A;

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

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1160px;
    --container-padding: 40px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ==========================================================================
   2. Base Reset & Typography
   ========================================================================== */

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

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.7;
    color: var(--body-color);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Page transition */
    opacity: 0;
    animation: pageLoad 0.4s ease forwards;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.page-transitioning {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Headings - Cormorant Garamond, weight 400 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* H1: 64px, line-height 1.1 */
h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    h1 {
        font-size: 64px;
    }
}

/* H2: 42px, line-height 1.2 */
h2 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    h2 {
        font-size: 42px;
    }
}

/* H3: 28px, line-height 1.3, consistent spacing */
h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 48px;
    margin-bottom: 16px;
}

h3:first-child {
    margin-top: 0;
}

@media (min-width: 768px) {
    h3 {
        font-size: 28px;
    }
}

h4 {
    font-size: 20px;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    color: var(--body-color);
}

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

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

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 0;
    list-style: none;
}

li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--body-color);
}

li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--plum);
}

/* Ordered lists */
ol {
    counter-reset: list-counter;
}

ol li {
    counter-increment: list-counter;
}

ol li::before {
    content: counter(list-counter) ".";
    background: none;
    width: auto;
    height: auto;
    font-weight: 500;
    color: var(--plum);
    top: 0;
}

/* ==========================================================================
   3. Section Labels (small caps above headings)
   ========================================================================== */

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}

/* ==========================================================================
   4. Layout - Container
   ========================================================================== */

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

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

/* ==========================================================================
   5. Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(1, 30, 130, 0.08);
}

.nav.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    object-fit: cover;
}

.nav-logo-text {
    display: none;
}

@media (min-width: 640px) {
    .nav-logo-text {
        display: flex;
        flex-direction: column;
    }

    .nav-logo-text span:first-child {
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.2;
    }

    .nav-logo-text span:last-child {
        font-size: 10px;
        font-weight: 500;
        color: var(--plum);
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }
}

/* Nav Links */
.nav-links {
    display: none;
    list-style: none;
    gap: 36px;
    margin: 0 auto;
    align-items: center;
}

.nav-links li {
    padding: 0;
    margin: 0;
}

.nav-links li::before {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--navy);
}

/* Dropdown Arrow */
.nav-links .nav-arrow {
    width: 10px;
    height: 10px;
    transition: transform var(--transition-fast);
}

.nav-links > li:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border: 1px solid rgba(1, 30, 130, 0.08);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    padding: 8px 0;
    list-style: none;
}

.nav-links > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown li {
    margin: 0;
    padding: 0;
}

.nav-dropdown li::before {
    display: none;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    transition: all var(--transition-fast);
}

.nav-dropdown a:hover {
    background: rgba(193, 223, 240, 0.3);
    color: var(--navy);
}

/* CTA Button */
.nav-cta {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--mint-soft);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
    background: #b8cfc2;
    color: var(--navy);
    transform: translateY(-2px);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

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

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition-normal);
}

/* Mobile Menu */
.mobile-menu {
    background: var(--white);
    border-top: 1px solid rgba(1, 30, 130, 0.08);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
    max-height: 80vh;
    padding: 24px;
    overflow-y: auto;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
}

.mobile-menu li {
    padding: 0;
    margin: 0;
}

.mobile-menu li::before {
    display: none;
}

.mobile-menu > ul > li {
    border-bottom: 1px solid rgba(1, 30, 130, 0.06);
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-weight: 500;
    color: #374151;
}

/* Mobile Submenu */
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.mobile-submenu-toggle svg {
    transition: transform var(--transition-fast);
}

.mobile-submenu.active .mobile-submenu-toggle svg {
    transform: rotate(180deg);
}

.mobile-submenu-list {
    display: none;
    padding-left: 16px;
    margin: 0;
}

.mobile-submenu.active .mobile-submenu-list {
    display: block;
}

.mobile-submenu-list a {
    padding: 12px 0;
    font-size: 15px;
    color: #6b7280;
}

.mobile-menu .nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    width: 100%;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--cream);
    color: var(--navy);
}

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

.btn-navy:hover {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline {
    background: var(--white);
    color: var(--plum);
    border: 1px solid var(--plum);
}

.btn-outline:hover {
    background: var(--cream);
    border-color: var(--plum);
    color: var(--plum);
}

/* ==========================================================================
   7. Homepage Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(1, 15, 65, 0.8), rgba(1, 15, 65, 0.5), rgba(1, 15, 65, 0.3));
}

/* Warm overlay variant - peach/amber tones */
.hero-overlay-warm {
    background: linear-gradient(
        135deg,
        rgba(30, 20, 10, 0.75) 0%,
        rgba(45, 35, 25, 0.6) 40%,
        rgba(60, 45, 30, 0.45) 70%,
        rgba(80, 60, 40, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    padding: 60px 0;
}

/* Subtle radial gradient behind hero text for warmth */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242, 246, 208, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-badge::before {
    content: '';
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.hero-features span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   8. Interior Page Hero (pale blue background)
   ========================================================================== */

.page-hero {
    background: var(--mint-soft);
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero .section-label {
    color: var(--plum);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero .lead {
    font-size: 18px;
    font-weight: 300;
    color: var(--body-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   9. Sections - 100px Padding
   ========================================================================== */

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

.section-pale {
    background: var(--cream);
}

.section-beige {
    background: var(--beige);
}

.section-mint {
    background: var(--mint-soft);
}

.section-header {
    max-width: 640px;
    margin-bottom: 48px;
}

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

/* ==========================================================================
   10. Content Grid
   ========================================================================== */

.content-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
        align-items: start;
    }
}

.content-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ==========================================================================
   11. Service Cards
   ========================================================================== */

.services-grid {
    display: grid;
    gap: 1px;
    background: rgba(1, 30, 130, 0.08);
}

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

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

.service-card {
    background: var(--white);
    transition: background var(--transition-fast);
    cursor: pointer;
}

.service-card:hover {
    background: var(--cream);
}

.service-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.service-card-content {
    padding: 32px;
}

.service-card-number {
    font-size: 11px;
    color: rgba(1, 30, 130, 0.3);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 24px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    padding-top: 24px;
    border-top: 1px solid var(--beige);
}

.service-card-link:hover {
    gap: 16px;
}

/* ==========================================================================
   12. Related Services Grid
   ========================================================================== */

.related-services {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .related-services {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-service-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(1, 30, 130, 0.08);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.related-service-card:hover {
    border-color: var(--beige);
    background: var(--cream);
}

.related-service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.related-service-card h3 a {
    color: var(--navy);
}

.related-service-card h3 a:hover {
    color: var(--plum);
}

.related-service-card p {
    font-size: 15px;
    margin: 0;
}

/* ==========================================================================
   13. FAQ Section
   ========================================================================== */

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

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--beige);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 400;
    padding-right: 32px;
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    line-height: 1.8;
}

/* ==========================================================================
   14. Stats Bar
   ========================================================================== */

.stats-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(1, 30, 130, 0.06);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-bar--four {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--plum);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ==========================================================================
   15. Editorial Gallery (CSS Columns Masonry)
   ========================================================================== */

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

.gallery-category {
    margin-bottom: 64px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

/* Full-width category labels */
.gallery-category-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--beige);
}

/* CSS Columns Masonry Layout */
.gallery-masonry {
    column-count: 1;
    column-gap: 12px;
}

@media (min-width: 640px) {
    .gallery-masonry {
        column-count: 2;
    }
}

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

.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    /* No borders, no rounded corners, no hover effects - clean editorial */
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(1, 15, 65, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -4rem;
}

.lightbox-next {
    right: -4rem;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 0;
    }
    .lightbox-next {
        right: 0;
    }
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-family: var(--font-body);
}

/* ==========================================================================
   16. CTA Section
   ========================================================================== */

.cta-section {
    background: var(--mint-soft);
    padding: var(--section-padding) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--navy);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--body-color);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   17. Footer — Editorial Heritage Studio
   ========================================================================== */

.footer {
    background: #1e1c19;
    color: var(--white);
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }

    /* Vertical dividers between footer columns */
    .footer-grid > div:not(:first-child) {
        padding-left: 32px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

/* Logo circle container to handle white background in jpeg */
.footer-logo-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}

.footer-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo-text span:first-child {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.footer-logo-text span:last-child {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0;
    padding: 0;
}

.footer-links li::before {
    display: none;
}

.footer-links a {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 2;
}

.footer-contact strong {
    color: var(--white);
    font-weight: 400;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}

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

.footer-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 28px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.footer-bottom-links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Projects Carousel
   ========================================================================== */

.projects-carousel-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.projects-carousel-wrapper {
    position: relative;
}

.projects-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 24px 8px calc((100vw - var(--container-max)) / 2 + var(--container-padding));
    cursor: grab;
}

@media (max-width: 1200px) {
    .projects-carousel {
        padding-left: 24px;
    }
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.projects-carousel.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--navy);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

@media (min-width: 1024px) {
    .carousel-nav {
        display: flex;
    }
}

.carousel-nav:hover {
    background: var(--navy);
    color: var(--white);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
}

.carousel-prev {
    left: max(24px, calc((100vw - var(--container-max)) / 2));
}

.carousel-next {
    right: 24px;
}

.project-card {
    flex: 0 0 380px;
    height: 280px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.project-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.project-card-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

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

/* Gradient overlay at bottom */
.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.project-card-content h3 {
    font-size: 20px;
    color: var(--white);
    margin: 0 0 8px 0;
}

.project-card-type {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Why Choose Us Cards
   ========================================================================== */

/* Why Choose Us section with organic blob background */
.section-why-choose {
    position: relative;
    overflow: hidden;
}

.section-why-choose::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2371697A' d='M47.5,-57.2C59.9,-45.8,67.3,-29.3,70.3,-12.1C73.3,5.1,71.9,23,63.6,37.3C55.3,51.6,40.1,62.3,23.4,68.1C6.7,73.9,-11.5,74.8,-27.8,69.3C-44.1,63.8,-58.5,51.9,-67.1,36.4C-75.7,20.9,-78.5,1.8,-74.3,-15.3C-70.1,-32.4,-58.9,-47.5,-44.8,-58.6C-30.7,-69.7,-13.7,-76.8,1.8,-78.9C17.3,-81,35.1,-68.6,47.5,-57.2Z' transform='translate(100 100)'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.why-choose-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-choose-card {
    padding: 32px;
    border: 1px solid var(--beige);
    border-radius: 4px;
    background: var(--white);
}

.why-choose-card:nth-child(even) {
    background: var(--cream);
}

.why-choose-card::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--plum);
    margin-bottom: 20px;
}

.why-choose-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
}

.why-choose-card p {
    font-size: 15px;
    margin: 0;
}

/* ==========================================================================
   18. Grid Utilities
   ========================================================================== */

.grid-2 {
    display: grid;
    gap: 48px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
    }
}

.grid-3 {
    display: grid;
    gap: 32px;
}

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

/* ==========================================================================
   19. Utility Classes
   ========================================================================== */

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

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 32px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==========================================================================
   20. Skip Link (Accessibility)
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    font-weight: 500;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}

/* ==========================================================================
   20b. Focus States (Accessibility)
   ========================================================================== */

/* Global focus-visible outline for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

/* Remove default outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Carousel buttons focus */
.carousel-nav:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

/* FAQ accordion focus */
.faq-question:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

/* Navigation links focus */
.nav-links a:focus-visible,
.nav-cta:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

/* Mobile menu toggle focus */
.nav-toggle:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

/* Button focus states */
.btn:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

/* Form elements enhanced focus */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: none;
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(113, 105, 122, 0.2);
}

/* Card focus for linked cards */
.brand-tile-link:focus-visible,
.service-card:focus-visible,
.bento-block-cta:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

/* ==========================================================================
   21. Service Page Content Layout
   ========================================================================== */

/* Single-column centered content */
.service-content {
    max-width: 780px;
    margin: 0 auto;
}

/* Our Story warm gradient background */
.section-story {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--white) 100%);
}

/* Service sections with 80px spacing */
.service-section {
    padding: 80px 0;
}

.service-section:first-of-type {
    padding-top: 60px;
}

.service-section + .service-section {
    border-top: 1px solid var(--beige);
}

/* Service section header */
.service-section .section-label {
    margin-bottom: 16px;
}

.service-section h2 {
    margin-bottom: 24px;
}

/* Bullet lists with generous spacing */
.service-content ul,
.service-section ul {
    margin: 24px 0;
    padding-left: 0;
}

.service-content li,
.service-section li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    line-height: 2;
    color: var(--body-color);
}

.service-content li::before,
.service-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--plum);
}

.service-content li:last-child,
.service-section li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   22. Content Images
   ========================================================================== */

.content-image {
    width: 100%;
    margin: 32px 0;
}

.content-image-full {
    width: 100%;
    margin: 48px 0;
}

.content-image-half {
    width: 100%;
    max-width: 480px;
    margin: 32px auto;
    display: block;
}

@media (min-width: 768px) {
    .content-image-half {
        float: none;
        margin: 32px auto;
    }
}

/* ==========================================================================
   22. About Page - Values Grid
   ========================================================================== */

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

@media (min-width: 768px) {
    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-value {
    text-align: center;
    padding: 2rem;
}

.about-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy);
}

.about-value h3 {
    font-size: 20px;
    margin-bottom: 0.75rem;
}

.about-value p {
    color: var(--body-color);
    font-size: 15px;
}

/* ==========================================================================
   23. About Page - Timeline
   ========================================================================== */

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--beige);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: var(--navy);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: var(--body-color);
    margin: 0;
}

/* ==========================================================================
   24. About Page - Service Area Tiles
   ========================================================================== */

.service-area-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .service-area-tiles {
        grid-template-columns: repeat(4, 1fr);
    }
}

.area-tile {
    padding: 16px;
    background: var(--cream);
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    font-size: 15px;
}

.area-tile::before {
    display: none;
}

/* ==========================================================================
   Our Brands Section - Brand Tiles
   ========================================================================== */

.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.brand-tile {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 4px;
    border-top: 2px solid var(--plum);
}

.brand-tile h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 8px;
}

.brand-tile .brand-location {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}

.brand-tile p {
    font-size: 15px;
    margin: 0;
}

/* Brand tile as link */
.brand-tile-link {
    display: block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.brand-tile-link:hover {
    border-color: var(--plum);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand-tile-link h3 {
    color: var(--navy);
    transition: color var(--transition-fast);
}

.brand-tile-link:hover h3 {
    color: var(--plum);
}

.brand-tile-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-normal);
}

.brand-tile-link:hover .brand-tile-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Current brand tile styling */
.brand-tile-current {
    position: relative;
    background: var(--mint-soft);
    border-color: var(--plum);
}

.brand-tile-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--plum);
    padding: 4px 10px;
    border-radius: 12px;
}

/* ==========================================================================
   Values Section - Three Column
   ========================================================================== */

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.value-item {
    padding-top: 24px;
    border-top: 2px solid var(--plum);
}

.value-item h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 15px;
    margin: 0;
}

/* Legacy support */
.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .areas-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.areas-list li {
    padding: 1rem 1.5rem;
    background: var(--cream);
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
}

.areas-list li::before {
    display: none;
}

/* ==========================================================================
   25. Contact Page - Grid & Form
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info {
    padding: 1.25rem;
    background: var(--cream);
    border-radius: 8px;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-info {
        padding: 2rem;
    }
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-of-type {
    margin-bottom: 0;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--navy);
}

.contact-item-content h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-content p {
    margin: 0;
    color: var(--body-color);
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-item-content a {
    color: var(--navy);
    font-weight: 500;
}

.contact-item-content a:hover {
    color: var(--plum);
}

.opening-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(1, 30, 130, 0.1);
}

.opening-hours h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.hours-row span:first-child {
    color: var(--body-color);
}

.hours-row span:last-child {
    font-weight: 500;
    color: var(--navy);
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--transition-fast);
}

.contact-social a:hover {
    background: var(--navy);
    color: var(--white);
}

.contact-social svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(1, 30, 130, 0.1);
    border-radius: 8px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
}

.contact-form *,
.contact-form *::before,
.contact-form *::after {
    box-sizing: border-box;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.875rem 1rem;
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(1, 30, 130, 0.1);
}

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

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

.file-upload-area {
    border: 2px dashed var(--beige);
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
    max-width: 100%;
    box-sizing: border-box;
}

.file-upload-area:hover {
    border-color: var(--navy);
    background-color: rgba(1, 30, 130, 0.02);
}

.file-upload-area input[type="file"] {
    display: none;
}

.file-upload-icon {
    margin-bottom: 0.5rem;
}

.file-upload-icon svg {
    width: 32px;
    height: 32px;
    color: var(--navy);
    opacity: 0.5;
}

.file-upload-text {
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

.file-upload-text span {
    color: var(--plum);
    text-decoration: underline;
}

.file-upload-help {
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 0.25rem;
}

.form-help-text {
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 0.375rem;
}

.btn-full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--mint-soft);
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Text muted utility */
.text-muted {
    color: var(--body-color);
}

/* ==========================================================================
   County Cards - Service Area Grid
   ========================================================================== */

.county-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .county-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .county-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.county-card {
    background: var(--cream);
    border: 1px solid var(--beige);
    border-radius: 4px;
    padding: 24px;
}

.county-card h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
}

.county-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   26. Reduced Motion
   ========================================================================== */

/* ==========================================================================
   27. Bento Grid Section
   ========================================================================== */

.bento-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 640px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, minmax(180px, auto));
    }
}

a.bento-block {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
}

a.bento-block:hover {
    transform: translateY(-2px);
}

.bento-block {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.bento-block-image {
    position: relative;
    background-size: cover;
    background-position: center;
}

.bento-block-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

.bento-block-image:hover {
    filter: brightness(1.03);
}

.bento-block-image .bento-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.bento-block-image .bento-label-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: block;
}

.bento-block-image .bento-label-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.bento-block-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.bento-block-text:hover {
    transform: translateY(-2px);
}

/* Block 1: Large project image - spans 2 cols 2 rows */
@media (min-width: 1024px) {
    .bento-block-1 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Block 2: Stat block */
.bento-block-stat {
    background: var(--cream);
    text-align: center;
}

.bento-stat-value {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.bento-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--plum);
}

/* Block 3: Quote block */
.bento-block-quote {
    background: var(--mint-soft);
}

@media (min-width: 1024px) {
    .bento-block-quote {
        grid-row: span 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.bento-quote {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.5;
    margin: 0;
}

/* Block 4: Service label block */
.bento-block-service {
    background: var(--beige);
}

.bento-service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    margin: 0 0 12px 0;
}

.bento-service-desc {
    font-size: 14px;
    color: var(--body-color);
    margin: 0;
    line-height: 1.6;
}

/* Block 5: Second project image - spans 2 cols */
@media (min-width: 1024px) {
    .bento-block-5 {
        grid-column: span 2;
    }
}

/* Block 6: CTA block */
.bento-block-cta {
    background: var(--plum);
    cursor: pointer;
}

.bento-block-cta:hover {
    background: #5d5566;
}

.bento-cta-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 16px 0;
}

.bento-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.bento-cta-link:hover {
    gap: 12px;
    color: var(--white);
}

.bento-cta-link svg {
    width: 16px;
    height: 16px;
}

/* Block 7: Location block */
.bento-block-location {
    background: var(--mint);
}

.bento-location-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    display: block;
}

.bento-location-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================================
   28. Scroll Animations
   ========================================================================== */

/* Fade In Up - default scroll reveal animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Fade In Left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Fade In Right */
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   28. Hero Animations
   ========================================================================== */

.hero-content {
    animation: heroFadeIn 1s ease-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    animation: heroSlideIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    animation: heroTitleIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-lead {
    animation: heroTextIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-features {
    animation: heroTextIn 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-ctas {
    animation: heroTextIn 0.8s ease-out 1s forwards;
    opacity: 0;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   29. Enhanced Button Hover Effects
   ========================================================================== */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 30, 130, 0.3);
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 105, 122, 0.2);
}

/* ==========================================================================
   30. Gallery Image Hover Effects
   ========================================================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease, filter 0.3s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 15, 65, 0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* ==========================================================================
   31. Stats Counter Animation
   ========================================================================== */

.stat-value {
    transition: transform 0.3s ease;
}

.stat:hover .stat-value {
    transform: scale(1.05);
}

/* ==========================================================================
   32. Service Card Enhanced Hover
   ========================================================================== */

.service-card {
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--plum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ==========================================================================
   33. Why Choose Us Card Hover
   ========================================================================== */

.why-choose-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   34. County Card Hover
   ========================================================================== */

.county-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.county-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: var(--plum);
}

/* ==========================================================================
   35. Navigation Scroll Enhancement
   ========================================================================== */

.nav {
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ==========================================================================
   36. Value Item Hover
   ========================================================================== */

.value-item {
    transition: border-color 0.3s ease;
}

.value-item:hover {
    border-color: var(--navy);
}

/* ==========================================================================
   26. Reduced Motion
   ========================================================================== */

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

    html {
        scroll-behavior: auto;
    }

    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .scale-in,
    .stagger-children > * {
        opacity: 1;
        transform: none;
    }

    .hero-badge,
    .hero h1,
    .hero-lead,
    .hero-features,
    .hero-ctas {
        opacity: 1;
        animation: none;
    }
}

/* ==========================================================================
   37. Organic Shapes & Gradient Library
   ========================================================================== */

/* Blob SVG backgrounds as data URIs */
:root {
    --blob-1: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M47.5,-57.2C59.9,-45.8,67.3,-29.3,70.3,-12.1C73.3,5.1,71.9,23,63.6,37.3C55.3,51.6,40.1,62.3,23.4,68.1C6.7,73.9,-11.5,74.8,-27.8,69.3C-44.1,63.8,-58.5,51.9,-67.1,36.4C-75.7,20.9,-78.5,1.8,-74.3,-15.3C-70.1,-32.4,-58.9,-47.5,-44.8,-58.6C-30.7,-69.7,-13.7,-76.8,1.8,-78.9C17.3,-81,35.1,-68.6,47.5,-57.2Z' transform='translate(100 100)'/%3E%3C/svg%3E");
    --blob-2: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M39.9,-51.3C52.3,-42.9,63.4,-31.6,68.7,-17.6C74,-3.6,73.5,13.1,67.2,27.1C60.9,41.1,48.8,52.4,34.8,59.5C20.8,66.6,4.9,69.5,-10.4,67.8C-25.7,66.1,-40.4,59.8,-52.1,49.3C-63.8,38.8,-72.5,24.1,-75.1,8.1C-77.7,-7.9,-74.2,-25.2,-64.8,-38.1C-55.4,-51,-40.1,-59.5,-25.1,-66.7C-10.1,-73.9,4.6,-79.8,18.1,-76.4C31.6,-73,47.5,-59.7,39.9,-51.3Z' transform='translate(100 100)'/%3E%3C/svg%3E");
    --blob-3: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M44.3,-54.4C57.2,-46.5,67.1,-32.3,71.8,-16.2C76.5,-0.1,76,17.9,69.2,33.1C62.4,48.3,49.3,60.7,34.1,67.5C18.9,74.3,1.6,75.5,-14.9,72.1C-31.4,68.7,-47.1,60.7,-58.9,48.2C-70.7,35.7,-78.6,18.7,-79.3,1.2C-80,-16.3,-73.5,-34.2,-62.1,-47.2C-50.7,-60.2,-34.4,-68.3,-18.3,-71.8C-2.2,-75.3,13.7,-74.2,28.2,-68.1C42.7,-62,57.2,-50.9,44.3,-54.4Z' transform='translate(100 100)'/%3E%3C/svg%3E");
}

/* Reusable blob decorations */
.blob-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2371697A' d='M47.5,-57.2C59.9,-45.8,67.3,-29.3,70.3,-12.1C73.3,5.1,71.9,23,63.6,37.3C55.3,51.6,40.1,62.3,23.4,68.1C6.7,73.9,-11.5,74.8,-27.8,69.3C-44.1,63.8,-58.5,51.9,-67.1,36.4C-75.7,20.9,-78.5,1.8,-74.3,-15.3C-70.1,-32.4,-58.9,-47.5,-44.8,-58.6C-30.7,-69.7,-13.7,-76.8,1.8,-78.9C17.3,-81,35.1,-68.6,47.5,-57.2Z' transform='translate(100 100)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.blob-2 {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23D0E1D4' d='M39.9,-51.3C52.3,-42.9,63.4,-31.6,68.7,-17.6C74,-3.6,73.5,13.1,67.2,27.1C60.9,41.1,48.8,52.4,34.8,59.5C20.8,66.6,4.9,69.5,-10.4,67.8C-25.7,66.1,-40.4,59.8,-52.1,49.3C-63.8,38.8,-72.5,24.1,-75.1,8.1C-77.7,-7.9,-74.2,-25.2,-64.8,-38.1C-55.4,-51,-40.1,-59.5,-25.1,-66.7C-10.1,-73.9,4.6,-79.8,18.1,-76.4C31.6,-73,47.5,-59.7,39.9,-51.3Z' transform='translate(100 100)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.blob-3 {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2371697A' d='M44.3,-54.4C57.2,-46.5,67.1,-32.3,71.8,-16.2C76.5,-0.1,76,17.9,69.2,33.1C62.4,48.3,49.3,60.7,34.1,67.5C18.9,74.3,1.6,75.5,-14.9,72.1C-31.4,68.7,-47.1,60.7,-58.9,48.2C-70.7,35.7,-78.6,18.7,-79.3,1.2C-80,-16.3,-73.5,-34.2,-62.1,-47.2C-50.7,-60.2,-34.4,-68.3,-18.3,-71.8C-2.2,-75.3,13.7,-74.2,28.2,-68.1C42.7,-62,57.2,-50.9,44.3,-54.4Z' transform='translate(100 100)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Gradient wash backgrounds */
.gradient-cream-white {
    background: linear-gradient(to bottom, rgba(242, 246, 208, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

.gradient-mint-white {
    background: linear-gradient(to bottom, rgba(208, 225, 212, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
}

.gradient-cream-beige {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(217, 210, 182, 0.15) 100%);
}

/* Radial gradient for page heroes */
.gradient-radial-mint {
    background: radial-gradient(ellipse at center, var(--mint-soft) 0%, var(--cream) 100%);
}

/* ==========================================================================
   38. Section-specific organic backgrounds
   ========================================================================== */

/* Bento section gradient wash */
.bento-section {
    position: relative;
    background: linear-gradient(to bottom, rgba(242, 246, 208, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Why Choose Us with blob - update existing */
.section-why-choose::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2371697A' d='M47.5,-57.2C59.9,-45.8,67.3,-29.3,70.3,-12.1C73.3,5.1,71.9,23,63.6,37.3C55.3,51.6,40.1,62.3,23.4,68.1C6.7,73.9,-11.5,74.8,-27.8,69.3C-44.1,63.8,-58.5,51.9,-67.1,36.4C-75.7,20.9,-78.5,1.8,-74.3,-15.3C-70.1,-32.4,-58.9,-47.5,-44.8,-58.6C-30.7,-69.7,-13.7,-76.8,1.8,-78.9C17.3,-81,35.1,-68.6,47.5,-57.2Z' transform='translate(100 100)'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* Service page hero radial gradient */
.page-hero {
    background: radial-gradient(ellipse at center, var(--mint-soft) 0%, var(--cream) 100%);
}

/* FAQ section gradient */
.faq-section,
.section-faq {
    position: relative;
    background: linear-gradient(to bottom, rgba(242, 246, 208, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Related services gradient */
.section-related {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(217, 210, 182, 0.15) 100%);
}

/* About page Our Story gradient - already defined, enhance */
.section-story {
    background: linear-gradient(to bottom, rgba(242, 246, 208, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
}

/* About page Our Values with blob */
.section-values {
    position: relative;
    overflow: hidden;
}

.section-values::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23D0E1D4' d='M39.9,-51.3C52.3,-42.9,63.4,-31.6,68.7,-17.6C74,-3.6,73.5,13.1,67.2,27.1C60.9,41.1,48.8,52.4,34.8,59.5C20.8,66.6,4.9,69.5,-10.4,67.8C-25.7,66.1,-40.4,59.8,-52.1,49.3C-63.8,38.8,-72.5,24.1,-75.1,8.1C-77.7,-7.9,-74.2,-25.2,-64.8,-38.1C-55.4,-51,-40.1,-59.5,-25.1,-66.7C-10.1,-73.9,4.6,-79.8,18.1,-76.4C31.6,-73,47.5,-59.7,39.9,-51.3Z' transform='translate(100 100)'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* About page Our Brands cream overlay */
.section-brands {
    background: rgba(242, 246, 208, 0.4);
}

/* Gallery page hero */
.gallery-hero {
    background: radial-gradient(ellipse at center, var(--mint-soft) 0%, var(--cream) 100%);
}

/* Gallery section divider */
.gallery-category {
    position: relative;
}

.gallery-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(217, 210, 182, 0.3) 50%, transparent 100%);
}

.gallery-category:last-child::after {
    display: none;
}

/* Contact page form section */
.section-contact-form {
    background: linear-gradient(to bottom, rgba(242, 246, 208, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
    overflow-x: hidden;
}

/* Contact page county cards */
.section-counties {
    background: rgba(208, 225, 212, 0.2);
}

/* Gallery page section */
.section-gallery {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(242, 246, 208, 0.3) 50%, rgba(255, 255, 255, 1) 100%);
}

/* Gallery category dividers */
.gallery-category + .gallery-category {
    position: relative;
    margin-top: 80px;
    padding-top: 80px;
}

.gallery-category + .gallery-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(208, 225, 212, 0.6) 20%, rgba(208, 225, 212, 0.6) 80%, transparent 100%);
}

/* Service page related services section */
.section-related {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(242, 246, 208, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
}

.section-related::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23D0E1D4' d='M47.5,-57.2C59.9,-45.8,67.3,-29.3,70.3,-12.1C73.3,5.1,71.9,23,63.6,37.3C55.3,51.6,40.1,62.3,23.4,68.1C6.7,73.9,-11.5,74.8,-27.8,69.3C-44.1,63.8,-58.5,51.9,-67.1,36.4C-75.7,20.9,-78.5,1.8,-74.3,-15.3C-70.1,-32.4,-58.9,-47.5,-44.8,-58.6C-30.7,-69.7,-13.7,-76.8,1.8,-78.9C17.3,-81,35.1,-68.6,47.5,-57.2Z' transform='translate(100 100)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    z-index: 0;
}

/* Stats section subtle gradient */
.section-stats {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(242, 246, 208, 0.3) 100%);
}

/* Introduction section subtle warmth */
.section-intro {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(242, 246, 208, 0.2) 100%);
}

/* Services grid section */
.section-services {
    position: relative;
    background: linear-gradient(to bottom, var(--cream) 0%, rgba(242, 246, 208, 0.6) 50%, var(--cream) 100%);
}

/* Carousel section subtle gradient */
.projects-carousel-section {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(208, 225, 212, 0.15) 50%, rgba(255, 255, 255, 1) 100%);
}

/* CTA section enhance */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--mint-soft) 0%, rgba(208, 225, 212, 0.8) 50%, var(--cream) 100%);
}

/* ==========================================================================
   39. Mobile Touch Targets (Accessibility)
   ========================================================================== */

@media (max-width: 767px) {
    /* Ensure minimum 44px touch targets */
    .btn,
    .nav-cta,
    .mobile-menu a,
    .mobile-submenu-toggle,
    .footer-links a,
    .footer-social a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .mobile-menu a {
        padding: 12px 0;
    }

    .mobile-submenu-toggle {
        min-height: 44px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    /* Bento grid single column on mobile */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-block {
        min-height: 200px;
    }

    .bento-block-1,
    .bento-block-5 {
        min-height: 280px;
    }
}

/* ==========================================================================
   40. Architectural Design Cues
   ========================================================================== */

/* --- Lucide Icon Styling --- */
.lucide-icon {
    width: 20px;
    height: 20px;
    stroke: var(--plum);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.lucide-icon-lg {
    width: 24px;
    height: 24px;
}

/* Icon + text inline layout */
.icon-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Service card icon above heading */
.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-card-icon .lucide-icon {
    width: 24px;
    height: 24px;
}

/* --- Thin Ruled Lines (Architectural) --- */

/* Section label with ruled lines */
.section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--beige);
    flex-shrink: 0;
}

/* Full-width horizontal rule */
.rule-horizontal {
    width: 100%;
    height: 1px;
    background: var(--beige);
    border: none;
    margin: 48px 0;
}

/* Content section dividers on service pages */
.service-section {
    position: relative;
    padding-bottom: 48px;
    margin-bottom: 48px;
}

.service-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--beige);
}

.service-section:last-of-type::after {
    display: none;
}

/* Footer ruled lines */
.footer-grid > div {
    position: relative;
}

@media (min-width: 1024px) {
    .footer-grid > div:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        right: -20px;
        width: 1px;
        height: 100%;
        background: rgba(217, 210, 182, 0.3);
    }
}

.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(217, 210, 182, 0.3);
}

/* --- Grid References & Technical Annotations --- */

/* DM Mono font for technical annotations */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&display=swap');

.annotation {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: absolute;
    pointer-events: none;
    z-index: 5;
}

/* Hero coordinates (bottom left) */
.annotation-coords {
    bottom: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.3);
}

/* Hero location code (bottom right) */
.annotation-location {
    bottom: 24px;
    right: 24px;
    color: rgba(0, 0, 0, 0.15);
}

/* Service reference code (top right of hero) */
.annotation-ref {
    top: 24px;
    right: 24px;
    color: var(--beige);
}

/* Section numbering */
.section-number {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--beige);
    position: absolute;
    left: -60px;
    top: 0;
    letter-spacing: 0.05em;
}

@media (max-width: 1200px) {
    .section-number {
        position: static;
        margin-bottom: 8px;
        display: block;
    }
}

/* Numbered section container */
.numbered-section {
    position: relative;
}

/* --- Oversized Pull Quote Marks --- */

.quote-decorated {
    position: relative;
}

.quote-decorated::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 180px;
    line-height: 1;
    color: var(--beige);
    opacity: 0.4;
    position: absolute;
    top: -40px;
    left: -20px;
    pointer-events: none;
    z-index: 0;
}

.quote-decorated > * {
    position: relative;
    z-index: 1;
}

/* Bento grid quote - smaller decorative mark */
.bento-block-quote {
    position: relative;
}

.bento-block-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 120px;
    line-height: 1;
    color: var(--beige);
    opacity: 0.5;
    position: absolute;
    top: 10px;
    left: 15px;
    pointer-events: none;
    z-index: 0;
}

.bento-block-quote .bento-quote {
    position: relative;
    z-index: 1;
}

/* --- Paper/Linen Texture Overlay --- */

/* SVG noise texture as data URI */
.texture-paper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
}

/* Apply texture to specific sections */
.bento-section,
.section-why-choose,
.section-story,
.faq-section,
.section-faq {
    position: relative;
}

.bento-section::after,
.section-why-choose::after,
.section-story::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
}

/* Ensure content stays above texture */
.bento-section > .container,
.section-why-choose > .container,
.section-story > .container,
.faq-section > .container,
.section-faq > .container {
    position: relative;
    z-index: 2;
}

/* --- Contact Item Icons --- */
.contact-item-icon .lucide-icon {
    width: 20px;
    height: 20px;
    stroke: var(--plum);
    stroke-width: 1.5;
}

/* --- Why Choose Us Card Icons --- */
.why-card-icon {
    margin-bottom: 16px;
}

.why-card-icon .lucide-icon {
    width: 28px;
    height: 28px;
    stroke: var(--plum);
    stroke-width: 1.5;
}

/* --- Values Grid Icons --- */
.value-icon {
    margin-bottom: 12px;
}

.value-icon .lucide-icon {
    width: 24px;
    height: 24px;
    stroke: var(--plum);
    stroke-width: 1.5;
}

/* --- Service Page Heading Icons --- */
.service-heading-icon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.service-heading-icon .lucide-icon {
    width: 28px;
    height: 28px;
    stroke: var(--plum);
    stroke-width: 1.5;
}
