/* ═══════════════════════════════════════════════════════════
   Peak Roofing Co. — Professional Home Service Website
   Design System: Warm, trustworthy, conversion-focused
   ═══════════════════════════════════════════════════════════ */

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

:root {
    /* Warm, trustworthy palette */
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;
    --white: #ffffff;

    /* Brand colors — professional blue */
    --brand-600: #1d4ed8;
    --brand-500: #2563eb;
    --brand-400: #3b82f6;
    --brand-100: #dbeafe;
    --brand-50:  #eff6ff;

    /* Accent — warm amber for CTAs */
    --accent-600: #d97706;
    --accent-500: #f59e0b;
    --accent-400: #fbbf24;
    --accent-100: #fef3c7;

    /* Success green */
    --green-600: #16a34a;
    --green-500: #22c55e;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7rem);
    --container-max: 1200px;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 8px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -4px rgba(0,0,0,0.1), 0 8px 16px -6px rgba(0,0,0,0.05);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* — Buttons — */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--brand-500);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
    background: var(--brand-600);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

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

/* — Header — */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.35s ease;
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 0.6rem 0;
}

header.scrolled .logo-text,
header.scrolled .nav-links a,
header.scrolled .phone-link {
    color: var(--slate-800);
}

header.scrolled .logo-icon {
    stroke: var(--brand-500);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon { stroke: var(--white); transition: stroke 0.3s; }

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--white);
    transition: color 0.3s;
}
.logo-accent { color: var(--accent-400); }
header.scrolled .logo-accent { color: var(--brand-500); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-400);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
header.scrolled .nav-links a:hover { color: var(--brand-500); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: default;
}
header.scrolled .phone-link { color: var(--slate-800); }

/* Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: background 0.2s;
}
header.scrolled .mobile-menu-btn span { background: var(--slate-800); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100dvh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.is-open { right: 0; }

.mobile-menu-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-600);
    padding: 0.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}
.mobile-nav a {
    padding: 1rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-800);
    border-bottom: 1px solid var(--slate-100);
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--brand-500); }

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 1rem;
    background: var(--brand-500);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.05rem;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(15, 23, 42, 0.60) 50%,
        rgba(15, 23, 42, 0.40) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 0 5rem 0;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--accent-400);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 0.8s 0.6s ease both;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-item svg { stroke: var(--accent-400); flex-shrink: 0; }

/* — Section Headers — */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-500);
    margin-bottom: 0.75rem;
}
.section-tag-light { color: var(--accent-400); }
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}
.section-header p {
    color: var(--slate-500);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* — Services — */
.services {
    padding: var(--section-pad) 0;
    background: var(--slate-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--brand-100);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-50);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    color: var(--brand-500);
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    background: var(--brand-500);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* — Why Us — */
.why-us {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content .section-tag { margin-bottom: 0.75rem; }
.why-us-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--slate-900);
    margin-bottom: 1rem;
}
.why-us-content > p {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-200);
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--brand-500);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.82rem;
    color: var(--slate-500);
    font-weight: 500;
}

.guarantees { display: flex; flex-direction: column; gap: 0.75rem; }
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-700);
}
.guarantee-item svg { color: var(--green-500); flex-shrink: 0; }

.why-us-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* — Projects — */
.projects {
    padding: var(--section-pad) 0;
    background: var(--slate-50);
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.35s ease;
    border: 1px solid var(--slate-100);
}
.project-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.project-image {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}
.project-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}
.project-location {
    font-size: 0.82rem;
    color: var(--brand-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.project-info p {
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

/* — Reviews — */
.reviews {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}
.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-100);
}

.review-stars {
    color: var(--accent-500);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-card > p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-100);
    color: var(--brand-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
}
.reviewer strong {
    display: block;
    font-size: 0.9rem;
    color: var(--slate-800);
}
.reviewer span {
    font-size: 0.8rem;
    color: var(--slate-400);
}

/* — Service Area — */
.service-area {
    padding: var(--section-pad) 0;
    background: var(--brand-50);
}
.service-area-content {
    text-align: center;
}
.service-area-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}
.service-area-content > p {
    color: var(--slate-500);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.area-tag {
    padding: 0.5rem 1.15rem;
    background: var(--white);
    border: 1px solid var(--brand-100);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-700);
    transition: all 0.2s;
}
.area-tag:hover {
    background: var(--brand-500);
    color: var(--white);
    border-color: var(--brand-500);
}

