:root {
    --ctp-blue: #005ca9;
    --ctp-blue-deep: #08345f;
    --ctp-red: #d91d38;
    --ctp-yellow: #f6d938;
    --ctp-ink: #112033;
    --ctp-sand: #f6f1e8;
    --ctp-white: #ffffff;
    --ctp-muted: #60708a;
    --ctp-line: rgba(17, 32, 51, 0.1);
    --ctp-surface: rgba(255, 255, 255, 0.84);
    --shadow-soft: 0 18px 50px rgba(8, 52, 95, 0.12);
    --shadow-strong: 0 24px 70px rgba(8, 52, 95, 0.18);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--ctp-ink);
    background:
        radial-gradient(circle at top left, rgba(246, 217, 56, 0.24), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(217, 29, 56, 0.12), transparent 22%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 36%, #eef5fb 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-shell {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(255, 250, 240, 0.78);
    border-bottom: 1px solid rgba(17, 32, 51, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
}

.brand img {
    width: 200px;
    height: auto;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--ctp-blue-deep);
    font-weight: 600;
}

.site-nav a {
    position: relative;
    padding-bottom: 2px;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--ctp-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(0, 92, 169, 0.08);
}

.language-switcher a {
    min-width: 40px;
    padding: 8px 12px;
    border-radius: 999px;
    text-align: center;
    font-weight: 700;
    color: var(--ctp-blue-deep);
}

.language-switcher a.is-current {
    background: var(--ctp-white);
    box-shadow: 0 8px 18px rgba(8, 52, 95, 0.14);
}

.nav-cta {
    min-height: 46px;
    padding: 0 20px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 92, 169, 0.1);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ctp-blue-deep);
}

.hero {
    padding: 78px 0 54px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0 auto auto -10%;
    width: 36vw;
    height: 36vw;
    max-width: 420px;
    max-height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 217, 56, 0.28), rgba(246, 217, 56, 0));
    pointer-events: none;
}

.hero-grid,
.section-grid,
.impact-grid,
.viva-grid,
.closing-banner,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 28px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
}

.hero-grid-single {
    grid-template-columns: minmax(0, 1fr);
}

.narrow-copy {
    max-width: 860px;
}

.eyebrow,
.section-tag,
.mini-tag,
.signal-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow,
.section-tag {
    color: var(--ctp-red);
}

.hero h1,
.section h2,
.site-footer h2,
.contact-form h3,
.gallery-card h3,
.timeline-card h3,
.service-card h3,
.brief-card h2 {
    margin: 14px 0 0;
    font-family: 'Sora', sans-serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.2rem);
    max-width: 12ch;
}

.section h2,
.site-footer h2,
.brief-card h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    max-width: 18ch;
}

.lead,
.rich-text p,
.section-heading p,
.service-card p,
.viva-card p,
.viva-side-note p,
.closing-banner p,
.signal-card p,
.gallery-card p,
.timeline-card p,
.site-footer p,
.brief-card p,
.contact-form .form-note,
.contact-card a,
.contact-card strong,
.stat-card span {
    color: var(--ctp-muted);
    line-height: 1.75;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.button-primary {
    color: var(--ctp-white);
    background: linear-gradient(135deg, var(--ctp-blue) 0%, var(--ctp-blue-deep) 100%);
    box-shadow: var(--shadow-soft);
}

.button-secondary {
    color: var(--ctp-blue-deep);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 92, 169, 0.12);
}

.hero-highlights,
.pillar-list,
.partners-grid,
.brief-list,
.contact-card-stack {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-highlights li,
.pillar-item,
.partner-chip,
.brief-item,
.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 92, 169, 0.08);
    box-shadow: 0 10px 24px rgba(8, 52, 95, 0.06);
}

.hero-highlights li::before,
.brief-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ctp-yellow), var(--ctp-red));
    flex: 0 0 auto;
}

.hero-panel {
    position: relative;
    display: grid;
    gap: 20px;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 14% -16% auto 14%;
    height: 68%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 92, 169, 0.14), rgba(246, 217, 56, 0.22));
    filter: blur(20px);
}

.signal-card,
.service-card,
.viva-card,
.viva-side-note,
.closing-banner,
.gallery-card,
.timeline-card,
.brief-card,
.contact-form,
.stat-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--ctp-surface);
    border: 1px solid var(--ctp-line);
    box-shadow: var(--shadow-soft);
}

