/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--onyx);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Focus indicators */
*:focus {
    outline: 2px solid var(--champagne);
    outline-offset: 2px;
}

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

/* Ensure focus is visible for keyboard users */
*:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 2px;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Color Palette - Updated for competitive advantage */
    --onyx: #0C0C0C;
    --porcelain: #F5F6F7;
    --soft-graphite: #2C2C2C;
    --champagne: #D7C9A3;
    --white: #FFFFFF;
    
    /* New competitive color palette */
    --cool-gray: #6B7280;
    --deep-teal: #0F766E;
    --light-gray: #F9FAFB;
    --medium-gray: #9CA3AF;
    
    /* Typography - Updated for better readability */
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;
    --font-source: 'Source Sans 3', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Responsive Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large-desktop: 1200px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-source);
    line-height: 1.6;
    color: var(--onyx);
    background-color: var(--porcelain);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    font-weight: 600;
    line-height: 1.2;
}

h1 { 
    font-size: clamp(2rem, 6vw, 4.5rem); 
    margin-bottom: 1rem;
}

h2 { 
    font-size: clamp(1.75rem, 4.5vw, 3.5rem); 
    margin-bottom: 1.5rem;
}

h3 { 
    font-size: clamp(1.5rem, 3.5vw, 2.25rem); 
    margin-bottom: 1rem;
}

h4 { 
    font-size: clamp(1.25rem, 3vw, 1.75rem); 
    margin-bottom: 0.75rem;
}

p {
    font-family: var(--font-inter);
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Responsive text adjustments */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    p { font-size: 0.875rem; }
}

@media (min-width: 481px) and (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
    p { font-size: 1rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.75rem; }
    h3 { font-size: 2rem; }
    h4 { font-size: 1.75rem; }
    p { font-size: 1.125rem; }
}

@media (min-width: 1025px) {
    h1 { font-size: 4.5rem; }
    h2 { font-size: 3.5rem; }
    h3 { font-size: 2.25rem; }
    h4 { font-size: 1.75rem; }
    p { font-size: 1.125rem; }
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Responsive container adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1025px) {
    .container {
        padding: 0 2rem;
    }
}