/* — Contact — */
.contact {
    padding: var(--section-pad) 0;
    background: var(--slate-900);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.contact-info > p {
    color: var(--slate-400);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.25s;
}
.contact-method:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}
.contact-method svg { color: var(--brand-400); flex-shrink: 0; }
.contact-method strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}
.contact-method span {
    color: var(--slate-400);
    font-size: 0.85rem;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}
.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--slate-800);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-400);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-top: 0.75rem;
}

/* — Footer — */
footer {
    background: var(--slate-800);
    padding: 3.5rem 0 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
    color: var(--slate-400);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 340px;
}

.footer-links-group h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links-group a,
.footer-links-group span {
    display: block;
    color: var(--slate-400);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 2rem 0;
}
.footer-bottom p {
    color: var(--slate-500);
    font-size: 0.82rem;
}
.footer-demo-note a {
    color: var(--brand-400);
    font-weight: 600;
}
.footer-demo-note a:hover { text-decoration: underline; }

/* — Animations — */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .phone-link { display: none; }
    .mobile-menu-btn { display: flex; }

    /* Hero — scale everything down so nothing touches edges */
    .hero-content { padding: 5rem 0 2.5rem 0; max-width: 100%; }
    .hero h1 { font-size: 2rem; margin-bottom: 0.75rem; }
    .hero-subtitle { font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.6; }
    .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.85rem; margin-bottom: 1rem; }
    
    .hero-btns { flex-direction: row; gap: 0.6rem; margin-bottom: 1.5rem; }
    .hero-btns .btn { text-align: center; justify-content: center; padding: 0.75rem 1.1rem; font-size: 0.82rem; }
    
    .hero-trust {
        display: flex;
        overflow-x: auto;
        gap: 0.75rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .hero-trust::-webkit-scrollbar { display: none; }
    .trust-item { font-size: 0.72rem; flex-shrink: 0; }

    /* Section headers — scale down for mobile */
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.88rem; }
    .section-tag { font-size: 0.72rem; }

    /* Services → smooth horizontal scroll with fade edges */
    .services-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        scroll-behavior: smooth;
        touch-action: pan-x;
        mask-image: linear-gradient(to right, transparent, black 1.5rem, black calc(100% - 1.5rem), transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 1.5rem, black calc(100% - 1.5rem), transparent);
    }
    .services-grid::-webkit-scrollbar { display: none; }
    .service-card {
        flex: 0 0 72%;
        padding: 1.25rem 1rem;
    }
    .service-card h3 { font-size: 1rem; }
    .service-card p { font-size: 0.85rem; }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-us-image { order: -1; }
    .why-us-image img { aspect-ratio: 16/10; }

    .stats-row { gap: 1rem; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.78rem; }

    /* Projects → smooth horizontal scroll with fade edges */
    .project-showcase {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        scroll-behavior: smooth;
        touch-action: pan-x;
        mask-image: linear-gradient(to right, transparent, black 1.5rem, black calc(100% - 1.5rem), transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 1.5rem, black calc(100% - 1.5rem), transparent);
    }
    .project-showcase::-webkit-scrollbar { display: none; }
    .project-card {
        flex: 0 0 78%;
    }

    /* Reviews → smooth horizontal scroll with fade edges */
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        scroll-behavior: smooth;
        touch-action: pan-x;
        mask-image: linear-gradient(to right, transparent, black 1.5rem, black calc(100% - 1.5rem), transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 1.5rem, black calc(100% - 1.5rem), transparent);
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card {
        flex: 0 0 82%;
        padding: 1.5rem;
    }

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

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

    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.82rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; font-size: 0.85rem; }
    .section-header h2 { font-size: 1.4rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .service-card { flex: 0 0 82%; }
    .project-card { flex: 0 0 85%; }
    .review-card { flex: 0 0 88%; }
}

/* — Archo Concept Banner — */
.archo-banner {
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 0;
}
.archo-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.archo-banner-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-400);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}
.archo-banner p {
    color: var(--slate-500);
    font-size: 0.82rem;
    flex: 1;
    min-width: 200px;
}
.archo-banner p a {
    color: var(--slate-300);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.archo-banner-cta {
    color: var(--brand-400);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}
.archo-banner-cta:hover { color: var(--white); }
