* {
    box-sizing: border-box;
}

:root {
    --maester-black: #111111;
    --maester-charcoal: #242424;
    --maester-orange: #f26a21;
    --maester-orange-dark: #d95412;
    --maester-soft-orange: #fff1e8;
    --maester-bg: #f7f6f2;
    --maester-white: #ffffff;
    --maester-grey: #6f6f6f;
    --maester-line: #e4e1dc;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-soft: 0 24px 70px rgba(17, 17, 17, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--maester-bg);
    color: var(--maester-black);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 246, 242, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav-wrap {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 52px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--maester-charcoal);
    font-size: 14px;
    font-weight: 700;
}

.nav a {
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--maester-orange);
    transition: width 0.25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--maester-line);
    border-radius: 14px;
    background: var(--maester-white);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--maester-black);
    margin: 5px auto;
}

.hero {
    position: relative;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: 80px;
    border-radius: 50%;
    background: var(--maester-soft-orange);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 270px;
    height: 270px;
    left: -110px;
    bottom: 80px;
    border-radius: 50%;
    border: 1px solid var(--maester-line);
    z-index: 0;
}

.hero-bg-word {
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    font-size: clamp(90px, 18vw, 240px);
    font-weight: 900;
    letter-spacing: -0.08em;
    color: rgba(17, 17, 17, 0.035);
    white-space: nowrap;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 52px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--maester-orange);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--maester-orange);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(44px, 6.2vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.065em;
    margin-bottom: 26px;
}

h2 {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

h3 {
    font-size: 23px;
    letter-spacing: -0.025em;
}

.hero-copy p,
.section-head p,
.intro-grid p,
.story-copy p,
.contact-box p,
.unit-profile-card p,
.service-index p {
    color: var(--maester-grey);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.btn.primary {
    background: var(--maester-orange);
    color: white;
    box-shadow: 0 18px 38px rgba(242, 106, 33, 0.22);
}

.btn.primary:hover {
    background: var(--maester-orange-dark);
    transform: translateY(-2px);
}

.btn.secondary {
    background: var(--maester-white);
    color: var(--maester-black);
    border-color: var(--maester-line);
}

.btn.secondary:hover {
    border-color: var(--maester-black);
    transform: translateY(-2px);
}

.hero-card,
.unit-card,
.service-index,
.stat,
.timeline-item,
.highlight-card,
.portfolio-card,
.unit-profile-card,
.contact-box {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero-card {
    padding: 30px;
}

.hero-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--maester-line);
}

.hero-card-top span {
    color: var(--maester-grey);
    font-size: 13px;
    font-weight: 700;
}

.hero-card-top strong {
    font-size: 28px;
    letter-spacing: -0.04em;
}

.network-list {
    display: grid;
    gap: 12px;
}

.network-list a {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: #fbfaf7;
    border: 1px solid var(--maester-line);
    transition: 0.25s ease;
}

.network-list a:hover {
    transform: translateX(6px);
    border-color: var(--maester-orange);
}

.network-list span,
.unit-mark,
.unit-profile-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--maester-black);
    color: white;
    font-weight: 900;
    font-size: 13px;
}

.network-list small {
    display: block;
    margin-top: 4px;
    color: var(--maester-grey);
}

.section {
    padding: 96px 0;
}

.section-intro {
    padding-top: 64px;
}

.intro-grid,
.story-grid,
.unit-hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: start;
}

.section-head {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-head.narrow {
    max-width: 680px;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.unit-card {
    position: relative;
    padding: 28px;
    min-height: 380px;
    overflow: hidden;
    transition: 0.28s ease;
}

.unit-card::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--maester-soft-orange);
    transition: 0.28s ease;
}

.unit-card:hover {
    transform: translateY(-8px);
}

.unit-card:hover::after {
    transform: scale(1.2);
    background: #ffe2cf;
}

.unit-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.unit-card-head span {
    color: var(--maester-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: right;
}

.unit-card h3,
.unit-card p,
.unit-services,
.unit-actions {
    position: relative;
    z-index: 2;
}

.unit-card p {
    color: var(--maester-grey);
    line-height: 1.7;
}

.unit-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.unit-services small {
    padding: 8px 11px;
    border-radius: 999px;
    background: #f4f1ec;
    color: var(--maester-charcoal);
    font-weight: 700;
}

.unit-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    margin-top: 24px;
    border-top: 1px solid var(--maester-line);
    font-size: 14px;
    font-weight: 900;
}

.unit-actions a:first-child {
    color: var(--maester-orange);
}

.unit-actions a:last-child {
    color: var(--maester-grey);
}

.service-section {
    background: var(--maester-white);
    border-block: 1px solid var(--maester-line);
}

.service-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-index {
    padding: 28px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: start;
}

