:root {
    --frd-ink: #0a4e73;
    --frd-ink-soft: #365c73;
    --frd-ink-dark-surface: #0a5f8a;
    --frd-paper: #f4f1ec;
    --frd-cream: #ebe6de;
    --frd-black: #050505;
    --frd-taupe: #afa294;
    --frd-border: rgba(13, 60, 91, 0.18);
    --frd-shadow: 0 22px 42px rgba(9, 30, 52, 0.18);
    --frd-radius: 18px;
    --frd-container: 1350px;
    --frd-content: 1180px;
}

@font-face {
    font-family: "MADETOMMY";
    src: url("./assets/MADETOMMY.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "MADETOMMY";
    src: url("./assets/MADETOMMY-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body.function-rd-body {
    margin: 0;
    color: var(--frd-ink);
    background: var(--frd-black);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.function-rd-body::-webkit-scrollbar {
    display: none;
}

body.function-rd-body.frd-menu-open {
    overflow: hidden;
}

.frd-home {
    background: var(--frd-black);
}

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

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

.frd-container {
    width: min(calc(100% - 88px), var(--frd-container));
    margin: 0 auto;
}

.frd-hero .frd-container {
    width: auto;
    margin-left: 5%;
    margin-right: 0;
}

.frd-principles .frd-container,
.frd-arms .frd-container,
.frd-credentials .frd-container,
.frd-insights .frd-container,
.frd-engage .frd-container {
    max-width: var(--frd-content);
}

.frd-principles .frd-container {
    width: min(95vw, 1500px);
    max-width: none;
}

.frd-kicker,
.frd-section-heading,
.frd-nav a,
.frd-button,
.frd-scroll-link,
.frd-pill-row span,
.frd-form-message {
    font-family: "MADETOMMY", "Manrope", sans-serif;
}

.frd-section-heading,
.frd-founder__content h2,
.frd-article h1,
.frd-page-header h1 {
    font-family: "fields", serif;
}

.frd-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #063f63 0%, #032e4d 48%, #94837a 100%);
    color: #fff;
}

.frd-hero::before {
    content: "";
    position: absolute;
    inset: -6%;
    pointer-events: none;
    background:
        radial-gradient(circle at 84% 86%, rgba(243, 226, 212, 0.34) 0%, rgba(243, 226, 212, 0.18) 22%, rgba(243, 226, 212, 0) 48%),
        radial-gradient(circle at 14% 12%, rgba(11, 111, 156, 0.22) 0%, rgba(11, 111, 156, 0) 42%),
        radial-gradient(circle at 92% 26%, rgba(4, 20, 39, 0.42) 0%, rgba(4, 20, 39, 0) 38%),
        linear-gradient(135deg, #063f63 0%, #032e4d 48%, #94837a 100%);
    background-size: 132% 132%, 118% 118%, 120% 120%, 112% 112%;
    background-position: 92% 94%, 12% 8%, 96% 18%, 48% 48%;
    transform: scale(1);
    opacity: 0.98;
    animation: frdHeroGradientPulse 12s ease-in-out infinite, frdHeroGradientDrift 12s ease-in-out infinite alternate;
}

.frd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
        radial-gradient(circle at 80% 65%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 100%);
    background-size: 11px 11px, 13px 13px;
    mix-blend-mode: overlay;
}

.frd-symbol {
    position: absolute;
    opacity: 0.09;
    pointer-events: none;
    --frd-symbol-x: 0px;
    --frd-symbol-y: 0px;
    will-change: transform;
    transition: transform 280ms ease-out;
}

@keyframes frdHeroGradientPulse {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.94;
    }

    50% {
        transform: scale(1.035) translate3d(1.2%, 1.2%, 0);
        opacity: 1;
    }

    100% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.94;
    }
}

@keyframes frdMenuReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, -10px, 0) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes frdMoreFloat {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 8px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes frdHeroGradientDrift {
    0% {
        background-position: 104% 112%, 40% 40%;
    }

    50% {
        background-position: 82% 76%, 50% 48%;
    }

    100% {
        background-position: 116% 120%, 60% 58%;
    }
}

@keyframes frdRevealUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(0.985);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.frd-symbol--hero {
    top: 0;
    right: 0;
    width: auto;
    height: 100vh;
    transform: translate3d(var(--frd-symbol-x), var(--frd-symbol-y), 0);
}

.frd-site-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    padding: 2.5vw 0 18px;
    position: relative;
    z-index: 2;
}

