/* Self-hosted fonts — latin subset (DM Sans + Playfair Display) */

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/dm-sans-latin-italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/playfair-display-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/playfair-display-latin.woff2') format('woff2');
}

/* Steel Design Group — 2026 Light Theme */
:root {
    --c-bg: #f8f7f5;
    --c-bg-elevated: #ffffff;
    --c-bg-card: #ffffff;
    --c-border: #4e4c47;
    --c-border-light: #eceae6;
    --c-gold: #b39030;
    --c-gold-hover: #8c7025;
    --c-gold-light: #f5f0e3;
    --c-red: #88002c;
    --c-text: #2d2d2d;
    --c-text-muted: #3e3c37;
    --c-text-dim: #8a877f;
    --c-heading: #1a1a1a;
    --c-white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --max-w: 1140px;
    --radius: 8px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.04);
}

.skip-link { position: absolute; left: -9999px; top: 0; background: #88002C; color: #fff; padding: 8px 12px; z-index: 1000; }
.skip-link:focus { left: 8px; top: 8px; }

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}

a:hover {
    color: var(--c-gold-hover);
}

a:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 2px;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
}

.header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

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

.header-logo img {
    width: 72px;
    height: 72px;
}

.header-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-heading);
    letter-spacing: 0.01em;
}

.header-logo .logo-accent {
    color: var(--c-red);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--c-gold);
    text-decoration: none;
}

.header .nav {
    align-self: stretch;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    align-self: center;
    padding: 0 1rem;
    margin: 0 -0.25rem;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown:hover,
.nav-dropdown:focus-within {
    background: #fff;
    border-radius: 5px 5px 0 0;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    width: max-content;
    margin: 0;
    padding: 0.25rem 0 0.35rem;
    list-style: none;
    background: #fff;
    border: 1px solid var(--c-border);
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: var(--shadow-sm);
    z-index: 110;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 1rem;
    text-transform: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--c-gold);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--c-gold);
    color: #fff;
}

.btn-primary:hover {
    background: var(--c-gold-hover);
    color: #fff;
    text-decoration: none;
}

.nav .btn-primary {
    color: #fff;
}

.nav .btn-primary:hover {
    color: #fff;
    background: var(--c-gold-hover);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    color: var(--c-gold);
    border: 2px solid var(--c-gold);
}

.btn-outline:hover {
    background: var(--c-gold);
    color: #fff;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-heading);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    padding: 8rem 0 5rem;
    background: url('../images/home-banner-bkground.jpg') center/cover no-repeat, linear-gradient(170deg, #f8f7f5 0%, #efeee9 50%, #f0ede5 100%);
    position: relative;
}

.hero .wrap {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 901px) {
    .hero-layout {
        align-items: start;
    }

    .hero-visual {
        margin-top: 8px;
    }
}

.hero-card {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.25));
    border-radius: 12px;
    padding: 1.8rem;
}

.hero-copy {
    min-width: 0;
}

.hero .hero-copy h1 {
    max-width: none;
}

.hero .hero-copy .hero-sub {
    max-width: none;
}

.hero-visual {
    min-width: 0;
}

.hero-slides {
    position: relative;
    aspect-ratio: 640 / 520;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--c-border-light);
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    transition: opacity 1.25s ease-in-out;
    will-change: opacity;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition-duration: 0.45s;
        transition-timing-function: ease-in-out;
    }
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    background: var(--c-gold-light);
    border: 1px solid rgba(166,134,46,0.25);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s var(--ease) both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--c-heading);
    max-width: 700px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s var(--ease) both;
}

.hero h1 em {
    font-style: normal;
    color: var(--c-red);
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--c-text-muted);
    max-width: 560px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.2s var(--ease) both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s var(--ease) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== IMAGE STRIP ===== */
.strip {
    height: 200px;
    margin-top: 16px;
    overflow: hidden;
    position: relative;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.strip::before,
.strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.strip::before {
    left: 0;
    background: linear-gradient(to right, var(--c-white), transparent);
}

.strip::after {
    right: 0;
    background: linear-gradient(to left, var(--c-white), transparent);
}

.strip-track {
    display: flex;
    width: max-content;
    height: 200px;
    animation: strip-scroll 90s linear infinite;
}

.strip-track img {
    height: 200px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.strip:hover .strip-track {
    animation-play-state: paused;
}

@keyframes strip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== URGENCY BAR ===== */
.urgency {
    padding: 2.5rem 0;
    margin-bottom: 8px;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.urgency .wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.urgency-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fef3f2;
    border: 1px solid #fecaca;
}

.urgency-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--c-red);
    fill: none;
    stroke-width: 2;
}

.urgency p {
    font-size: 1rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.urgency strong {
    color: var(--c-heading);
}

/* ===== SECTION HELPERS ===== */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* ===== SERVICES ===== */
.services {
    padding: 4rem 0;
}

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

.service-card {
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.4rem;
    align-items: start;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.service-card-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--c-gold-light);
    border: 1px solid var(--c-border-light);
    overflow: hidden;
}

.service-card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--c-gold);
    fill: none;
    stroke-width: 1.5;
}

