@import url('https://fonts.googleapis.com/css2?family=Anton&family=Instrument+Serif:ital@0;1&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #0B1931;
    --navy2: #142040;
    --navy3: #1C2E58;
    --gold: #C9911F;
    --gold2: #E4AC38;
    --gold3: #F5C84A;
    --cream: #F9F5EC;
    --cream2: #EFE8D6;
    --white: #FFFFFF;
    --ink: #0B1931;
    --muted: #6B7694;
    --g-gold: linear-gradient(135deg, #C9911F, #F5C84A);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* ── REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity .8s ease, transform .8s ease;
}

.rvl {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity .8s ease, transform .8s ease;
}

.rvr {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity .8s ease, transform .8s ease;
}

.rvu {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .8s ease, transform .8s ease;
}

.rv.in,
.rvl.in,
.rvr.in,
.rvu.in {
    opacity: 1;
    transform: none;
}

/* ══════════════════ NAV ══════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: all .4s;
}

nav.stuck {
    background: rgba(11, 25, 49, .96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 145, 31, .2);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .25);
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(201, 145, 31, .35));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .25s;
}

.nav-links a:hover {
    color: var(--gold3);
}

.nav-pill {
    background: var(--g-gold) !important;
    color: var(--navy) !important;
    padding: 9px 22px !important;
    font-weight: 800 !important;
}

.nav-pill:hover {
    opacity: .88;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all .3s;
}

.mob-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(11, 25, 49, .99);
    z-index: 999;
    flex-direction: column;
    padding: 40px 5%;
    gap: 4px;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: color .25s, padding-left .25s;
}

.mob-nav a:hover {
    color: var(--gold3);
    padding-left: 12px;
}

/* ══════════════════ HERO ══════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

/* Diagonal cream slice */
#hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--cream);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

.hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&q=85') center/cover;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, rgba(11, 25, 49, .5) 50%, rgba(11, 25, 49, .1) 100%);
}

/* Huge ghost text */
.hero-ghost {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-52%);
    font-family: 'Anton', sans-serif;
    font-size: clamp(120px, 18vw, 260px);
    letter-spacing: -4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .03);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    user-select: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 140px 5% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 680px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 32px;
    animation: fromLeft .9s .2s both;
}

.hero-kicker::before {
    content: '';
    width: 36px;
    height: 2px;
    background: var(--g-gold);
    flex-shrink: 0;
}

.hero-h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(60px, 9.5vw, 130px);
    line-height: .92;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 32px;
    animation: fromLeft .9s .35s both;
}

.hero-h1 .gold-word {
    display: block;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-h1 .italic-word {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: .8em;
    letter-spacing: 0;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6);
    max-width: 440px;
    margin-bottom: 48px;
    animation: fromLeft .9s .5s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fromLeft .9s .65s both;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px 38px;
    background: var(--g-gold);
    color: var(--navy);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all .35s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 145, 31, .4);
}

.btn-line {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    transition: color .3s, border-color .3s;
}

.btn-line:hover {
    color: var(--gold3);
    border-color: var(--gold3);
}

/* hero logo + stats strip */
.hero-strip {
    position: relative;
    z-index: 2;
    padding: 32px 5% 150px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeUp .8s 1s both;
}

.hero-strip-logo img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 0 16px rgba(201, 145, 31, .45));
}

.strip-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .15);
}

.strip-stat {
    text-align: left;
}

.strip-stat-n {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.strip-stat-l {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}

/* hero scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 140px;
    right: 5%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-cue-track {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, .15);
    position: relative;
    overflow: hidden;
}

.scroll-cue-track::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold2));
    animation: cueSlide 2.2s ease infinite;
}

.scroll-cue-text {
    writing-mode: vertical-rl;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

/* ══════════════════ MANIFESTO BAND ══════════════════ */
#manifesto {
    background: var(--navy);
    overflow: hidden;
    padding: 0;
    border-top: 1px solid rgba(201, 145, 31, .15);
}

.manifesto-ticker {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 22px 0;
    animation: ticker 22s linear infinite;
}

.manifesto-ticker span {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .12);
    padding: 0 32px;
}