.frd-brand {
    display: inline-flex;
    align-items: center;
}

.frd-brand img {
    display: block;
    width: clamp(285px, 21vw, 357px);
    height: auto;
    transform: translateY(-2px);
}

.frd-nav {
    margin-right: 2.5%;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    transform: translateY(-5px);
}

.frd-menu-toggle {
    display: none;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(191, 174, 159, 0.45);
    border-radius: 50%;
    background: rgba(7, 29, 46, 0.28);
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 4;
    appearance: none;
    -webkit-appearance: none;
    color: #bfae9f;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.frd-menu-toggle:hover {
    background: rgba(7, 29, 46, 0.42);
    border-color: rgba(191, 174, 159, 0.72);
}

.frd-menu-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.frd-menu-toggle__line + .frd-menu-toggle__line {
    margin-top: 5px;
}

.frd-menu-toggle[aria-expanded="true"] .frd-menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.frd-menu-toggle[aria-expanded="true"] .frd-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.frd-menu-toggle[aria-expanded="true"] .frd-menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.frd-nav a {
    font-size: 16pt;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.frd-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    text-transform: none;
}

.frd-nav .frd-linkedin {
    margin-left: 16px;
}

.frd-linkedin img {
    width: 24px;
    height: 24px;
}

.frd-linkedin--small {
    width: 74px;
    height: 64px;
    background: transparent;
    border: 1px solid currentColor;
    color: var(--frd-ink);
    font-size: 1.6rem;
    border-radius: 22px;
}

.frd-linkedin--small img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(19%) sepia(57%) saturate(1079%) hue-rotate(166deg) brightness(94%) contrast(91%);
}

.frd-hero__content {
    max-width: 690px;
    padding: 10vh 0 9vh;
    position: relative;
    z-index: 1;
}

.frd-kicker {
    display: none;
}

.frd-hero h1 {
    margin: 0;
    color: #d3daf8;
    font-family: "MADETOMMY", "Manrope", sans-serif;
    font-weight: 700;
    font-size: clamp(4.05rem, 4.8vw, 5.25rem);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.frd-hero h1 span {
    white-space: nowrap;
}

.frd-hero__lede {
    max-width: 560px;
    margin: 52px 0 0;
    font-family: "fields", serif;
    font-weight: 500;
    font-size: clamp(1.55rem, 1.9vw, 2.15rem);
    line-height: 1.18;
}

.frd-scroll-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 78px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #988b80;
    font-weight: 600;
    font-size: 1.5em;
    font-family: "MADETOMMY", "Manrope", sans-serif;
}

@media (min-width: 1600px) {
    .frd-hero__content {
        padding-top: 16vh;
    }

    .frd-hero h1 {
        font-size: 6.05rem;
    }
}

.frd-scroll-link__arrow {
    display: block;
    width: 11px;
    height: auto;
    align-self: center;
    animation: frdMoreFloat 2.4s ease-in-out infinite;
    will-change: transform;
}

.frd-principles,
.frd-arms,
.frd-credentials,
.frd-insights,
.frd-engage {
    background: #fff;
    color: var(--frd-ink);
    padding: 72px 0;
}

.frd-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    will-change: opacity, transform;
}

.frd-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    animation: frdRevealUp 680ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
    animation-delay: var(--frd-reveal-delay, 0ms);
}

.frd-reveal--soft {
    transform: translate3d(0, 18px, 0) scale(0.992);
}

.frd-reveal--soft.is-visible {
    animation-duration: 560ms;
}

.frd-intro-line,
.frd-section-heading {
    text-align: center;
}

.frd-intro-line {
    width: min(95vw, 1500px);
    max-width: none;
    margin: 0 auto 46px;
    font-family: "fields", serif;
    font-size: clamp(1.95rem, 2.55vw, 2.7rem);
    line-height: 1.14;
    text-align: center;
    color: var(--frd-ink-dark-surface);
}

.frd-principles__grid,
.frd-insights-grid,
.frd-logo-grid {
    display: grid;
}

.frd-principles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
    align-items: start;
}

.frd-principle-card,
.frd-panel,
.frd-insight-card,
.frd-article {
    background: var(--frd-paper);
    color: var(--frd-ink);
}

