:root {
    --teal: #214647;
    --teal-deep: #1a3839;
    --teal-soft: #2d5f60;
    --gold: #cba349;
    --gold-light: #d4b565;
    --gold-dim: #b8933f;
    --ivory: #f5f0e8;
    --ivory-warm: #faf7f2;
    --off-black: #1a1a1a;
    --white: #ffffff;

    --font-display: "Playfair Display", "Georgia", serif;
    --font-body: "Sora", "Helvetica Neue", sans-serif;

    --section-padding-x: clamp(1.25rem, 5vw, 6rem);
    --section-padding-y: clamp(4rem, 10vh, 8rem);

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body {
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
}

::selection {
    background: var(--gold);
    color: var(--teal);
}

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

::-webkit-scrollbar-track {
    background: var(--teal-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: all 0.6s var(--ease-out-expo);
}

.nav-wrapper.scrolled {
    background: rgba(33, 70, 71, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(203, 163, 73, 0.12);
}

.nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem var(--section-padding-x);
    transition: padding 0.6s var(--ease-out-expo);
}

.nav-wrapper.scrolled .nav-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.nav-logo span {
    color: var(--gold);
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-links {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    list-style: none;
    padding-right: var(--section-padding-x);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ivory);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ivory-warm);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--ivory-warm);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--teal);
    padding: 0.65rem 1.75rem;
    border-radius: 0;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-out-expo);
    border: 1px solid var(--gold);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--ivory-warm);
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 210;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--teal-deep);
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.mobile-nav.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.open .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.open .mobile-nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav.open .mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav.open .mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav.open .mobile-nav-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav.open .mobile-nav-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    margin-top: 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--gold);
    padding: 1rem 3rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-nav.open .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--teal);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-accent-top {
    position: absolute;
    top: 0;
    right: 8%;
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, var(--white), transparent);
    z-index: 2;
    animation: lineGrow 1.8s var(--ease-out-expo) 0.5s forwards;
}

.hero-accent-right {
    position: absolute;
    top: 5%;
    right: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to left, var(--white), transparent);
    z-index: 2;
    animation: lineGrowH 1.4s var(--ease-out-expo) 0.8s forwards;
}

@keyframes lineGrow {
    to {
        height: 45%;
    }
}

@keyframes lineGrowH {
    to {
        width: 12%;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem var(--section-padding-x) 4rem;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.hero-name-pre {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 0;
}

.hero-name-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.1em;
}

.hero-name-line-inner {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s var(--ease-out-expo) forwards;
}

.hero-name-line:nth-child(1) .hero-name-line-inner {
    animation-delay: 0.4s;
}

.hero-name-line:nth-child(2) .hero-name-line-inner {
    animation-delay: 0.55s;
}

.hero-name-underline {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    animation: underlineGrow 1s var(--ease-out-expo) 0.9s forwards;
}

@keyframes underlineGrow {
    to {
        width: min(280px, 60%);
    }
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 1s forwards;
}

.hero-tagline strong {
    color: var(--white);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 1.2s forwards;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--gold);
    padding: 1rem 2.25rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--teal-deep);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.hero-cta-primary:hover::before {
    transform: translateX(0);
}

.hero-cta-primary span {
    position: relative;
    z-index: 1;
}

.hero-cta-primary:hover {
    color: var(--gold);
    border-color: var(--teal-deep);
}

.hero-cta-secondary {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.hero-cta-secondary::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.hero-cta-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: var(--section-padding-x);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out-expo) 1.6s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(203, 163, 73, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        top: -100%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

.hero-scroll-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    inset: 10% 0 0 10%;
    background: var(--teal-deep);
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s var(--ease-out-expo) 0.7s forwards;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-accent {
    position: absolute;
    top: 8%;
    right: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    z-index: 4;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease-out-expo) 1.4s forwards;
}

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

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.about {
    position: relative;
    background: var(--ivory);
    color: var(--off-black);
    padding: 0 var(--section-padding-x);
    overflow: hidden;
}

.about-top-line {
    position: absolute;
    top: 0;
    left: var(--section-padding-x);
    right: var(--section-padding-x);
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            var(--gold),
            var(--gold),
            transparent);
    opacity: 0.4;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out-expo),
        transform 0.9s var(--ease-out-expo);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.about-grid .about-text-col .reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.about-grid .about-text-col .reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.about-grid .about-text-col .reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.about-grid .about-text-col .reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.about-quote-block {
    padding: var(--section-padding-y) 0;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: var(--teal);
    position: relative;
}

.about-quote-mark {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    font-style: normal;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -0.45em;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.about-quote-cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    padding-bottom: var(--section-padding-y);
    align-items: start;
}