.service-index span {
    color: var(--maester-orange);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.service-index h3 {
    margin-bottom: 8px;
}

.service-index p {
    margin-bottom: 0;
}

.stats-section {
    padding-block: 72px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat {
    padding: 30px 24px;
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 48px;
    letter-spacing: -0.06em;
}

.stat span {
    color: var(--maester-grey);
    font-weight: 800;
}

.story-section {
    background:
        linear-gradient(90deg, rgba(242,106,33,0.08), transparent 42%),
        var(--maester-bg);
}

.story-copy {
    position: sticky;
    top: 120px;
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    position: relative;
    padding: 24px 24px 24px 86px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 42px;
    top: 0;
    bottom: -16px;
    width: 1px;
    background: var(--maester-line);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item span {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--maester-orange);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    z-index: 2;
}

.timeline-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.timeline-item p {
    margin-bottom: 0;
    color: var(--maester-grey);
    line-height: 1.7;
}

.contact-section {
    padding-top: 70px;
}

.contact-box {
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    background:
        linear-gradient(135deg, #ffffff, #fff4ed);
}

.footer {
    padding: 54px 0;
    background: var(--maester-black);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.footer img {
    height: 46px;
    width: auto;
    background: white;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.footer p,
.footer a {
    color: #b9b9b9;
}

.footer a {
    display: block;
    margin-top: 10px;
}

.footer strong {
    display: block;
    margin-bottom: 14px;
}

.unit-hero {
    padding: 92px 0;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at right, var(--maester-soft-orange), transparent 38%),
        var(--maester-bg);
}

.unit-hero h1 {
    max-width: 780px;
}

.unit-hero p {
    max-width: 720px;
    color: var(--maester-grey);
    font-size: 18px;
    line-height: 1.8;
}

.unit-profile-card {
    padding: 32px;
}

.unit-profile-mark {
    width: 82px;
    height: 82px;
    font-size: 22px;
    margin-bottom: 24px;
}

.unit-profile-card span {
    color: var(--maester-orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 900;
}

.highlight-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.highlight-card {
    padding: 26px;
    display: flex;
    gap: 14px;
}

.highlight-card span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--maester-soft-orange);
    color: var(--maester-orange);
    font-weight: 900;
}

.highlight-card p {
    margin: 0;
    color: var(--maester-grey);
    line-height: 1.7;
}

.portfolio-card {
    padding: 28px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

.portfolio-card small {
    color: var(--maester-orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
    margin-bottom: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 94px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: var(--maester-white);
        border: 1px solid var(--maester-line);
        border-radius: 24px;
        padding: 18px;
        box-shadow: var(--shadow-soft);
    }

    body.menu-open .nav {
        display: flex;
    }

    .hero-grid,
    .intro-grid,
    .story-grid,
    .unit-hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .unit-grid,
    .highlight-grid,
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-copy {
        position: static;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand img {
        height: 42px;
    }

    .hero,
    .unit-hero {
        min-height: auto;
        padding: 64px 0;
    }

    h1 {
        font-size: clamp(42px, 14vw, 58px);
    }

    .unit-grid,
    .service-layout,
    .highlight-grid,
    .portfolio-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-index {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .unit-card,
    .contact-box {
        padding: 22px;
    }

    .unit-actions {
        flex-direction: column;
    }
}

.premium-unit-hero {
    position: relative;
    overflow: hidden;
}

.premium-unit-hero::before {
    content: '';
    position: absolute;
    right: -160px;
    top: 12%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff1e8 0%, rgba(255,241,232,0) 68%);
}

.premium-unit-hero::after {
    content: '';
    position: absolute;
    left: -120px;
    bottom: 10%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--maester-line);
}

.unit-hero-note {
    display: inline-flex;
    margin-top: 8px;
    padding: 12px 16px;
    border-left: 3px solid var(--maester-orange);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 0 14px 14px 0;
    color: var(--maester-charcoal);
    font-weight: 800;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--maester-soft-orange);
    z-index: 0;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.audience-section {
    background: #ffffff;
    border-block: 1px solid var(--maester-line);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.audience-card {
    min-height: 170px;
    padding: 22px;
    background: #fbfaf7;
    border: 1px solid var(--maester-line);
    border-radius: 24px;
    transition: 0.25s ease;
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: var(--maester-orange);
    box-shadow: var(--shadow-soft);
}

.audience-card span {
    width: 36px;
    height: 4px;
    display: block;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--maester-orange);
}

.audience-card p {
    margin: 0;
    color: var(--maester-charcoal);
    font-weight: 750;
    line-height: 1.55;
}

.highlight-section {
    background:
        linear-gradient(90deg, rgba(242, 106, 33, 0.075), transparent 42%),
        var(--maester-bg);
}

.portfolio-section {
    background: #ffffff;
    border-block: 1px solid var(--maester-line);
}

.portfolio-card {
    background:
        linear-gradient(135deg, #ffffff, #fff6ef);
}

@media (max-width: 980px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .unit-hero-note {
        font-size: 14px;
    }
}

.nav-dropdown {
    position: relative;
}

.nav-drop-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-drop-link span {
    color: var(--maester-orange);
    font-size: 14px;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-drop-link span {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: 360px;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--maester-line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    backdrop-filter: blur(18px);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    transition: 0.22s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--maester-soft-orange);
    transform: translateX(4px);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--maester-black);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.nav-dropdown-menu strong {
    display: block;
    color: var(--maester-black);
    font-size: 14px;
    margin-bottom: 3px;
}

.nav-dropdown-menu small {
    display: block;
    color: var(--maester-grey);
    font-size: 12px;
    line-height: 1.35;
}
.article-layout {
    max-width: 860px;
}

.article-image {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 28px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
}

.article-content {
    background: #ffffff;
    border: 1px solid var(--maester-line);
    border-radius: 28px;
    padding: 40px;
    color: var(--maester-charcoal);
    font-size: 18px;
    line-height: 1.9;
}