.manifesto-ticker span.gold {
    color: var(--gold);
}

/* ══════════════════ ABOUT ══════════════════ */
#about {
    background: var(--cream);
    padding: 130px 5%;
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1360px;
    margin: 0 auto;
}

.about-left {
    padding-right: 80px;
    border-right: 1px solid var(--cream2);
}

/* Big editorial number */
.about-big-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(100px, 14vw, 180px);
    line-height: 1;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -20px;
}

.about-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.about-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--g-gold);
}

.about-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    text-transform: uppercase;
    line-height: .96;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 36px;
}

.about-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 18px;
}

.about-body strong {
    color: var(--navy);
    font-weight: 700;
}

.about-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    margin-top: 28px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gold);
    transition: gap .3s, color .3s;
}

.about-cta-link:hover {
    gap: 16px;
    color: var(--gold);
}

/* Right col: photo + stat blocks stacked */
.about-right {
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter .5s;
}

.about-photo:hover {
    filter: grayscale(0%);
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2px;
    gap: 2px;
}

.about-stat {
    background: var(--navy);
    padding: 28px 20px;
    text-align: center;
    transition: background .3s;
}

.about-stat:hover {
    background: var(--navy3);
}

.about-stat-n {
    font-family: 'Anton', sans-serif;
    font-size: 44px;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.about-stat-l {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 5px;
}

/* ══════════════════ SERVICES ══════════════════ */
#services {
    background: var(--navy);
    padding: 130px 5%;
    position: relative;
    overflow: hidden;
}

/* Massive watermark */
#services::before {
    content: 'SERVICES';
    position: absolute;
    bottom: -60px;
    left: -2%;
    font-family: 'Anton', sans-serif;
    font-size: 280px;
    letter-spacing: -8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .025);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.svc-layout {
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.svc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.svc-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold2);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.svc-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--g-gold);
}

.svc-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(42px, 6vw, 80px);
    text-transform: uppercase;
    line-height: .94;
    letter-spacing: -1px;
    color: var(--white);
}

.svc-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: .85em;
    letter-spacing: 0;
}

.svc-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, .5);
    align-self: end;
}

/* Horizontal scrolling service cards on mobile, grid on desktop */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.svc-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background .4s;
}

.svc-card::before {
    content: attr(data-num);
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Anton', sans-serif;
    font-size: 120px;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none;
    transition: color .4s;
}

.svc-card:hover {
    background: rgba(201, 145, 31, .08);
    border-color: rgba(201, 145, 31, .25);
}

.svc-card:hover::before {
    color: rgba(201, 145, 31, .06);
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--g-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s;
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 20px;
}

.svc-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--white);
    margin-bottom: 14px;
    transition: color .4s;
}

.svc-card:hover h3 {
    color: var(--gold3);
}

.svc-card p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
}

.svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold2);
    opacity: 0;
    transform: translateX(-6px);
    transition: all .3s;
}

.svc-card:hover .svc-arrow {
    opacity: 1;
    transform: none;
}

/* ══════════════════ GALLERY ══════════════════ */
#gallery {
    background: var(--cream2);
    padding: 130px 5%;
}

.gal-layout {
    max-width: 1360px;
    margin: 0 auto;
}

.gal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
}

.gal-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.gal-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--g-gold);
}

.gal-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: .95;
    color: var(--navy);
}

.gal-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Asymmetric gallery */
.gal-mosaic {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 340px 220px;
    gap: 10px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gal-item:nth-child(1) {
    grid-row: span 2;
}

.gal-item:nth-child(4) {
    grid-column: span 2;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.gal-item:hover img {
    transform: scale(1.07);
}

.gal-item-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 25, 49, .9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.gal-item:hover .gal-item-ov {
    opacity: 1;
}

.gal-tag {
    display: inline-block;
    background: var(--g-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    padding: 5px 12px;
    margin-bottom: 8px;
}

.gal-cap {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: .5px;
}

.gal-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.5);
    opacity: 0;
    width: 54px;
    height: 54px;
    background: var(--g-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--navy);
    transition: all .35s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.gal-item:hover .gal-plus {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* lightbox */
.lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 25, 49, .97);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lb.on {
    display: flex;
}

.lb img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    animation: fadeIn .3s ease;
}

.lb-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold2);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* ══════════════════ NEWS ══════════════════ */
#news {
    background: var(--cream);
    padding: 130px 5%;
}

