@font-face {
    font-family: 'Rotund Bold';
    src: url('../fonts/Rotund-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MTN Sans';
    src: url('../fonts/mtnbrightersans-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --- vars --- */
:root {
    /* Colours */
    --navy:        #0d1f3c;
    --navy-mid:    #152d50;
    --navy-light:  #1e3f6e;
    --gold:        #c9a84c;
    --gold-light:  #e0bf72;
    --gold-dim:    rgba(201,168,76,.18);
    --cream:       #f5f0e8;
    --cream-mid:   #ede7db;
    --white:       #ffffff;
    --charcoal:    #222233;
    --text:        #2a2a3e;
    --text-muted:  #000000;
    --border:      rgba(201,168,76,.22);

    /* Typography */
    --font-display: 'Rotund Bold', serif;
    --font-body:    'MTN Sans', sans-serif;

    /* Spacing */
    --space-xs:  .5rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  4rem;
    --space-xl:  7rem;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm:  0 2px 12px rgba(13,31,60,.08);
    --shadow-md:  0 8px 32px rgba(13,31,60,.14);
    --shadow-lg:  0 20px 60px rgba(13,31,60,.22);
    --shadow-gold: 0 8px 30px rgba(201,168,76,.28);

    /* Transitions */
    --ease:        cubic-bezier(.4,0,.2,1);
    --transition:  all .3s var(--ease);
    --transition-slow: all .6s var(--ease);

    /* Layout */
    --max-width:  1240px;
    --nav-h:      78px;
}

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

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

body {
    font-family: var(--font-body), serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}

/* images don't stretch */
img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    overflow: hidden;
}

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display), serif;
    line-height: 1.15;
    font-weight: 600;
}

/* layout */
.container {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body), serif;
    font-weight: 500;
    font-size: clamp(.875rem, 1.4vw, 1rem);
    letter-spacing: .04em;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--gold {
    background: var(--gold-light);
    color: var(--navy);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,.42);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* outline on dark backgrounds */
.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}

.btn--lg { padding: .95rem 2.4rem; font-size: clamp(1rem, 1.6vw, 1.1rem); }

/* section headings */
.section-label {
    display: inline-block;
    font-family: var(--font-body), serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--font-display), serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--navy);
    line-height: 1.1;
    font-weight: 600;
}

.section-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 640px;
    margin-top: .75rem;
    line-height: 1.75;
}

.section-head {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}
.section-head .section-sub { margin-inline: auto; }

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Gold rule decoration on headings */
.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--gold);
    margin-top: .75rem;
    border-radius: 2px;
}
.section-head .section-title::after { margin-inline: auto; }

/* scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
    transition-delay: var(--delay, 0s);
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: .15s;
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* navbar */
.navbar {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(245,240,232,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.navbar.is-scrolled {
    background: rgba(13,31,60,.97);
    border-bottom-color: rgba(201,168,76,.15);
    box-shadow: 0 4px 24px rgba(13,31,60,.25);
}

.nav-inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
/* prevent CLS */
.nav-logo-img {
    width: clamp(34px, 5vw, 44px);
    height: clamp(34px, 5vw, 44px);
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo-name {
    font-family: var(--font-display), serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .04em;
}
.nav-logo-sub {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}
.navbar.is-scrolled .nav-logo-name { color: var(--white); }

/* Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(.75rem, 2vw, 2rem);
}

.nav-link {
    font-size: clamp(.875rem, 1.3vw, .975rem);
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding-block: .3rem;
    transition: color .25s;
}
.navbar.is-scrolled .nav-link { color: rgba(255,255,255,.85); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width .3s var(--ease);
}
.nav-link:hover,
.nav-link.is-active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.nav-mobile-cta { display: none; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .3rem;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.navbar.is-scrolled .nav-hamburger span { background: var(--white); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h);
    background: var(--cream);
}

/* Diagonal bg shape */
.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
    clip-path: polygon(100% -22%, 100% 0, 100% 100%, -7% 103%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    padding-block: clamp(3rem, 8vw, 6rem);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    width: 100%;
}

/* Left */
.hero-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-headline {
    font-family: var(--font-display), serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold);
}

.hero-body {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}
.trust-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 500;
    color: var(--white);
    background: var(--navy);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 50px;
    padding: .35rem 1rem;
}
.trust-pill i { color: var(--gold); font-size: .85rem; }

/* Right */
.hero-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    width: 100%;
    min-height: 520px;
    height: auto;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245,240,232,.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .6rem 1.2rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    animation: float 5s ease-in-out infinite;
}
.hero-badge i { color: var(--gold); }
.hero-badge--tl {
    top: 2rem;
    left: -1.5rem;
    animation-delay: 0s;
    filter: drop-shadow(0 4px 16px rgba(13,31,60,.18));
}
.hero-badge--br {
    bottom: 3rem;
    right: -1.5rem;
    animation-delay: .8s;
    filter: drop-shadow(0 4px 16px rgba(13,31,60,.18));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    z-index: 1;
    transition: color .25s;
    animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint:hover { color: var(--gold); }
.hero-scroll-hint i { font-size: 1rem; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* services */
.services {
    padding-block: var(--space-xl);
    background: var(--white);
    position: relative;
}

/* Subtle grain texture */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.service-card {
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 260px;
    max-width: calc(33.333% - 1rem);
}

/* Gold top bar on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    background: var(--white);
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--navy);
}

.service-card-title {
    font-family: var(--font-display), serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    color: var(--navy);
    font-weight: 600;
}

.service-card-body {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.service-card-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .03em;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .5rem;
    transition: gap .25s;
}
.service-card-link:hover { gap: .7rem; }
.service-card-link i { font-size: .8rem; }

/* about strip */
.about-strip {
    padding-block: var(--space-xl);
    background: var(--cream);
    position: relative;
}

.about-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-strip-img-wrap {
    position: relative;
}

.about-strip-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Floating stat bubble */
.about-strip-stat-bubble {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-gold);
}
.bubble-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.bubble-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: .75;
}

