/* ===================================================================
   Creative Café – Main Stylesheet
   Palette: #1a1a1a bg | #8dc63f accent | #ffffff text | #888 muted
   =================================================================== */

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'SF Pro Display', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: #8dc63f; text-decoration: none; transition: color 0.2s; }
a:hover { color: #a8d85a; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 980px;
    text-decoration: none !important;
    transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #8dc63f;
    color: #111111;
    box-shadow: 0 4px 18px rgba(141, 198, 63, 0.25);
}
.btn-primary:hover { background: #a0d94a; color: #111111; box-shadow: 0 6px 24px rgba(141, 198, 63, 0.38); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(141, 198, 63, 0.2); }

.btn-outline {
    background: transparent;
    color: #8dc63f;
    border: 1.5px solid #8dc63f;
    box-shadow: inset 0 0 0 0 #8dc63f;
}
.btn-outline:hover { background: #8dc63f; color: #111111; box-shadow: 0 4px 18px rgba(141, 198, 63, 0.25); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }

/* ── Header ───────────────────────────────────────────────────────── */
#site-header {
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo { height: 65px; width: auto; }

.header-right { text-align: right; }

.header-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #666666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header-cta-btn { font-size: 11px; padding: 9px 22px; }

/* ── Navigation ───────────────────────────────────────────────────── */
#site-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 0;
}

.nav-list li a {
    display: block;
    padding: 14px 22px;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 0;
}

.nav-list li a:hover { color: #cccccc; }

.nav-list li.active a {
    color: #ffffff;
    font-weight: 700;
    border-bottom-color: #8dc63f;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 0;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #aaa;
    transition: background 0.2s;
}
.nav-toggle:hover span { background: #8dc63f; }

/* ── Page Hero ─────────────────────────────────────────────────────── */
.page-hero {
    background-color: #0d0d0d;
    background-image:
        radial-gradient(ellipse 85% 60% at 50% 50%, rgba(141,198,63,0.08) 0%, transparent 65%),
        radial-gradient(circle, rgba(141,198,63,0.045) 1px, transparent 1px);
    background-size: auto, 28px 28px;
    padding: 70px 0 60px;
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Sections ─────────────────────────────────────────────────────── */
.section { padding: 65px 0; }
.section-dark { background: #141414; }
.section-alt  { background: #161616; }

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #8dc63f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-body {
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 14px;
}
.section-body strong { color: #cccccc; }

.divider {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 45px 0;
}

/* ── Home Hero Banner ─────────────────────────────────────────────── */
.hero-banner {
    background-color: #0d0d0d;
    background-image:
        radial-gradient(ellipse 85% 60% at 50% 50%, rgba(141,198,63,0.08) 0%, transparent 65%),
        radial-gradient(circle, rgba(141,198,63,0.045) 1px, transparent 1px);
    background-size: auto, 28px 28px;
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid #1e1e1e;
}

.hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
    text-align: left;
}

.hero-overline {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(141, 198, 63, 0.55);
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-top: 28px;
    margin-bottom: 0;
}

.hero-banner h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-banner h1 em {
    color: #8dc63f;
    font-style: normal;
    font-weight: 700;
}

.hero-banner p {
    font-size: 15px;
    color: #777;
    max-width: 580px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Process Flow ─────────────────────────────────────────────────── */
.process-section {
    background: #161616;
    padding: 65px 0;
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

.process-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

/* Thin connecting line running through the centre of the circles */
.process-steps::before {
    content: '';
    position: absolute;
    top: 21px;
    left: calc(10% + 22px);
    right: calc(10% + 22px);
    height: 1px;
    background: linear-gradient(to right, transparent, #8dc63f 15%, #8dc63f 85%, transparent);
    opacity: 0.25;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.process-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(141, 198, 63, 0.5);
    background: #161616;
    color: #8dc63f;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.07), 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step-label {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    line-height: 1.6;
    display: block;
}

/* ── Two-column layout ────────────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

/* ── Services Grid ────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 10px;
}

.service-card {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid rgba(141, 198, 63, 0.2);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    transition: border-left-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    border-left-color: rgba(141, 198, 63, 0.7);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(141, 198, 63, 0.08);
    transform: translateY(-2px);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(141, 198, 63, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.service-card-icon svg { fill: #8dc63f; }

.service-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.service-heading .service-card-icon { margin-bottom: 0; }
.service-heading .section-title      { margin-bottom: 0; }

.service-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #eeeeee;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 13px;
    color: #b8b8b8;
    line-height: 1.85;
}

.service-card .learn-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #8dc63f;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card .learn-more:hover { color: #a8d85a; }

/* ── Portfolio Grid ───────────────────────────────────────────────── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 12px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55); }
.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-overlay {
    position: absolute;
    inset: 0 0 40px 0;
    background: rgba(141, 198, 63, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-caption {
    padding: 10px 14px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-caption span {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #bbbbbb;
}

/* ── Lightbox ─────────────────────────────────────────────────────── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#lightbox.open { display: flex; }

.lightbox-inner {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 85vh;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.lightbox-title {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8dc63f;
    text-align: center;
    margin-top: 12px;
}

.lightbox-close {
    position: absolute;
    top: -38px;
    right: 0;
    color: #8dc63f;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    font-weight: 300;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}
.lightbox-close:hover { color: #ffffff; }

/* ── CC Watermark ─────────────────────────────────────────────────── */
.cc-watermark {
    background: #1a1a1a;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.cc-watermark img {
    height: 60px;
    width: auto;
    margin: 0 auto;
    opacity: 0.08;
    filter: grayscale(100%);
}

/* ── About Page ────────────────────────────────────────────────────── */
.about-intro p {
    font-size: 14px;
    line-height: 1.95;
    color: #d0d0d0;
    margin-bottom: 16px;
}
.about-intro p strong { color: #dddddd; }

.highlight-box {
    background: #1e1e1e;
    border-left: 3px solid #8dc63f;
    border-radius: 12px;
    padding: 22px 26px;
    margin: 28px 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.highlight-box p {
    color: #888;
    font-style: italic;
    font-size: 14px;
    line-height: 1.8;
}

/* ── Contact Form ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #cccccc;
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    outline: none;
    transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8dc63f;
    background: #222222;
    box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.12);
}

.form-group textarea { height: 145px; resize: vertical; }

/* Honeypot – never shown */
.hp-field { display: none !important; visibility: hidden; }

.alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
}
.alert-success {
    background: rgba(141, 198, 63, 0.12);
    border: 1px solid #8dc63f;
    color: #8dc63f;
}
.alert-error {
    background: rgba(200, 60, 60, 0.12);
    border: 1px solid #c83c3c;
    color: #e06060;
}

/* ── Footer ───────────────────────────────────────────────────────── */
#site-footer {
    background: #111111;
    border-top: 2px solid #2a2a2a;
    padding: 55px 0 25px;
}

.footer-contact-title {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.footer-contact-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 300;
    color: #e0e0e0;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 45px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-item-info strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #dddddd;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-item-info span,
.contact-item-info a {
    font-size: 14px;
    color: #888;
}
.contact-item-info a:hover { color: #8dc63f; }

.footer-section-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #8dc63f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 13px;
    color: #777;
    transition: color 0.2s;
}
.footer-links a:hover { color: #8dc63f; }

.footer-enquiry {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #222;
}
.footer-enquiry p {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid #1e1e1e;
    padding-top: 22px;
    text-align: center;
    font-size: 11px;
    color: #444444;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

/* ── Section Overline Label ──────────────────────────────────────── */
.section-overline {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

/* ── Service Illustration Box (services.php) ──────────────────────── */
.service-visual {
    background: linear-gradient(175deg, #ffffff 0%, #e4e4ea 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 55px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        0 6px 16px rgba(0, 0, 0, 0.14),
        inset 0 1.5px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

/* Gloss sheen overlay */
.service-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    border-radius: 16px 16px 60% 60% / 16px 16px 40% 40%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(255, 255, 255, 0.18) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.service-visual > * { position: relative; z-index: 1; }

.service-visual svg { opacity: 0.9; }

.service-visual-label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #444;
    line-height: 1.9;
}

/* ── Why Choose Us Grid (about.php) ───────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.why-item {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.why-item-num {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(141, 198, 63, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    display: block;
}

.why-item h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d8d8d8;
    margin-bottom: 14px;
}

.why-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.9;
}

/* ── CTA Strip ────────────────────────────────────────────────────── */
.cta-section {
    background: #161616;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    padding: 80px 0;
    text-align: center;
}

.cta-section .section-title {
    margin-bottom: 16px;
}

.cta-section .section-overline {
    margin-bottom: 12px;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 35px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .service-visual { display: none; }
}

@media (max-width: 768px) {
    .header-tagline { display: none; }

    #site-nav { flex: 1; justify-content: flex-end; }
    .nav-toggle { display: flex; }
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        padding: 8px 0;
        z-index: 199;
    }
    .nav-list.open { display: flex; }
    .nav-list li a { padding: 14px 24px; font-size: 13px; }

    .hero-banner h1 { font-size: 28px; letter-spacing: 2px; }
    .hero-banner { padding: 20px 0 65px; }
    .hero-topbar { margin-bottom: 45px; }
    .hero-topbar .header-cta-btn { display: none; }

    .process-step-num { width: 36px; height: 36px; font-size: 11px; }
    .process-step-label { font-size: 9px; letter-spacing: 0.5px; }
    .process-steps::before { top: 17px; }
}

@media (max-width: 520px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-banner h1 { font-size: 22px; }
    .process-heading { font-size: 15px; letter-spacing: 2px; }
    .why-grid { grid-template-columns: 1fr; }
    .hero-overline { letter-spacing: 3px; }
}
