/* ═══════════════════════════════════════════
   ASHESH UPRETI — LAUNCH PORTFOLIO
   Custom editorial design. Not a template.
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400;1,700&display=swap');

:root {
    --black: #080808;
    --night: #0e0e0e;
    --charcoal: #1a1a1a;
    --carbon: #222222;
    --slate: #2d2d2d;
    --ash: #666666;
    --silver: #999999;
    --mist: #cccccc;
    --fog: #e8e8e8;
    --pearl: #f4f3f0;
    --white: #ffffff;
    --gold: #b8941f;
    --gold-light: #d4b44a;
    --gold-glow: rgba(184, 148, 31, 0.15);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, system-ui, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 10000;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5vw;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.5) 60%, transparent 100%);
    transition: all 0.5s var(--ease);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    padding: 16px 5vw;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--white);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links .btn-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background 0.3s, transform 0.3s;
}

.nav-links .btn-cta::after {
    display: none;
}

.nav-links .btn-cta:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

/* ─── QUOTE HERO — EDITORIAL ─── */
.quote-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    background: var(--black);
    overflow: hidden;
}

.quote-hero__image-col {
    position: relative;
    width: 45%;
    flex-shrink: 0;
}

.quote-hero__image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.85;
    filter: contrast(1.05) brightness(0.95);
}

.quote-hero__image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, var(--black) 100%);
}

.quote-hero__content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 6vw 80px 4vw;
    position: relative;
    z-index: 2;
}

.quote-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: slideUp 0.7s var(--ease) 0.3s forwards;
}

.quote-hero__quote {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 560px;
    opacity: 0;
    animation: slideUp 0.8s var(--ease) 0.5s forwards;
}

.quote-hero__name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
    opacity: 0;
    animation: slideUp 0.6s var(--ease) 0.7s forwards;
}

.quote-hero__title-text {
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    opacity: 0;
    animation: slideUp 0.6s var(--ease) 0.8s forwards;
}

.quote-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.6s var(--ease) 0.9s forwards;
}

.quote-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.2s forwards;
}

.quote-hero__scroll span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
}

.quote-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ─── TICKER ─── */
.ticker {
    background: var(--charcoal);
    padding: 18px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ticker__track {
    display: flex;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

.ticker__item {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    padding: 0 40px;
}

.ticker__item .dot {
    color: var(--gold);
    margin: 0 4px;
}

/* ─── SECTION HEADERS ─── */
.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 64px;
}

.section-header__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 16px;
}

.section-header__desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ash);
    max-width: 500px;
    margin: 0 auto;
}

/* ─── EDITORIAL BIO SECTION ─── */
.about-editorial {
    padding: 120px 5vw;
    background: var(--white);
}

.about-editorial__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-editorial__portrait {
    position: relative;
}

.about-editorial__portrait img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: 30px 30px 0 var(--gold-glow);
}

.about-editorial__portrait::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}

.about-editorial__portrait::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}

.about-editorial__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-editorial__heading {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--black);
}

.about-editorial__text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--ash);
    margin-bottom: 16px;
}

.about-editorial__text:last-of-type {
    margin-bottom: 36px;
}

/* ─── STATS ROW ─── */
.stats-row {
    padding: 80px 5vw;
    background: var(--black);
}

.stats-row__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stats-row__item {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.stats-row__item+.stats-row__item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-row__number {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-row__number span {
    color: var(--gold);
}

.stats-row__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
}

/* ─── VENTURES SHOWCASE ─── */
.ventures-showcase {
    padding: 120px 0;
    background: var(--pearl);
}

.ventures-showcase__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto 48px;
    padding: 0 5vw;
}

.ventures-showcase__controls {
    display: flex;
    gap: 8px;
}

.ventures-showcase__btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.25s;
}

.ventures-showcase__btn:hover {
    background: var(--gold);
    color: var(--black);
}

.ventures-showcase__btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.ventures-showcase__track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 5vw 48px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ventures-showcase__track::-webkit-scrollbar {
    display: none;
}

/* Venture Card */
.v-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--white);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.v-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.v-card__img {
    height: 280px;
    overflow: hidden;
}

.v-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.v-card:hover .v-card__img img {
    transform: scale(1.06);
}

.v-card__body {
    padding: 28px;
}

.v-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.v-card__name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.v-card__desc {
    font-size: 14px;
    color: var(--ash);
    line-height: 1.7;
    margin-bottom: 20px;
}

.v-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    transition: gap 0.3s, color 0.3s;
}

.v-card__link:hover {
    gap: 12px;
    color: var(--gold);
}

/* ─── FEATURED SECTION (editorial split) ─── */
.featured-split {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 80vh;
    overflow: hidden;
}

.featured-split--reverse {
    direction: rtl;
}

.featured-split--reverse>* {
    direction: ltr;
}

.featured-split__image {
    position: relative;
    overflow: hidden;
}

.featured-split__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s var(--ease-smooth);
}

.featured-split__image:hover img {
    transform: scale(1.03);
}

.featured-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6vw;
    background: var(--charcoal);
    color: var(--white);
}

.featured-split__content--light {
    background: var(--pearl);
    color: var(--black);
}