/* Section padding adjustments */
section {
    padding: clamp(2rem, 8vw, 5rem) 0;
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

@media (min-width: 769px) {
    section {
        padding: 5rem 0;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-logo a {
    color: var(--onyx);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-logo a:hover {
    color: var(--champagne);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--onyx);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-phone {
    background: var(--deep-teal);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-phone:hover {
    background: var(--onyx);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.phone-icon {
    width: 16px;
    height: 16px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--champagne);
    transition: var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-toggle:focus {
    outline: 2px solid var(--champagne);
    outline-offset: 2px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--onyx);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Enhanced responsive navigation */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        height: 60px;
    }
    
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: var(--shadow-medium);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(215, 201, 163, 0.1);
        color: var(--champagne);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 65px;
    }
    
    .nav-logo {
        font-size: 1.35rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: var(--shadow-medium);
        z-index: 999;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.15rem;
        padding: 1rem 0;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(215, 201, 163, 0.1);
        color: var(--champagne);
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        gap: 2rem;
    }
    
    .nav-toggle {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-graphite) 0%, var(--onyx) 100%);
    overflow: hidden;
}

/* Responsive hero adjustments */
@media (max-width: 480px) {
    .hero-section {
        min-height: 90vh;
        padding: 1rem 0;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        min-height: 95vh;
        padding: 1.5rem 0;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    background-color: var(--soft-graphite);
}

/* Contact page project photos */
.contact-showcase {
    padding: 4rem 0;
    background: var(--porcelain);
}

.contact-showcase .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.contact-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-showcase-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.contact-showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.contact-team-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-team-photo img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 1rem;
}

.hero-monogram {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(215, 201, 163, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(215, 201, 163, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-playfair);
    font-weight: 700;
    font-size: 2rem;
    color: var(--champagne);
}

/* Responsive hero content */
@media (max-width: 480px) {
    .hero-content {
        max-width: 100%;
        padding: 0 0.75rem;
    }
    
    .hero-monogram {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .hero-monogram {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.75rem;
        font-size: 1.75rem;
    }
}

@media (min-width: 769px) {
    .hero-content {
        max-width: 800px;
        padding: 0 1rem;
    }
    
    .hero-monogram {
        width: 80px;
        height: 80px;
        margin: 0 auto 2rem;
        font-size: 2rem;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-title-accent {
    color: var(--champagne);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--champagne);
    margin-bottom: 3rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.location-icon {
    width: 20px;
    height: 20px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* Responsive hero buttons */
@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-buttons {
        gap: 1rem;
        margin-top: 1.75rem;
    }
}

@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.hero-sub-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

.sub-cta-text {
    font-weight: 500;
}

.sub-cta-divider {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-sub-cta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .sub-cta-divider {
        display: none;
    }
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--porcelain), transparent);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-inter);
    white-space: nowrap;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.375rem;
}

/* Responsive button adjustments */
@media (max-width: 480px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.375rem;
    }
    
    .btn-icon,
    .btn-arrow {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .btn {
        padding: 0.9375rem 1.75rem;
        font-size: 0.95rem;
        gap: 0.4375rem;
    }
    
    .btn-icon,
    .btn-arrow {
        width: 19px;
        height: 19px;
    }
}

@media (min-width: 769px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .btn-icon,
    .btn-arrow {
        width: 20px;
        height: 20px;
    }
}

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

.btn-primary:hover {
    background: var(--onyx);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    border-color: var(--champagne);
    color: var(--champagne);
    background: rgba(215, 201, 163, 0.1);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--champagne);
    color: var(--champagne);
    background: rgba(215, 201, 163, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

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

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--onyx);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== SERVICES HIGHLIGHT ===== */
.services-highlight {
    padding: var(--section-padding);
    background: var(--white);
}

/* Services List Styles */
.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-list-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

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

.service-list-item:hover {
    background: rgba(215, 201, 163, 0.05);
    margin: 0 -1rem;
    padding: 2rem 1rem;
    border-radius: 8px;
}

.service-list-item h3 {
    color: var(--onyx);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-list-item p {
    color: var(--onyx);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-list-link {
    color: var(--champagne);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.service-list-link:hover {
    color: var(--onyx);
    transform: translateX(4px);
}

/* Responsive services list */
@media (max-width: 480px) {
    .services-list {
        max-width: 100%;
    }
    
    .service-list-item {
        padding: 1.5rem 0;
    }
    
    .service-list-item:hover {
        margin: 0 -0.5rem;
        padding: 1.5rem 0.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .services-list {
        max-width: 90%;
    }
    
    .service-list-item {
        padding: 1.75rem 0;
    }
    
    .service-list-item:hover {
        margin: 0 -0.75rem;
        padding: 1.75rem 0.75rem;
    }
}

@media (min-width: 769px) {
    .services-list {
        max-width: 800px;
    }
    
    .service-list-item {
        padding: 2rem 0;
    }
    
    .service-list-item:hover {
        margin: 0 -1rem;
        padding: 2rem 1rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Responsive services grid */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(215, 201, 163, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--onyx);
}

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

.service-content {
    padding: 1.5rem;
}

/* Responsive service card adjustments */
@media (max-width: 480px) {
    .service-image {
        height: 180px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .service-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .service-content {
        padding: 1.25rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .service-image {
        height: 190px;
    }
    
    .service-icon {
        width: 44px;
        height: 44px;
        top: 0.875rem;
        left: 0.875rem;
    }
    
    .service-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .service-content {
        padding: 1.375rem;
    }
}

@media (min-width: 769px) {
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        top: 1rem;
        left: 1rem;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

.service-content h3 {
    color: var(--onyx);
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-content h3 {
    color: var(--champagne);
}

.service-content p {
    color: var(--onyx);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--champagne);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--onyx);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ===== PORTFOLIO PREVIEW ===== */
.portfolio-preview {
    padding: var(--section-padding);
    background: var(--porcelain);
}



.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Responsive portfolio grid */
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.75rem;
    }
}

@media (min-width: 1025px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

.portfolio-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.portfolio-overlay-content {
    text-align: center;
    color: var(--white);
}

.portfolio-overlay-icon {
    width: 64px;
    height: 64px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.portfolio-overlay-icon svg {
    width: 32px;
    height: 32px;
    color: var(--onyx);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: var(--onyx);
    margin-bottom: 0.5rem;
}

.portfolio-location {
    color: var(--onyx);
    opacity: 0.6;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.portfolio-materials {
    color: var(--champagne);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive testimonials grid */
@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1025px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

.testimonial-card {
    background: var(--porcelain);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-normal);
}

/* Responsive testimonial card adjustments */
@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
    }
    
    .testimonial-quote svg {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-author img {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .testimonial-quote {
        top: 1.25rem;
        right: 1.25rem;
        width: 36px;
        height: 36px;
    }
    
    .testimonial-quote svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-author img {
        width: 52px;
        height: 52px;
    }
}

@media (min-width: 769px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-quote {
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .testimonial-quote svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-author img {
        width: 56px;
        height: 56px;
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(215, 201, 163, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne);
}

.testimonial-quote svg {
    width: 20px;
    height: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--champagne);
    fill: var(--champagne);
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--onyx);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--onyx);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--onyx);
    opacity: 0.7;
    font-size: 0.875rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.process-container {
    position: relative;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--champagne), var(--champagne));
    transform: translateY(-50%);
    z-index: 0;
    display: none;
}

@media (min-width: 1024px) {
    .process-line {
        display: block;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

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

.process-icon {
    position: relative;
    margin-bottom: 2rem;
}

.process-icon > svg {
    width: 80px;
    height: 80px;
    background: var(--champagne);
    border-radius: 50%;
    padding: 20px;
    color: var(--onyx);
    margin: 0 auto;
    transition: var(--transition-normal);
}

.process-step:hover .process-icon > svg {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--onyx);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.process-step h3 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--onyx);
    opacity: 0.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: var(--onyx);
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-phone a {
    color: var(--champagne);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.cta-phone a:hover {
    color: var(--white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 95vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .lightbox-image {
        max-height: 98vh;
    }
    
    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-close::before,
    .lightbox-close::after {
        width: 18px;
    }
}

@media (min-width: 769px) {
    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .lightbox-image {
        max-height: 98vh;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--soft-graphite);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--champagne);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    color: var(--champagne);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail {
    padding: 4rem 0;
    background: var(--porcelain);
}

.services-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.service-card-large {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition-normal);
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card-large:last-child {
    border-bottom: none;
}

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

.service-card-image {
    height: 60vh;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

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

/* Image overlay for click indication */
.service-card-image::after {
    content: '🔍 Click to enlarge';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.service-card-image:hover::after {
    opacity: 1;
}

/* Responsive service card image adjustments */
@media (max-width: 480px) {
    .services-detail {
        padding: 2rem 0;
    }
    
    .services-grid-large {
        gap: 2rem;
    }
    
    .service-card-image {
        height: 50vh;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .services-detail {
        padding: 3rem 0;
    }
    
    .services-grid-large {
        gap: 2.5rem;
    }
    
    .service-card-image {
        height: 55vh;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-card-image {
        height: 60vh;
    }
}

@media (min-width: 1025px) {
    .service-card-image {
        height: 65vh;
    }
}

.service-card-content {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.service-card-header {
    margin-bottom: 1.5rem;
}

.service-card-header h2 {
    color: var(--onyx);
    margin: 0;
    text-align: center;
}

.service-description {
    color: var(--onyx);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--onyx);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
}

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

@media (min-width: 1024px) {
    .service-card-large {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
    
    .service-card-image {
        height: auto;
    }
}

/* ===== PORTFOLIO FULL PAGE ===== */
.portfolio-full {
    padding: var(--section-padding);
    background: var(--porcelain);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--onyx);
    background: transparent;
    color: var(--onyx);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--onyx);
    color: var(--white);
}

.portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.portfolio-overlay-content {
    text-align: center;
    color: var(--white);
}

.portfolio-overlay-icon {
    width: 64px;
    height: 64px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.portfolio-overlay-icon svg {
    width: 32px;
    height: 32px;
    color: var(--onyx);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: var(--onyx);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.portfolio-location {
    color: var(--onyx);
    opacity: 0.6;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.portfolio-materials {
    color: var(--champagne);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.portfolio-year {
    color: var(--onyx);
    opacity: 0.4;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .portfolio-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .portfolio-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ===== BOOKING PAGE ===== */
.booking-section {
    padding: var(--section-padding);
    background: var(--porcelain);
}

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

@media (min-width: 1024px) {
    .booking-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.booking-form-container {
    order: 2;
}

@media (min-width: 1024px) {
    .booking-form-container {
        order: 1;
    }
}

.booking-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.booking-form-card h2 {
    color: var(--onyx);
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--champagne);
    box-shadow: 0 0 0 3px rgba(215, 201, 163, 0.1);
}

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

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

.booking-info {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .booking-info {
        order: 2;
    }
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
}

.info-card h3 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    color: var(--onyx);
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
}

.policy-card {
    background: rgba(215, 201, 163, 0.1);
    border: 1px solid rgba(215, 201, 163, 0.2);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.policy-icon {
    width: 24px;
    height: 24px;
    color: var(--champagne);
}

.policy-card h3 {
    margin-bottom: 0;
}

.policy-card p {
    color: var(--onyx);
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item span:first-child {
    color: var(--onyx);
    font-weight: 500;
    min-width: 80px;
}

.contact-item a {
    color: var(--champagne);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ===== CALENDLY SECTION ===== */
.calendly-section {
    padding: var(--section-padding);
    background: var(--white);
}

.calendly-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.calendly-content h2 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.calendly-content p {
    color: var(--onyx);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.calendly-inline-widget {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* ===== CONTACT PAGE ===== */

/* Form Subtitle */
.form-subtitle {
    color: var(--onyx);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Form Help Text */
.form-help {
    font-size: 0.875rem;
    color: var(--onyx);
    opacity: 0.6;
    margin-top: 0.25rem;
    font-style: italic;
}

/* Calendly Widget Styles */
.calendly-inline-widget {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.booking-note {
    background: var(--porcelain);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.booking-note p {
    margin: 0.5rem 0;
}

.booking-note a {
    color: var(--champagne);
    text-decoration: none;
    font-weight: 600;
}

.booking-note a:hover {
    text-decoration: underline;
}

.form-divider {
    border: none;
    height: 1px;
    background: var(--soft-graphite);
    margin: 2rem 0;
    opacity: 0.3;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 4rem 0;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--onyx);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-date {
    text-align: center;
    color: var(--onyx);
    opacity: 0.6;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-text {
    line-height: 1.8;
    color: var(--onyx);
}

.legal-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--onyx);
    margin: 2.5rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--porcelain);
}

.legal-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--onyx);
    margin: 2rem 0 1rem 0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-text ul, .legal-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    font-weight: 600;
    color: var(--onyx);
}

.legal-text a {
    color: var(--champagne);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-text a:hover {
    border-bottom-color: var(--champagne);
}

/* Responsive legal content */
@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-text h2 {
        margin: 2rem 0 1rem 0;
    }
    
    .legal-text h3 {
        margin: 1.5rem 0 0.75rem 0;
    }
}

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--onyx);
    color: var(--white);
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.cookie-notice.show {
    transform: translateY(0);
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--champagne);
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Responsive cookie notice */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Booking Form Styles */
.booking-form-container {
    margin-bottom: 3rem;
}

.booking-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-card h2 {
    color: var(--onyx);
    margin-bottom: 0.5rem;
}

.booking-form {
    margin-top: 1.5rem;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--champagne);
    color: var(--onyx);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.success-message h3 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--onyx);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.success-note {
    font-size: 0.9rem;
    color: var(--champagne);
}

.success-note a {
    color: var(--champagne);
    text-decoration: none;
    font-weight: 500;
}

.success-note a:hover {
    text-decoration: underline;
}
.contact-section {
    padding: var(--section-padding);
    background: var(--porcelain);
}

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

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

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.contact-info-card h2 {
    color: var(--onyx);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(215, 201, 163, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--champagne);
    flex-shrink: 0;
}

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

.contact-details h3 {
    color: var(--onyx);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details a {
    color: var(--onyx);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--champagne);
}

.contact-details p {
    color: var(--onyx);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.contact-cta-card {
    background: rgba(215, 201, 163, 0.1);
    border: 1px solid rgba(215, 201, 163, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.contact-cta-card h3 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.contact-cta-card p {
    color: var(--onyx);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-form-container {
    order: 2;
}

@media (min-width: 1024px) {
    .contact-form-container {
        order: 1;
    }
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.contact-form-card h2 {
    color: var(--onyx);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== SERVICE AREA SECTION ===== */
.service-area-section {
    padding: var(--section-padding);
    background: var(--white);
}

.service-area-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-area-content h2 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.service-area-content > p {
    color: var(--onyx);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.city-item {
    background: var(--porcelain);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.city-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.city-item h3 {
    color: var(--onyx);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.city-item p {
    color: var(--onyx);
    opacity: 0.7;
    font-size: 0.875rem;
    margin: 0;
}

.service-area-note {
    background: rgba(215, 201, 163, 0.1);
    border: 1px solid rgba(215, 201, 163, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.service-area-note p {
    color: var(--onyx);
    margin: 0;
}

.service-area-note a {
    color: var(--champagne);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.service-area-note a:hover {
    color: var(--onyx);
}

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

/* ===== ABOUT PAGE ===== */
.story-section {
    padding: var(--section-padding);
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.story-content h2 {
    color: var(--onyx);
    margin-bottom: 2rem;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-text p {
    color: var(--onyx);
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.about-work-preview {
    padding: 0 0 4rem;
    background: var(--white);
}

.about-work-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

.about-work-preview-grid figure {
    margin: 0;
}

.about-work-preview-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-light);
}

.about-work-preview-grid figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--cool-gray);
    text-align: center;
}

.credentials-section {
    padding: var(--section-padding);
    background: var(--porcelain);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.credential-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.credential-icon {
    width: 64px;
    height: 64px;
    background: rgba(215, 201, 163, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--champagne);
}

.credential-icon svg {
    width: 32px;
    height: 32px;
}

.credential-card h3 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.credential-card p {
    color: var(--onyx);
    opacity: 0.8;
    line-height: 1.6;
}

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

.values-section .section-header h2 {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.value-card h3 {
    color: var(--champagne);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

/* ===== STICKY PHONE CTA ===== */
.sticky-phone-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.sticky-phone-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--champagne);
    color: var(--onyx);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
}

.sticky-phone-cta a:hover {
    transform: scale(1.1);
    background: var(--white);
}

.sticky-phone-cta svg {
    width: 24px;
    height: 24px;
}

/* Show sticky phone CTA on mobile */
@media (max-width: 768px) {
    .sticky-phone-cta {
        display: block;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.shadow { box-shadow: var(--shadow-light); }
.shadow-lg { box-shadow: var(--shadow-medium); }
.shadow-xl { box-shadow: var(--shadow-heavy); }

/* ===== FAQS PAGE ===== */
.faqs-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.faq-category h2 {
    color: var(--onyx);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--porcelain);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 1rem;
    color: var(--onyx);
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--champagne);
    color: var(--onyx);
}

.faq-question[aria-expanded="true"] {
    background: var(--champagne);
    color: var(--onyx);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--onyx);
    line-height: 1.6;
}

.faqs-cta {
    text-align: center;
    padding: 3rem;
    background: var(--porcelain);
    border-radius: 16px;
    margin-top: 2rem;
}

.faqs-cta h3 {
    color: var(--onyx);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.faqs-cta p {
    color: var(--onyx);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.faqs-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive FAQs */
@media (max-width: 480px) {
    .faqs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1.25rem;
    }
    
    .faqs-cta {
        padding: 2rem 1.5rem;
    }
    
    .faqs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .faqs-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .faqs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: var(--section-padding);
    background: var(--porcelain);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
}

.legal-content h1 {
    color: var(--onyx);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--onyx);
    opacity: 0.6;
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-text section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
}

.legal-text section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-text h2 {
    color: var(--onyx);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-text p {
    color: var(--onyx);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-text ul {
    color: var(--onyx);
    line-height: 1.7;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: rgba(215, 201, 163, 0.1);
    border: 1px solid rgba(215, 201, 163, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--champagne);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--onyx);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* ===== LEAD FORM SECTION ===== */
.lead-form-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.lead-form h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--onyx);
}

.lead-form p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--cool-gray);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-grid input,
.form-grid select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-grid input:focus,
.form-grid select:focus {
    outline: none;
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.lead-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.lead-form textarea:focus {
    outline: none;
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

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

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--deep-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-item h3 {
    color: var(--onyx);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--cool-gray);
    line-height: 1.6;
}

/* ===== RECENT PROJECTS ===== */
.recent-projects {
    padding: var(--section-padding);
    background: var(--white);
}

.recent-projects .portfolio-grid {
    margin-top: 3rem;
}

.recent-projects .section-footer {
    margin-top: 3rem;
    text-align: center;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

/* ===== FORM VALIDATION ===== */
.form-group--invalid input,
.form-group--invalid select,
.form-group--invalid textarea,
.lead-form .form-group--invalid input,
.lead-form .form-group--invalid select,
.lead-form .form-group--invalid textarea {
    border-color: #dc2626;
}

.field-error,
.form-submit-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.35rem;
}

.form-submit-error {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border-radius: 8px;
}