.about-image-col {
    position: relative;
    aspect-ratio: 3 / 4;
    max-height: 640px;
}

.about-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-image-frame img {
    transition: transform 0.8s var(--ease-out-expo);
}

.about-image-col:hover .about-image-frame img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-text-col {
    padding-top: 1rem;
}

.about-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1.25rem;
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--teal);
    margin-bottom: 2rem;
}

.about-heading-em {
    display: block;
    color: var(--gold-dim);
    font-style: italic;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-body p {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.78);
}

.about-body em {
    color: var(--teal);
    font-style: italic;
}

.about-body strong {
    color: var(--teal);
    font-weight: 600;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.about-credential {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--teal);
    border: 1px solid rgba(33, 70, 71, 0.2);
    padding: 0.45rem 1rem;
    transition: all 0.3s ease;
}

.about-credential:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none;
    position: relative;
    transition: gap 0.3s var(--ease-out-expo);
}

.about-cta::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

.about-cta:hover {
    gap: 1rem;
}

.about-cta:hover::after {
    width: calc(100% - 26px);
}

.about-cta svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.about-cta:hover svg {
    transform: translateX(4px);
}

.about-partners {
    border-top: 1px solid rgba(33, 70, 71, 0.1);
    padding: 2.5rem 0;
    text-align: center;
}

.about-partners-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.4);
    margin-bottom: 1.25rem;
}

.about-partners-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-partner {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    font-weight: 500;
    color: var(--teal);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.about-partner:hover {
    opacity: 1;
}

.about-partner-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    flex-shrink: 0;
}

.framework {
    position: relative;
    background: var(--teal-deep);
    padding: var(--section-padding-y) var(--section-padding-x);
    overflow: hidden;
}

.framework-bg-letter {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(20rem, 40vw, 45rem);
    font-weight: 900;
    color: var(--white);
    opacity: 0.018;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.6s ease;
}

.framework--visible .framework-bg-letter {
    opacity: 0.025;
}

.framework-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.framework-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s var(--ease-out-expo);
}

.framework--visible .framework-header {
    opacity: 1;
    transform: translateY(0);
}

.framework-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.framework-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.framework-title span {
    color: var(--gold);
}

.framework-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 580px;
    margin: 0 auto;
}

.framework-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    min-height: 480px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s var(--ease-out-expo) 0.15s;
}

.framework--visible .framework-content {
    opacity: 1;
    transform: translateY(0);
}

.framework-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: clamp(1.5rem, 3vw, 3rem);
}

.framework-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.framework-nav-letter {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    width: 2.2rem;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out-expo);
}

.framework-nav-word {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.4s var(--ease-out-expo);
}

.framework-nav-bar {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 0;
    transition: all 0.5s var(--ease-out-expo);
    margin-left: calc(-1 * clamp(1.5rem, 3vw, 3rem) - 1px);
}

.framework-nav-item:hover .framework-nav-letter {
    color: rgba(255, 255, 255, 0.5);
}

.framework-nav-item:hover .framework-nav-word {
    color: rgba(255, 255, 255, 0.6);
}

.framework-nav-item.active .framework-nav-letter {
    color: var(--gold);
    font-size: 1.8rem;
}

.framework-nav-item.active .framework-nav-word {
    color: var(--white);
    font-weight: 600;
}

.framework-nav-item.active .framework-nav-bar {
    width: 3px;
    height: 100%;
}

.framework-detail {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.framework-panel {
    display: none;
    opacity: 0;
    transform: translateY(16px);
}

.framework-panel.active {
    display: block;
    animation: panelReveal 0.5s var(--ease-out-expo) forwards;
}

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

.framework-panel-letter {
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -0.5rem;
    user-select: none;
}

.framework-panel-word {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.framework-panel-tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.framework-panel-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.framework-panel-desc {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.02rem);
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
}

.framework-counter {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-family: var(--font-body);
}

.framework-counter-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.framework-counter-sep {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.15rem;
}

.framework-counter-total {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
}

.framework-cards {
    display: none;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s var(--ease-out-expo) 0.15s;
}

.framework--visible .framework-cards {
    opacity: 1;
    transform: translateY(0);
}

.framework-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    transition: all 0.4s var(--ease-out-expo);
}

.framework-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(203, 163, 73, 0.2);
}

.framework-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.framework-card-letter {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    width: 2.5rem;
    flex-shrink: 0;
}

.framework-card-word {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.framework-card-tagline {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    line-height: 1.4;
    margin-top: 0.2rem;
}

.framework-card-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
}

.framework-footer {
    text-align: center;
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.9s var(--ease-out-expo) 0.3s;
}