.frd-principle-card {
    padding: 0;
    text-align: center;
    background: transparent;
    color: var(--frd-ink-dark-surface);
}

.frd-principle-card__icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 34px;
    display: grid;
    place-items: center;
}

.frd-principle-card__icon img {
    width: 100%;
    height: auto;
}

.frd-principle-card h2,
.frd-panel h2,
.frd-insight-card h3,
.frd-page-header h1,
.frd-article h1 {
    margin: 0 0 16px;
}

.frd-principle-card h2,
.frd-panel h2 {
    font-size: clamp(1.45rem, 1.7vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--frd-ink-dark-surface);
}

.frd-principle-card h2 {
    margin-bottom: 8px;
}

.frd-principle-card p {
    margin: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.14rem;
    line-height: 1.34;
    color: var(--frd-ink-dark-surface);
}

.frd-section-heading {
    margin: 0 0 34px;
    font-size: clamp(1.7rem, 2vw, 2.5rem);
    line-height: 1.1;
    color: var(--frd-ink);
}

.frd-two-column,
.frd-credentials__layout,
.frd-founder__grid,
.frd-form__row {
    display: grid;
    gap: 28px;
}

.frd-two-column,
.frd-founder__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.frd-panel {
    padding: 42px 42px 38px;
    min-height: 100%;
    background: #f3f4f6;
    border-radius: 0;
    box-shadow: none;
}

.frd-panel p,
.frd-panel li,
.frd-founder__content p,
.frd-insight-card p,
.frd-article,
.frd-form input,
.frd-form textarea {
    font-size: 0.95rem;
    line-height: 1.42;
}

.frd-panel ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

.frd-credentials__layout {
    grid-template-columns: 1.14fr 0.86fr;
    align-items: stretch;
    gap: 52px;
}

.frd-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 20px;
}

.frd-logo-box {
    min-height: 84px;
    display: grid;
    place-items: center;
    border-radius: 0;
    border: 1px solid #b19d8d;
    background: #fff;
    color: #0d3c5b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.frd-testimonial {
    margin: 0;
    padding: 20px 12px 10px 24px;
    border-radius: 0;
    background: transparent;
    color: var(--frd-ink);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frd-testimonial::before,
.frd-testimonial::after {
    position: absolute;
    right: 10px;
    color: #b4a597;
    font-family: "fields", serif;
    font-size: 6rem;
    line-height: 0.7;
}

.frd-testimonial::before {
    content: "\201C";
    top: -8px;
}

.frd-testimonial::after {
    content: "\201D";
    bottom: 8px;
}

.frd-testimonial p {
    margin: 0 0 24px;
    font-family: "fields", serif;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    line-height: 1.18;
    text-align: center;
    color: #325776;
}

.frd-testimonial cite {
    display: block;
    font-style: normal;
    color: var(--frd-ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.frd-testimonial cite::before {
    content: "";
    display: block;
    width: 112px;
    height: 1px;
    margin: 0 auto 14px;
    background: #b4a597;
}

.frd-testimonial cite span,
.frd-testimonial cite small {
    display: block;
}

.frd-testimonial cite small {
    margin-top: 4px;
    font-size: 0.82em;
    letter-spacing: 0.08em;
}

.frd-insights__intro {
    margin: 2px auto 34px;
    text-align: center;
    color: var(--frd-ink-dark-surface);
    font-size: 0.84rem;
}

.frd-insights__intro a {
    text-decoration: underline;
}

.frd-insights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.frd-insight-card {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--frd-shadow);
    transition: transform 260ms ease, box-shadow 260ms ease;
    background: #f4f1ec;
}

.frd-insight-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 28px 54px rgba(9, 30, 52, 0.2);
}

.frd-insight-card__image {
    aspect-ratio: 1.22;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #dfe6ef;
}

.frd-insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frd-insight-card__content {
    padding: 18px 22px 22px;
}

.frd-insight-card h3,
.frd-insight-card h2 {
    font-family: "fields", serif;
    font-size: 1.1rem;
    line-height: 1.08;
    margin-bottom: 12px;
}

.frd-insight-card p {
    font-size: 0.75rem;
    line-height: 1.25;
}

.frd-insights__footer {
    margin-top: 12px;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--frd-ink);
    font-size: 0.88rem;
}

