/* ============================================
   Huffman's Construction Group - Luxury Redesign
   Premium, dark, elegant, Naples-worthy
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-family: 'DM Serif Display', serif; font-style: italic; }

:root {
    --black: #0a0a0a;
    --charcoal: #141414;
    --dark: #1a1a1a;
    --gold: #C8951A;
    --gold-light: #D4A843;
    --gold-glow: rgba(200, 149, 26, 0.12);
    --gold-dark: #A67A15;
    --warm: #FAF7F2;
    --warm-dark: #F0EBE3;
    --stone-50: #FAFAF8;
    --stone-100: #F5F3EF;
    --stone-200: #E8E4DD;
    --stone-300: #D4CFC5;
    --stone-400: #A39E93;
    --stone-500: #78746B;
    --stone-600: #5C5850;
    --stone-700: #3D3A34;
    --stone-800: #27251F;
    --stone-900: #141310;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-gold: 0 8px 30px rgba(200, 149, 26, 0.2);
    --transition: 0.25s ease;
}

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

/* --- Nav --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.scrolled { background: rgba(10,10,10,0.95); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
}
.nav-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.nav-brand-sub {
    font-size: 11px;
    color: var(--stone-400);
    display: block;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--stone-400);
    transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    box-shadow: var(--shadow-gold) !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: var(--black);
}
.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--charcoal);
    color: #fff;
}
.btn-dark:hover {
    background: var(--dark);
    transform: translateY(-1px);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
}
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding-top: 76px;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 149, 26, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(200, 149, 26, 0.08) 0%, transparent 40%);
}
.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--black), transparent);
}
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0 40px;
}
.hero-top { margin-bottom: 28px; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero h1 em {
    color: var(--gold);
}
.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--stone-400);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-bottom-inner {
    display: flex;
    gap: 48px;
    padding: 28px 0;
}
.hero-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: #fff;
    display: block;
    line-height: 1.2;
}
.hero-stat-label {
    font-size: 12px;
    color: var(--stone-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- Sections --- */
.section { padding: 100px 0; }
.section-dark { background: var(--charcoal); color: #fff; }
.section-warm { background: var(--warm); }

.section-intro {
    max-width: 580px;
    margin: 0 auto 64px;
    text-align: center;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}
.section-tag-gold { color: var(--gold-light); }
.section-intro h2,
.faq-intro h2,
.contact-info h2,
.cta-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section-intro p {
    font-size: 17px;
    color: var(--stone-500);
    line-height: 1.6;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--stone-200);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.service-card {
    background: #fff;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover::after {
    transform: scaleX(1);
}
.service-card:hover {
    background: var(--stone-50);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-glow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--stone-500);
    line-height: 1.7;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}
.about-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}
.about-content h2 em { color: var(--gold); }
.about-lead {
    font-size: 17px;
    color: var(--stone-300);
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-content p {
    font-size: 15px;
    color: var(--stone-400);
    line-height: 1.7;
    margin-bottom: 28px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--stone-300);
}
.about-value-icon {
    width: 28px;
    height: 28px;
    background: rgba(200, 149, 26, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.about-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: all 0.3s;
}
.about-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(200,149,26,0.2);
    transform: translateX(4px);
}
.about-card-number {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.about-card-text {
    font-size: 14px;
    color: var(--stone-400);
}

/* --- Communities --- */
.communities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.community-card {
    background: var(--charcoal);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    cursor: pointer;
}
.community-card:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.community-card:hover .community-arrow {
    transform: translateX(4px);
    color: var(--gold);
}
.community-card-lg {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px 32px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(135deg, var(--charcoal), #1a1a14);
    border: 1px solid rgba(200,149,26,0.15);
}
.community-card-lg .community-name {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    color: #fff;
}
.community-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.community-arrow {
    font-size: 18px;
    color: var(--stone-500);
    transition: all 0.3s;
}

/* --- Process --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.process-step {
    padding: 0 28px;
    position: relative;
}
.process-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 56px;
    font-weight: 500;
    color: var(--stone-200);
    line-height: 1;
    margin-bottom: 20px;
}
.process-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--stone-200));
    margin-bottom: 20px;
    border-radius: 1px;
}
.process-step:last-child .process-line { display: none; }
.process-step h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 14px;
    color: var(--stone-500);
    line-height: 1.7;
}

/* --- FAQ --- */
.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.faq-intro h2 { letter-spacing: -0.01em; }
.faq-intro p {
    font-size: 16px;
    color: var(--stone-500);
    line-height: 1.6;
    margin-bottom: 24px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item[open] {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(200,149,26,0.06);
}
.faq-item summary {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--stone-400);
    flex-shrink: 0;
    margin-left: 16px;
    font-family: 'Inter', sans-serif;
}
.faq-item[open] summary::after { content: '\2212'; color: var(--gold); }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--stone-500);
    line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--charcoal);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200,149,26,0.06), transparent 70%);
}
.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner h2 em { color: var(--gold); }
.cta-inner p { color: var(--stone-400); font-size: 16px; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info h2 em { color: var(--gold); }
.contact-info > p {
    font-size: 16px;
    color: var(--stone-500);
    line-height: 1.6;
    margin-bottom: 32px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--stone-50);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    transition: all var(--transition);
}
a.contact-card:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
}
.contact-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}
.contact-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone-400);
    display: block;
}
.contact-card-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    line-height: 1.4;
}
.contact-social {
    display: flex;
    gap: 8px;
}
.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-sm);
    color: var(--stone-500);
    transition: all var(--transition);
}
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    padding: 44px;
}
.contact-form h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--stone-400);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--stone-400);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,149,26,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone-600);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A39E93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: var(--charcoal);
    color: #fff;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-disclaimer {
    font-size: 12px;
    color: var(--stone-600);
    text-align: center;
    margin-top: 12px;
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: var(--stone-400);
    padding: 60px 0 0;
    border-top: 1px solid rgba(200,149,26,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-brand { margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
}
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-col a, .footer-col span {
    display: block;
    font-size: 14px;
    padding: 3px 0;
    color: var(--stone-500);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--stone-600);
}

/* --- Nav Logo Image --- */
.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* --- Hero BG Image --- */
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

/* --- Trust Bar --- */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--stone-200);
    padding: 24px 0;
}
.trust-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.trust-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-400);
    white-space: nowrap;
}
.trust-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.trust-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all var(--transition);
}
.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Portfolio --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.portfolio-item-wide {
    grid-column: span 2;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.portfolio-item:hover img {
    transform: scale(1.05);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --- About Photo --- */
.about-photo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.about-photo {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.about-card-row {
    display: flex;
    gap: 16px;
}
.about-card-row .about-card {
    flex: 1;
    text-align: center;
}
.about-card-row .about-card-number {
    font-size: 28px;
}

/* --- Footer Logo --- */
.footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .communities-grid { grid-template-columns: repeat(3, 1fr); }
    .community-card-lg { grid-column: span 3; grid-row: span 1; }
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-item-wide { grid-column: span 2; }
    .trust-inner { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        width: 100%;
    }
    .nav-links a:last-child { border-bottom: none; margin-top: 12px; text-align: center; display: block; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { min-height: auto; padding-top: 76px; }
    .hero-content { padding: 60px 0 40px; }
    .hero-bottom-inner { flex-direction: column; gap: 16px; padding: 20px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .section { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .communities-grid { grid-template-columns: 1fr 1fr; }
    .community-card-lg { grid-column: span 2; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-line { display: none; }
    .about-values { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .communities-grid { grid-template-columns: 1fr; }
    .community-card-lg { grid-column: span 1; }
    .process-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