/* Content */
.about-strip-quote {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-style: italic;
    color: var(--navy);
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin-block: 1.25rem;
    line-height: 1.55;
}
.about-strip-quote em { color: var(--gold); font-style: normal; }

.about-strip-body {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-mid);
}

.about-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.about-stat-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: .25rem;
}
@media (max-width: 480px){
.about-strip .section-title {
    text-align: center;
    font-size: 2.0rem;
 }
 
}
/* portfolio preview */
.portfolio-preview {
    padding-block: var(--space-xl);
    background: var(--navy);
    overflow: hidden;
}

.portfolio-preview .section-label { color: var(--gold); }
.portfolio-preview .section-title { color: var(--white); }
.portfolio-preview .section-title::after { background: var(--gold); }
.portfolio-preview .section-sub { color: rgb(255, 255, 255); }

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3.5rem);
}

.portfolio-tile {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.portfolio-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .7s var(--ease);
}
.portfolio-tile:hover .portfolio-tile-img { transform: scale(1.07); }

.portfolio-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,31,60,.92) 0%, rgba(13,31,60,.4) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    transition: background .4s;
}

.portfolio-tile-cat {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.portfolio-tile-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.portfolio-tile-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s, transform .35s;
}
.portfolio-tile:hover .portfolio-tile-link { opacity: 1; transform: translateY(0); }
.portfolio-preview .section-cta .btn--outline {
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.portfolio-preview .section-cta .btn--outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* cta band */
.cta-band {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    padding-block: clamp(4rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
}

/* Decorative gold circles */
.cta-band::before,
.cta-band::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.18), transparent 70%);
}
.cta-band::before { width: 500px; height: 500px; top: -150px; right: -80px; }
.cta-band::after  { width: 350px; height: 350px; bottom: -100px; left: -60px; }

.cta-band-inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.15;
    max-width: 600px;
}

.cta-band-sub {
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: rgba(255,255,255,.7);
    margin-top: .75rem;
    max-width: 560px;
    line-height: 1.7;
}

.cta-band-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* footer */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }

.footer-top { padding-block: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid rgba(201,168,76,.12); }

.footer-top-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.footer-logo-img {
    width: 42px;
    height: 42px;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.footer-logo > div { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}
.footer-logo-sub {
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.footer-blurb {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-socials { display: flex; gap: .75rem; }
.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    transition: var(--transition);
}
.footer-social:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.footer-list a {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    transition: color .25s, padding-left .25s;
}
.footer-list a:hover { color: var(--gold); padding-left: .35rem; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .9rem;
    color: rgba(255,255,255,.65);
}
.footer-contact-list i { color: var(--gold); font-size: .85rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.65); transition: color .25s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom { padding-block: 1.35rem; }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: .75rem; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color .25s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { opacity: .4; }

/* page hero - used on inner pages */
.page-hero {
    min-height: 44vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    padding-top: calc(var(--nav-h) + 3rem);
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* Geometric accent */
.page-hero::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.18), transparent 70%);
    top: -80px;
    right: 5%;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    width: 100%;
}

.page-hero-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
    opacity: 0;
    animation: fadeUp .7s .3s var(--ease) forwards;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.08;
    opacity: 0;
    animation: fadeUp .7s .45s var(--ease) forwards;
}
.page-hero-title em { color: var(--gold); font-style: italic; }

.page-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.72);
    margin-top: 1rem;
    max-width: 600px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp .7s .6s var(--ease) forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* about page */

/* Story section */
.story-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
/* FIX: use auto dimensions and object-fit contain to preserve image aspect ratio */
.story-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.story-quote {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    color: var(--navy);
    margin-block: 1.25rem;
    line-height: 1.55;
}
.story-text {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.story-text strong { color: var(--navy); }

/* Mission/Vision/Values */
.mv-section {
    padding-block: var(--space-xl);
    background: var(--cream);
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.mv-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--cream-mid);
    transition: var(--transition);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.mv-card-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-dim);
    border-radius: 50%;
    margin-inline: auto;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}
.mv-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: .75rem;
}
.mv-card-text { font-size: .95rem; color: var(--text-muted); line-height: 1.75; }

/* Stats section */
.stats-section {
    padding-block: var(--space-xl);
    background: var(--navy);
}
.stats-section .section-title { color: var(--white); }
.stats-section .section-title::after { background: var(--gold); margin-inline: auto; }
.stats-section .section-sub { color: var(--white); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.stat-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.stat-box:hover { background: rgba(201,168,76,.1); border-color: var(--gold); transform: translateY(-4px); }
.stat-box-icon { font-size: 1.75rem; color: var(--gold); margin-bottom: .75rem; }
.stat-box-num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: .4rem;
}
.stat-box-label { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase; }

/* Team section */
.team-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.team-card {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transition: transform .6s var(--ease);
}
.team-card:hover .team-card-img { transform: scale(1.06); }
.team-card-info {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 1.25rem 1.25rem 1.1rem;
    background: linear-gradient(to top, rgba(13,31,60,.9) 0%, transparent 100%);
}
.team-card-name {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}
.team-card-role {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: .06em;
    margin-top: .25rem;
}

/* Team panel */
.team-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,31,60,.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
}
.team-panel-overlay.is-open { opacity: 1; visibility: visible; }

.team-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(600px, 95vw);
    height: 100vh;
    background: #121c2e;
    z-index: 2001;
    overflow-y: auto;
    transition: right .5s var(--ease);
}
.team-panel.is-open { right: 0; }

.team-panel-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
}
.team-panel-close:hover { background: var(--gold); color: var(--navy); transform: rotate(90deg); }