.frd-founder {
    background: linear-gradient(180deg, #ede8e1 0%, #ebe7e1 100%);
    padding: 92px 0 104px;
}

.frd-founder .frd-container {
    width: min(calc(100% - 116px), 1600px);
    max-width: none;
}

.frd-founder__grid {
    gap: 92px;
    grid-template-columns: minmax(440px, 540px) minmax(680px, 1fr);
    align-items: start;
}

.frd-founder__media {
    display: grid;
    gap: 42px;
    align-content: start;
    justify-items: start;
}

.frd-founder__portrait {
    width: min(100%, 540px);
    aspect-ratio: 1 / 1.05;
    min-height: 0;
    border-radius: 0;
    overflow: hidden;
    background: #f5f1eb;
}

.frd-founder__portrait img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.02);
    transition: transform 900ms ease;
}

.frd-founder__portrait.is-visible img {
    transform: scale(1);
}

.frd-founder__content {
    padding-top: 4px;
    max-width: 860px;
}

.frd-founder__lede {
    margin: 0 0 66px;
    font-family: "fields", serif;
    font-size: 38px;
    line-height: 1.15;
    color: var(--frd-ink-dark-surface);
}

.frd-founder__content h2 {
    margin: 0 0 24px;
    font-size: clamp(1.45rem, 1.7vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--frd-ink-dark-surface);
    font-family: "MADETOMMY", "Manrope", sans-serif;
    font-weight: 700;
}

.frd-founder__content p {
    color: var(--frd-ink-dark-surface);
    font-size: 1.28rem;
    line-height: 1.48;
}

.frd-founder__content p + p {
    margin-top: 28px;
}

.frd-founder__logos,
.frd-founder__actions {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.frd-founder__logos {
    margin: 0;
    justify-content: flex-start;
}

.frd-founder__logos img {
    width: auto;
    height: 72px;
}

.frd-founder__actions {
    margin-top: 84px;
}

.frd-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    min-width: 520px;
    padding: 0 52px;
    border-radius: 999px;
    border: 1px solid currentColor;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: 1.02rem;
}

.frd-button--outline {
    color: var(--frd-ink);
}

.frd-engage {
    position: relative;
    overflow: hidden;
    padding-top: 56px;
    padding-bottom: 64px;
}

.frd-engage::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -6px;
    width: 300px;
    height: 340px;
    background: url("./assets/background-f.svg") no-repeat center / contain;
    opacity: 0.14;
    pointer-events: none;
}

.frd-symbol--engage {
    right: 0;
    bottom: -8px;
    width: 360px;
    height: auto;
    opacity: 0;
}

.frd-engage__prompt {
    margin: -6px 0 16px;
    color: #b5a593;
    font-size: 0.88rem;
}

.frd-form {
    position: relative;
    z-index: 1;
}

.frd-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.frd-pill-row label {
    cursor: pointer;
}

.frd-pill-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.frd-pill-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(214, 200, 187, 0.55);
    color: #cdb9aa;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.72rem;
}

.frd-pill-row input:checked + span {
    background: #f2eee8;
    color: var(--frd-ink);
}

.frd-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.frd-form input,
.frd-form textarea {
    width: 100%;
    border: 1px solid #99b2e3;
    border-radius: 16px;
    padding: 16px 24px;
    background: #fff;
    color: var(--frd-ink);
    font-family: "Manrope", sans-serif;
}

.frd-form textarea {
    margin-top: 14px;
    resize: vertical;
    min-height: 160px;
}

.frd-form__actions {
    margin-top: 10px;
    text-align: right;
}

.frd-button--solid {
    min-width: 112px;
    border-color: var(--frd-taupe);
    background: var(--frd-taupe);
    color: #fff;
}

.frd-form-message {
    margin: 0 0 18px;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.frd-form-message--success {
    color: #a9dfb6;
}

.frd-form-message--error {
    color: #f0abab;
}

.frd-footer {
    background:
        radial-gradient(circle at 82% 84%, rgba(231, 208, 191, 0.34), transparent 23%),
        radial-gradient(circle at 14% 18%, rgba(15, 114, 156, 0.22), transparent 34%),
        linear-gradient(135deg, #0a486d 0%, #0b2540 58%, #92857d 100%);
    color: #fff;
    padding: 52px 0 54px;
}

.frd-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}

.frd-footer p {
    margin: 16px 0 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.92);
}