.framework--visible .framework-footer {
    opacity: 1;
    transform: translateY(0);
}

.framework-footer-text {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
}

.framework-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-deep);
    background: var(--gold);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.framework-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.framework-footer-cta:hover::before {
    transform: translateX(0);
}

.framework-footer-cta span {
    position: relative;
    z-index: 1;
}

.framework-footer-cta:hover {
    border-color: var(--white);
}

.services {
    position: relative;
    background: var(--ivory);
    color: var(--off-black);
    padding: var(--section-padding-y) var(--section-padding-x);
    overflow: hidden;
}

.services-header {
    max-width: 620px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1rem;
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

.services-title span {
    display: block;
    font-style: italic;
    color: var(--gold-dim);
    font-weight: 400;
    font-size: 0.65em;
    margin-top: 0.3em;
}

.services-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.55);
}

.services-list {
    max-width: 960px;
}

.services-item {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    border-top: 1px solid rgba(33, 70, 71, 0.08);
    cursor: default;
}

.services-item:last-child {
    border-bottom: 1px solid rgba(33, 70, 71, 0.08);
}

.services-item-header {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.services-item-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
    transition: opacity 0.4s var(--ease-out-expo);
}

.services-item:hover .services-item-number {
    opacity: 0.5;
}

.services-item-header-text {
    flex: 1;
    min-width: 0;
}

.services-item-title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--teal);
    line-height: 1.25;
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.services-item:hover .services-item-title {
    color: var(--teal-deep);
}

.services-item-format {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.services-item-arrow {
    flex-shrink: 0;
    color: var(--teal);
    opacity: 0.2;
    margin-top: 0.25rem;
    transition: all 0.4s var(--ease-out-expo);
}

.services-item:hover .services-item-arrow {
    opacity: 0.6;
    transform: translateY(2px);
}

.services-item-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: calc(3rem + clamp(1rem, 2.5vw, 2rem));
    transition:
        max-height 0.6s var(--ease-out-expo),
        opacity 0.5s var(--ease-out-expo),
        margin 0.5s var(--ease-out-expo);
    margin-top: 0;
}

.services-item:hover .services-item-body {
    max-height: 400px;
    opacity: 1;
    margin-top: 1.25rem;
}

.services-item-desc {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1.1vw, 0.95rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(26, 26, 26, 0.65);
    max-width: 540px;
    margin-bottom: 1.25rem;
}

.services-item-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-item-topic {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--teal);
    background: rgba(33, 70, 71, 0.06);
    padding: 0.35rem 0.85rem;
    transition: all 0.3s ease;
}

.services-item-topic:hover {
    background: var(--teal);
    color: var(--white);
}

.services-item-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease-out-expo);
}

.services-item:hover .services-item-line {
    width: 80px;
}

.services-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    background: var(--teal);
    position: relative;
    overflow: hidden;
}

.services-cta-band::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0.2;
    pointer-events: none;
}

.services-cta-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--gold);
    padding: 0.85rem 2.25rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
}

.services-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.services-cta-btn:hover::before {
    transform: translateX(0);
}

.services-cta-btn span {
    position: relative;
    z-index: 1;
}

.services-cta-btn:hover {
    border-color: var(--white);
}

.topics {
    position: relative;
    background: var(--teal);
    padding: var(--section-padding-y) var(--section-padding-x);
    overflow: hidden;
}

.topics-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.topics-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.topics-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.topics-title span {
    color: var(--gold);
    font-style: italic;
}

.topics-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1140px;
    margin: 0 auto;
}

.topics-card {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease-out-expo);
    transition-delay: var(--card-delay, 0s);
}

.topics-card:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(203, 163, 73, 0.15);
    transform: translateY(-4px);
}

.topics-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.6s var(--ease-out-expo);
}

.topics-card:hover .topics-card-accent {
    width: 100%;
}

.topics-card-tags {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.topics-card-tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.6rem;
}

.topics-card-tag--gold {
    color: var(--gold);
    border-color: rgba(203, 163, 73, 0.3);
}