.news-layout {
    max-width: 1360px;
    margin: 0 auto;
}

.news-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 72px;
}

.news-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.news-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--g-gold);
}

.news-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: -0.5px;
    color: var(--navy);
}

.news-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
    align-self: end;
}

/* Featured + 2 small */
.news-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
}

.news-small-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.news-card {
    background: var(--white);
    overflow: hidden;
    transition: all .4s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11, 25, 49, .12);
}

.news-card.featured {
    display: flex;
    flex-direction: column;
}

.news-img {
    overflow: hidden;
}

.news-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s;
}

.news-card.featured .news-img {
    height: 300px;
}

.news-card.small .news-img {
    height: 160px;
}

.news-card:hover .news-img img {
    transform: scale(1.07);
}

.news-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-date::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold);
}

.news-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .3px;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 12px;
}

.news-card.featured h3 {
    font-size: 28px;
}

.news-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
}

.news-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--cream2);
    padding-bottom: 4px;
    transition: all .3s;
}

.news-read:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: 14px;
}

/* ══════════════════ TESTIMONIALS ══════════════════ */
#testi {
    background: var(--navy);
    padding: 130px 5%;
    position: relative;
    overflow: hidden;
}

#testi::before {
    content: '"';
    position: absolute;
    top: -60px;
    right: -20px;
    font-family: 'Instrument Serif', serif;
    font-size: 600px;
    font-style: italic;
    color: rgba(255, 255, 255, .025);
    line-height: 1;
    pointer-events: none;
}

.testi-layout {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testi-top {
    text-align: center;
    margin-bottom: 72px;
}

.testi-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold2);
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.testi-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--g-gold);
}

.testi-eyebrow::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--g-gold);
}

.testi-ttl {
    font-family: 'Anton', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: .95;
    color: var(--white);
}

.testi-ttl em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t-slider {
    overflow: hidden;
}

.t-track {
    display: flex;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.t-slide {
    min-width: 100%;
    padding: 0 2px;
}

.t-card {
    border: 1px solid rgba(201, 145, 31, .2);
    padding: 60px;
    position: relative;
}

.t-card::before {
    content: attr(data-num);
    position: absolute;
    top: 32px;
    right: 40px;
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    color: rgba(201, 145, 31, .1);
    line-height: 1;
}

.t-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
}

.t-stars span {
    color: var(--gold2);
    font-size: 18px;
}

.t-quote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 26px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 48px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.t-av {
    width: 56px;
    height: 56px;
    background: var(--g-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--navy);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.t-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .5px;
}

.t-role {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
    margin-top: 3px;
}

.t-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
}

.t-progress {
    display: flex;
    gap: 6px;
}

.t-pip {
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all .35s;
}

.t-pip.on {
    background: var(--gold2);
    width: 60px;
}

.t-nav {
    display: flex;
    gap: 8px;
}

.t-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 145, 31, .3);
    background: transparent;
    color: var(--gold2);
    font-size: 20px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.t-btn:hover {
    background: var(--g-gold);
    color: var(--navy);
    border-color: transparent;
}

/* ══════════════════ CONTACT ══════════════════ */
#contact {
    background: var(--cream);
    padding: 130px 5%;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: 'CONTACT';
    position: absolute;
    bottom: -40px;
    right: -2%;
    font-family: 'Anton', sans-serif;
    font-size: 220px;
    letter-spacing: -6px;
    color: rgba(11, 25, 49, .045);
    pointer-events: none;
    white-space: nowrap;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-l {
    padding-right: 80px;
    border-right: 1px solid var(--cream2);
}

.contact-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--g-gold);
}

.contact-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 36px;
}

.contact-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--g-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 380px;
}

.c-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--cream2);
}

.c-block:last-child {
    border-bottom: none;
}

