/* =========================================================
   INDIGO HORSE FZCO — Luxury / Corporate One-Pager
   Palette: Navy + Gold, bright & smooth
   ========================================================= */

:root {
    --navy-950: #060f20;
    --navy-900: #0a1a33;
    --navy-800: #0f2244;
    --navy-700: #14305f;
    --navy-600: #1e4380;
    --navy-500: #2d5ba8;

    --gold-700: #a98543;
    --gold-600: #c9a55a;
    --gold-500: #d8b76a;
    --gold-400: #e6c987;
    --gold-300: #f0d9a3;

    --ink: #0a1a33;
    --ink-soft: #334863;
    --muted: #64748b;
    --line: #e6ebf2;
    --line-strong: #d4dbe5;

    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --bg-softer: #fafbfd;

    --radius: 10px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 8px rgba(10, 26, 51, 0.06);
    --shadow-md: 0 10px 30px rgba(10, 26, 51, 0.08);
    --shadow-lg: 0 25px 60px rgba(10, 26, 51, 0.15);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --nav-h: 80px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }
}

/* ---------- Typography ---------- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-700);
    margin-bottom: 18px;
    position: relative;
    padding-left: 44px;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 1px;
    background: var(--gold-600);
}

.eyebrow--light {
    color: var(--gold-400);
}

.eyebrow--light::before {
    background: var(--gold-400);
}

.h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--navy-900);
    margin: 0 0 24px;
}

.h2--light {
    color: #ffffff;
}

.section-head {
    max-width: 720px;
    margin: 0 0 64px;
}

.section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-lede {
    font-size: 18px;
    color: var(--ink-soft);
    margin: 0;
    max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 32px;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    color: var(--navy-900);
    box-shadow: 0 10px 24px rgba(201, 165, 90, 0.3);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(201, 165, 90, 0.4);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ================================================
   NAV
   ================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: transparent;
    transition: all 0.35s var(--ease);
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 4px 0;
}

.nav__logo {
    display: block;
    width: auto;
    height: 72px;
    flex-shrink: 0;
    transition: height 0.35s var(--ease), filter 0.35s var(--ease);
    /* Original logo was designed on white — on the dark hero nav the white
       corners of the PNG are invisible because we lift the whites through
       the darker base. */
    mix-blend-mode: screen;
}

.nav__tag {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-400);
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__links a {
    position: relative;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.25s var(--ease);
}

.nav__links a:not(.nav__cta)::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 1px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.nav__links a:not(.nav__cta):hover::after {
    transform: scaleX(1);
}

.nav__cta {
    margin-left: 14px;
    padding: 12px 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: all 0.3s var(--ease) !important;
}

.nav__cta:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    color: var(--navy-900) !important;
}

/* Scrolled state */
.nav.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(10, 26, 51, 0.06);
    height: 76px;
}

.nav.is-scrolled .nav__logo {
    height: 58px;
    mix-blend-mode: normal;
}

.nav.is-scrolled .nav__tag {
    color: var(--gold-700);
    border-left-color: rgba(10, 26, 51, 0.15);
}

.nav.is-scrolled .nav__links a {
    color: var(--navy-900);
}

.nav.is-scrolled .nav__cta {
    border-color: var(--navy-900);
}

.nav.is-scrolled .nav__cta:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #fff !important;
}

.nav__burger {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s var(--ease);
}

.nav.is-scrolled .nav__burger span {
    background: var(--navy-900);
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--nav-h) 0 60px;
    color: #fff;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s var(--ease) forwards;
    background: var(--navy-900);
}

@keyframes heroZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 15, 32, 0.78) 0%, rgba(10, 26, 51, 0.55) 50%, rgba(20, 48, 95, 0.35) 100%),
        linear-gradient(to bottom, rgba(6, 15, 32, 0.4), rgba(6, 15, 32, 0.15) 35%, rgba(6, 15, 32, 0.85));
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding-top: 40px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 28px;
    color: #fff;
}

.hero__lede {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 40px;
    font-weight: 300;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ================================================
   STRIP (between hero and about)
   ================================================ */
.strip {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
    color: #fff;
    position: relative;
}

.strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold-500);
}

.strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.strip__item {
    padding: 10px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 28px;
}

.strip__item:first-child {
    border-left: 0;
    padding-left: 0;
}

.strip__num {
    font-family: var(--font-serif);
    font-size: 38px;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 500;
}

.strip__item h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}

.strip__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 780px) {
    .strip__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .strip__item {
        border-left: 0;
        padding-left: 0;
    }
}

/* ================================================
   ABOUT
   ================================================ */
.about {
    background: var(--bg);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

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

.about__media:hover img {
    transform: scale(1.04);
}

.about__badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    border-radius: 2px;
    border-left: 3px solid var(--gold-600);
    box-shadow: var(--shadow-md);
}