.topics-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.topics-card-subtitle {
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.topics-card-divider {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 1rem;
    transition: width 0.4s var(--ease-out-expo), background 0.4s ease;
}

.topics-card:hover .topics-card-divider {
    width: 48px;
    background: var(--gold);
}

.topics-card-desc {
    font-family: var(--font-body);
    font-size: clamp(0.82rem, 1vw, 0.9rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    flex: 1;
    margin-bottom: 1.5rem;
}

.topics-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s var(--ease-out-expo);
}

.topics-card-link:hover {
    gap: 0.85rem;
}

.topics-card-link svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.topics-card-link:hover svg {
    transform: translateX(3px);
}

.press {
    position: relative;
    background: var(--ivory);
    padding: var(--section-padding-y) var(--section-padding-x);
    overflow: hidden;
}

.press-inner {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.press-image-col {
    position: relative;
}

.press-image-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    max-height: 520px;
}

.press-image-frame img {
    transition: transform 0.8s var(--ease-out-expo);
}

.press-image-col:hover .press-image-frame img {
    transform: scale(1.03);
}

.press-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 56, 57, 0.4) 0%,
            transparent 50%);
    pointer-events: none;
}

.press-content {
    padding: 1rem 0;
}

.press-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1.25rem;
}

.press-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.press-heading-em {
    display: block;
    color: var(--gold-dim);
    font-style: italic;
    font-weight: 400;
    font-size: 0.72em;
    margin-top: 0.15em;
}

.press-desc {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1.1vw, 0.98rem);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.65);
    max-width: 480px;
    margin-bottom: 2rem;
}

.press-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.press-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--teal);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border: 1px solid var(--teal);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.press-cta-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--teal-deep);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.press-cta-primary:hover::before {
    transform: translateX(0);
}

.press-cta-primary svg,
.press-cta-primary span {
    position: relative;
    z-index: 1;
}

.press-cta-secondary {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--teal);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.press-cta-secondary::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.press-cta-secondary:hover {
    color: var(--teal-deep);
}

.press-cta-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.press-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.press-social-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal);
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.press-social-link:hover {
    opacity: 1;
    color: var(--gold-dim);
}

.press-social-sep {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(33, 70, 71, 0.2);
    user-select: none;
}

.booking {
    position: relative;
    background: var(--teal);
    padding: var(--section-padding-y) var(--section-padding-x);
    overflow: hidden;
}

.booking-accent-left {
    position: absolute;
    bottom: 0;
    left: 6%;
    width: 1px;
    height: 35%;
    background: linear-gradient(to top, var(--gold), transparent);
    opacity: 0.15;
    pointer-events: none;
}

.booking-accent-right {
    position: absolute;
    top: 8%;
    right: 0;
    width: 10%;
    height: 1px;
    background: linear-gradient(to left, var(--gold), transparent);
    opacity: 0.15;
    pointer-events: none;
}

.booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}

.booking-message {
    padding-top: 1rem;
}

.booking-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.booking-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2rem;
}

.booking-heading-em {
    display: block;
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    font-size: 0.75em;
    margin-top: 0.15em;
}

.booking-quote {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 440px;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.booking-signature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.booking-sig-dash {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.booking-sig-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.booking-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-contact-item svg {
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.booking-contact-item:hover {
    color: var(--white);
}

.booking-contact-item:hover svg {
    opacity: 1;
}

.booking-calendly {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.booking-calendly-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-calendly-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: calDotPulse 2.5s ease-in-out infinite;
}

@keyframes calDotPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.booking-calendly-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.booking-calendly-embed {
    width: 100%;
    min-height: 520px;
    position: relative;
}

.booking-calendly-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.booking-calendly-fallback {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.booking-calendly-fallback a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.booking-calendly-fallback a:hover {
    opacity: 0.7;
}

.gallery {
    position: relative;
    background: var(--ivory);
    color: var(--off-black);
    padding: var(--section-padding-y) var(--section-padding-x);
    overflow: hidden;
}

.gallery-top-line {
    position: absolute;
    top: 0;
    left: var(--section-padding-x);
    right: var(--section-padding-x);
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            var(--gold),
            var(--gold),
            transparent);
    opacity: 0.4;
}

.gallery-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.gallery-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.75rem;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--teal);
}

.gallery-title span {
    color: var(--gold-dim);
    font-style: italic;
}

.gallery-viewer {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--teal-deep);
    margin-bottom: 0.75rem;
}

.gallery-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    animation: galleryFadeIn 0.35s var(--ease-out-expo) forwards;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--teal-deep);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.55;
}

.gallery-thumb:hover {
    opacity: 0.85;
}

.gallery-thumb--active {
    border-color: var(--gold);
    opacity: 1;
}

.gallery-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s var(--ease-out-expo);
}

.gallery-thumb:hover .gallery-thumb-img {
    transform: scale(1.06);
}

@media (max-width: 640px) {
    .gallery-main {
        aspect-ratio: 1 / 1;
    }

    .gallery-thumbs {
        gap: 0.5rem;
    }
}

.footer {
    position: relative;
    background: var(--teal-deep);
    padding: 0 var(--section-padding-x);
}

