/* ============================================================
   GICSRD — MAIN WEBSITE STYLES

   QUICK CUSTOMISATION
   ------------------------------------------------------------
   Change these variables first. You do NOT need to search the
   whole stylesheet to change the look of the website.

   --radius       = normal card/button corner radius
   --radius-lg    = large component corner radius
   --nav-height   = height of the main navigation
   --container   = maximum content width
   ============================================================ */

:root {
    /* BRAND / COLOUR SYSTEM */
    --navy-950: #07131f;
    --navy-900: #0b1d2d;
    --navy-800: #102a43;
    --navy-700: #173d5b;
    --blue: #0b5d8f;
    --blue-light: #eaf4fa;
    --white: #ffffff;
    --paper: #f6f8fa;
    --paper-2: #eef3f6;
    --text: #172b3a;
    --muted: #607181;
    --line: #dce4ea;

    /* CHANGE THESE TO CONTROL CORNER RADIUS */
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 999px;

    /* LAYOUT */
    --container: 1180px;
    --nav-height: 78px;

    /* EFFECTS */
    --shadow-sm: 0 8px 24px rgba(7, 19, 31, 0.07);
    --shadow-lg: 0 24px 70px rgba(7, 19, 31, 0.14);
    --transition: 220ms ease;
}

/* ============================================================
   RESET
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: "Host Grotesk", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

img {
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

/* ============================================================
   ANNOUNCEMENT TICKER
   ============================================================ */