.about__badge-k {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--navy-900);
    font-weight: 600;
}

.about__badge-v {
    display: block;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.about__copy p {
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0 0 18px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.about__stats strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--navy-900);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.about__stats span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 960px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__media {
        aspect-ratio: 16/11;
        max-height: 520px;
    }
    .about__stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    position: relative;
    background: linear-gradient(180deg, #eef2f8 0%, #f6f8fb 50%, #ffffff 100%);
    overflow: hidden;
}

.services__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background:
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(30, 67, 128, 0.12), transparent 60%),
        radial-gradient(ellipse 70% 60% at 90% 100%, rgba(201, 165, 90, 0.10), transparent 60%);
}

.services__layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.services__aside {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 22px;
}

.services__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services__media--primary {
    aspect-ratio: 4/5;
}

.services__media--secondary {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

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

.services__media:hover img {
    transform: scale(1.05);
}

.services__media-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.97);
    padding: 14px 20px;
    border-left: 3px solid var(--gold-600);
    border-radius: 2px;
    box-shadow: var(--shadow-md);
}

.services__media-tag span {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-700);
    font-weight: 600;
    margin-bottom: 2px;
}

.services__media-tag strong {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-900);
}

.services__quote {
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: #fff;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.services__quote::before {
    content: "\201C";
    position: absolute;
    top: -12px;
    left: 18px;
    font-family: var(--font-serif);
    font-size: 96px;
    color: var(--gold-500);
    opacity: 0.35;
    line-height: 1;
}

.services__quote p {
    position: relative;
    margin: 0 0 14px;
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.5;
    font-style: italic;
    color: #fff;
}

.services__quote span {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-400);
    font-weight: 600;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service {
    position: relative;
    padding: 44px 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.45s var(--ease);
    overflow: hidden;
}

.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service:hover::before {
    transform: scaleX(1);
}

.service__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.12), rgba(216, 183, 106, 0.06));
    color: var(--gold-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.service__icon svg {
    width: 30px;
    height: 30px;
}

.service:hover .service__icon {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    color: var(--gold-400);
    transform: rotate(-5deg) scale(1.05);
}

.service h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--navy-900);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.service ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service li {
    padding: 8px 0 8px 22px;
    color: var(--ink-soft);
    font-size: 15px;
    position: relative;
    border-bottom: 1px dashed var(--line);
}

.service li:last-child {
    border-bottom: 0;
}

.service li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 10px;
    height: 1px;
    background: var(--gold-600);
}

@media (max-width: 1040px) {
    .services__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services__aside {
        position: static;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .services__quote {
        grid-column: 1 / -1;
    }
    .services__media--primary {
        aspect-ratio: 4/5;
    }
    .services__media--secondary {
        aspect-ratio: 4/5;
    }
}

@media (max-width: 780px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
    .services__aside {
        grid-template-columns: 1fr;
    }
    .services__media--secondary {
        aspect-ratio: 16/10;
    }
    .service {
        padding: 36px 28px;
    }
}

/* ================================================
   EXPERIENCE (dark section)
   ================================================ */
.experience {
    background: var(--navy-900);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(30, 67, 128, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201, 165, 90, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.experience__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience__lede {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 32px;
    max-width: 540px;
}

.experience__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience__list li {
    padding: 18px 0 18px 40px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    transition: padding 0.3s var(--ease);
}

.experience__list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.experience__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 22px;
    height: 1px;
    background: var(--gold-500);
    transition: width 0.3s var(--ease);
}

.experience__list li:hover {
    padding-left: 48px;
    color: #fff;
}

.experience__list li:hover::before {
    width: 32px;
    background: var(--gold-400);
}

.experience__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    aspect-ratio: 4/5;
    position: relative;
}

.experience__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 26, 51, 0.15), transparent 50%, rgba(201, 165, 90, 0.12));
    pointer-events: none;
}

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

@media (max-width: 960px) {
    .experience__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .experience__media {
        aspect-ratio: 16/11;
    }
}

/* ================================================
   INDUSTRIES
   ================================================ */
.industries {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.industries__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.industries__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: saturate(0.85) contrast(0.95);
}

.industries__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.75) 30%, rgba(255,255,255,0.78) 70%, #ffffff 100%);
}

.industries .container {
    position: relative;
    z-index: 1;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.industry {
    background: #fff;
    padding: 44px 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
    transition: all 0.4s var(--ease);
    cursor: default;
}

.industry::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s var(--ease);
}

.industry span {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--navy-900);
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.3s var(--ease);
}

.industry:hover {
    background: var(--navy-900);
}

.industry:hover span {
    color: var(--gold-400);
}