.frd-generic-page {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.68), transparent 38%),
        linear-gradient(180deg, #efeae2 0%, #ece5dc 100%);
    min-height: 100vh;
    padding: 110px 0 120px;
}

.frd-article,
.frd-page-header {
    max-width: 880px;
    margin: 0 auto;
}

.frd-archive-page .frd-container {
    width: min(calc(100% - 72px), 1400px);
}

.frd-single-page .frd-container {
    width: min(calc(100% - 72px), 1180px);
}

.frd-page-header {
    margin-bottom: 46px;
    text-align: left;
}

.frd-page-header .frd-kicker {
    margin-bottom: 18px;
    color: #9b8b7b;
    letter-spacing: 0.14em;
}

.frd-page-header h1,
.frd-article h1 {
    margin: 0;
    font-size: clamp(3.25rem, 5.2vw, 5.4rem);
    line-height: 0.98;
    color: var(--frd-ink-dark-surface);
}

.frd-article {
    padding: 58px 60px 64px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(177, 157, 141, 0.22);
    border-radius: 34px;
    box-shadow: 0 28px 56px rgba(33, 41, 52, 0.08);
}

.frd-richtext {
    font-size: 1.18rem;
    line-height: 1.74;
    color: var(--frd-ink-dark-surface);
}

.frd-richtext > * + * {
    margin-top: 1.15em;
}

.frd-richtext h2,
.frd-richtext h3 {
    font-family: "fields", serif;
    color: var(--frd-ink-dark-surface);
    line-height: 1.08;
}

.frd-article__image {
    margin: 28px 0 34px;
}

.frd-article__image img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 26px 48px rgba(23, 33, 44, 0.12);
}

.frd-arms .frd-section-heading,
.frd-insights .frd-section-heading {
    text-align: center;
    color: var(--frd-ink-dark-surface);
}

.frd-arms .frd-section-heading {
    margin-bottom: 38px;
}

.frd-credentials .frd-section-heading,
.frd-engage .frd-section-heading {
    text-align: left;
    text-transform: uppercase;
    color: var(--frd-ink-dark-surface);
}

.frd-credentials .frd-section-heading {
    margin-bottom: 30px;
}

.frd-insights .frd-section-heading {
    text-transform: uppercase;
}

.frd-archive-page .frd-insights-grid {
    margin-top: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.frd-archive-page .frd-insight-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(177, 157, 141, 0.18);
}

.frd-archive-page .frd-insight-card__content {
    padding: 20px 22px 24px;
}

.frd-archive-page .frd-insight-card h2 {
    font-size: 1.45rem;
    line-height: 1.06;
    margin-bottom: 14px;
}