.announcement-bar {
    overflow: hidden;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.announcement-track {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: announcement-scroll 24s linear infinite;
}

.announcement-track span {
    display: block;
    padding: 8px 5vw;
}

@keyframes announcement-scroll {
    from {
        transform: translateX(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .announcement-track {
        animation: none;
        justify-content: center;
        width: 100%;
    }

    .announcement-track span[aria-hidden="true"] {
        display: none;
    }
}

/* ============================================================
   EVENT ANNOUNCEMENT MODAL
   ============================================================ */

.event-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(7, 19, 31, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.event-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.event-modal-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
    width: min(760px, 100%);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(14px);
    transition: transform 220ms ease;
}

.event-modal.open .event-modal-card {
    transform: translateY(0);
}

.event-modal-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.event-modal-content {
    align-self: center;
    padding: 52px 42px 42px;
}

.event-modal-content h2 {
    margin: 12px 0 10px;
    color: var(--navy-900);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
}

.event-modal-content p {
    margin: 0 0 24px;
    color: var(--muted);
}

.event-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-900);
    font-size: 25px;
    line-height: 1;
    box-shadow: var(--shadow-sm);
}

.event-modal-close:hover {
    background: var(--paper-2);
}

body.event-modal-open {
    overflow: hidden;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */

.utility-bar {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.utility-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-bar a {
    transition: color var(--transition);
}

.utility-bar a:hover {
    color: var(--white);
}

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.navbar-inner {
    min-height: var(--nav-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    grid-column: 1;
}

.brand img {
    width: 188px;
    height: 49px;
    display: block;
    object-fit: contain;
}

.nav-panel {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-trigger {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 9px;
    border: 0;
    background: transparent;
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}

.nav-trigger {
    font-family: inherit;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.active {
    color: var(--blue);
}

.chevron {
    font-size: 13px;
    line-height: 1;
    opacity: 0.7;
    transform: translateY(-1px);
}

.nav-cta {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: var(--radius);
    background: var(--navy-950);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition);
}

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

/* ============================================================
   DROPDOWNS
   ============================================================ */

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 8px);
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.has-dropdown.open > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(calc(-50% + var(--dropdown-shift, 0px)), 0);
}

.dropdown a {
    display: block;
    color: var(--text);
    font-size: 12px;
    line-height: 1.45;
    transition: color var(--transition), background var(--transition);
}

.dropdown a:hover {
    color: var(--blue);
}

.dropdown-wide {
    width: 690px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-title {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dropdown-small {
    width: 220px;
    display: grid;
    gap: 4px;
}

.dropdown-small a {
    padding: 9px 10px;
    border-radius: var(--radius);
}

.dropdown-small a:hover {
    background: var(--paper);
}

.consultancy-dropdown {
    width: 760px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
}

.consultancy-intro {
    padding-right: 25px;
    border-right: 1px solid var(--line);
}

.eyebrow,
.section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.consultancy-intro .eyebrow {
    color: var(--blue);
}

.consultancy-intro h3 {
    margin: 10px 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.consultancy-intro p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 12px;
}

.dropdown-cta {
    color: var(--blue) !important;
    font-weight: 700;
}

.consultancy-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 18px;
    align-content: start;
}

.consultancy-links a {
    padding: 9px 0;
}

.gallery-dropdown {
    width: 620px;
}

.gallery-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-menu-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.gallery-menu-card img {
    width: 100%;
    height: 82px;
    display: block;
    object-fit: cover;
}

.gallery-menu-card span {
    display: block;
    padding: 9px;
    font-size: 10px;
    font-weight: 700;
}

.view-gallery {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--blue) !important;
    font-weight: 700;
}

/* ============================================================
   MOBILE MENU BUTTON
   ============================================================ */

.menu-toggle {
    grid-column: 3;
    justify-self: end;
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    gap: 4px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.menu-toggle span {
    width: 100%;
    height: 1.5px;
    background: var(--navy-950);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--navy-950);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    transform: translateX(100%);
    transition: transform 700ms ease;
}

.hero-slide.active {
    transform: translateX(0);
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 16, 26, 0.9) 0%, rgba(5, 16, 26, 0.63) 42%, rgba(5, 16, 26, 0.12) 100%);
}

.hero-inner {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-copy {
    width: min(690px, 70%);
    color: var(--white);
}

.hero-copy h1 {
    margin: 12px 0 16px;
    font-size: clamp(42px, 5.3vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 600;
}

.hero-copy p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.hero-counter {
    align-self: flex-end;
    margin-bottom: 65px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.hero-counter strong {
    color: var(--white);
    font-size: 20px;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-dot {
    width: 28px;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.38);
    transition: width var(--transition), background var(--transition);
}

.hero-dot.active {
    width: 48px;
    background: var(--white);
}

.hero-arrows {
    display: flex;
    gap: 6px;
}

.hero-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.18);
    color: var(--white);
    transition: background var(--transition), border-color var(--transition);
}

.icon-chevron {
    width: 18px;
    height: 18px;
}

.icon-arrow {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-top: -0.1em;
    vertical-align: middle;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 17px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-light {
    background: var(--white);
    color: var(--navy-950);
}

.button-dark {
    background: var(--navy-950);
    color: var(--white);
}

.text-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ============================================================
   GENERAL SECTIONS
   ============================================================ */

.section {
    padding: 105px 0;
}

.section-label {
    color: var(--blue);
}

.section h2 {
    max-width: 760px;
    margin: 12px 0 0;
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.03;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 100px;
    align-items: start;
}

.intro-copy {
    padding-top: 27px;
}

.lead {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.muted-copy {
    max-width: 560px;
    margin: 22px 0 26px;
    color: var(--muted);
    font-size: 16px;
}

/* ============================================================
   DARK SECTION / SERVICES
   ============================================================ */

.dark-section {
    background: var(--navy-950);
    color: var(--white);
}

.section-heading {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading > p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
}

.section-heading-dark > p {
    color: rgba(255, 255, 255, 0.62);
}

.section-heading-dark .section-label {
    color: rgba(255, 255, 255, 0.58);
}

.section-heading-dark h2 {
    color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card {
    min-height: 330px;
    padding: 30px;
    background: var(--navy-950);
    transition: background var(--transition), transform var(--transition);
}

.service-card:hover {
    background: var(--navy-900);
    transform: translateY(-3px);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 60px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    transition: background var(--transition), border-color var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
    border-color: var(--blue);
}

.service-icon svg {
    width: 21px;
    height: 21px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
}

.service-card p {
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.service-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
}

.service-link b {
    margin-left: 7px;
}

/* ============================================================
   CONSULTANCY
   ============================================================ */

.consultancy-section {
    background: var(--paper);
}

.consultancy-list {
    border-top: 1px solid var(--line);
}

.consultancy-list a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    transition: padding var(--transition), color var(--transition);
}

.consultancy-list a:hover {
    padding-left: 8px;
    color: var(--blue);
}

.consultancy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: var(--blue-light);
    color: var(--blue);
    transition: background var(--transition), color var(--transition);
}

.consultancy-list a:hover .consultancy-icon {
    background: var(--blue);
    color: var(--white);
}

.consultancy-icon svg {
    width: 16px;
    height: 16px;
}

.consultancy-list b {
    color: var(--blue);
}

/* ============================================================
   IMPACT STRIP
   ============================================================ */

.impact-strip {
    background: var(--blue);
    color: var(--white);
}

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

.impact-grid > div {
    padding: 35px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.impact-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.impact-grid > div:last-child {
    border-right: 0;
}

.impact-grid strong,
.impact-grid > div > span:not(.impact-icon) {
    display: block;
}

.impact-grid strong {
    margin-bottom: 4px;
    font-size: 17px;
}

.impact-grid > div > span:not(.impact-icon) {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-section {
    background: var(--white);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.album-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: #c5d3dc;
    box-shadow: var(--shadow-sm);
}

.album-card img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
}

.album-card div {
    padding: 18px;
}

.album-card span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.album-card h3 {
    margin: 7px 0 0;
    font-size: 16px;
    line-height: 1.3;
}

/* ============================================================
   NEWS & ARTICLES
   ============================================================ */

.articles-section {
    background: var(--white);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #c5d3dc;
    box-shadow: var(--shadow-sm);
}

.article-card img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
}

.article-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-meta .article-tag {
    color: var(--blue);
}

.article-meta .article-date {
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.article-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.3;
}

.article-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.article-card .text-link {
    margin-top: auto;
}

/* ============================================================
   PUBLICATIONS & RESEARCH
   ============================================================ */

.publications-section {
    background: var(--paper);
}

.publications-note {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

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

.publication-card {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.publication-card:hover {
    transform: translateY(-3px);
    border-color: #c5d3dc;
    box-shadow: var(--shadow-sm);
}

.publication-type {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    background: var(--blue-light);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.publication-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.publication-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 13px;
}

.publication-card .text-link {
    margin-top: auto;
}

/* ============================================================
   VIDEOS
   ============================================================ */

.videos-section {
    background: var(--white);
}

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

.video-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: #c5d3dc;
    box-shadow: var(--shadow-sm);
}

.video-thumb {
    position: relative;
    height: 190px;
}

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

.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(7, 19, 31, 0.72);
    color: var(--white);
    font-size: 14px;
    transition: background var(--transition), transform var(--transition);
}

.video-card:hover .video-play span {
    background: var(--blue);
    transform: scale(1.06);
}

.video-card-body {
    padding: 16px 18px;
}

.video-card-body span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-card-body h3 {
    margin: 7px 0 0;
    font-size: 15px;
    line-height: 1.35;
}

.video-card.is-placeholder {
    background: var(--paper);
}

.video-card.is-placeholder .video-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-950);
}

.video-card.is-placeholder .video-thumb span.coming-soon {
    width: auto;
    height: auto;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter-section {
    padding: 70px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.newsletter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
}

.newsletter-icon svg {
    width: 26px;
    height: 26px;
}

.newsletter-copy h2 {
    max-width: 420px;
    font-size: clamp(24px, 2.6vw, 30px);
}

.newsletter-copy .muted-copy {
    max-width: 420px;
    margin: 10px 0 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter-form input[type="email"] {
    width: 260px;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
}

.newsletter-form input[type="email"]:focus {
    outline: 2px solid var(--blue);
    outline-offset: 1px;
}

.newsletter-form .button {
    flex-shrink: 0;
    white-space: nowrap;
}

.newsletter-status {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    min-height: 1px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   ABOUT LINK GRID
   ============================================================ */

.about-links-section {
    background: var(--paper);
}

.about-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-link-grid a {
    min-height: 175px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-link-grid a:hover {
    transform: translateY(-3px);
    border-color: #c5d3dc;
    box-shadow: var(--shadow-sm);
}

.about-link-grid strong {
    font-size: 17px;
}

.about-link-grid span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.about-link-grid b {
    margin-top: auto;
    color: var(--blue);
}

/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    padding: 80px 0;
    background: var(--navy-950);
    color: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner .section-label {
    color: rgba(255, 255, 255, 0.52);
}

.cta-inner h2 {
    max-width: 650px;
    margin: 10px 0 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: #030b12;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding: 70px 0 55px;
}

.footer-brand img {
    width: 188px;
    height: 49px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 18px;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer .social-links a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.social-links svg {
    display: block;
    width: 17px;
    height: 17px;
}

.footer h4 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 13px;
}

.footer a {
    display: block;
    padding: 4px 0;
    font-size: 12px;
    transition: color var(--transition);
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 10px;
}

/* ============================================================
   INNER PAGES — keeps the existing About / Gallery pages working
   ============================================================ */

.page-hero {
    padding: 90px 0;
    background: var(--navy-950);
    color: var(--white);
}

.page-hero h1 {
    max-width: 900px;
    margin: 12px 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.page-hero p:not(.section-label) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.68);
}

.prose {
    max-width: 850px;
}

.prose h2 {
    margin-top: 45px;
    font-size: 32px;
    line-height: 1.15;
}

.prose p,
.prose li {
    color: var(--muted);
}

.prose li {
    margin: 7px 0;
}

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

.contact-card,
.value-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.contact-card h3,
.value-card h3 {
    margin-top: 0;
}

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

.council-list {
    display: grid;
    gap: 24px;
}

.member {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.member img,
.member-placeholder {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    background: var(--paper-2);
}

.member-placeholder {
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 42px;
    font-weight: 700;
}

.member h2 {
    margin: 0 0 10px;
    font-size: 25px;
}

.member p {
    color: var(--muted);
    font-size: 14px;
}

/* ============================================================
   FULL GALLERY PAGE
   ============================================================ */

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.filter-btn {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--navy-950);
    background: var(--navy-950);
    color: var(--white);
}

.full-gallery-grid {
    columns: 3 280px;
    column-gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0 0 16px;
    border-radius: var(--radius-lg);
    break-inside: avoid;
    cursor: pointer;
    background: var(--paper);
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 14px 12px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    font-size: 11px;
    font-weight: 700;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(3, 11, 18, 0.96);
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    max-width: min(1100px, 88vw);
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 76vh;
    object-fit: contain;
}

.lightbox-content p {
    margin: 10px 0 0;
    color: var(--white);
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.lightbox-close {
    top: 24px;
    right: 28px;
    font-size: 26px;
}

.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1120px) {
    .nav-panel {
        gap: 10px;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link,
    .nav-trigger {
        padding-inline: 6px;
        font-size: 11px;
    }

    .nav-cta {
        display: none;
    }

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

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

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

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

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

    .newsletter-form {
        grid-column: 1 / -1;
        margin-top: 8px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE NAV
   ============================================================ */

@media (max-width: 900px) {
    :root {
        --nav-height: 70px;
    }

    .utility-bar {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .navbar-inner {
        position: relative;
    }

    .nav-panel {
        position: absolute;
        top: var(--nav-height);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        padding: 15px 20px 25px;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }
    .nav-panel.open {
        display: flex;
    }

    .nav-menu {
        display: block;
    }

    .nav-item {
        border-bottom: 1px solid var(--line);
    }

    .nav-link,
    .nav-trigger {
        width: 100%;
        justify-content: space-between;
        min-height: 50px;
        padding: 13px 3px;
        font-size: 13px;
        text-align: left;
    }

    .dropdown {
        position: static;
        width: auto !important;
        display: none;
        transform: none !important;
        margin: 0 0 10px;
        padding: 12px;
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .has-dropdown.open > .dropdown {
        display: block;
    }

    .dropdown-wide,
    .consultancy-dropdown {
        grid-template-columns: 1fr;
    }

    .consultancy-intro {
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .hero {
        height: 480px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: 47px;
    }

    .hero-counter {
        display: none;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .intro-copy {
        padding-top: 0;
    }

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

    .impact-grid > div:nth-child(2) {
        border-right: 0;
    }

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

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */

@media (max-width: 600px) {
    .container {
        width: min(var(--container), calc(100% - 30px));
    }

    .event-modal {
        padding: 15px;
    }

    .event-modal-card {
        display: block;
        max-height: calc(100vh - 30px);
        overflow-y: auto;
    }

    .event-modal-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        min-height: 0;
        object-fit: contain;
        background: var(--paper-2);
    }

    .event-modal-content {
        padding: 30px 24px 24px;
    }

    .brand img {
        width: 150px;
        height: 39px;
    }

    .hero {
        height: 540px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(5, 16, 26, 0.94), rgba(5, 16, 26, 0.54));
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .hero-copy p:not(.eyebrow) {
        font-size: 14px;
    }

    .hero-controls {
        bottom: 16px;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 32px;
    }

    .section-heading > p {
        margin-top: 18px;
    }

    .service-grid,
    .album-grid,
    .about-link-grid,
    .value-grid,
    .contact-grid,
    .footer-grid,
    .article-grid,
    .publication-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 270px;
    }

    .service-icon {
        margin-bottom: 40px;
    }

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

    .impact-grid > div,
    .impact-grid > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .impact-grid > div:last-child {
        border-bottom: 0;
    }

    .album-card img {
        height: 250px;
    }

    .footer-bottom {
        display: block;
        padding: 18px 0;
    }

    .footer-bottom span {
        display: block;
        margin: 4px 0;
    }

    .page-hero {
        padding: 65px 0;
    }

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

    .member img,
    .member-placeholder {
        width: 150px;
        height: 180px;
    }

    .lightbox {
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Shared navigation: visible focus, viewport bounds and touch targets. */
.site-header :focus-visible { outline: 3px solid #268bc3; outline-offset: 4px; }
.dropdown { max-width: calc(100vw - 32px); }
[id] { scroll-margin-top: calc(var(--site-header-height, 120px) + 20px); }
@media (max-width: 900px) {
    .nav-panel { grid-column: 1 / -1; max-height: calc(100vh - var(--site-header-height, 70px)); max-height: calc(100dvh - var(--site-header-height, 70px)); overscroll-behavior: contain; }
    .dropdown-column + .dropdown-column { margin-top: 18px; }
    .dropdown a { min-height: 44px; display: flex; align-items: center; }
}

@media (min-width: 901px) {
    .gallery-dropdown { left: auto; right: 0; transform: translate(var(--dropdown-shift, 0px), 8px); }
    .has-dropdown.open > .gallery-dropdown { transform: translate(var(--dropdown-shift, 0px), 0); }
}
@media (max-width: 900px) {
    .dropdown a.gallery-menu-card { display: block; }
}