.service-card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.service-card-copy {
    min-width: 0;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.service-card-action {
    margin-top: 1rem;
    padding: 0.55rem 1.2rem;
    font-size: 0.78rem;
}

/* ===== DIFFERENTIATOR ===== */
.differ {
    padding: 5rem 0;
    background: url('../images/whyus-banner.jpg') center/cover no-repeat, linear-gradient(170deg, #f8f7f5 0%, #efeee9 50%, #f0ede5 100%);
    border-top: 1px solid var(--c-border-light);
    border-bottom: 1px solid var(--c-border-light);
}

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

.differ-content .section-title {
    max-width: 480px;
}

.differ-points {
    list-style: none;
    margin-top: 1.5rem;
}

.differ-points li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-border-light);
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

.differ-points li:last-child {
    border-bottom: none;
}

.differ-points .dp-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c-gold-light);
    margin-top: 0.15rem;
}

.differ-points .dp-icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--c-gold);
    fill: none;
    stroke-width: 2.5;
}

.differ-points strong {
    color: var(--c-heading);
    display: block;
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

.differ-visual {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.differ-stat {
    text-align: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--c-border);
}

.differ-stat:last-child {
    border-bottom: none;
}

.differ-stat .num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--c-red);
}

.differ-stat .label {
    font-size: 0.82rem;
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* ===== PROCESS ===== */
.process {
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step {
    padding: 2rem 1.5rem;
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-red);
    opacity: .5;
    margin-bottom: 0.6rem;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-heading);
    margin-bottom: 0.4rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

/* ===== CTA ===== */
.cta {
    padding: 5rem 0;
    background: url('../images/get-started-bottom-banner.jpg') center/cover no-repeat, linear-gradient(170deg, #f8f7f5 0%, #efeee9 50%, #f0ede5 100%);
    border-top: 1px solid var(--c-border-light);
    text-align: center;
    position: relative;
}

.cta .wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: calc(100% - 3rem);
}

.cta .section-title {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--c-text-muted);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta p:not(.cta-note) {
    margin-bottom: 0;
}

.cta .cta-note {
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: none;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--c-border);
    background: var(--c-bg);
}

.footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-left img {
    width: 36px;
    height: 36px;
}

.footer-left span {
    font-size: 0.85rem;
    color: var(--c-text-dim);
}

.footer-right {
    font-size: 0.85rem;
    color: var(--c-text-dim);
}

.footer-right a {
    color: var(--c-text-muted);
}

.footer-right a:hover {
    color: var(--c-gold);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: url('../images/about-banner.jpg') center/cover no-repeat, linear-gradient(170deg, #f8f7f5 0%, #efeee9 50%, #f0ede5 100%);
}

.about-hero .hero-tag {
    margin-bottom: 1rem;
}

.page-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(170deg, #f8f7f5 0%, #efeee9 100%);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--c-text-muted);
    max-width: 600px;
}

.page-hero p:not(.cta-note) {
    margin-bottom: 0;
}

.page-hero .cta-note {
    margin-top: 0;
    text-align: center;
}

.about-section {
    padding: 3rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--c-text);
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text .about-address {
    --about-address-name-gap: 0.2rem;
    --about-address-line-gap: -0.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: Georgia, serif;
    color: var(--c-red);
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 1.2rem;
}

.about-text .about-address-line {
    display: block;
}

.about-text .about-address-name {
    font-size: 1.35rem;
}

.about-text .about-address-line + .about-address-line {
    margin-top: var(--about-address-line-gap);
}

.about-text .about-address-name + .about-address-line {
    margin-top: var(--about-address-name-gap);
}

.experience-list {
    list-style: none;
    margin-top: 1.5rem;
}

.experience-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--c-text);
}

.experience-list .exp-bullet {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 0.55rem;
    border-radius: 50%;
    background: var(--c-gold);
}

/* Client logos */
.clients-section {
    padding: 4rem 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border-light);
}

.client-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.client-row img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(40%);
    transition: opacity 0.3s, filter 0.3s;
}

.client-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Portfolio grid */
.portfolio-section {
    padding: 4rem 0;
    border-top: 1px solid var(--c-border-light);
}

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

.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.portfolio-item img {
    width: 100%;
    display: block;
}

.portfolio-item figcaption {
    padding: 0.75rem 1rem;
    background: var(--c-white);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

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

    .differ-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--c-white);
        border-bottom: 1px solid var(--c-border);
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
    }

    .header .nav {
        align-self: auto;
    }

    .nav-dropdown {
        align-self: auto;
        display: block;
        padding: 0;
        margin: 0;
        background: transparent;
    }

    .nav-dropdown > a {
        display: inline;
        height: auto;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        width: auto;
        min-width: 0;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        background: transparent;
    }

    .nav.is-open .nav-dropdown-menu {
        display: block;
    }

    .hero {
        padding: 8rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 7rem 0 2.5rem;
    }

    .urgency .wrap {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .footer .wrap {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .client-row {
        gap: 1.5rem;
    }

    .client-row img {
        height: 40px;
    }
}

/* ===== CASE STUDIES ===== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.case-card {
    background: var(--c-white);
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s var(--ease);
}

.case-card:hover {
    box-shadow: var(--shadow-lg);
}

.case-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    background: var(--c-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-heading);
    margin-bottom: 0.75rem;
}

.case-card p {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.case-details {
    list-style: none;
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--c-border-light);
    padding-top: 1rem;
}

.case-details li {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    padding: 0.25rem 0;
}

.case-details strong {
    color: var(--c-heading);
}

.case-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-gold);
    letter-spacing: 0.02em;
}

.case-link:hover {
    color: var(--c-gold-hover);
}

@media (max-width: 680px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.case-screenshot {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--c-border);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
