/* ============================================
   Gen 1 Architectural Group — Styles
   Charcoal + Coral | Clean Minimalist
   ============================================ */

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

:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #E07A5F;
    --coral-light: #E8956F;
    --coral-pale: #F5E6E0;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F4F2EF;
    --gray-100: #F7F7F5;
    --gray-200: #EDECE8;
    --gray-300: #D4D2CC;
    --gray-400: #A8A59E;
    --gray-500: #78756E;
    --gray-600: #5C5953;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 4px;
}

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

/* — Typography */
.section-eyebrow {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: var(--charcoal-deep);
    margin-bottom: 24px;
}

.accent-italic {
    font-style: italic;
    color: var(--coral);
}

.accent {
    color: var(--coral);
}

/* — Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border: 1.5px solid var(--coral);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--coral-light);
    border-color: var(--coral-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

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

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-text {
    color: var(--coral);
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--coral);
    border-radius: 0;
    margin-top: 16px;
    display: inline-block;
}

.btn-text:hover {
    color: var(--coral-light);
    border-color: var(--coral-light);
}

.btn-full {
    width: 100%;
}

/* — Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--gray-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: color 0.3s;
}

.site-header.scrolled .logo-text {
    color: var(--charcoal-deep);
}

.logo-mark {
    fill: var(--coral);
    flex-shrink: 0;
}

/* — Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-list a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width 0.3s var(--ease-out);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--white);
}

.site-header.scrolled .nav-list a {
    color: var(--gray-500);
}

.site-header.scrolled .nav-list a:hover {
    color: var(--charcoal-deep);
}

.nav-cta {
    color: var(--coral) !important;
    border: 1px solid var(--coral);
    padding: 8px 20px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--coral);
    color: var(--white) !important;
}

.site-header.scrolled .nav-cta {
    color: var(--coral) !important;
}

.site-header.scrolled .nav-cta:hover {
    background: var(--coral);
    color: var(--white) !important;
}

/* — Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 0;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.site-header.scrolled .hamburger {
    background: var(--charcoal);
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* — Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/30413398/pexels-photo-30413398.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.55) 0%,
        rgba(26, 26, 26, 0.45) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding-top: 80px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* — Trust Bar */
.trust-bar {
    background: var(--charcoal-deep);
    padding: 40px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    text-align: center;
}

.trust-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--coral);
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--charcoal-light);
    flex-shrink: 0;
}

/* — Services */
.services {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    max-width: 560px;
    margin-bottom: 64px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
}

.service-card {
    background: var(--white);
    padding: 48px 40px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

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

.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-list li {
    color: var(--white);
}

.service-card:hover .service-num {
    color: var(--coral);
}

.service-card:hover .service-list li::before {
    color: var(--coral);
}

.service-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--charcoal-deep);
    margin-bottom: 12px;
    transition: color 0.4s;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.4s;
}

.service-list li {
    font-size: 0.8125rem;
    color: var(--gray-600);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    transition: color 0.4s;
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray-300);
    font-size: 0.75rem;
    transition: color 0.4s;
}

/* — Approach */
.approach {
    padding: 120px 0;
    background: var(--off-white);
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-body {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.approach-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.approach-feature span {
    font-size: 0.875rem;
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.4;
}

.approach-image {
    position: relative;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.approach-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--coral);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.3;
}

/* — Work */
.work {
    padding: 120px 0;
    background: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 64px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.work-item:hover img {
    transform: scale(1.04);
}

.work-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    min-height: 400px;
}

.work-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    min-height: 320px;
}

.work-item:not(.work-item--large):not(.work-item--wide) {
    grid-column: span 6;
    grid-row: 1 / 2;
    min-height: 280px;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.work-tag {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}

.work-loc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

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

/* — About */
.about {
    padding: 120px 0;
    background: var(--off-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about-body {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
    text-align: center;
    flex: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--coral);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* — CTA Banner */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/30237897/pexels-photo-30237897.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=800') center center / cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.82);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: var(--coral) !important;
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* — Contact */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-body {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 4px;
}

.detail-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.detail-value a {
    color: var(--charcoal);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.detail-value a:hover {
    color: var(--coral);
    border-color: var(--coral);
}

/* — Form */
.contact-form-wrap {
    background: var(--off-white);
    padding: 48px;
    border-radius: 2px;
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    padding: 12px 16px;
    transition: all 0.3s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8A59E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 4px;
}

/* — Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    color: var(--coral);
    margin-bottom: 20px;
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal-deep);
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 320px;
}

/* — Footer */
.site-footer {
    background: var(--charcoal-deep);
    padding: 64px 0 40px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--charcoal-light);
}

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

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.125rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--coral);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-address {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-address a {
    color: var(--coral);
    transition: color 0.3s;
}

.footer-address a:hover {
    color: var(--coral-light);
}

/* — Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* — Responsive */
@media (max-width: 1024px) {
    .approach-layout,
    .about-layout {
        gap: 48px;
    }

    .work-item--large {
        grid-column: 1 / 7;
    }

    .work-item:not(.work-item--large):not(.work-item--wide) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal-deep);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 48px;
        gap: 24px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -8px 0 32px rgba(0,0,0,0.2);
    }

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

    .nav-list a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
    }

    .nav-list a:hover {
        color: var(--white) !important;
    }

    .nav-cta {
        color: var(--coral) !important;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-scroll {
        display: none;
    }

    .trust-inner {
        flex-wrap: wrap;
        gap: 24px;
    }

    .trust-item {
        padding: 0 24px;
    }

    .trust-divider {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 36px 28px;
    }

    .approach,
    .about,
    .contact {
        padding: 80px 0;
    }

    .approach-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .approach-image::after {
        display: none;
    }

    .approach-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .work {
        padding: 80px 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .work-item--large,
    .work-item--wide,
    .work-item:not(.work-item--large):not(.work-item--wide) {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }

    .work-overlay {
        opacity: 1;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

    .cta-banner {
        padding: 80px 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .service-num {
        font-size: 2.25rem;
    }
}

/* — Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