.team-panel-body { padding: clamp(4rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2.5rem) 2.5rem; }
.team-panel-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.1;
}
.team-panel-role {
    font-size: .9rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .4rem;
    margin-bottom: 2rem;
}
.team-panel-bio {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,.75);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}
.team-panel-socials { display: flex; gap: .75rem; flex-wrap: wrap; }
.team-panel-social-btn {
    background: var(--gold);
    color: var(--navy);
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
}
.team-panel-social-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Videos section */
.videos-section {
    padding-block: var(--space-xl);
    background: var(--cream);
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-card:hover { transform: translateY(-6px); }
.video-wrapper {
    position: relative;
    background: #000;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 36px;           /* matches iphone-screen inner radius */
}
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 36px;
    background: #000;
}
.video-info { padding: 1.25rem 1.5rem; }
.video-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: .4rem;
}
.video-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ──────────────────────────────────────────────────────────────
   .iphone-frame — modern large-screen smartphone mockup
   (original CSS shape, not a copy of any trademarked device render)
   Taller chassis, flat brushed-titanium rails, slim even bezels,
   compact Dynamic-Island-style pill, left volume cluster + right
   side button. Subtle low-opacity grounding shadow only.
────────────────────────────────────────────────────────────────── */
.iphone-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    /* tall modern aspect: ~19.5:9 */
    aspect-ratio: 9 / 19.5;
    /* brushed titanium-style chassis (cool silver/grey) */
    background:
        linear-gradient(90deg,
            #3d4046 0%,
            #5a5e66 12%,
            #8a8f96 40%,
            #b6bac1 50%,
            #8a8f96 60%,
            #5a5e66 88%,
            #3d4046 100%);
    border-radius: 38px;                  /* squarer than before, still iPhone-like */
    /* one soft, low-opacity grounding shadow only */
    box-shadow: 0 10px 30px rgba(13, 31, 60, .14);
    padding: 6px;                          /* slim, even bezels on all 4 sides */
}

/* Right-edge side button (existing .iphone-side-btn element) */
.iphone-side-btn {
    position: absolute;
    right: -2px;
    top: 30%;
    width: 3px;
    height: 70px;
    background: linear-gradient(to bottom, #6a6e76, #4a4e56, #6a6e76);
    border-radius: 0 2px 2px 0;
}

/* Left-edge cluster: action button + volume up + volume down.
   Added as pseudo-elements so existing HTML doesn't need to change. */
.iphone-frame::before,
.iphone-frame::after {
    content: '';
    position: absolute;
    left: -2px;
    width: 3px;
    background: linear-gradient(to bottom, #6a6e76, #4a4e56, #6a6e76);
    border-radius: 2px 0 0 2px;
    pointer-events: none;
}
/* small action / silent toggle near top */
.iphone-frame::before {
    top: 18%;
    height: 28px;
}
/* longer volume rocker below it */
.iphone-frame::after {
    top: 27%;
    height: 110px;
}

/* Compact Dynamic Island — narrower pill, closer to the top */
.iphone-dynamic-island {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 26px;
    background: #0b0b0c;
    border-radius: 18px;
    z-index: 10;
}

/* Screen area — where video lives */
.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.iphone-screen .video-wrapper video {
    object-fit: contain;
    background: #000;
}

/* ── STEP 4: New gold play button ───────────────────────────── */
 

.video-card .video-info {
    width: 100%;
    max-width: 300px;
    padding: 1.25rem 0 0.5rem;
    background: transparent;
    text-align: center;
}
.video-card .video-title {
    font-size: 1.2rem;
    text-align: center;
}

.video-card .video-desc {
    font-size: .85rem;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .iphone-frame {
        max-width: 260px;
    }
     .video-card .video-info {
        max-width: 260px;
    }
}
 
/* Mobile — single column, full width up to 300px */
@media (max-width: 768px) {
    .iphone-frame {
        max-width: 100%;
        width: min(300px, 82vw);
    }
    .videos-grid .video-card:last-child {
        grid-column: auto;
        max-width: none;
    }
     .video-card {
        align-items: center;
    }
    .video-card .video-info {
        max-width: min(300px, 82vw);
        padding: .9rem 0 0.5rem;
    }
}

/* Why choose us */
.why-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.why-card {
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: var(--transition);
}
.why-card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--white); }
.why-icon {
    width: 52px; height: 52px;
    background: var(--gold-dim);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--navy); }
.why-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: .6rem;
}
.why-text { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* services page */
.overview-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.overview-stat {
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.overview-stat:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.overview-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: .35rem;
}
.overview-stat-label { font-size: .8rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

/* Service detail rows */
.service-detail-row {
    padding-block: var(--space-xl);
    background: var(--white);
}
.service-detail-row.alt { background: var(--cream); }
.service-row-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
.service-row-inner.reverse { direction: rtl; }
.service-row-inner.reverse > * { direction: ltr; }

.service-detail-img-wrap { position: relative; }
.service-detail-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform .6s var(--ease);
}
.service-detail-img:hover { transform: scale(1.02); }

.service-detail-icon-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 64px; height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.service-detail-badge {
    display: inline-block;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--border);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.service-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.service-detail-desc {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}
.service-features-list { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .9rem; }
.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem 1rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.service-detail-row.alt .service-feature-item { background: var(--white); }
.service-feature-item:hover { background: var(--gold-dim); }
.service-feature-item i { color: var(--gold); font-size: 1.1rem; margin-top: .15rem; flex-shrink: 0; }
.service-feature-item strong { font-size: 1rem; color: var(--navy); display: block; margin-bottom: .2rem; }
.service-feature-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.service-detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Process */
.process-section {
    padding-block: var(--space-xl);
    background: var(--navy);
}
.process-section .section-title { color: var(--white); }
.process-section .section-title::after { background: var(--gold); margin-inline: auto; }
.process-section .section-sub { color: rgba(255,255,255,.6); margin-inline: auto; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    position: relative;
}
/* Connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5% + .75rem);
    right: calc(12.5% + .75rem);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.process-step {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.process-step:hover { background: rgba(201,168,76,.1); border-color: var(--gold); transform: translateY(-4px); }
.process-step-num {
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 auto 1.25rem;
}
.process-step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: .6rem;
}
.process-step-desc { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* pricing page */
.pricing-service-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
.pricing-service-section.alt { background: var(--cream); }

.pricing-service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.pricing-service-icon {
    width: 72px; height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    color: var(--navy);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}
.pricing-service-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.15;
}
.pricing-service-subtitle { font-size: .95rem; color: var(--text-muted); margin-top: .3rem; }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--cream-mid);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.pricing-service-section.alt .pricing-card { background: var(--white); }
.pricing-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pricing-card.is-featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
    transform: scale(1.025);
}
.pricing-card.is-featured:hover { transform: scale(1.025) translateY(-6px); }

