/* Kusum Furniture - Main Styles */
:root {
    --color-white: #ffffff;
    --color-cream: #f8f5ef;
    --color-warm: #f3ede3;
    --color-ivory: #fdfcfa;
    --color-gold: #c5a059;
    --color-gold-light: #d4b87a;
    --color-gold-dark: #a8863f;
    --color-black: #1a1a1a;
    --color-charcoal: #2d2d2d;
    --color-brown: #3e2723;
    --color-text: #2a2a2a;
    --color-text-light: #7a7a7a;
    --color-border: #e8e0d0;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --radius: 4px;
    --radius-lg: 12px;
    --nav-height: 76px;
    --topbar-height: 44px;
    --header-height: calc(var(--topbar-height) + var(--nav-height));
    --font-base: 17px;
}

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

html {
    font-size: var(--font-base);
    scroll-behavior: auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    html { font-size: 16px; }
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-ivory);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

/* Site Header Wrapper */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
}

.site-header.is-scrolled .top-bar {
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(28px, 5vw, 72px);
}

.site-header .container,
.main-nav__bar.container {
    padding-left: clamp(28px, 5.5vw, 80px);
    padding-right: clamp(28px, 5.5vw, 80px);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 18px;
    display: block;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--color-text-light);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
}

.gold-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px 0;
}

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-sm { padding: 12px 24px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-gold {
    background: var(--color-gold);
    color: var(--color-black);
}
.btn-gold:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197,160,89,0.3);
}

.btn-outline {
    border: 1px solid var(--color-black);
    color: var(--color-black);
    background: transparent;
}
.btn-outline:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-black);
}
.btn-white:hover {
    background: var(--color-gold);
}

.btn-dark {
    background: var(--color-black);
    color: var(--color-white);
}
.btn-dark:hover {
    background: var(--color-charcoal);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background: var(--color-black);
    color: var(--color-white);
    height: var(--topbar-height);
    position: relative;
    z-index: 1001;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.top-bar__social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color var(--transition);
    white-space: nowrap;
}
.top-bar__social a:hover { color: var(--color-gold); }
.top-bar__social a svg { flex-shrink: 0; }

.top-bar__marquee {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

.marquee-dot { color: var(--color-gold); font-size: 8px; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.btn-quote {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.btn-quote:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.top-bar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-brochure {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.btn-brochure:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-1px);
}

.btn-brochure--header {
    display: none;
}

.main-nav__book-icon {
    display: none;
}

/* Main Navigation – single row */
.main-nav {
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.main-nav__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 28px);
    min-height: var(--nav-height);
    padding: 10px 0;
}

.main-nav__book {
    white-space: nowrap;
    letter-spacing: 0.06em;
    font-size: 12px;
    padding: 11px 20px;
}

.main-nav__links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.4vw, 26px);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.main-nav__links::-webkit-scrollbar { display: none; }

.nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.active { color: var(--color-gold); }

.main-nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo-img {
    height: 68px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.main-nav__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.main-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.main-nav__toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--color-black);
    transition: all var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 100vw);
    height: 100%;
    height: 100dvh;
    background: var(--color-white);
    z-index: 1700;
    padding: 72px 28px calc(100px + env(safe-area-inset-bottom));
    transition: right 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background: var(--color-cream);
    color: var(--color-black);
}

.mobile-drawer__logo {
    display: none;
}

.mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}
.mobile-drawer__nav a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-black);
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.mobile-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-drawer__actions .btn {
    border-radius: 0;
    min-height: 48px;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1650;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.hero__slider {
    position: relative;
    width: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease;
    background: #000;
}

.hero__slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero__media {
    display: none;
    width: 100%;
    line-height: 0;
}

.hero__media--desktop { display: block; }
.hero__media--mobile { display: none; }

.hero__media img,
.hero__media video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    vertical-align: top;
}

.hero__controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
    max-width: 600px;
}

