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

:root {
    --bg: #F2EDEB;
    --text: #221F20;
    --text-light: #7a7576;
    --text-muted: #7a7576;
    --accent: #0981C4;
    --accent2: #53C6D8;
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --border: #d4ccc8;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: rgba(242, 237, 235, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 204, 200, 0.4);
}

.nav-brand {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover { color: var(--text); opacity: 1; }

.nav-menu-btn {
    display: none;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-menu-btn:hover { opacity: 0.5; }

/* ═══════════════════════════════════
   HERO SECTION
═══════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 6rem 2.5rem 3rem;
    position: relative;
}

.hero-logo {
    flex: 0 0 62%;
    max-width: 62%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 9rem);
    overflow: visible;
}

.hero-logo svg {
    width: 105%;
    max-width: none;
    height: auto;
    overflow: visible;
    margin-left: -2%;
}

.hero-content {
    flex: 1;
    padding-top: 4rem;
}

.hero-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.8s 2.8s ease forwards;
}

.hero-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 4.2rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s 3s ease forwards;
}

.hero-description {
    font-family: var(--serif);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 340px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s 3.2s ease forwards;
}

.hero-link {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
    opacity: 0;
    animation: fadeIn 0.8s 3.4s ease forwards;
}

.hero-link:hover { opacity: 0.5; }

.hero-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.hero-link:hover svg {
    transform: translateX(4px);
}

/* Horizontal divider */
.hero-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0 2.5rem;
}

/* ═══════════════════════════════════
   TETRIS ANIMATION
═══════════════════════════════════ */
.tetris-piece {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center center;
    will-change: transform, opacity;
}

.tetris-piece.animate {
    animation: tetrisDrop var(--duration, 0.7s) var(--delay, 0s) cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes tetrisDrop {
    0% {
        transform: translateY(var(--drop, -300px)) rotate(var(--rot, 0deg));
        opacity: 0;
    }
    15% { opacity: 1; }
    70% { transform: translateY(4px) rotate(0deg); }
    85% { transform: translateY(-2px) rotate(0deg); }
    100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

.tetris-piece.landed {
    opacity: 1;
    animation: landFlash 0.3s ease-out;
}

@keyframes landFlash {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}

/* ═══════════════════════════════════
   INTRO / ABOUT SECTION
═══════════════════════════════════ */
.section-intro {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 6rem 2.5rem;
}

.section-intro .intro-text {
    flex: 1;
}

.section-intro .intro-text h3 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.8vw, 2.8rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
    max-width: 600px;
}

.section-intro .intro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-intro .intro-link:hover { opacity: 0.5; }

.section-intro .intro-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.section-intro .intro-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #c4b5a8 0%, #8b7d72 100%);
    border-radius: 0;
}

/* ═══════════════════════════════════
   AWARDS SECTION
═══════════════════════════════════ */
.section-awards {
    padding: 4rem 2.5rem 5rem;
    text-align: center;
}

.awards-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.awards-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 3rem;
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.award-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.award-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.award-logo {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.award-desc {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 140px;
    margin: 0 auto;
}

/* ═══════════════════════════════════
   SERVICES SECTION (image + text)
═══════════════════════════════════ */
.section-services {
    padding: 2rem 2.5rem 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #b8a99c 0%, #9a8b7e 50%, #7d6e63 100%);
}

.service-image.alt {
    background: linear-gradient(135deg, #c4b8ad 0%, #a8998a 50%, #8c7d6f 100%);
}

.services-text {
    text-align: center;
    padding: 4rem 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-text h2 {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.services-text .services-link {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s;
}

.services-text .services-link:hover { opacity: 0.5; }

/* ═══════════════════════════════════
   WE ARE SECTION
═══════════════════════════════════ */
.section-weare {
    padding: 6rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.weare-left {
    flex: 0 0 35%;
}

.weare-label {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}

.weare-label span {
    display: block;
}

.weare-right {
    flex: 1;
    padding-top: 0.5rem;
}

.weare-right h2 {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 2rem;
}

.weare-right .weare-link {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.weare-right .weare-link:hover { opacity: 0.5; }

/* ═══════════════════════════════════
   CASE STUDIES
═══════════════════════════════════ */
.section-cases {
    padding: 2rem 2.5rem 6rem;
}

.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.cases-label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.cases-link {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.cases-link:hover { opacity: 0.5; }

.cases-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.cases-carousel::-webkit-scrollbar { display: none; }

.case-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    cursor: pointer;
}

.case-card .case-image {
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.case-card .case-image .placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.case-card:hover .case-image .placeholder {
    transform: scale(1.05);
}

.case-card .case-brand {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.case-card .case-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.case-card .case-view {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.3s;
}

.case-card:hover .case-view { color: var(--text); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 2.5rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 280px;
    line-height: 1.5;
}

.footer-col-title {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul a {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col ul a:hover { opacity: 0.5; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 7rem;
    }
    .hero-logo {
        flex: none;
        max-width: 90%;
        min-height: auto;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .hero-logo svg {
        width: 100%;
        margin-left: 0;
    }
    .hero-content { padding-top: 0; }
    .section-intro { flex-direction: column; gap: 2rem; }
    .section-intro .intro-image { flex: none; max-width: 100%; }
    .section-weare { flex-direction: column; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 6rem 1.5rem 2rem; }
    .hero-logo { max-width: 95%; }
    .hero-divider { margin: 0 1.5rem; }
    .section-intro,
    .section-awards,
    .section-services,
    .section-weare,
    .section-cases { padding-left: 1.5rem; padding-right: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .case-card { flex: 0 0 300px; }
}

/* ═══════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 2.5rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-overlay .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-overlay a {
    font-family: var(--serif);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s;
}

.mobile-nav-overlay a:hover { opacity: 0.5; }

/* Active page indicator */
.nav-links a.active { color: var(--text); }

@media (max-width: 768px) {
    .nav-menu-btn { display: block; }
}

/* ═══════════════════════════════════
   PAGE HERO BANNERS (inner pages)
═══════════════════════════════════ */
.page-hero {
    padding: 10rem 2.5rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-family: var(--serif);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero { padding: 8rem 1.5rem 3rem; }
}

/* ═══════════════════════════════════
   SECTION CONTENT (reusable)
═══════════════════════════════════ */
.section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
}

.section-content h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.section-content h3 {
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.section-content p {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.section-content ul li {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.section-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .section-content { padding: 3rem 1.5rem; }
}

/* ═══════════════════════════════════
   SECTION DIVIDER
═══════════════════════════════════ */
.section-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0 2.5rem;
}

@media (max-width: 768px) {
    .section-divider { margin: 0 1.5rem; }
}

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.section-cta {
    padding: 6rem 2.5rem;
    text-align: center;
}

.section-cta h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.section-cta p {
    font-family: var(--serif);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(9, 129, 196, 0.3);
    border-radius: 4px;
    background: rgba(9, 129, 196, 0.06);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    background: rgba(9, 129, 196, 0.14);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(9, 129, 196, 0.12);
}

@media (max-width: 768px) {
    .section-cta { padding: 4rem 1.5rem; }
}

/* ═══════════════════════════════════
   CARD GRIDS
═══════════════════════════════════ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 2rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

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

.card h3 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.card p {
    font-family: var(--sans);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
}

.card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.card .card-link:hover { opacity: 0.5; }

@media (max-width: 1024px) {
    .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .card-grid,
    .card-grid.cols-3 { grid-template-columns: 1fr; padding: 0 1.5rem; }
}

/* ═══════════════════════════════════
   STAGGER REVEAL (for card grids)
═══════════════════════════════════ */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════
   INTRO SUB-TEXT
═══════════════════════════════════ */
.intro-sub {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 500px;
    margin-top: 1.5rem;
}

/* ═══════════════════════════════════
   INDUSTRY CARD NAME
═══════════════════════════════════ */
.industry-name {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.2rem;
    text-align: center;
}

/* ═══════════════════════════════════
   SERVICE DETAIL SECTIONS
═══════════════════════════════════ */
.service-detail {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-detail-text > p {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-text h3 {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.service-detail-text ul {
    list-style: none;
}

.service-detail-text ul li {
    font-family: var(--sans);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.service-detail-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
}

.service-detail-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.service-detail-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #c4b5a8 0%, #8b7d72 100%);
}

.service-detail-image .image-placeholder.alt1 {
    background: linear-gradient(135deg, #b8a99c 0%, #7d6e63 100%);
}

.service-detail-image .image-placeholder.alt2 {
    background: linear-gradient(135deg, #7d8a96 0%, #4a5568 100%);
}

.service-detail-image .image-placeholder.alt3 {
    background: linear-gradient(135deg, #6b8a7a 0%, #3d5c4a 100%);
}

@media (max-width: 1024px) {
    .service-detail,
    .service-detail.reverse { flex-direction: column; gap: 2rem; }
    .service-detail-image { flex: none; max-width: 100%; }
}

@media (max-width: 768px) {
    .service-detail { padding: 3rem 1.5rem; }
}

/* ═══════════════════════════════════
   FILTER BAR
═══════════════════════════════════ */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 2.5rem 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    background: none;
    border: 1px solid var(--border);
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text);
    border-color: var(--text);
}

/* ═══════════════════════════════════
   CASE STUDY GRID (full page)
═══════════════════════════════════ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cases-grid .case-card {
    flex: none;
}

.case-category {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cases-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
    .filter-bar { padding: 0 1.5rem 2rem; }
}

/* ═══════════════════════════════════
   BLOG LISTING
═══════════════════════════════════ */
.featured-post {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem 4rem;
}

.featured-post .post-image {
    flex: 0 0 55%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #c4b5a8 0%, #8b7d72 100%);
}

.featured-post .post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-date {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.post-category {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.post-title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.post-excerpt {
    font-family: var(--sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.post-link {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.post-link:hover { opacity: 0.5; }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.post-card .post-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #b8a99c 0%, #7d6e63 100%);
    margin-bottom: 1.25rem;
}

@media (max-width: 1024px) {
    .featured-post { flex-direction: column; }
    .featured-post .post-image { flex: none; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .featured-post { padding: 0 1.5rem 3rem; }
    .posts-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
}

/* ═══════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════ */
.positions-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.position-group-title {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    margin-top: 3rem;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.position-info h3 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.position-info p {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--text-light);
}

.position-apply {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.position-apply:hover { border-color: var(--text); }

@media (max-width: 768px) {
    .positions-list { padding: 0 1.5rem; }
    .position-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.contact-layout {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2.5rem 6rem;
}

.contact-form-wrap { flex: 1; }

.contact-info-wrap {
    flex: 0 0 35%;
    padding-top: 0.5rem;
}

.contact-info-wrap h3 {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-info-wrap p {
    font-family: var(--sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info-wrap a {
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-wrap a:hover { opacity: 0.5; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-group label {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid var(--border);
    padding: 0.75rem;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23221F20' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-submit {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--text);
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--text);
    color: var(--bg);
}

.form-success {
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .contact-layout { flex-direction: column; gap: 3rem; }
    .contact-info-wrap { flex: none; }
}

@media (max-width: 768px) {
    .contact-layout { padding: 0 1.5rem 4rem; }
}