.featured-split__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.featured-split__heading {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.featured-split__text {
    font-size: 15px;
    line-height: 1.85;
    opacity: 0.8;
    margin-bottom: 36px;
    max-width: 480px;
}

/* ─── TESTIMONIAL ─── */
.testimonial-block {
    padding: 120px 5vw;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-block::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 200px;
    color: rgba(184, 148, 31, 0.06);
    line-height: 1;
}

.testimonial-block__text {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    line-height: 1.6;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-block__author {
    color: var(--white);
}

.testimonial-block__author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-block__author span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── GALLERY GRID — MASONRY-LIKE ─── */
.gallery-showcase {
    padding: 120px 5vw;
    background: var(--white);
}

.gallery-showcase__grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 260px;
    grid-auto-flow: dense;
}

.gallery-showcase__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-showcase__item--tall {
    grid-row: span 2;
}

.gallery-showcase__item--wide {
    grid-column: span 2;
}

.gallery-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s;
}

.gallery-showcase__item:hover img {
    transform: scale(1.08);
}

.gallery-showcase__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-showcase__item:hover::after {
    opacity: 1;
}

.gallery-showcase__item__caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
}

.gallery-showcase__item:hover .gallery-showcase__item__caption {
    opacity: 1;
    transform: translateY(0);
}

/* ─── TIMELINE ─── */
.timeline-section {
    padding: 120px 5vw;
    background: var(--pearl);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--fog);
}

.timeline__item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}

.timeline__dot {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.timeline__content {
    padding-top: 10px;
}

.timeline__content h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline__content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ash);
}

/* ─── CTA SECTION ─── */
.cta-band {
    padding: 100px 5vw;
    background: var(--gold);
    text-align: center;
}

.cta-band h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 36px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

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

.btn--gold:hover {
    background: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

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

.btn--white:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

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

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

.btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
}

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

.btn--lg {
    padding: 18px 40px;
    font-size: 13px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 5vw 40px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 14px;
    opacity: 0.5;
    line-height: 1.8;
    max-width: 300px;
}

.footer h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer li {
    margin-bottom: 8px;
}

.footer a {
    font-size: 14px;
    opacity: 0.5;
    transition: opacity 0.2s, color 0.2s;
}

.footer a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    opacity: 0.3;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
    background: var(--night);
    overflow: hidden;
}

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

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

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black) 0%, transparent 60%);
}

.page-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.page-hero__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
}

/* ─── ANIMATIONS ─── */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

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

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

/* ─── CONTACT ─── */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 70vh;
}

.contact-info {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.contact-info__inner {
    max-width: 400px;
}

.contact-info__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.contact-info h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-channels {
    margin-bottom: 0;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-channel:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-channel__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 148, 31, 0.35);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}

.contact-channel:hover .contact-channel__icon {
    background: rgba(184, 148, 31, 0.1);
    border-color: var(--gold);
}

.contact-channel span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-channel a {
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.contact-offices {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-offices h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-offices__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-offices__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-offices__item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    min-width: 50px;
}

.contact-offices__item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    padding-left: 16px;
}

.contact-offices__item span::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.2);
}

.contact-form-wrap {
    background: var(--pearl);
    padding: 80px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrap h2 {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 36px;
}

.form-row {
    margin-bottom: 24px;
}

.form-row label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-family: var(--sans);
    border: none;
    border-bottom: 2px solid var(--fog);
    background: transparent;
    transition: border-color 0.3s;
    color: var(--black);
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

/* ─── EXPERTISE CARDS ─── */
.expertise-section {
    padding: 120px 5vw;
    background: var(--black);
}

.expertise-section .section-header__label {
    color: var(--gold);
}

.expertise-section .section-header__title {
    color: var(--white);
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.expertise-card {
    position: relative;
    padding: 40px 28px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.expertise-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(184, 148, 31, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.expertise-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(184, 148, 31, 0.4);
    border-radius: 50%;
    margin-bottom: 28px;
    color: var(--gold);
    transition: all 0.4s var(--ease);
}

.expertise-card:hover .expertise-card__icon {
    border-color: var(--gold);
    background: rgba(184, 148, 31, 0.08);
    transform: scale(1.05);
}

.expertise-card__title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.expertise-card__desc {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    transition: color 0.4s;
}

.expertise-card:hover .expertise-card__desc {
    color: rgba(255, 255, 255, 0.65);
}

.expertise-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.expertise-card:hover .expertise-card__accent {
    opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .quote-hero {
        flex-direction: column;
    }

    .quote-hero__image-col {
        width: 100%;
        height: 50vh;
    }

    .quote-hero__image-col::after {
        background: linear-gradient(to top, var(--black) 10%, transparent 60%);
    }

    .quote-hero__content-col {
        padding: 40px 6vw 60px;
    }

    .about-editorial__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-split,
    .featured-split--reverse {
        grid-template-columns: 1fr;
    }

    .featured-split__image {
        height: 50vh;
    }

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

    .stats-row__item+.stats-row__item {
        border-left: none;
    }

    .stats-row__item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

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

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

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

    .gallery-showcase__item--tall {
        grid-row: span 1;
    }

    .gallery-showcase__item--wide {
        grid-column: span 1;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 5vw;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

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

    .stats-row__item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .v-card {
        flex: 0 0 85vw;
    }

    .gallery-showcase__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .expertise-card {
        padding: 28px 22px;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline__dot {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }

    .timeline__item {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-row__grid {
        grid-template-columns: 1fr;
    }

    .stats-row__item:nth-child(odd) {
        border-right: none;
    }

    .stats-row__item+.stats-row__item {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .gallery-showcase__grid {
        grid-template-columns: 1fr;
    }

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

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}