.pricing-tier-badge {
    display: inline-block;
    padding: .3rem .9rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    background: var(--cream-mid);
    color: var(--navy);
}
.pricing-card.is-featured .pricing-tier-badge { background: var(--gold); color: var(--navy); }

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: .25rem;
    margin-bottom: .5rem;
}
.pricing-currency { font-size: 1rem; color: var(--text-muted); margin-bottom: .3rem; }
.pricing-price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.pricing-period { font-size: .85rem; color: var(--text-muted); }
.pricing-tagline { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.55; }

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.75rem;
    flex: 1;
}
.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .9rem;
    color: var(--text);
    line-height: 1.5;
}
.pricing-features-list li i { font-size: .85rem; margin-top: .2rem; flex-shrink: 0; }
.pricing-features-list li .fa-check { color: var(--gold); }
.pricing-features-list li .fa-times { color: var(--cream-mid); }
.pricing-features-list li:has(.fa-times) { color: var(--text-muted); }

.pricing-cta { display: block; text-align: center; }

.pricing-note {
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding: 1.25rem 1.5rem;
    background: var(--gold-dim);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pricing-note h4 { font-size: .9rem; color: var(--navy); font-family: var(--font-body); font-weight: 600; margin-bottom: .5rem; }
.pricing-note ul { display: flex; flex-direction: column; gap: .3rem; }
.pricing-note li { font-size: .875rem; color: var(--text-muted); list-style: disc inside; }

/* portfolio page */
.trusted-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}
.brand-item {
    padding: .75rem;
    transition: var(--transition);
}
.brand-item:hover { transform: translateY(-4px); }
.brand-img { max-width: 120px; width: 100%; height: auto; object-fit: contain; }

.portfolio-full-section {
    padding-block: var(--space-xl);
    background: var(--cream);
}
.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.portfolio-full-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.portfolio-full-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 3px solid var(--gold);
    border-radius: calc(var(--radius-md) + 4px);
    opacity: 0;
    transition: opacity .3s;
}
.portfolio-full-card:hover::after { opacity: 1; }
.portfolio-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portfolio-full-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform .7s var(--ease);
}
.portfolio-full-card:hover .portfolio-full-card-img { transform: scale(1.06); }
.portfolio-full-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,31,60,.9) 0%, rgba(13,31,60,.3) 65%, transparent 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.portfolio-full-card-cat {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}
.portfolio-full-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--white);
    line-height: 1.2;
}
.portfolio-full-card-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    margin-top: .35rem;
    line-height: 1.55;
}

/* contact page */
.quick-contact-section {
    padding-block: var(--space-lg);
    background: var(--white);
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
}
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.qc-card {
    background: var(--white);
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.qc-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.qc-icon {
    width: 56px; height: 56px;
    background: var(--gold-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold);
    margin: 0 auto 1rem;
    transition: var(--transition);
}
.qc-card:hover .qc-icon { background: var(--gold); color: var(--navy); }
.qc-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: .35rem; }
.qc-sub { font-size: .82rem; color: var(--text-muted); margin-bottom: .65rem; }
.qc-link { font-size: .9rem; font-weight: 600; color: var(--gold); transition: color .25s; }
.qc-link:hover { color: var(--navy); }

.contact-form-section {
    padding-block: var(--space-xl);
    background: var(--cream);
}
.contact-form-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-sm);
}
.form-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
    margin-bottom: .5rem;
}
.form-card-sub { font-size: .95rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .04em;
}
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--cream-mid);
    border-radius: var(--radius-sm);
    padding: .8rem 1rem;
    transition: border-color .25s, box-shadow .25s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-row { display: flex; align-items: center; gap: .65rem; cursor: pointer; font-size: .875rem; color: var(--text-muted); }
.checkbox-row input[type="checkbox"] { accent-color: var(--gold); width: 17px; height: 17px; cursor: pointer; }