.signal-card strong,
.stat-card strong {
    display: block;
    margin: 12px 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    line-height: 1.15;
}

.signal-card-primary {
    background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
}

.signal-card-accent,
.section-contrast,
.site-footer {
    background: linear-gradient(145deg, #0a3560 0%, #005ca9 100%);
    color: var(--ctp-white);
}

.signal-card-accent p,
.signal-card-accent .signal-label,
.section-contrast .section-tag,
.section-contrast p,
.section-contrast h2,
.section-contrast h3,
.section-contrast .partner-chip,
.site-footer p,
.site-footer h2,
.site-footer .section-tag,
.site-footer a {
    color: rgba(255, 255, 255, 0.9);
}

.section-contrast .partner-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}

.section {
    padding: 88px 0;
}

.contact-section-intro {
    padding-bottom: 42px;
}

.contact-section-form {
    padding-top: 42px;
}

.section-light {
    background: rgba(255, 255, 255, 0.72);
}

.section-grid,
.impact-grid,
.viva-grid,
.closing-banner,
.contact-grid,
.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 40px;
}

.section-heading.narrow {
    max-width: 700px;
}

.about-simple {
    padding: 110px 0;
}

.about-simple .section-heading {
    width: 100%;
    max-width: 1120px;
    margin-bottom: 38px;
}

.about-simple .section-heading h1 {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.about-simple .lead {
    width: 100%;
    max-width: 980px;
    margin: 18px auto 0;
}

.about-simple-copy {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 12px;
}

.about-simple-copy p {
    width: 100%;
    max-width: none;
    margin: 0 0 22px;
    text-align: justify;
}

.about-simple-actors,
.about-simple-focus {
    color: var(--ctp-blue-deep);
}

.about-simple-copy strong {
    color: var(--ctp-red);
}

.home-institutional {
    padding-top: 108px;
}

.home-institutional-heading {
    width: 100%;
    max-width: none;
}

.home-institutional-heading h1 {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.home-institutional .lead {
    width: 100%;
    max-width: 980px;
    margin: 18px auto 0;
}

.home-institutional-copy {
    max-width: 900px;
    margin: 0 auto;
}

.home-institutional-copy p {
    max-width: 780px;
    margin: 0 auto 22px;
}

.who-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
    gap: 56px;
    align-items: center;
    padding: 56px 58px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--ctp-blue) 0%, var(--ctp-blue-deep) 100%);
    color: var(--ctp-white);
    box-shadow: 0 24px 60px rgba(8, 52, 95, 0.2);
}

.who-panel-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 6px 8px 6px 0;
    text-align: center;
}

.who-panel-tag {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.who-panel h2 {
    margin: 0;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Sora', sans-serif;
    font-size: clamp(0.96rem, 1.92vw, 1.54rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.who-panel-text,
.who-panel-note p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.who-panel-text {
    width: 100%;
    max-width: none;
    margin: 30px 0 0;
    font-size: 1.06rem;
    text-align: justify;
}

.who-panel-list {
    display: grid;
    gap: 12px;
    padding: 0;
    max-width: 560px;
    margin: 28px auto 0;
    list-style: none;
    text-align: left;
}

.who-panel-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 600;
    color: var(--ctp-white);
}

.who-panel-list li::before {
    content: '';
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ctp-yellow);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

.who-panel-button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 34px;
    color: var(--ctp-white);
    background: var(--ctp-blue-deep);
    box-shadow: none;
}

.who-panel-button:hover,
.who-panel-button:focus-visible {
    background: var(--ctp-blue);
}

.who-panel-media {
    align-self: stretch;
}

.who-panel-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 24px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(8, 52, 95, 0.18);
}

.who-panel-note {
    max-width: 900px;
    margin: 28px auto 0;
}

.who-panel-note p {
    color: var(--ctp-blue-deep);
    margin: 0;
}

.institutional-stat-grid,
.institutional-list-grid,
.institutional-note-list,
.institutional-media-grid {
    display: grid;
    gap: 22px;
}

.institutional-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 36px;
}

.institutional-stat,
.institutional-list-item,
.institutional-note-item,
.institutional-media-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 92, 169, 0.1);
    box-shadow: 0 10px 24px rgba(8, 52, 95, 0.05);
}

.institutional-stat {
    text-align: center;
}