.hero__control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.hero__control-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.hero__progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.hero__progress-bar {
    height: 100%;
    background: var(--color-gold);
    width: 0%;
    transition: width 0.1s linear;
}

/* Category Marquee */
.category-marquee {
    background: var(--color-black);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(197,160,89,0.2);
    border-bottom: 1px solid rgba(197,160,89,0.2);
}

.category-marquee__track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.category-marquee__item {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 48px;
}
.category-marquee__item::after {
    content: '◆';
    color: var(--color-gold);
    font-size: 6px;
}

/* Sections */
.section {
    padding: 20px 0;
    position: relative;
}

.section > .container > .text-center {
    margin-bottom: 28px;
}

.section--cream {
    background: var(--color-cream);
    background-image: radial-gradient(ellipse at 20% 0%, rgba(197,160,89,0.06) 0%, transparent 55%);
}

.section--warm {
    background: var(--color-warm);
    background-image: radial-gradient(ellipse at 80% 100%, rgba(197,160,89,0.05) 0%, transparent 50%);
}

.section--ivory { background: var(--color-ivory); }
.section--dark {
    background: var(--color-black);
    color: var(--color-white);
}
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

/* Media Strip */
.media-strip {
    position: relative;
    height: 32vh;
    min-height: 220px;
    max-height: 380px;
    overflow: hidden;
}

.media-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-strip__caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--color-white);
}

.media-strip__caption span {
    display: block;
    font-size: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 8px;
}

.media-strip__caption strong {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
}

/* Intro Split */
.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-split__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    min-height: 320px;
    /* background: var(--color-charcoal); */
}

.intro-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-split__heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.intro-split__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text);
}

.intro-split__desc p + p { margin-top: 20px; }

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.about-pillar {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.about-pillar:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-pillar h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.about-pillar p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 0;
}

.products-grid { margin-top: 0; }
.team-grid { margin-top: 0; }
.process-timeline { margin-top: 0; }

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.service-card__image {
    height: 300px;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    background: var(--color-charcoal);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__body {
    padding: 32px;
}

.service-card__body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card__body p {
    font-size: 0.94rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.65;
}

.service-card__link {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--color-white);
    opacity: 1;
    visibility: visible;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: border-color var(--transition);
    z-index: 2;
    pointer-events: none;
}

.product-card:hover::before {
    border-color: var(--color-gold);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-card__image {
    height: 320px;
    min-height: 320px;
    overflow: hidden;
    background: var(--color-charcoal);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__body {
    padding: 28px;
    text-align: center;
}

.product-card__body h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-card__body p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-card__price {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-bottom: 16px;
}

/* Why Kusum */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
    padding: 40px 20px;
}

.why-item__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.why-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-item__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* Projects Masonry */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--color-text-light);
    transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Project Showcase – image + video grid (inner pages) */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

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

/* Home – vertical reels scroller */
.projects-reels-section .section-cta {
    margin-top: 28px;
}

.projects-reels-wrap {
    width: 100%;
    overflow: hidden;
}

.projects-reels {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) transparent;
    padding: 8px max(20px, calc((100vw - 1200px) / 2 + 20px)) 20px;
    scroll-padding-inline: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.projects-reels::-webkit-scrollbar {
    height: 6px;
}

.projects-reels::-webkit-scrollbar-thumb {
    background: var(--color-gold);
}

.projects-reels .project-media {
    flex: 0 0 220px;
    width: 220px;
    scroll-snap-align: start;
    border-radius: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.projects-reels .project-media__frame {
    aspect-ratio: 9 / 16;
}

.projects-reels .project-media__controls {
    right: 10px;
    bottom: 10px;
}

.projects-reels .project-media__btn {
    width: 36px;
    height: 36px;
    border-radius: 0;
}

.projects-reels .project-media__meta {
    padding: 24px 12px 12px;
}

.projects-reels .project-media--video .project-media__meta {
    padding-bottom: 52px;
}

.project-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-charcoal);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    cursor: pointer;
}