.form-submit {
    width: 100%;
    padding: .95rem;
    font-size: 1rem;
    justify-content: center;
}
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-msg {
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    display: none;
    margin-top: .5rem;
}
.form-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-msg.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}
.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: .85rem;
    border-bottom: 2px solid var(--gold);
}
.info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item-icon {
    width: 42px; height: 42px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.info-item h4 { font-size: .9rem; color: var(--navy); font-family: var(--font-body); margin-bottom: .2rem; }
.info-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

.info-divider { height: 1px; background: var(--cream-mid); margin-block: 1.5rem; }
.hours-title { font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.hours-list { display: flex; flex-direction: column; gap: .5rem; }
.hours-item { display: flex; justify-content: space-between; font-size: .875rem; color: var(--text-muted); padding-bottom: .4rem; border-bottom: 1px solid var(--cream); }
.hours-item:last-child { border-bottom: none; }

/* FAQ */
.faq-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 900px; margin-inline: auto; margin-top: 3rem; }
.faq-item {
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item.is-open { border-color: var(--border); }
.faq-q {
    width: 100%;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-body);
    font-size: clamp(.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    transition: color .25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q i { color: var(--gold); font-size: .85rem; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
    padding-inline: 1.5rem;
}
.faq-item.is-open .faq-a { max-height: 400px; padding-bottom: 1.5rem; }
.faq-a p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; }

/* Map section */
.map-section {
    padding-block: var(--space-xl);
    background: var(--cream);
    scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.map-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-embed iframe { display: block; }
.map-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
}
.map-info-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.map-address {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .75rem;
}
.map-address i { color: var(--gold); }
.map-info-text { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }

/* legal pages */
.legal-page {
    padding-block: var(--space-xl);
    background: var(--white);
}
.legal-content {
    max-width: 800px;
    margin-inline: auto;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: .75rem;
}
.legal-content p, .legal-content li {
    font-size: .975rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: .75rem;
}
.legal-content ul { list-style: disc; padding-left: 1.5rem; }

/* tablet */
@media (max-width: 1024px) {
    :root { --space-xl: 5rem; --space-lg: 3rem; }

    .hero-bg-shape { width: 48%; }

    /* Services flex: 2 cards per row on tablet */
    .service-card {
        flex: 1 1 calc(50% - .75rem);
        max-width: calc(50% - .75rem);
    }

    .about-strip-inner { gap: 3rem; }

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

    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band-actions { justify-content: center; }

    /* brand col spans full on tablet */
    .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-col--brand { grid-column: 1 / -1; }
    .footer-blurb { max-width: none; }

    .mv-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid .mv-card:last-child { grid-column: 1 / -1; max-width: 420px; margin-inline: auto; }

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

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

    .videos-grid { grid-template-columns: 1fr 1fr; }
    .videos-grid .video-card:last-child { grid-column: 1 / -1; max-width: 480px; margin-inline: auto; }

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

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

    .service-row-inner { gap: 3rem; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }

    .brands-grid { grid-template-columns: repeat(4, 1fr); }

    .quick-contact-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form-inner { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }

    .map-inner { grid-template-columns: 1fr; }

    .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }
    .pricing-card.is-featured { transform: scale(1); }
    .pricing-card.is-featured:hover { transform: translateY(-6px); }

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

/* mobile */
@media (max-width: 768px) {
    :root { --nav-h: 68px; --space-xl: 4rem; }

    /* Navbar mobile */
    .nav-cta-desktop { display: none; }
    .nav-hamburger { display: flex; }
    .nav-mobile-cta { display: block; }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        inset-inline: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0 2rem;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform .4s var(--ease), opacity .4s var(--ease);
        z-index: 999;
        pointer-events: none;
    }
    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.07); }
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: rgba(255,255,255,.85);
        font-size: 1.05rem;
    }
    .nav-link::after { display: none; }
    .nav-link:hover, .nav-link.is-active { color: var(--gold); background: rgba(201,168,76,.08); }
    .nav-mobile-cta { border-bottom: none !important; }
    .nav-mobile-cta .btn {
        display: block;
        margin: 1rem 2rem 0;
        text-align: center;
        justify-content: center;
    }

    /* Hero mobile */
    .hero-bg-shape { display: none; }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-block: 3rem 2rem;
    }
    .hero-left { order: 2; }
    .hero-right { order: 1; }
    .hero-body { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-badge--tl { top: .5rem; left: .5rem; }
    .hero-badge--br { bottom: .5rem; right: .5rem; }
    .hero-img { min-height: 260px; }
    .hero-scroll-hint { display: none; }

    /* Services: single column on mobile */
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-strip-inner { grid-template-columns: 1fr; }
    /* stop overflow on mobile */
    .about-strip-stat-bubble { bottom: -1rem; right: 1rem; }
    .portfolio-preview-grid { grid-template-columns: 1fr; }

    .footer-top-inner { grid-template-columns: 1fr; }
    .footer-col--brand { grid-column: auto; }
    .footer-blurb { max-width: none; }

    /* Page hero — consistent spacing across all pages on mobile.
       About's 3-line title naturally fills height; Pricing & Services
       only have 2-line titles so we lock a taller min-height and
       more generous padding so all heroes feel visually equal. */
    .page-hero {
        min-height: 0;
        padding-top: calc(var(--nav-h) + 2.5rem);
        padding-bottom: clamp(3.5rem, 10vw, 5rem);
    }

    .story-inner { grid-template-columns: 1fr; }
    .story-inner .story-img-wrap { order: -1; }

    .mv-grid { grid-template-columns: 1fr; }
    .mv-grid .mv-card:last-child { grid-column: auto; max-width: none; }

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

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

    .videos-grid { grid-template-columns: 1fr; }
    .videos-grid .video-card:last-child { grid-column: auto; max-width: none; }

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

    .overview-stats { grid-template-columns: 1fr 1fr; }

    .service-row-inner { grid-template-columns: 1fr; }
    .service-row-inner.reverse { direction: ltr; }

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

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

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

    .map-inner { grid-template-columns: 1fr; }

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

/* small mobile */
@media (max-width: 480px) {
    :root { --space-xl: 3.5rem; }

    .hero-headline { font-size: clamp(2.4rem, 12vw, 3.5rem); }
    .section-title  { font-size: clamp(1.9rem, 9vw, 2.6rem); }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

    .cta-band-actions { flex-direction: column; align-items: stretch; }
    .cta-band-actions .btn { justify-content: center; }

    .stats-grid { grid-template-columns: 1fr; }
    .overview-stats { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: row; justify-content: space-between; gap: 1rem; }
    .about-strip-content .btn { display: block; text-align: center; }

    .portfolio-tile-link { opacity: 1; transform: none; }
}

/* portfolio grid + project detail pages */

/* ── Portfolio Hero ─────────────────────── */
.port-hero {
    padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
    background: var(--cream);
}
.port-hero-inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.port-hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.port-hero-label {
    font-size: .75rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.port-hero-count {
    font-size: .75rem; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
}
.port-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 600; color: var(--navy);
    line-height: 1.0; letter-spacing: -.02em;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.port-hero-title em { font-style: italic; color: var(--gold); }
.port-hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted); max-width: 520px; line-height: 1.7;
}
.port-hero-rule {
    max-width: var(--max-width);
    margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
}