.institutional-stat strong {
    display: block;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ctp-blue-deep);
}

.institutional-stat span {
    color: var(--ctp-muted);
    line-height: 1.65;
}

.institutional-list-grid,
.institutional-list-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.institutional-list-item h3,
.institutional-media-card h3 {
    margin: 0 0 12px;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--ctp-blue-deep);
}

.institutional-list-item p,
.institutional-note-item p,
.institutional-media-card p {
    margin: 0;
    color: var(--ctp-muted);
    line-height: 1.75;
}

.institutional-note-list,
.institutional-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
}

.institutional-chip-grid {
    margin-top: 34px;
}

.institutional-media-card {
    overflow: hidden;
    padding: 0;
}

.institutional-media-card .gallery-body {
    padding: 24px;
}

.centered {
    text-align: center;
}

.stats-section {
    padding-top: 0;
}

.stats-grid,
.service-grid,
.timeline-grid,
.gallery-grid,
.partners-grid {
    display: grid;
    gap: 22px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong {
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    color: var(--ctp-blue-deep);
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-card-interactive {
    isolation: isolate;
    overflow: hidden;
}

.service-card-interactive::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--service-accent, var(--ctp-blue));
}

.service-card-interactive::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--service-accent, var(--ctp-blue)) 18%, transparent), transparent 68%);
    opacity: 0.9;
    z-index: -1;
}

.service-card-interactive:hover,
.service-card-interactive:focus-within {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--service-accent, var(--ctp-blue)) 34%, white);
    box-shadow: 0 24px 48px color-mix(in srgb, var(--service-accent, var(--ctp-blue)) 18%, rgba(8, 52, 95, 0.12));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 251, 0.96));
}

.service-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--service-accent-deep, var(--ctp-blue-deep));
    background: linear-gradient(135deg, color-mix(in srgb, var(--service-accent, var(--ctp-blue)) 18%, white), rgba(255, 255, 255, 0.7));
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--service-accent, var(--ctp-blue)) 18%, white);
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.85;
}

.service-card-interactive:hover .service-icon,
.service-card-interactive:focus-within .service-icon {
    transform: scale(1.08) rotate(-4deg);
    color: var(--ctp-white);
    background: linear-gradient(135deg, var(--service-accent, var(--ctp-blue)) 0%, var(--service-accent-deep, var(--ctp-blue-deep)) 100%);
    box-shadow: 0 16px 32px color-mix(in srgb, var(--service-accent, var(--ctp-blue)) 24%, rgba(8, 52, 95, 0.1));
}

.service-card-cascade.reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
}

.service-card-cascade.reveal.is-visible {
    animation: service-card-cascade-in 0.68s cubic-bezier(0.2, 0.7, 0.2, 1) both;
    animation-delay: var(--card-delay, 0ms);
}

.service-card-accent-blue {
    --service-accent: #1f75d8;
    --service-accent-deep: #08345f;
}

.service-card-accent-gold {
    --service-accent: #f1b521;
    --service-accent-deep: #9c6d00;
}

.service-card-accent-red {
    --service-accent: #d91d38;
    --service-accent-deep: #841226;
}

.service-card-accent-cyan {
    --service-accent: #16a4b8;
    --service-accent-deep: #0b5d72;
}

.service-card-accent-violet {
    --service-accent: #6f5ce7;
    --service-accent-deep: #42309a;
}

.service-card-accent-ink {
    --service-accent: #21324f;
    --service-accent-deep: #111c30;
}

@keyframes service-card-cascade-in {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card-strong {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 251, 0.9));
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
    overflow: hidden;
    padding: 0;
}

.gallery-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(0, 92, 169, 0.14), rgba(8, 52, 95, 0.2));
}

.gallery-body {
    padding: 24px;
}

.timeline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
    padding-top: 62px;
}

.timeline-index {
    position: absolute;
    top: 20px;
    left: 22px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ctp-blue);
    color: var(--ctp-white);
    font-weight: 700;
}

.pillar-item {
    font-weight: 600;
}

.viva-section {
    position: relative;
}

.viva-section::before {
    content: '';
    position: absolute;
    right: -120px;
    top: 120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 217, 56, 0.18) 0%, rgba(246, 217, 56, 0) 68%);
    pointer-events: none;
}

.viva-side-note {
    display: grid;
    gap: 18px;
    align-self: stretch;
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(246, 241, 232, 0.95));
}