.project-media:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.project-media__frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.project-media__frame img,
.project-media__frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-media__controls {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.project-media__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background var(--transition), border-color var(--transition);
}

.project-media__btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000;
}

.project-media__btn.is-paused .icon-pause,
.project-media__btn:not(.is-paused) .icon-play,
.project-media__btn.is-unmuted .icon-muted,
.project-media__btn:not(.is-unmuted) .icon-unmuted {
    display: none;
}

.project-media__btn.is-paused .icon-play,
.project-media__btn:not(.is-paused) .icon-pause,
.project-media__btn.is-unmuted .icon-unmuted,
.project-media__btn:not(.is-unmuted) .icon-muted {
    display: block;
}

.project-media__meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 18px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    pointer-events: none;
}

.project-media--video .project-media__meta {
    padding-bottom: 56px;
}

.project-media__meta span {
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Project media lightbox */
.pm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pm-lightbox[hidden] {
    display: none !important;
}

.pm-lightbox.is-open {
    display: flex;
}

.pm-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
}

.pm-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    max-height: min(92vh, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pm-lightbox__close {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.pm-lightbox__close:hover {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

.pm-lightbox__body {
    width: 100%;
    max-height: calc(92vh - 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.pm-lightbox__image,
.pm-lightbox__video {
    display: block;
    width: 100%;
    max-height: calc(92vh - 48px);
    height: auto;
    object-fit: contain;
    background: #000;
}

.pm-lightbox__video {
    min-height: 200px;
}

.pm-lightbox__title {
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
}

body.pm-lightbox-open {
    overflow: hidden;
}

/* Home: legacy grid helpers unused when reels active */
.projects-grid--home .project-media:nth-child(n+5) { display: none; }

@media (min-width: 768px) {
    .projects-grid--home { grid-template-columns: repeat(3, 1fr); }
    .projects-grid--home .project-media:nth-child(n+5) { display: block; }
    .projects-grid--home .project-media:nth-child(n+7) { display: none; }
    .projects-reels .project-media {
        flex: 0 0 240px;
        width: 240px;
    }
}

@media (min-width: 1100px) {
    .projects-grid--home { grid-template-columns: repeat(4, 1fr); }
    .projects-grid--home .project-media:nth-child(n+7) { display: block; }
    .projects-reels .project-media {
        flex: 0 0 260px;
        width: 260px;
    }
}

/* Legacy project-item (inner pages fallback) */
.projects-masonry {
    columns: 3;
    column-gap: 24px;
}

.project-item {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.project-item__image { overflow: hidden; }

.project-item__image img {
    width: 100%;
    transition: transform 0.8s ease;
}

.project-item:hover .project-item__image img { transform: scale(1.05); }

.project-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--transition);
}

.project-item:hover .project-item__overlay { opacity: 1; }

.project-item__overlay h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.project-item__overlay span {
    color: var(--color-gold);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-card:hover img { transform: scale(1.05); }

.team-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
}

.team-card__info h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-card__info span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* Partners */
.partners-slider {
    overflow: hidden;
    padding: 40px 0;
}

.partners-track {
    display: flex;
    gap: 80px;
    animation: marquee 20s linear infinite;
    align-items: center;
}

.partner-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    transition: color var(--transition);
}
.partner-logo:hover { color: var(--color-gold); }

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--color-border);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.process-step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold);
    background: var(--color-white);
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.process-step:hover .process-step__number {
    background: var(--color-gold);
    color: var(--color-white);
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Testimonials */
.testimonial-swiper { padding-bottom: 60px !important; }

/* Testimonial base – home.css extends on homepage */

.swiper-pagination-bullet-active { background: var(--color-gold) !important; }

/* CTA Banner */
.cta-banner {
    background: var(--color-black);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
}

.cta-banner h2 {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    color: rgba(255,255,255,0.6);
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
}

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

/* Contact Section */
.contact-section {
    overflow: hidden;
}

.contact-section__head {
    margin-bottom: 40px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-layout--improved {
    gap: 32px;
}

.contact-cards {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

.contact-card--cta {
    background: var(--color-brown);
    border-color: transparent;
    color: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 28px 26px;
}

.contact-card__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.contact-card--cta h4 {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.contact-card--cta p { color: rgba(255,255,255,0.85); margin-bottom: 0; line-height: 1.65; }

.contact-card--cta .btn-outline {
    border-color: rgba(255,255,255,0.45);
    color: var(--color-white);
}

.contact-card--cta .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.contact-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.contact-card__actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
    justify-content: center;
}

.contact-card--social {
    align-items: center;
}

.contact-form-box {
    background: var(--color-white);
    padding: 36px 32px;
    border: 1px solid var(--color-border);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-black);
}

.contact-form-box__lead {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-form-box .form-control,
.contact-form-box select.form-control {
    border-radius: 0;
}

.contact-form-box .btn {
    border-radius: 0;
    margin-top: 8px;
}

.contact-map {
    margin-top: 20px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    height: 160px;
    background: var(--color-cream);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.2);
}

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

.contact-info__item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-info__text h4 {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.contact-info__text p,
.contact-info__text a {
    font-size: 1rem;
    color: var(--color-text);
}

.contact-info__text a:hover { color: var(--color-gold); }

/* Forms */
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
}

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
    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 1.5L6 6.5L11 1.5' stroke='%237a7a7a' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-top: 16px;
    display: none;
}
.form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
}
.form-message.error {
    display: block;
    background: #fce4ec;
    color: #c62828;
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 160px 0 90px;
    text-align: center;
    background: var(--color-cream);
    position: relative;
    margin-top: 0;
}

.page-hero--media {
    padding: 0;
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.35) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 40px 60px;
    width: 100%;
}