.frd-archive-page .frd-insight-card p {
    font-size: 0.92rem;
    line-height: 1.42;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .frd-hero::before,
    .frd-scroll-link__arrow,
    .frd-reveal,
    .frd-reveal.is-visible,
    .frd-insight-card,
    .frd-founder__portrait img,
    .frd-symbol {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .frd-reveal {
        opacity: 1 !important;
    }
}

@media (max-width: 1100px) {
    .frd-principles__grid,
    .frd-insights-grid,
    .frd-two-column,
    .frd-credentials__layout,
    .frd-founder__grid {
        grid-template-columns: 1fr;
    }

    .frd-site-header {
        align-items: center;
    }

    .frd-intro-line,
    .frd-credentials .frd-section-heading,
    .frd-engage .frd-section-heading {
        text-align: center;
    }
}

@media (max-width: 1320px) {
    .frd-site-header {
        gap: 20px;
    }

    .frd-brand img {
        width: clamp(235px, 19vw, 300px);
    }

    .frd-nav {
        gap: 26px;
    }

    .frd-nav a {
        font-size: 13pt;
        letter-spacing: 0.05em;
    }

    .frd-linkedin {
        width: 72px;
        height: 72px;
    }

    .frd-linkedin img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 980px) {
    .frd-site-header {
        padding: 30px 0 20px;
    }

    .frd-brand img {
        width: 220px;
        transform: none;
    }

    .frd-menu-toggle {
        display: block;
        right: 12px;
        top: 18px;
    }

    .frd-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(320px, calc(100vw - 40px));
        padding: 22px 20px 20px;
        gap: 14px;
        border: 1px solid rgba(207, 216, 245, 0.16);
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(8, 36, 58, 0.97) 0%, rgba(22, 40, 61, 0.98) 100%);
        box-shadow: 0 24px 60px rgba(4, 16, 26, 0.46);
        backdrop-filter: blur(14px);
        transform: none;
        margin-right: 0;
        transform-origin: top right;
    }

    .frd-nav.is-open {
        display: grid;
        animation: frdMenuReveal 180ms ease-out;
    }

    .frd-nav a {
        font-size: 0.92rem;
        line-height: 1.3;
        padding: 8px 0;
    }

    .frd-nav .frd-linkedin {
        margin-left: 0;
        width: 46px;
        height: 46px;
        justify-self: start;
        margin-top: 4px;
    }
}

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

    .frd-hero {
        min-height: 100svh;
    }

    .frd-site-header {
        padding: 30px 0 20px;
    }

    .frd-brand img {
        width: 200px;
    }

    .frd-menu-toggle {
        right: 10px;
        top: 18px;
        width: 50px;
        height: 50px;
    }

    .frd-nav {
        width: min(280px, calc(100vw - 28px));
    }

    .frd-nav a {
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .frd-nav .frd-linkedin {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .frd-linkedin {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .frd-symbol--hero {
        top: auto;
        right: -54px;
        bottom: -52px;
        width: 300px;
        height: auto;
        opacity: 0.14;
    }

    .frd-hero__content {
        max-width: 100%;
        padding: 48px 0 54px;
    }

    .frd-hero h1 {
        max-width: 100%;
        font-size: 2.65rem;
        line-height: 0.98;
    }

    .frd-hero__lede {
        max-width: 285px;
        margin-top: 52px;
        font-size: 1.5rem;
        line-height: 1.18;
    }

    .frd-scroll-link {
        margin-top: 70px;
    }

    .frd-scroll-link__arrow {
        width: 11px;
    }

    .frd-principles,
    .frd-arms,
    .frd-credentials,
    .frd-insights,
    .frd-founder,
    .frd-engage {
        padding: 64px 0;
    }

    .frd-panel,
    .frd-principle-card,
    .frd-testimonial,
    .frd-article {
        padding: 28px;
    }

    .frd-intro-line {
        margin-bottom: 40px;
        font-size: 1.4rem;
        line-height: 1.18;
    }

    .frd-section-heading {
        font-size: 2.3rem;
    }

    .frd-principles__grid,
    .frd-insights-grid,
    .frd-logo-grid {
        gap: 20px;
    }

    .frd-principle-card {
        padding: 8px 0 0;
    }

    .frd-panel {
        padding: 34px 28px;
    }

    .frd-founder__portrait,
    .frd-founder__portrait img {
        min-height: 360px;
    }

    .frd-founder__lede {
        font-size: 2rem;
    }

    .frd-founder__logos img {
        height: 34px;
    }

    .frd-symbol--engage {
        right: -50px;
        bottom: -20px;
        width: 250px;
        height: auto;
        opacity: 0.85;
    }

    .frd-form__row {
        grid-template-columns: 1fr;
    }

    .frd-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .frd-generic-page {
        padding: 72px 0 84px;
    }

    .frd-archive-page .frd-container,
    .frd-single-page .frd-container {
        width: min(calc(100% - 28px), var(--frd-container));
    }

    .frd-page-header {
        margin-bottom: 28px;
    }

    .frd-page-header h1,
    .frd-article h1 {
        font-size: 3.2rem;
        line-height: 0.98;
    }

    .frd-archive-page .frd-page-header h1 {
        font-size: 3rem;
    }

    .frd-single-page .frd-article h1 {
        font-size: 2.55rem;
        line-height: 1.02;
    }

    .frd-article {
        padding: 28px 22px 34px;
        border-radius: 24px;
    }

    .frd-article__image {
        margin: 20px 0 24px;
    }

    .frd-article__image img {
        border-radius: 18px;
    }

    .frd-richtext {
        font-size: 1.02rem;
        line-height: 1.68;
    }

    .frd-archive-page .frd-insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .frd-archive-page .frd-insight-card h2 {
        font-size: 1.25rem;
    }

    .frd-archive-page .frd-insight-card p {
        font-size: 0.92rem;
    }
}