/* ── Filter Bar ─────────────────────────── */
.port-filter-wrap {
    background: rgba(245,240,232,.96);
    padding-block: 1.5rem;
    border-bottom: 1px solid var(--cream-mid);
    position: sticky;
    top: var(--nav-h);
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
    margin-bottom: 0;
}
.filter-btn {
    font-family: var(--font-body);
    font-size: .78rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    border: 1.5px solid var(--cream-mid);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    /* FIX: prevent filter buttons from shrinking on small screens */
    flex-shrink: 0;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── Portfolio grid section wrapper (used by .port-masonry below) ── */
.port-grid-section {
    background: var(--white);
    padding-block: clamp(3rem, 6vw, 5rem);
}

/* NOTE: the legacy 3-column .port-grid / .port-card system was removed
   here — it was no longer referenced by any HTML. The active portfolio
   grid is .port-masonry / .port-item, defined further down in this file.
   The .port-clients / .brand-text-item / portfolio empty-state and
   responsive overrides previously bundled with this block are kept,
   below: */

/* ── Clients section ────────────────────── */
.port-clients {
    background: var(--cream);
    padding-block: clamp(3rem, 5vw, 4.5rem);
    border-top: 1px solid var(--cream-mid);
}
.port-clients-label {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.brands-text-grid {
    display: flex; flex-wrap: wrap;
    gap: .5rem 1.5rem;
    justify-content: center; align-items: center;
}
.brand-text-item {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600; color: var(--navy);
    opacity: .28; letter-spacing: .04em;
    transition: opacity .3s var(--ease), color .3s var(--ease);
    cursor: default;
    padding: .4rem .9rem;
    position: relative;
}
.brand-text-item::after {
    content: ''; position: absolute;
    bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 1.5px;
    background: var(--gold); border-radius: 2px;
    transition: width .3s var(--ease);
}
.brand-text-item:hover { opacity: 1; color: var(--gold); }
.brand-text-item:hover::after { width: 70%; }

/* ── Responsive overrides for the portfolio page ──────────── */
@media (max-width: 768px) {
    .port-hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    /* FIX: filter bar scrolls horizontally on mobile instead of wrapping awkwardly */
    .port-filter-wrap { position: static; }
    .filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: .25rem;
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none; 
    }
    .filter-bar::-webkit-scrollbar { display: none; }
    .port-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* project detail page */

/* ── Intro ──────────────────────────────── */
.proj-intro {
    padding-top: calc(var(--nav-h) + clamp(2.5rem, 5vw, 4rem));
    padding-bottom: clamp(3rem, 5vw, 4rem);
    background: var(--white);
}
.proj-intro-inner {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.proj-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    transition: color .25s, gap .25s;
}
.proj-back:hover { color: var(--gold); gap: .8rem; }

.proj-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.proj-agency {
    display: block;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}
.proj-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600; color: var(--navy);
    line-height: 1.0; letter-spacing: -.02em;
}
.proj-title em { font-style: italic; color: var(--gold); }
.proj-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--cream-mid);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -.5rem;
}

.proj-tags {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-bottom: 2.5rem;
}
.proj-tag {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-muted);
    border: 1.5px solid var(--cream-mid);
    padding: .3rem .85rem; border-radius: 50px;
}

.proj-lead {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    color: var(--navy);
    line-height: 1.55;
    font-weight: 400;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}


.proj-hero-img {
    width: 100%;
    background: var(--cream-mid);
}
.proj-hero-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Body copy sections  */
.proj-body {
    padding-block: clamp(3rem, 5vw, 4.5rem);
    background: var(--white);
}
.proj-body--alt { background: var(--cream); }
.proj-body-inner {
    max-width: 900px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.proj-body-text p {
    font-size: clamp(1rem, 1.7vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    max-width: 680px;
}
.proj-body-text p strong { color: var(--navy); }
.proj-body-text p:last-child { margin-bottom: 0; }

/* Stats row */
.proj-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-mid);
    flex-wrap: wrap;
}
.proj-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700; color: var(--gold);
    line-height: 1;
}
.proj-stat-label {
    display: block;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-muted);
    margin-top: .35rem;
}


.proj-fullbleed {
    width: 100%;
    background: var(--cream-mid);
}
.proj-fullbleed img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.proj-fullbleed--contained {
    aspect-ratio: auto;
    max-width: 900px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
    background: transparent;
}
.proj-fullbleed--contained img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius-md);
}

.proj-img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--cream-mid);
}
.proj-img-pair-item {
    overflow: hidden;
}
.proj-img-pair-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    display: block;
    transition: transform .7s var(--ease);
}
.proj-img-pair-item:hover img { transform: scale(1.03); }

/* ── Closing quote ──*/
.proj-close {
    padding-block: clamp(3rem, 5vw, 4.5rem);
    background: var(--navy);
}
.proj-close .proj-body-text p {
    color: var(--white);
}
.proj-close .proj-body-inner { max-width: 700px; }
.proj-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
}
.proj-close-text {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    max-width: 580px;
}

/* ── Project nav strip ──────────────────── */
.proj-nav-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    border-top: 1px solid var(--cream-mid);
}
.proj-nav-back,
.proj-nav-cta {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 5vw, 3rem);
    text-decoration: none;
    transition: background .25s;
}
.proj-nav-back { border-right: 1px solid var(--cream-mid); }
.proj-nav-cta  { text-align: right; align-items: flex-end; }
.proj-nav-back:hover,
.proj-nav-cta:hover  { background: var(--white); }
.proj-nav-label {
    font-size: .7rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-muted);
}
.proj-nav-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600; color: var(--navy);
    display: flex; align-items: center; gap: .5rem;
    transition: color .25s, gap .25s;
}
.proj-nav-back:hover .proj-nav-text,
.proj-nav-cta:hover  .proj-nav-text { color: var(--gold); gap: .85rem; }

/* ── Responsive: project pages ──────────── */
@media (max-width: 768px) {
    .proj-header { flex-direction: column; gap: 1rem; }
    .proj-number { display: none; }
    .proj-img-pair { grid-template-columns: 1fr; }
    .proj-stats { gap: 1.5rem; }
    .proj-nav-strip { grid-template-columns: 1fr; }
    .proj-nav-back { border-right: none; border-bottom: 1px solid var(--cream-mid); }
    .proj-nav-cta  { text-align: left; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE — Card Grid + Drawer
   ═══════════════════════════════════════════════════════════════ */
 
/* ── Section wrapper ────────────────────────────────────────── */
.svc-grid-section {
    padding-block: var(--space-xl);
    background: var(--white);
}
 
/* ── 3-column card grid ─────────────────────────────────────── */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
 
/* ── Individual service card ────────────────────────────────── */
.svc-card {
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
 
/* Gold top-bar on hover */
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
    background: var(--white);
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
 
/* Icon */
.svc-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}
.svc-card:hover .svc-card-icon {
    background: var(--gold);
    color: var(--navy);
}
 
/* Title */
.svc-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
}
 
/* 2-sentence description */
.svc-card-desc {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
}
 
/* Gold outline "Learn More" button */
.svc-card-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: .6rem 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: .25rem;
    letter-spacing: .03em;
}
.svc-card-btn:hover {
    background: var(--gold);
    color: var(--navy);
    gap: .8rem;
}
.svc-card-btn i { font-size: .8rem; transition: transform .25s; }
.svc-card-btn:hover i { transform: translateX(3px); }
 
 
/* ── Drawer overlay ─────────────────────────────────────────── */
.svc-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,31,60,.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
}
.svc-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
 