.page-hero--media h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin-bottom: 16px;
    color: var(--color-white);
}

.page-hero--media p {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

.page-hero--media .breadcrumb {
    color: rgba(255,255,255,0.7);
}
.page-hero--media .breadcrumb a:hover { color: #000000; }
.page-hero--media .breadcrumb span { color: #000000; }

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.page-hero p {
    font-family: var(--font-elegant);
    font-size: 1.35rem;
    font-style: italic;
}

/* Footer */
.site-footer {
    background: var(--color-black);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: block;
    margin-bottom: 12px;
    line-height: 0;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-tagline {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-social a:hover { color: var(--color-gold); }
.footer-social a svg { flex-shrink: 0; }

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
    font-size: 1rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-gold); }

.footer-contact li {
    font-size: 0.9rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { outline: none; }

.newsletter-form button {
    padding: 12px 16px;
    color: var(--color-gold);
    transition: color var(--transition);
}
.newsletter-form button:hover { color: var(--color-white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
}

.footer-credit { color: rgba(255,255,255,0.3); }

/* Reveal animations helper */
/* Animations – content visible by default; GSAP enhances */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1;
    transform: none;
}

.js-loaded .reveal-up { opacity: 1; }
.js-loaded .reveal-left { opacity: 1; }
.js-loaded .reveal-right { opacity: 1; }

/* Blog Cards */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-card__image {
    height: 220px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__body { padding: 28px; }

.blog-card__date {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.blog-card__body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card__body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* About banner */
.about-section__banner {
    height: 45vh;
    min-height: 280px;
    max-height: 480px;
    overflow: hidden;
    position: relative;
}

.about-section__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--color-cream) 100%);
}

.about-section__body { margin-top: 28px; }

/* Why section with bg */
.why-section {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
}

.why-section__bg {
    position: absolute;
    inset: 0;
}

.why-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
}

.why-section__content {
    position: relative;
    z-index: 2;
}

.section-title--light { color: var(--color-white) !important; }
.section-subtitle--light { color: rgba(255,255,255,0.7) !important; }
.section-subtitle--narrow { max-width: 700px; margin-left: auto; margin-right: auto; }

.why-item--glass {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
}

.why-item--glass h4 { color: var(--color-white); }
.why-item--glass p { color: rgba(255,255,255,0.75); }
.why-item--glass .why-item__icon { border-color: var(--color-gold); color: var(--color-gold); }

.stats-row--light { border-top-color: rgba(255,255,255,0.15); }
.stats-row--light .stat-item__label { color: rgba(255,255,255,0.6); }

/* Partners with bg */
.partners-section {
    position: relative;
    overflow: hidden;
    padding: 48px 0 36px;
}

.partners-section__bg {
    position: absolute;
    inset: 0;
}

.partners-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
}

.partners-section__content {
    position: relative;
    z-index: 2;
}

/* Testimonials with bg */
.testimonials-section {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
}

.testimonials-section__bg {
    position: absolute;
    inset: 0;
}

.testimonials-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(249,247,242,0.93);
}