.c-ico {
    width: 44px;
    height: 44px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.c-lbl {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.c-val {
    font-size: 14px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.7;
}

.c-val a {
    color: inherit;
    text-decoration: none;
    transition: color .25s;
}

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

/* form */
.contact-r {
    padding-left: 80px;
}

.form-hed {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--navy);
    margin-bottom: 36px;
}

.fl {
    margin-bottom: 24px;
}

.fl label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.fl input,
.fl textarea {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--cream2);
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    color: var(--navy);
    outline: none;
    transition: border-color .3s;
}

.fl input::placeholder,
.fl textarea::placeholder {
    color: rgba(11, 25, 49, .3);
}

.fl input:focus,
.fl textarea:focus {
    border-bottom-color: var(--gold);
}

.fl input.e,
.fl textarea.e {
    border-bottom-color: #DC2626;
}

.fl textarea {
    resize: none;
    min-height: 120px;
}

.fl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fl-err {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #DC2626;
    margin-top: 5px;
    display: none;
}

.fl-err.show {
    display: block;
}

.f-submit {
    margin-top: 8px;
    width: 100%;
    padding: 18px;
    background: var(--g-gold);
    color: var(--navy);
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .35s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.f-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 145, 31, .35);
}

.f-ok {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.f-ok.show {
    display: block;
    animation: fadeIn .4s ease;
}

.f-ok-mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--g-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.f-ok h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 10px;
}

.f-ok p {
    font-size: 15px;
    color: var(--muted);
}

/* ══════════════════ FOOTER ══════════════════ */
footer {
    background: var(--navy);
    padding: 90px 5% 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--g-gold);
}

.ft-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1360px;
    margin: 0 auto 72px;
}

.ft-logo img {
    height: 68px;
    width: auto;
    filter: drop-shadow(0 0 16px rgba(201, 145, 31, .35));
    margin-bottom: 20px;
    display: block;
}

.ft-about {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
    line-height: 1.85;
    max-width: 280px;
    margin-bottom: 32px;
}

.ft-socs {
    display: flex;
    gap: 8px;
}

.ft-soc {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 145, 31, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: all .3s;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.ft-soc:hover {
    background: var(--g-gold);
    color: var(--navy);
    border-color: transparent;
}

.ft-col-ttl {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 145, 31, .2);
}

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

.ft-col li {
    margin-bottom: 10px;
}

.ft-col a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .25s;
}

.ft-col a:hover {
    color: var(--gold3);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1360px;
    margin: 0 auto;
}

.ft-bottom p {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
}

.ft-bottom span {
    color: var(--gold2);
}

/* ══════════════════ KEYFRAMES ══════════════════ */
@keyframes fromLeft {
    from {
        opacity: 0;
        transform: translateX(-32px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

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

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes cueSlide {
    0% {
        top: -40px
    }

    100% {
        top: 80px
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

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

/* ══════════════════ RESPONSIVE ══════════════════ */
@media(max-width:1100px) {

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

    .about-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--cream2);
        padding-bottom: 72px;
    }

    .about-right {
        padding-left: 0;
        margin-top: 8px;
    }

    .svc-header,
    .news-header {
        grid-template-columns: 1fr;
    }

    .contact-l {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--cream2);
        padding-bottom: 60px;
    }

    .contact-r {
        padding-left: 0;
        margin-top: 0;
    }

    .ft-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .gal-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gal-item:nth-child(1) {
        grid-row: 1;
        grid-column: 1;
    }

    .gal-item:nth-child(4) {
        grid-column: 1;
    }

    .gal-item {
        min-height: 220px;
    }

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

    .news-small-col {
        grid-template-rows: auto auto;
    }

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

@media(max-width:768px) {
    section {
        padding: 90px 5%;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-photo {
        width: 100%;
        clip-path: none;
        opacity: .25;
    }

    .hero-inner {
        padding: 130px 5% 40px;
        max-width: 100%;
    }

    .hero-strip {
        padding-bottom: 120px;
    }

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

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

    .fl-row {
        grid-template-columns: 1fr;
    }

    .ft-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .t-card {
        padding: 36px 24px;
    }

    .gal-mosaic {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-main,
    .btn-line {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

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

    .strip-divider {
        display: none;
    }
}