/* ── Drawer panel ───────────────────────────────────────────── */
.svc-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(560px, 96vw);
    height: 100vh;
    background: #0d1b30;
    z-index: 2001;
    overflow-y: auto;
    transition: right .45s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}
.svc-drawer.is-open { right: 0; }
 
/* Close button — same style as .team-panel-close */
.svc-drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    flex-shrink: 0;
}
.svc-drawer-close:hover {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(90deg);
}
 
/* Drawer body */
.svc-drawer-body {
    padding: clamp(4.5rem, 7vw, 5.5rem) clamp(1.75rem, 4vw, 2.75rem) 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
 
/* Large icon */
.svc-drawer-icon {
    width: 72px;
    height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}
 
/* Badge */
.svc-drawer-badge {
    display: inline-block;
    background: rgba(201,168,76,.15);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,.3);
    padding: .3rem 1rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    align-self: flex-start;
}
 
/* Title */
.svc-drawer-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.1;
}
 
/* Description */
.svc-drawer-desc {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,.72);
    line-height: 1.85;
}
 
/* Feature list */
.svc-drawer-features {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-block: .5rem;
}
.svc-drawer-features li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .95rem;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
}
.svc-drawer-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23c9a84c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    margin-top: .15rem;
}
 
/* Action buttons */
.svc-drawer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}
.svc-drawer-actions .btn--ghost {
    border-color: rgba(255,255,255,.4);
}
 
 
/* ── Services grid responsive ───────────────────────────────── */
@media (max-width: 1024px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO PAGE — Dark hero + masonry grid
   ═══════════════════════════════════════════════════════════════ */
 
/* ── Dark hero variant ──────────────────────────────────────── */
.port-hero--dark {
    background: linear-gradient(
        160deg,
        var(--navy) 0%,
        var(--navy-light) 60%,
        rgba(13,31,60,.96) 85%,
        rgba(201,168,76,.08) 100%
    );
    position: relative;
    overflow: hidden;
}
 
/* Keep existing text colours correct on dark bg */
.port-hero--dark .port-hero-label { color: var(--gold); }
.port-hero--dark .port-hero-count { color: rgba(255,255,255,.5); }
.port-hero--dark .port-hero-title { color: var(--white); }
.port-hero--dark .port-hero-title em { color: var(--gold); }
.port-hero--dark .port-hero-sub { color: rgba(255,255,255,.65); }
.port-hero--dark .port-hero-rule {
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: .5;
}
 
/* Radial gold glow behind headline */
.port-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
 
/* Ensure hero inner sits above doodles/glow */
.port-hero--dark .port-hero-inner { position: relative; z-index: 1; }
.port-hero--dark .port-hero-rule  { position: relative; z-index: 1; }
 
/* ── SVG doodles ────────────────────────────────────────────── */
.port-hero-doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    color: rgba(255,255,255,1); /* individual doodles set opacity via class */
}
 
.doodle {
    position: absolute;
    opacity: .13;
}
 
/* Place each doodle at a distinct position */
.doodle--1 { width: 140px; top: 8%;  right: 6%;  opacity: .12; }
.doodle--2 { width: 80px;  top: 18%; left: 3%;   opacity: .14; }
.doodle--3 { width: 70px;  bottom: 22%; right: 18%; opacity: .15; }
.doodle--4 { width: 56px;  top: 55%; left: 8%;   opacity: .16; }
.doodle--5 { width: 110px; bottom: 12%; left: 22%;  opacity: .13; }
.doodle--6 { width: 90px;  top: 10%; left: 42%;  opacity: .10; }
.doodle--7 { width: 100px; bottom: 30%; right: 5%;  opacity: .18; }
.doodle--8 { width: 60px;  top: 40%; right: 28%; opacity: .12; }
 
 
/* ── Masonry grid ───────────────────────────────────────────── */
.port-masonry {
    columns: 3;
    column-gap: 1.5rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
 
/* ── Individual masonry item ────────────────────────────────── */
.port-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
 
.port-item img {
    width: 100%;
    height: auto;         /* natural aspect ratio — no cropping */
    display: block;
    border-radius: 12px;
    transition: transform .7s var(--ease);
}
.port-item:hover img { transform: scale(1.04); }
 
/* Hover overlay */
.port-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13,31,60,.92) 0%,
        rgba(13,31,60,.45) 50%,
        transparent 100%
    );
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.25rem 1.35rem;
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.port-item:hover .port-item-overlay { opacity: 1; }
 
/* Always-visible overlay for coming-soon items */
.port-item--soon .port-item-overlay {
    opacity: 1;
    background: linear-gradient(
        to top,
        rgba(13,31,60,.75) 0%,
        transparent 60%
    );
}
.port-item--soon { cursor: default; opacity: .75; }
 
.port-item-cat {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem;
    display: block;
}
.port-item-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    display: block;
}
.port-item-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--navy);
    background: var(--gold);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-top: .6rem;
    transition: opacity .3s .05s, transform .3s .05s, background .2s;
    width: fit-content;
    opacity: 0;
    transform: translateY(6px);
}
.port-item-arrow i { font-size: .72rem; }
.port-item:hover .port-item-arrow {
    opacity: 1;
    transform: translateY(0);
    background: var(--gold-light);
}
.port-item--soon .port-item-arrow {
    display: none;
}
 
/* Hidden state for filter — display:none so masonry reflows */
.port-item.is-hidden { display: none; }
 