.footer-top-line {
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            var(--gold),
            var(--gold),
            transparent);
    opacity: 0.2;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    max-width: 1140px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.footer-logo span {
    color: var(--gold);
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-powered {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

.footer-powered strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.footer-nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-contact-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.footer-social:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(203, 163, 73, 0.08);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1140px;
    margin: 0 auto;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.02em;
}

.footer-site-credit {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
}

.footer-site-credit a {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-site-credit a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
        position: fixed;
        top: 1.5rem;
        right: var(--section-padding-x);
    }

    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 10rem var(--section-padding-x) 3rem;
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        height: 50vh;
        min-height: 400px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-accent-top,
    .hero-accent-right {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-col {
        max-height: 480px;
        max-width: 480px;
    }

    .about-quote-block {
        padding: clamp(3rem, 8vh, 5rem) 0;
    }

    .framework-content {
        display: none;
    }

    .framework-cards {
        display: flex;
    }

    .framework-bg-letter {
        font-size: clamp(12rem, 30vw, 20rem);
        right: -8%;
    }

    .services-item-body {
        max-height: none;
        opacity: 1;
        margin-top: 1.25rem;
    }

    .services-item-arrow {
        display: none;
    }

    .services-item-line {
        width: 48px;
    }

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

    .press-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .press-image-frame {
        aspect-ratio: 16 / 9;
        max-height: 360px;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .booking-calendly-embed {
        min-height: 480px;
    }

    .booking-accent-left,
    .booking-accent-right {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-nav {
        align-items: flex-end;
        order: 2;
    }

    .footer-contact {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        order: 3;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 8rem 1.25rem 2rem;
    }

    .hero-image-wrapper {
        height: 45vh;
        min-height: 320px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .hero-cta-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-name-underline {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .mobile-nav-link {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .about-image-col {
        aspect-ratio: 4 / 3;
        max-width: 100%;
    }

    .about-image-accent {
        width: 50px;
        height: 50px;
        bottom: -8px;
        right: -8px;
    }

    .about-heading {
        margin-bottom: 1.5rem;
    }

    .about-credentials {
        gap: 0.5rem;
    }

    .about-partners-list {
        flex-direction: column;
        gap: 0.75rem;
    }

    .about-partner-dot {
        display: none;
    }

    .framework-card {
        padding: 1.25rem;
    }

    .framework-card-letter {
        font-size: 1.8rem;
        width: 2rem;
    }

    .framework-bg-letter {
        display: none;
    }

    .services-item-header {
        flex-wrap: wrap;
    }

    .services-item-number {
        width: auto;
        font-size: 1.5rem;
    }

    .services-item-body {
        padding-left: 0;
    }

    .services-item-topics {
        gap: 0.4rem;
    }

    .services-cta-band {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .services-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .topics-card:hover {
        transform: none;
    }

    .press-image-frame {
        aspect-ratio: 4 / 3;
        max-height: 300px;
    }

    .press-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .press-cta-primary {
        width: 100%;
        justify-content: center;
    }

    .press-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .press-social-sep {
        display: none;
    }

    .booking-calendly-embed {
        min-height: 440px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        align-items: center;
        order: unset;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.25rem;
    }

    .footer-contact {
        align-items: center;
        flex-direction: column;
        order: unset;
        border-top: none;
        padding-top: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

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

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

    .hero-name-line-inner,
    .hero-name-pre,
    .hero-tagline,
    .hero-ctas,
    .hero-scroll,
    .hero-image-container,
    .hero-image-bg,
    .hero-image-accent,
    .hero-name-underline,
    .reveal,
    .framework-header,
    .framework-content,
    .framework-cards,
    .framework-footer {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-name-underline {
        width: min(280px, 60%) !important;
    }

    .hero-accent-top {
        height: 45% !important;
    }

    .hero-accent-right {
        width: 12% !important;
    }
}


.about-img,
.press-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 1024px) {

    .hero-image-wrapper,
    .hero-image-container {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-img {
        height: auto !important;
        object-fit: contain;
    }

    .press-image-frame {
        aspect-ratio: auto !important;
        height: auto !important;
        max-height: none !important;
    }

    .press-img {
        height: auto !important;
        object-fit: contain;
    }
}

@media (max-width: 640px) {

    .about-image-col,
    .about-image-frame {
        aspect-ratio: auto !important;
        height: auto !important;
        max-height: none !important;
        max-width: none !important;
    }

    .about-img {
        height: auto !important;
        object-fit: contain;
    }

    .hero-image-wrapper {
        height: auto !important;
        min-height: 0 !important;
    }

    .press-image-frame {
        aspect-ratio: auto !important;
        max-height: none !important;
    }
}