.mini-tag,
.signal-label {
    color: var(--ctp-blue);
}

.partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-chip {
    justify-content: center;
    text-align: center;
    min-height: 88px;
    font-weight: 700;
}

.contact-card-stack {
    gap: 16px;
}

.contact-card {
    align-items: flex-start;
    flex-direction: column;
}

.contact-card a,
.contact-card strong {
    color: var(--ctp-blue-deep);
    font-weight: 700;
}

.brief-card,
.contact-form {
    min-height: 100%;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.form-alert-success {
    background: rgba(25, 135, 84, 0.12);
    color: #12613d;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.form-alert-error {
    background: rgba(217, 29, 56, 0.1);
    color: #9f1b32;
    border: 1px solid rgba(217, 29, 56, 0.18);
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 92, 169, 0.16);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ctp-ink);
}

.field-error {
    color: #9f1b32;
    font-size: 0.92rem;
    line-height: 1.4;
}

.site-footer {
    margin-top: 32px;
    background: #304d94;
    color: var(--ctp-white);
}

.footer-stripe {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 6px;
}

.stripe-cyan {
    background: #12a7e4;
}

.stripe-gold {
    background: #f1d32c;
}

.stripe-red {
    background: #e33b46;
}

.footer-panel {
    padding: 24px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand-logo {
    width: 220px;
    flex: 0 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.footer-brand-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-menu-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-bottom: 16px;
}

.footer-menu-horizontal a {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-menu-horizontal a:hover,
.footer-menu-horizontal a:focus-visible {
    opacity: 0.82;
    transform: translateY(-1px);
}

.footer-brand-text h3,
.footer-column h3 {
    margin: 0 0 12px;
    font-family: 'Sora', sans-serif;
    font-size: 1.22rem;
    line-height: 1.2;
    color: var(--ctp-white);
}

.footer-brand-text p,
.footer-contact-item p,
.footer-column p,
.footer-link-list a,
.footer-bottom-row p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.96);
}

.footer-contact-list {
    display: grid;
    gap: 14px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    align-items: start;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: var(--ctp-white);
    margin-top: 4px;
}

.footer-contact-icon svg,
.footer-social-link svg {
    width: 100%;
    height: 100%;
}

.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 0 10px;
}

.footer-social-link {
    width: 26px;
    height: 26px;
    color: var(--ctp-white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    opacity: 0.82;
    transform: translateY(-2px);
}

.footer-bottom-row {
    text-align: center;
    padding-bottom: 2px;
}

.footer-bottom-row p {
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 1080px) {
    .service-grid-wide,
    .gallery-grid,
    .gallery-grid-compact,
    .partners-grid,
    .institutional-stat-grid,
    .institutional-note-list,
    .institutional-media-grid,
    .timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .institutional-list-grid,
    .institutional-list-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-soft);
    }

    .nav-panel.is-open {
        display: flex;
    }

    .site-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-grid,
    .section-grid,
    .impact-grid,
    .viva-grid,
    .closing-banner,
    .contact-grid,
    .footer-grid,
    .stats-grid,
    .service-grid,
    .service-grid-wide,
    .timeline-grid,
    .gallery-grid,
    .gallery-grid-compact,
    .partners-grid,
    .institutional-stat-grid,
    .institutional-list-grid,
    .institutional-list-grid-compact,
    .institutional-note-list,
    .institutional-media-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .section h2,
    .site-footer h2,
    .brief-card h2 {
        max-width: none;
    }

    .nav-cta {
        width: 100%;
    }

    .who-panel {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .who-panel h2 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .header-inner {
        padding: 14px 0;
    }

    .brand img {
        width: 84px;
    }

    .hero {
        padding-top: 42px;
    }

    .section {
        padding: 68px 0;
    }

    .contact-section-intro {
        padding-bottom: 30px;
    }

    .contact-section-form {
        padding-top: 30px;
    }

    .signal-card,
    .service-card,
    .viva-card,
    .viva-side-note,
    .closing-banner,
    .timeline-card,
    .brief-card,
    .contact-form,
    .stat-card {
        padding: 24px;
    }

    .gallery-body {
        padding: 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .footer-brand-logo {
        width: 148px;
    }

    .footer-menu-horizontal {
        gap: 18px 28px;
        margin-bottom: 14px;
    }

    .footer-social-row {
        padding-top: 14px;
    }
}