.testimonials-section__content {
    position: relative;
    z-index: 2;
}

/* CTA with media */
.cta-banner--media {
    position: relative;
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    padding: 56px 32px;
    text-align: center;
}

.cta-banner__inner h2 { color: var(--color-white); }
.cta-banner__inner p { color: rgba(255,255,255,0.85); }

/* Contact form box */
.contact-form-box {
    background: var(--color-white);
    padding: 36px 32px;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.contact-form-box h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form-box__lead {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card__image img,
.product-card__image img,
.project-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-tagline { font-size: 13px; }
.footer-desc { font-size: 1.05rem; }

/* Process – zigzag layout */
.process-zigzag {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.process-zigzag__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 320px;
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 2px;
}

.process-zigzag__item:nth-child(even) .process-zigzag__content { order: 2; }
.process-zigzag__item:nth-child(even) .process-zigzag__media { order: 1; }

.process-zigzag__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px;
    background: var(--color-white);
}

.process-zigzag__item:nth-child(odd) .process-zigzag__content {
    background: var(--color-ivory);
}

.process-zigzag__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.process-zigzag__content h3 {
    font-size: 1.65rem;
    margin-bottom: 10px;
}

.process-zigzag__content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.process-zigzag__media {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.process-zigzag__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 260px;
    transition: transform 1.2s ease;
}

.process-zigzag__item:hover .process-zigzag__media img {
    transform: scale(1.04);
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .main-nav__links { display: none; }
    .main-nav__toggle { display: flex; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .process-timeline::before { display: none; }
}

@media (max-width: 992px) {
    .container { padding: 0 24px; }
    .site-header .container,
    .main-nav__bar.container { padding-left: 24px; padding-right: 24px; }
    .section { padding: 40px 0; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-box { position: static; }
    .intro-split { grid-template-columns: 1fr; gap: 40px; }
    .services-grid,
    .products-grid,
    .team-grid,
    .blogs-grid { grid-template-columns: repeat(2, 1fr); }
    .about-pillars { grid-template-columns: 1fr; }
    .projects-masonry { columns: 2; }
    .projects-grid--all { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
    .btn-brochure--header { display: none !important; }
    .main-nav__book-icon { display: none !important; }
    .main-nav__book-text { display: inline !important; }
}

@media (max-width: 768px) {
    :root {
        --topbar-height: 0px;
    }
    .top-bar { display: none; }
    .site-header .container,
    .main-nav__bar.container {
        padding-left: 0 !important;
        padding-right: 20px !important;
        max-width: 100%;
    }
    .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .product-card {
        flex: 0 0 82%;
        scroll-snap-align: center;
    }
    .page-hero--media { min-height: 38vh; }
    .page-hero__content { padding: 60px 24px 40px; }
    .services-grid,
    .products-grid,
    .team-grid,
    .blogs-grid,
    .process-timeline { grid-template-columns: 1fr; }
    .projects-masonry { columns: 1; }
    .projects-grid,
    .projects-grid--all { grid-template-columns: repeat(2, 1fr); }
    .hero__media--desktop { display: none; }
    .hero__media--mobile { display: block; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .cta-banner { padding: 48px 24px; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