.industry:hover::before {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.4);
}

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

@media (max-width: 520px) {
    .industries__grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   QUOTE BANNER (image 8)
   ================================================ */
.banner {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 15, 32, 0.85) 0%, rgba(10, 26, 51, 0.72) 50%, rgba(20, 48, 95, 0.6) 100%);
}

.banner__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.banner__mark {
    font-family: var(--font-serif);
    font-size: 120px;
    line-height: 0.7;
    color: var(--gold-500);
    opacity: 0.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.banner__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
    margin: 0 0 36px;
    color: #fff;
    letter-spacing: 0.005em;
}

.banner__sig {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.banner__line {
    width: 60px;
    height: 1px;
    background: var(--gold-500);
}

.banner__name {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-400);
    font-weight: 600;
}

@media (max-width: 780px) {
    .banner {
        padding: 90px 0;
    }
    .banner__mark {
        font-size: 80px;
    }
}

/* ================================================
   APPROACH
   ================================================ */
.approach {
    background: var(--bg-softer);
    position: relative;
}

.approach__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.approach__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
    background: var(--navy-900);
}

.approach__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.approach__copy p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 36px;
}

.approach__pillars {
    display: grid;
    gap: 18px;
}

.pillar {
    background: #fff;
    padding: 28px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    transition: all 0.4s var(--ease);
}

.pillar:hover {
    transform: translateX(6px);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-md);
}

.pillar__num {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--gold-700);
    font-weight: 600;
    line-height: 1;
    grid-row: span 2;
    padding-top: 4px;
}

.pillar h4 {
    margin: 0 0 6px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-900);
}

.pillar p {
    margin: 0;
    font-size: 15px;
    color: var(--ink-soft);
    grid-column: 2;
}

@media (max-width: 960px) {
    .approach__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .approach__media {
        aspect-ratio: 16/11;
        max-height: 500px;
    }
}

/* ================================================
   GLOBAL (parallax CTA)
   ================================================ */
.global {
    position: relative;
    padding: 140px 0;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.global__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.global__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 15, 32, 0.8), rgba(10, 26, 51, 0.65));
}

.global__content {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.global .h2 {
    margin-bottom: 36px;
    font-size: clamp(1.75rem, 3.4vw, 2.75rem);
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
    background: var(--bg);
}

.contact__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact__lede {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 40px;
}

.contact__details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact__details li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    align-items: start;
}

.contact__details li:last-child {
    border-bottom: 1px solid var(--line);
}

.contact__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon svg {
    width: 20px;
    height: 20px;
}

.contact__details strong {
    display: block;
    color: var(--navy-900);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact__details span,
.contact__details a {
    display: block;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
}

.contact__details a:hover {
    color: var(--gold-700);
}

/* Form */
.contact__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 44px;
    background: linear-gradient(180deg, var(--bg-soft), #fff);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.contact__form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 44px;
    right: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}

.field {
    display: flex;
    flex-direction: column;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 14px 16px;
    transition: all 0.25s var(--ease);
    width: 100%;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold-600);
    box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.15);
    background: #fff;
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
    border-color: #e6526f;
}

.form__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form__note {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.form__note.is-success {
    color: #1a7f4a;
}

.form__note.is-error {
    color: #c0392b;
}

.hp {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact__form.is-submitting .btn {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 960px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 620px) {
    .contact__form {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    .contact__form::before {
        left: 24px;
        right: 24px;
    }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

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

.footer__title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 16px;
}

.footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: var(--gold-500);
}

.footer__brand p {
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}

.footer__col h5 {
    margin: 0 0 22px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.footer__col a,
.footer__col p {
    display: block;
    margin: 0 0 12px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
    transition: color 0.25s var(--ease);
}

.footer__col a:hover {
    color: var(--gold-400);
}

.footer__bar {
    padding: 26px 0;
}

.footer__bar-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 520px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   MOBILE NAV
   ================================================ */
@media (max-width: 900px) {
    .nav__tag {
        display: none;
    }
    .nav__logo {
        height: 56px;
    }
    .nav.is-scrolled .nav__logo {
        height: 48px;
    }
    .nav__links {
        position: fixed;
        inset: 0;
        background: var(--navy-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        padding: 40px;
    }
    .nav__links.is-open {
        transform: translateX(0);
    }
    .nav__links a {
        font-size: 15px;
        color: #fff !important;
        padding: 12px 20px;
    }
    .nav__cta {
        border-color: var(--gold-500) !important;
    }
    .nav__burger {
        display: flex;
        z-index: 1002;
    }
    .nav__burger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: #fff !important;
    }
    .nav__burger.is-open span:nth-child(2) {
        opacity: 0;
    }
    .nav__burger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: #fff !important;
    }
}

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