/* Empty state message */
.port-masonry-empty {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}
.port-masonry-empty i { font-size: 1.4rem; color: var(--cream-mid); }
 
 
/* ── Masonry responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .port-masonry { columns: 2; }
}
@media (max-width: 768px) {
    .port-masonry { columns: 2; column-gap: .75rem; }
    .port-item { margin-bottom: .75rem; }
}

/* ── Touch devices — permanent overlay + tap feedback ───────── */
@media (hover: none), (max-width: 768px) {
    .port-item:not(.port-item--soon) .port-item-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(13,31,60,.88) 0%,
            rgba(13,31,60,.45) 45%,
            transparent 100%
        );
    }
    .port-item:not(.port-item--soon) .port-item-arrow {
        opacity: 1;
        transform: translateY(0);
    }
    .port-item:not(.port-item--soon):active {
        transform: scale(.97);
        transition: transform .15s var(--ease);
    }

    /* Smaller text + pill for 2-column mobile cards */
    .port-item-cat {
        font-size: .55rem;
        letter-spacing: .08em;
        margin-bottom: .2rem;
    }
    .port-item-title {
        font-size: .78rem;
        line-height: 1.2;
    }
    .port-item-arrow {
        font-size: .6rem;
        padding: .25rem .6rem;
        gap: .3rem;
        margin-top: .35rem;
    }
    .port-item-overlay {
        padding: .75rem .75rem .85rem;
    }
}

/* ── 1. NAVY INTRO — dark background variant ────────────────── */
 
.proj-intro--dark {
    background: var(--navy);
    padding-top: calc(var(--nav-h) + clamp(2.5rem, 5vw, 4rem));
    padding-bottom: clamp(3rem, 5vw, 4rem);
}
 
/* Back arrow — white on dark */
.proj-back--light {
    color: rgba(255,255,255,.55);
}
.proj-back--light:hover {
    color: var(--gold);
    gap: .8rem;
}
 
/* Project number — subtle on dark */
.proj-intro--dark .proj-number {
    color: rgba(255,255,255,.1);
}
 
/* Agency label — gold on dark */
.proj-intro--dark .proj-agency {
    color: var(--gold);
}
 
/* Title — white on dark */
.proj-intro--dark .proj-title {
    color: var(--white);
}
.proj-intro--dark .proj-title em {
    color: var(--gold);
}
 
/* Tags — semi-transparent white border on dark */
.proj-tags--light .proj-tag {
    color: rgba(255,255,255,.75);
    border-color: rgba(255,255,255,.22);
}
 
/* Lead paragraph — softer white on dark */
.proj-lead--light {
    color: rgba(255,255,255,.75);
    border-left-color: var(--gold);
}
 
 
/* ── 2. WRITE-UP SECTION — light bg, centered narrow column ─── */
 
.proj-writeup {
    padding-block: clamp(4rem, 8vw, 6rem);
    background: var(--white);
}
 
.proj-writeup-inner {
    max-width: 820px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}
 
.proj-writeup-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.15;
}
 
/* Gold rule under heading */
.proj-writeup-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-top: .75rem;
    border-radius: 2px;
}
 
.proj-writeup-inner p {
    font-size: clamp(1rem, 1.7vw, 1.08rem);
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.proj-writeup-inner p:last-child { margin-bottom: 0; }
.proj-writeup-inner p strong { color: var(--navy); font-weight: 600; }
.proj-writeup-inner p em { color: var(--gold); font-style: italic; }
 
 
/* ── 3. WORK IMAGES GALLERY — equal-size grid ───────────────── */
 
.proj-gallery {
    padding-block: clamp(3rem, 6vw, 5rem);
    background: var(--cream);
}
 
.proj-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0;
}
 
.proj-gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    background: var(--cream-mid);
    cursor: pointer;
    position: relative;
}
 
.proj-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .7s var(--ease);
}
.proj-gallery-item:hover img {
    transform: scale(1.05);
}

/* Zoom hint on hover */
.proj-gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: rgba(13, 31, 60, 0);
    transition: background .3s var(--ease), opacity .3s var(--ease);
    opacity: 0;
    border-radius: 10px;
}
.proj-gallery-item:hover::after {
    background: rgba(13, 31, 60, .45);
    opacity: 1;
}

/* ── Lightbox ──────────────────────────────────────────────────── */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5, 10, 20, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.lb-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.lb-inner {
    position: relative;
    max-width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.lb-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-img {
    max-width: min(88vw, 1060px);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.lb-img.lb-transitioning {
    opacity: 0;
    transform: scale(.96);
}
.lb-caption {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    letter-spacing: .04em;
    text-align: center;
    min-height: 1.2em;
}
.lb-counter {
    color: rgba(255,255,255,.35);
    font-size: .75rem;
    letter-spacing: .1em;
    text-align: center;
}
/* Nav arrows */
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 1;
    backdrop-filter: blur(4px);
}
.lb-arrow:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.08);
}
.lb-arrow--prev { left: -64px; }
.lb-arrow--next { right: -64px; }
/* Close button */
.lb-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}
.lb-close:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
/* Dot indicators */
.lb-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
}
.lb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background .2s, transform .2s;
}
.lb-dot.is-active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lb-arrow--prev { left: -4px; }
    .lb-arrow--next { right: -4px; }
    .lb-arrow {
        width: 38px;
        height: 38px;
        font-size: .9rem;
        background: rgba(0,0,0,.5);
    }
    .lb-img {
        max-width: 92vw;
        max-height: 70vh;
    }
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .proj-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
/* Mobile: 1 column */
@media (max-width: 768px) {
    .proj-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }
}
 
 
/* ── 4. LIVE SITE CTA BAND — Royal Antique only ─────────────── */
 
.proj-live-cta {
    background: var(--navy);
    padding-block: clamp(4rem, 8vw, 6rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
 
/* Subtle radial gold glow */
.proj-live-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 70%);
    pointer-events: none;
}
 
.proj-live-cta .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
 
.proj-live-cta-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}
 
.proj-live-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 600;
    line-height: 1.15;
    max-width: 600px;
}
 
.proj-live-cta-sub {
    font-size: clamp(.95rem, 1.6vw, 1.05rem);
    color: rgba(255,255,255,.6);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: .5rem;
}