.t9-theme {
    --t9-bg: #edece6;          /* stone / porcelain page */
    --t9-surface: #e4e3db;     /* raised stone panel */
    --t9-border: #d5d3c7;      /* hairline rule */
    --t9-ink: #12261e;         /* deep emerald-black text */
    --t9-muted: #55655c;       /* muted sage-grey text */
    --t9-deep: #0e2a20;        /* dark bottle-green band */
    --t9-deep-2: #0a1f18;      /* deepest emerald */
    --t9-slate: #6d7d72;       /* meta / labels */
    --t9-accent: #b8862f;      /* brass */
    --t9-accent-2: #8a5f1c;    /* deep brass / hover */
    --t9-accent-hi: #d8ab52;   /* light brass highlight (on dark) */
    --t9-paper: #f6f4ec;       /* paper-light (text/buttons on dark) */
    --t9-contrast: #f6f4ec;    /* light bg for dense sections (calc/tables) */
    --t9-ring: rgba(184, 134, 47, 0.22);
    background: var(--t9-bg);
    color: var(--t9-ink);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

.t9-theme * {
    box-sizing: border-box;
}

.t9-theme a {
    color: inherit;
    text-decoration: none;
}

.t9-theme h1,
.t9-theme h2,
.t9-theme h3,
.t9-theme h4 {
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--t9-ink);
    margin: 0;
}

.t9-theme p {
    margin: 0;
    color: var(--t9-muted);
}

.t9-theme .preloader-area-wrap {
    display: none;
}

.t9-theme .preloader-activate.preloader-active {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.t9-theme .preloader-activate.preloader-active .preloader-area-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    background: #edece6;
}

.preloader-area-wrap .spinner {
    flex-direction: column;
    gap: 10px;
}

.preloader-area-wrap .t9-loader {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(14, 42, 32, 0.16);
    border-top-color: var(--t9-accent);
    animation: t9-loader-spin 0.8s linear infinite;
}

.preloader-area-wrap .t9-loader__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100%);
    white-space: nowrap;
    border: 0;
}

@keyframes t9-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.t9-theme .t9-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(237, 236, 230, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--t9-ink);
}

.t9-theme .t9-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 20px;
}

.t9-theme .t9-header__logo img {
    max-height: 42px;
    width: auto;
}

.t9-theme .t9-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.t9-theme .t9-nav a {
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--t9-ink);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.t9-theme .t9-nav a:hover {
    color: var(--t9-accent);
}

.t9-theme .t9-header__login {
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--t9-muted);
}

.t9-theme .t9-header__login:hover {
    color: var(--t9-accent);
}

.t9-theme .t9-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t9-theme .t9-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 0;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
}

.t9-theme .t9-btn-primary {
    background: var(--t9-accent);
    border-color: var(--t9-accent);
    color: var(--t9-paper);
}

.t9-theme .t9-btn-primary:hover {
    background: var(--t9-accent-2);
    border-color: var(--t9-accent-2);
    color: var(--t9-paper);
}

.t9-theme .t9-btn-secondary {
    border-color: var(--t9-ink);
    background: transparent;
    color: var(--t9-ink);
}

.t9-theme .t9-btn-secondary:hover {
    background: var(--t9-ink);
    color: var(--t9-paper);
}

.t9-theme .t9-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 0;
    border: 1px solid var(--t9-ink);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.t9-theme .t9-menu-btn span {
    width: 18px;
    height: 2px;
    border-radius: 0;
    background: var(--t9-ink);
}

.t9-theme .t9-footer {
    background: #e4e3db;
    border-top: 1px solid #d5d3c7;
    padding: 58px 0 24px;
}

.t9-theme .t9-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
}

.t9-theme .t9-footer__logo img {
    max-height: 44px;
    width: auto;
}

.t9-theme .t9-footer p {
    margin-top: 12px;
    line-height: 1.65;
}

.t9-theme .t9-footer__meta {
    margin-top: 10px;
    color: var(--t9-muted);
    font-size: 13px;
    line-height: 1.5;
}

.t9-theme .t9-footer h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.t9-theme .t9-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.t9-theme .t9-footer ul a:hover {
    color: var(--t9-accent);
}

.t9-theme .t9-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--t9-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--t9-muted);
    font-size: 13px;
}

.t9-theme .t9-footer__bottom div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t9-theme .mobile-menu-overlay.t9-mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 32, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1400;
}

.t9-theme .mobile-menu-overlay.t9-mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.t9-theme .t9-mobile-nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(90vw, 360px);
    height: 100%;
    background: #ffffff;
    box-shadow: -14px 0 40px rgba(18, 38, 30, 0.16);
}

.t9-theme .t9-mobile-nav__head,
.t9-theme .t9-mobile-nav__body {
    position: relative;
    margin-left: auto;
    width: min(90vw, 360px);
}

.t9-theme .t9-mobile-nav__head {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--t9-border);
}

.t9-theme .t9-mobile-nav__head img {
    max-height: 34px;
    width: auto;
}

.t9-theme .t9-mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 1px solid var(--t9-ink);
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: var(--t9-ink);
}

.t9-theme .t9-mobile-nav__body {
    padding: 12px 16px 18px;
    height: calc(100vh - 74px);
    overflow: auto;
}

.t9-theme .t9-mobile-nav__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t9-theme .t9-mobile-nav__body > ul > li {
    border-bottom: 1px solid var(--t9-border);
}

.t9-theme .t9-mobile-nav__body a {
    display: block;
    padding: 12px 0;
    color: var(--t9-ink);
    font-size: 14px;
    font-weight: 700;
}

.t9-theme .t9-mobile-nav__body .sub-menu {
    display: none;
    padding-bottom: 10px;
}

.t9-theme .t9-mobile-nav__body .sub-menu a {
    font-size: 13px;
    font-weight: 600;
    color: var(--t9-muted);
    padding: 8px 0 8px 14px;
}

.t9-theme .t9-mobile-nav__cta {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.t9-theme .t9-mobile-nav__cta .t9-btn {
    width: 100%;
}

.t9-theme .t9-scroll-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    border-radius: 0;
    background: var(--t9-ink);
    color: var(--t9-paper);
    border: 1px solid var(--t9-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: none;
}

.t9-theme .t9-scroll-top:hover {
    background: var(--t9-accent);
    border-color: var(--t9-accent);
    color: var(--t9-paper);
}

.t9-inner .t9-page-hero {
    padding: 38px 0 28px;
}

.t9-inner .t9-page-hero__inner {
    border: 1px solid var(--t9-border);
    border-radius: 20px;
    background: linear-gradient(120deg, #0e2a20 0%, #b8862f 100%);
    padding: 38px 28px;
}

.t9-inner .t9-page-hero__title {
    color: #fff;
    text-align: center;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.05;
}

.t9-inner .t9-page-hero__lead {
    text-align: center;
    color: rgba(213, 211, 199, 0.92);
    margin-top: 10px;
    font-size: 16px;
}

.t9-inner .section-space--inner--120,
.t9-inner .section-space--inner--top--120,
.t9-inner .section-space--inner--bottom--120 {
    padding-top: 68px;
    padding-bottom: 68px;
}

.t9-inner .section-space--inner--80 {
    padding-top: 46px;
    padding-bottom: 46px;
}

.t9-inner .t9-services-pack__hero {
    border: 1px solid var(--t9-border);
    border-radius: 20px;
    background: linear-gradient(180deg, #d5d3c7 0%, #ffffff 100%);
    padding: 34px 30px;
    margin-bottom: 28px;
}

.t9-inner .t9-services-pack__hero .t9-eyebrow {
    background: #d5d3c7;
    border-color: #d5d3c7;
    color: #13291f;
}

.t9-inner .t9-services-pack__hero h1 {
    color: var(--t9-ink);
    margin-top: 12px;
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.03;
}

.t9-inner .t9-services-pack__hero p {
    color: #55655c;
    max-width: 860px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.75;
}

.t9-inner .t9-services-pack__chips {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.t9-inner .t9-services-pack__chips span {
    min-height: 34px;
    border-radius: 999px;
    border: 1px solid #d5d3c7;
    color: #55655c;
    background: #d5d3c7;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.t9-inner .t9-services-pack__grid-wrap {
    margin-bottom: 24px;
}

.t9-inner .t9-services-tabs {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.45fr);
    gap: 18px;
}

.t9-inner .t9-services-tabs__nav {
    display: grid;
    gap: 10px;
}

.t9-inner .t9-services-tabs__nav-item {
    border: 1px solid var(--t9-border);
    background: #fff;
    border-radius: 14px;
    min-height: 80px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.t9-inner .t9-services-tabs__nav-item:hover {
    border-color: #d5d3c7;
    transform: translateY(-1px);
}

.t9-inner .t9-services-tabs__nav-item.is-active {
    border-color: #d3d8ce;
    box-shadow: 0 10px 24px rgba(18, 40, 31, 0.08);
    background: #d5d3c7;
}

.t9-inner .t9-services-tabs__nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #d5d3c7;
    background: #d5d3c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--t9-accent);
    flex-shrink: 0;
}

.t9-inner .t9-services-tabs__nav-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.t9-inner .t9-services-tabs__nav-copy {
    display: grid;
    gap: 4px;
}

.t9-inner .t9-services-tabs__nav-copy strong {
    font-size: 17px;
    line-height: 1.2;
    color: #0e2a20;
}

.t9-inner .t9-services-tabs__nav-copy small {
    font-size: 13px;
    color: #55655c;
}

.t9-inner .t9-services-tabs__panels {
    display: grid;
    gap: 10px;
}

.t9-inner .t9-services-tabs__panel {
    border: 1px solid var(--t9-border);
    border-radius: 16px;
    background: #fff;
}

.t9-inner .t9-services-tabs__panel .t9-services-tabs__mobile-trigger {
    display: none;
}

.t9-inner .t9-services-tabs__panel-body {
    padding: 22px;
}

.t9-inner .t9-services-tabs__panel:not(.is-active) {
    display: none;
}

.t9-inner .t9-services-tabs__panel h3 {
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.06;
    margin-bottom: 0;
}

.t9-inner .t9-services-tabs__panel p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.t9-inner .t9-services-tabs__panel ul {
    margin: 0 0 14px;
    padding-left: 18px;
}

.t9-inner .t9-services-tabs__panel li {
    color: #13291f;
    line-height: 1.55;
    margin-bottom: 7px;
}

.t9-inner .t9-services-tabs__panel li:last-child {
    margin-bottom: 0;
}

.t9-inner .t9-services-tabs__panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.t9-inner .t9-services-tabs__panel .t9-icon-wrap {
    width: auto;
    height: auto;
    margin-bottom: 0;
    flex-shrink: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.t9-inner .t9-services-tabs__panel .t9-icon-wrap svg {
    width: clamp(28px, 3.5vw, 38px);
    height: clamp(28px, 3.5vw, 38px);
    fill: none;
    stroke: currentColor;
    color: var(--t9-accent);
    stroke-width: 1.7;
}

.t9-inner .t9-services-pack__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t9-inner .t9-services-pack__card {
    border: 1px solid var(--t9-border);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.t9-inner .t9-services-pack__card:hover {
    transform: translateY(-3px);
    border-color: #d5d3c7;
    box-shadow: 0 16px 34px rgba(14, 42, 32, 0.12);
}

.t9-inner .t9-services-pack__card h3 {
    font-size: 21px;
    line-height: 1.22;
    margin-bottom: 8px;
}

.t9-inner .t9-services-pack__card p {
    font-size: 15px;
    line-height: 1.65;
}

.t9-inner .t9-services-pack__card .t9-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.t9-inner .t9-services-pack__card .t9-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    color: var(--t9-accent);
}

.t9-inner .t9-services-sidebar .t9-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    color: var(--t9-accent);
}

.t9-inner .t9-services-pack__meta {
    margin-top: 10px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--t9-accent);
}

.t9-inner .t9-services-pack__capabilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.t9-inner .t9-services-pack__capabilities article {
    border: 1px solid var(--t9-border);
    border-radius: 16px;
    background: #fff;
    padding: 20px;
}

.t9-inner .t9-services-pack__capabilities h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.t9-inner .t9-services-pack__capabilities p {
    font-size: 15px;
    line-height: 1.65;
}

.t9-inner .t9-services-pack__cta {
    border: 1px solid var(--t9-border);
    border-radius: 20px;
    background: linear-gradient(145deg, #0e2a20 0%, #b8862f 100%);
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.t9-inner .t9-services-pack__cta .t9-eyebrow {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.t9-inner .t9-services-pack__cta h3,
.t9-inner .t9-services-pack__cta p {
    color: #fff;
}

.t9-inner .t9-services-pack__cta h3 {
    margin-top: 10px;
    font-size: clamp(28px, 3.9vw, 40px);
    line-height: 1.06;
}

.t9-inner .t9-services-pack__cta p {
    margin-top: 10px;
    max-width: 640px;
}

.t9-inner .t9-service-detail__content {
    display: grid;
    gap: 16px;
}

.t9-inner .t9-service-detail__media {
    min-height: 320px;
    border-radius: 20px;
    border: 1px solid var(--t9-border);
    background-size: cover;
    background-position: center;
}

.t9-inner .t9-service-detail__intro,
.t9-inner .t9-service-detail__panel,
.t9-inner .t9-service-detail__cta {
    border: 1px solid var(--t9-border);
    border-radius: 16px;
    background: #fff;
    padding: 22px;
}

.t9-inner .t9-service-detail__intro .t9-eyebrow {
    margin-bottom: 12px;
}

.t9-inner .t9-service-detail__intro h1 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    margin-bottom: 10px;
}

.t9-inner .t9-service-detail__intro p {
    font-size: 16px;
    line-height: 1.7;
}

.t9-inner .t9-service-detail__panel h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.t9-inner .t9-service-detail__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.t9-inner .t9-service-detail__pillars div {
    border: 1px solid var(--t9-border);
    border-radius: 12px;
    background: #d5d3c7;
    padding: 12px;
    color: #13291f;
    font-size: 14px;
    line-height: 1.55;
}

.t9-inner .t9-service-detail__panel ul {
    margin: 0;
    padding-left: 18px;
}

.t9-inner .t9-service-detail__panel li {
    color: #55655c;
    margin-bottom: 8px;
    line-height: 1.55;
}

.t9-inner .t9-service-detail__panel li:last-child {
    margin-bottom: 0;
}

.t9-inner .t9-service-detail__cta h3 {
    font-size: clamp(26px, 3.4vw, 36px);
    line-height: 1.1;
    margin-bottom: 8px;
}

.t9-inner .t9-service-detail__cta p {
    margin-bottom: 12px;
}

.t9-inner .t9-services-sidebar {
    display: grid;
    gap: 16px;
}

.t9-inner .t9-services-sidebar__widget {
    border: 1px solid var(--t9-border);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
}

.t9-inner .t9-services-sidebar__widget h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.t9-inner .t9-services-sidebar__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.t9-inner .t9-services-sidebar__menu li a {
    border: 1px solid var(--t9-border);
    border-radius: 12px;
    background: #d5d3c7;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #13291f;
    font-weight: 700;
}

.t9-inner .t9-services-sidebar__menu li a em {
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #55655c;
}

.t9-inner .t9-services-sidebar__menu li.active a,
.t9-inner .t9-services-sidebar__menu li a:hover {
    border-color: #d5d3c7;
    background: #d5d3c7;
}

.t9-inner .t9-services-sidebar__contacts {
    display: grid;
    gap: 10px;
}

.t9-inner .t9-services-sidebar__contact-item {
    border: 1px solid var(--t9-border);
    border-radius: 12px;
    background: #d5d3c7;
    padding: 10px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    align-items: center;
}

.t9-inner .t9-services-sidebar__contact-item .t9-icon-wrap {
    margin-bottom: 0;
}

.t9-inner .t9-services-sidebar__contact-item h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.t9-inner .t9-services-sidebar__contact-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.t9-inner .t9-services-sidebar__cta {
    margin-top: 12px;
    width: 100%;
}

.t9-inner .card,
.t9-inner .single-service-item {
    border-radius: 16px;
}

.t9-inner input:not([type="checkbox"]):not([type="radio"]),
.t9-inner select,
.t9-inner textarea,
.t9-login input:not([type="checkbox"]):not([type="radio"]),
.t9-login select,
.t9-login textarea {
    min-height: 46px;
    border: 1px solid var(--t9-border);
    border-radius: 10px;
    background: #fff;
    color: var(--t9-ink);
    box-shadow: none;
}

.t9-inner input:focus,
.t9-inner select:focus,
.t9-inner textarea:focus,
.t9-login input:focus,
.t9-login select:focus,
.t9-login textarea:focus {
    border-color: #d5d3c7;
    box-shadow: 0 0 0 3px var(--t9-ring);
}

body.t9-theme.t9-inner .ht-btn--default,
body.t9-theme.t9-inner .btn-outline,
body.t9-theme.t9-inner .ht-btn--transparent,
body.t9-theme.t9-login .ht-btn--default,
body.t9-theme.t9-login .btn-outline,
body.t9-theme.t9-login .ht-btn--transparent,
body.t9-theme.t9-inner .btn.btn-primary,
body.t9-theme.t9-inner .btn.btn-secondary,
body.t9-theme.t9-login .btn.btn-primary,
body.t9-theme.t9-login .btn.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.t9-theme.t9-inner .ht-btn--default,
body.t9-theme.t9-login .ht-btn--default,
body.t9-theme.t9-inner .btn.btn-primary,
body.t9-theme.t9-login .btn.btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--t9-accent) 0%, var(--t9-accent-2) 100%);
    box-shadow: 0 14px 24px rgba(184, 134, 47, 0.24);
}

body.t9-theme.t9-inner .ht-btn--default:hover,
body.t9-theme.t9-login .ht-btn--default:hover,
body.t9-theme.t9-inner .btn.btn-primary:hover,
body.t9-theme.t9-login .btn.btn-primary:hover {
    color: #fff;
}

body.t9-theme.t9-inner .btn-outline,
body.t9-theme.t9-login .btn-outline,
body.t9-theme.t9-inner .ht-btn--transparent,
body.t9-theme.t9-login .ht-btn--transparent,
body.t9-theme.t9-inner .btn.btn-secondary,
body.t9-theme.t9-login .btn.btn-secondary {
    border: 1px solid var(--t9-border);
    color: var(--t9-ink);
    background: #fff;
}

.t9-login main .table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .t9-theme .t9-nav {
        display: none;
    }

    .t9-theme .t9-menu-btn {
        display: inline-flex;
    }

    .t9-theme .t9-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .t9-inner .t9-services-pack__grid,
    .t9-inner .t9-services-pack__capabilities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t9-inner .t9-service-detail__pillars {
        grid-template-columns: 1fr;
    }

    .t9-inner .t9-services-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .t9-theme .t9-header__inner {
        min-height: 74px;
    }

    .t9-theme .t9-header__logo img {
        max-height: 36px;
    }

    .t9-theme .t9-header__actions .t9-btn-primary {
        display: none;
    }

    .t9-theme .t9-footer {
        padding-top: 46px;
    }

    .t9-theme .t9-footer__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .t9-theme .t9-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .t9-inner .t9-page-hero {
        padding: 24px 0 18px;
    }

    .t9-inner .t9-page-hero__inner {
        padding: 24px 14px;
    }

    .t9-inner .t9-services-pack__hero {
        padding: 24px 14px;
    }

    .t9-inner .t9-services-pack__grid,
    .t9-inner .t9-services-pack__capabilities,
    .t9-inner .t9-service-detail__pillars {
        grid-template-columns: 1fr;
    }

    .t9-inner .t9-services-tabs__nav {
        display: none;
    }

    .t9-inner .t9-services-tabs__panel {
        overflow: hidden;
        display: block;
    }

    .t9-inner .t9-services-tabs__panel .t9-services-tabs__mobile-trigger {
        border: 0;
        border-bottom: 1px solid var(--t9-border);
        background: #fff;
        width: 100%;
        min-height: 56px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        color: #13291f;
        font-weight: 700;
        font-size: 16px;
    }

    .t9-inner .t9-services-tabs__mobile-trigger em {
        font-style: normal;
        font-size: 26px;
        color: #55655c;
        line-height: 1;
    }

    .t9-inner .t9-services-tabs__panel:not(.is-active) .t9-services-tabs__panel-body {
        display: none;
    }

    .t9-inner .t9-services-tabs__panel-body {
        padding: 16px 14px;
    }

    .t9-inner .t9-services-pack__cta {
        padding: 20px 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .t9-inner .t9-services-pack__cta .t9-btn {
        width: 100%;
    }

    .t9-inner .t9-service-detail__media {
        min-height: 220px;
    }

    .t9-inner .t9-service-detail__intro,
    .t9-inner .t9-service-detail__panel,
    .t9-inner .t9-service-detail__cta {
        padding: 16px 14px;
    }
}

/* home inherits base warm/oxblood tokens from .t9-theme — no override */

/* legacy home-hero block removed — replaced by magazine layer (plugin_v9/* + appended .t9-mag* layer) */

.t9-home .t9-proof-quote {
    padding: 24px 0 14px;
}

.t9-home .t9-proof-quote blockquote {
    margin: 0;
    border-left: 4px solid var(--t9-accent);
    padding: 8px 0 8px 18px;
    max-width: 920px;
    color: #13291f;
    font-size: clamp(24px, 3.1vw, 34px);
    line-height: 1.3;
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
}

.t9-home .t9-section-head {
    margin-bottom: 22px;
}

.t9-home .t9-section-head h2 {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.t9-home .t9-section-head p {
    margin-top: 10px;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
}

.t9-home .t9-section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.t9-home .t9-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--t9-accent);
    background: #d5d3c7;
    border: 1px solid #dcdacb;
}

.t9-home .t9-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.t9-home .t9-solution-grid,
.t9-home .t9-core-grid,
.t9-home .t9-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t9-home .t9-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t9-home .t9-solution-card,
.t9-home .t9-core-card,
.t9-home .t9-proof-card,
.t9-home .t9-advantage-card,
.t9-home .t9-service-card {
    background: var(--t9-surface);
    border: 1px solid var(--t9-border);
    border-radius: 16px;
    padding: 22px;
}

.t9-home .t9-solution-card h3,
.t9-home .t9-core-card h3,
.t9-home .t9-proof-card h3,
.t9-home .t9-advantage-card h3,
.t9-home .t9-service-card h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.25;
}

.t9-home .t9-solution-card p,
.t9-home .t9-core-card p,
.t9-home .t9-proof-card p,
.t9-home .t9-advantage-card p,
.t9-home .t9-service-card p {
    font-size: 15px;
    line-height: 1.65;
}

.t9-home .t9-service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.t9-home .t9-service-card:hover {
    transform: translateY(-3px);
    border-color: #d5d3c7;
    box-shadow: 0 16px 34px rgba(14, 42, 32, 0.12);
}

.t9-home .t9-service-card__meta {
    margin-top: 10px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--t9-accent);
}

.t9-home .t9-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.t9-home .t9-proof-card strong {
    display: block;
    margin-top: 12px;
    color: #13291f;
    font-size: 13px;
    font-weight: 700;
}

.t9-home .t9-quote-cta {
    padding-top: 44px;
    padding-bottom: 74px;
}

.t9-home .t9-quote-cta__box {
    background: linear-gradient(145deg, #0e2a20 0%, #b8862f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.t9-home .t9-quote-cta__box .t9-eyebrow {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.t9-home .t9-quote-cta__box h2,
.t9-home .t9-quote-cta__box p {
    color: #fff;
}

.t9-home .t9-quote-cta__box h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.t9-home .t9-quote-cta__box p {
    margin-top: 10px;
    opacity: 0.92;
    max-width: 620px;
}

.t9-home .t9-footer {
    background: #e4e3db;
    border-top: 1px solid #d5d3c7;
    padding: 58px 0 24px;
}

.t9-home .t9-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
}

.t9-home .t9-footer__logo img {
    max-height: 44px;
    width: auto;
}

.t9-home .t9-footer p {
    margin-top: 12px;
    line-height: 1.65;
}

.t9-home .t9-footer__meta {
    margin-top: 10px;
    color: var(--t9-muted);
    font-size: 13px;
    line-height: 1.5;
}

.t9-home .t9-footer h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.t9-home .t9-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.t9-home .t9-footer ul a:hover {
    color: var(--t9-accent);
}

.t9-home .t9-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--t9-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--t9-muted);
    font-size: 13px;
}

.t9-home .t9-footer__bottom div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t9-home .mobile-menu-overlay.t9-mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 32, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1400;
}

.t9-home .mobile-menu-overlay.t9-mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.t9-home .t9-mobile-nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(90vw, 360px);
    height: 100%;
    background: #ffffff;
    box-shadow: -14px 0 40px rgba(18, 38, 30, 0.16);
}

.t9-home .t9-mobile-nav__head,
.t9-home .t9-mobile-nav__body {
    position: relative;
    margin-left: auto;
    width: min(90vw, 360px);
    background: transparent;
}

.t9-home .t9-mobile-nav__head {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--t9-border);
}

.t9-home .t9-mobile-nav__head img {
    max-height: 34px;
    width: auto;
}

.t9-home .t9-mobile-nav__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--t9-border);
    background: #fff;
    font-size: 24px;
    line-height: 1;
    color: var(--t9-ink);
}

.t9-home .t9-mobile-nav__body {
    padding: 12px 16px 18px;
    height: calc(100vh - 74px);
    overflow: auto;
}

.t9-home .t9-mobile-nav__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.t9-home .t9-mobile-nav__body > ul > li {
    border-bottom: 1px solid var(--t9-border);
}

.t9-home .t9-mobile-nav__body a {
    display: block;
    padding: 12px 0;
    color: var(--t9-ink);
    font-size: 14px;
    font-weight: 700;
}

.t9-home .t9-mobile-nav__body .sub-menu {
    display: none;
    padding-bottom: 10px;
}

.t9-home .t9-mobile-nav__body .sub-menu a {
    font-size: 13px;
    font-weight: 600;
    color: var(--t9-muted);
    padding: 8px 0 8px 14px;
}

.t9-home .t9-mobile-nav__cta {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.t9-home .t9-mobile-nav__cta .t9-btn {
    width: 100%;
}

@media (max-width: 1199px) {
    .t9-home .t9-nav {
        display: none;
    }

    .t9-home .t9-menu-btn {
        display: inline-flex;
    }

    .t9-home .t9-hero__grid,
    .t9-home .t9-service-grid,
    .t9-home .t9-core-grid,
    .t9-home .t9-proof-grid,
    .t9-home .t9-advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t9-home .t9-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .t9-home .t9-section {
        padding: 50px 0;
    }

    .t9-home .t9-header__inner {
        min-height: 74px;
    }

    .t9-home .t9-header__logo img {
        max-height: 36px;
    }

    .t9-home .t9-header__actions .t9-btn-primary {
        display: none;
    }

    .t9-home .t9-hero {
        padding: 24px 0 0;
    }

    .t9-home .t9-hero__grid,
    .t9-home .t9-service-grid,
    .t9-home .t9-solution-grid,
    .t9-home .t9-core-grid,
    .t9-home .t9-proof-grid,
    .t9-home .t9-advantage-grid {
        grid-template-columns: 1fr;
    }

    .t9-home .t9-hero__content,
    .t9-home .t9-hero__panel {
        padding: 20px 16px;
    }

    .t9-home .t9-hero__actions {
        flex-direction: column;
    }

    .t9-home .t9-hero__actions .t9-btn {
        width: 100%;
    }

    .t9-home .t9-hero__kpis {
        grid-template-columns: 1fr;
    }

    .t9-home .t9-proof-quote {
        padding-top: 18px;
    }

    .t9-home .t9-section-head--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .t9-home .t9-quote-cta {
        padding-top: 20px;
        padding-bottom: 52px;
    }

    .t9-home .t9-quote-cta__box {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .t9-home .t9-quote-cta__box .t9-btn {
        width: 100%;
    }

    .t9-home .t9-footer {
        padding-top: 46px;
    }

    .t9-home .t9-footer__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .t9-home .t9-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Wave 3: calc + contact */
body.t9-theme.t9-inner .t9-calc-page,
body.t9-theme.t9-inner .t9-contact-page {
    background: #f6f4ec;
}

body.t9-theme.t9-inner .t9-calc-page__hero,
body.t9-theme.t9-inner .t9-contact-page__hero {
    max-width: 820px;
    margin: 0 auto 26px;
    text-align: center;
}

body.t9-theme.t9-inner .t9-calc-page__hero h1,
body.t9-theme.t9-inner .t9-contact-page__hero h1 {
    font-size: clamp(32px, 4.2vw, 48px);
    line-height: 1.08;
    margin: 14px 0 14px;
}

body.t9-theme.t9-inner .t9-calc-page__hero p,
body.t9-theme.t9-inner .t9-contact-page__hero p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--t9-muted);
}

body.t9-theme.t9-inner .t9-calc-shell {
    max-width: 1080px;
    margin: 0 auto;
}

body.t9-theme.t9-inner .t9-calc-card {
    border-radius: 24px;
    border: 1px solid #d5d3c7;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.1);
    overflow: hidden;
}

body.t9-theme.t9-inner .t9-calc-card__head {
    background: linear-gradient(145deg, #0e2a20 0%, #13291f 100%);
    padding: 26px 30px;
}

body.t9-theme.t9-inner .t9-calc-card__head .title,
body.t9-theme.t9-inner .t9-calc-card__head h2 {
    color: #fff;
    margin: 0;
}

body.t9-theme.t9-inner .t9-calc-card__head p {
    margin-top: 8px;
    color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-calc-card__body {
    background: #fff;
    padding: 26px 30px 30px;
}

body.t9-theme.t9-inner .t9-calc-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-calc-form .form-control,
body.t9-theme.t9-inner .t9-calc-form select,
body.t9-theme.t9-inner .t9-calc-form .input-group-text {
    min-height: 52px;
    border-radius: 12px;
    border-color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-calc-form .input-group-text {
    background: #d5d3c7;
    color: #55655c;
    font-weight: 700;
}

body.t9-theme.t9-inner .t9-calc-form .form-control:focus,
body.t9-theme.t9-inner .t9-contact-page__form input:focus,
body.t9-theme.t9-inner .t9-contact-page__form textarea:focus {
    border-color: #d3d8ce;
    box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.12);
}

body.t9-theme.t9-inner .t9-calc-form .shipping_dhl {
    list-style: none;
}

body.t9-theme.t9-inner .t9-calc-form ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

body.t9-theme.t9-inner .t9-calc-form .radio {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #d5d3c7;
    border-radius: 12px;
    background: #f7f8f4;
}

body.t9-theme.t9-inner .t9-calc-form__actions {
    margin-top: 16px;
}

body.t9-theme.t9-inner .t9-contact-page__info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

body.t9-theme.t9-inner .t9-contact-page__info-card {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    padding: 20px;
}

body.t9-theme.t9-inner .t9-contact-page__info-card h4 {
    font-size: 20px;
    margin: 14px 0 6px;
}

body.t9-theme.t9-inner .t9-contact-page__info-card .t9-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 2px;
    color: var(--t9-accent);
    background: transparent;
    border: 0;
    border-radius: 0;
}

body.t9-theme.t9-inner .t9-contact-page__info-card .t9-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: inherit;
    stroke: currentColor;
    fill: none;
}

body.t9-theme.t9-inner .t9-contact-page__info-card .t9-icon-wrap svg * {
    stroke: currentColor;
    fill: none;
}

body.t9-theme.t9-inner .t9-contact-page__info-card p,
body.t9-theme.t9-inner .t9-contact-page__info-card a {
    color: var(--t9-muted);
    font-size: 16px;
    line-height: 1.6;
}

body.t9-theme.t9-inner .t9-contact-page__form-shell {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-contact-page__form-head {
    max-width: 760px;
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-contact-page__form-head h2 {
    margin-bottom: 8px;
}

body.t9-theme.t9-inner .t9-contact-page__form-card {
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

body.t9-theme.t9-inner .t9-contact-page__form input,
body.t9-theme.t9-inner .t9-contact-page__form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d5d3c7;
    border-radius: 12px;
    background: #f7f8f4;
    padding: 0 14px;
    font-size: 15px;
    color: var(--t9-ink);
}

body.t9-theme.t9-inner .t9-contact-page__form textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

body.t9-theme.t9-inner .t9-contact-page__actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t9-theme.t9-inner .t9-contact-page__map-section {
    padding: 24px 0 120px;
    background: #f6f4ec;
}

body.t9-theme.t9-inner .t9-contact-page__location-card {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(14, 42, 32, 0.08);
}

@media (max-width: 991px) {
    body.t9-theme.t9-inner .t9-contact-page__info-grid {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-contact-page__form-shell {
        padding: 20px;
    }

    body.t9-theme.t9-inner .t9-calc-card__head,
    body.t9-theme.t9-inner .t9-calc-card__body {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-calc-page__hero p,
    body.t9-theme.t9-inner .t9-contact-page__hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    body.t9-theme.t9-inner .t9-calc-form .form-control,
    body.t9-theme.t9-inner .t9-calc-form select,
    body.t9-theme.t9-inner .t9-calc-form .input-group-text,
    body.t9-theme.t9-inner .t9-contact-page__form input {
        min-height: 50px;
    }

    body.t9-theme.t9-inner .t9-contact-page__actions .t9-btn {
        width: 100%;
    }
}

/* Contact v3 full redesign */
body.t9-theme.t9-inner .t9-contact-v3 {
    background: radial-gradient(1200px 400px at 15% 0%, #f0ead9 0%, #f6f4ec 55%, #f6f4ec 100%);
}

body.t9-theme.t9-inner .t9-contact-v3__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-content,
body.t9-theme.t9-inner .t9-contact-v3__hero-panel {
    border-radius: 24px;
    border: 1px solid #d5d3c7;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-content {
    background: #fff;
    padding: 28px 30px;
    box-shadow: 0 24px 44px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-contact-v3__hero-content h1 {
    font-size: clamp(36px, 5.2vw, 56px);
    line-height: 1.04;
    margin: 14px 0;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-content p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--t9-muted);
}

body.t9-theme.t9-inner .t9-contact-v3__hero-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-points li {
    position: relative;
    padding-left: 22px;
    color: #13291f;
    font-size: 15px;
    line-height: 1.55;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b8862f 0%, #c99a3f 100%);
}

body.t9-theme.t9-inner .t9-contact-v3__hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-panel {
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    padding: 24px;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-panel h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 26px;
    line-height: 1.15;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-panel p {
    margin: 0 0 14px;
    color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-panel dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-panel dt {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-panel dd {
    margin: 4px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    word-break: break-word;
}

body.t9-theme.t9-inner .t9-contact-v3__hero-panel dd a {
    color: #fff;
}

body.t9-theme.t9-inner .t9-contact-v3__actions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-contact-v3__action-card {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

body.t9-theme.t9-inner .t9-contact-v3__action-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--t9-accent);
    margin-bottom: 8px;
}

body.t9-theme.t9-inner .t9-contact-v3__action-icon svg,
body.t9-theme.t9-inner .t9-contact-v3__action-icon svg * {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

body.t9-theme.t9-inner .t9-contact-v3__action-card h4 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

body.t9-theme.t9-inner .t9-contact-v3__action-card p {
    margin: 0;
    color: #55655c;
    line-height: 1.6;
}

body.t9-theme.t9-inner .t9-contact-v3__action-card a {
    margin-top: auto;
    padding-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #b8862f;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

body.t9-theme.t9-inner .t9-contact-v3__form-section {
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-contact-v3__form-head {
    max-width: 840px;
    margin-bottom: 12px;
}

body.t9-theme.t9-inner .t9-contact-v3__form-head h2 {
    margin: 12px 0 8px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-contact-v3__form-shell {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-contact-v3__form .form-message {
    display: none;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

body.t9-theme.t9-inner .t9-contact-v3__form .form-message.is-visible {
    display: block;
}

body.t9-theme.t9-inner .t9-contact-v3__form .form-message.success {
    color: #13291f;
    background: linear-gradient(180deg, rgba(244, 245, 241, 0.98), rgba(213, 211, 199, 0.96));
    border-color: rgba(85, 101, 92, 0.28);
    box-shadow: 0 14px 30px rgba(85, 101, 92, 0.12);
}

body.t9-theme.t9-inner .t9-contact-v3__form .form-message.error {
    color: #991b1b;
    background: linear-gradient(180deg, rgba(254, 242, 242, 0.98), rgba(254, 226, 226, 0.96));
    border-color: rgba(239, 68, 68, 0.24);
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.12);
}

body.t9-theme.t9-inner .t9-contact-v3__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.t9-theme.t9-inner .t9-contact-v3__field {
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-contact-v3__field--message {
    grid-column: 1 / -1;
}

body.t9-theme.t9-inner .t9-contact-v3__field label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-contact-v3__field input,
body.t9-theme.t9-inner .t9-contact-v3__field textarea {
    width: 100%;
    border: 1px solid #d5d3c7;
    border-radius: 12px;
    background: #f7f8f4;
    color: var(--t9-ink);
    padding: 0 14px;
    min-height: 52px;
    font-size: 15px;
}

body.t9-theme.t9-inner .t9-contact-v3__field textarea {
    min-height: 180px;
    padding: 12px 14px;
    resize: vertical;
}

body.t9-theme.t9-inner .t9-contact-v3__field input:focus,
body.t9-theme.t9-inner .t9-contact-v3__field textarea:focus {
    border-color: #d3d8ce;
    box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.12);
}

body.t9-theme.t9-inner .t9-contact-v3__form-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t9-theme.t9-inner .t9-contact-v3__map-section {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 16px;
}

body.t9-theme.t9-inner .t9-contact-v3__map-frame,
body.t9-theme.t9-inner .t9-contact-v3__operations-card {
    border-radius: 20px;
    border: 1px solid #d5d3c7;
    background: #fff;
    overflow: hidden;
}

body.t9-theme.t9-inner .t9-contact-v3__map-frame iframe {
    display: block;
}

body.t9-theme.t9-inner .t9-contact-v3__operations-card {
    padding: 24px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
}

body.t9-theme.t9-inner .t9-contact-v3__operations-card h3 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.06;
}

body.t9-theme.t9-inner .t9-contact-v3__operations-card p {
    margin: 0 0 12px;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-contact-v3__operations-card ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    gap: 10px;
}

body.t9-theme.t9-inner .t9-contact-v3__operations-card li span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d7d72;
    margin-bottom: 2px;
}

body.t9-theme.t9-inner .t9-contact-v3__operations-card li strong,
body.t9-theme.t9-inner .t9-contact-v3__operations-card li a {
    color: #13291f;
    font-size: 18px;
    line-height: 1.45;
    word-break: break-word;
}

@media (max-width: 1199px) {
    body.t9-theme.t9-inner .t9-contact-v3__hero,
    body.t9-theme.t9-inner .t9-contact-v3__map-section {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-contact-v3__hero-panel {
        order: -1;
    }
}

@media (max-width: 991px) {
    body.t9-theme.t9-inner .t9-contact-v3__actions-grid {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-contact-v3__form-shell {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-contact-v3__hero-content {
        padding: 20px;
    }

    body.t9-theme.t9-inner .t9-contact-v3__hero-content h1 {
        font-size: clamp(30px, 10vw, 40px);
        line-height: 1.08;
    }

    body.t9-theme.t9-inner .t9-contact-v3__hero-content p {
        font-size: 15px;
    }

    body.t9-theme.t9-inner .t9-contact-v3__hero-panel {
        padding: 18px;
    }

    body.t9-theme.t9-inner .t9-contact-v3__hero-panel h3 {
        font-size: 22px;
    }

    body.t9-theme.t9-inner .t9-contact-v3__form-grid {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-contact-v3__form-actions .t9-btn {
        width: 100%;
    }

    body.t9-theme.t9-inner .t9-contact-v3__action-card h4 {
        font-size: 22px;
    }

    body.t9-theme.t9-inner .t9-contact-v3__operations-card {
        padding: 18px;
    }

    body.t9-theme.t9-inner .t9-contact-v3__operations-card h3 {
        font-size: 28px;
    }
}

/* Calc v3 full redesign */
body.t9-theme.t9-inner .t9-calc-v3 {
    background: radial-gradient(1000px 360px at 12% 0%, #f0ead9 0%, #f6f4ec 56%, #f6f4ec 100%);
}

body.t9-theme.t9-inner .t9-calc-v3__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    margin-bottom: 18px;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-main,
body.t9-theme.t9-inner .t9-calc-v3__hero-side {
    border: 1px solid #d5d3c7;
    border-radius: 24px;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-main {
    background: #fff;
    padding: 28px 30px;
    box-shadow: 0 24px 44px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-calc-v3__hero-main h1 {
    font-size: clamp(36px, 5.1vw, 54px);
    line-height: 1.04;
    margin: 14px 0;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-main p {
    color: var(--t9-muted);
    font-size: 17px;
    line-height: 1.68;
    max-width: 760px;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-points li {
    position: relative;
    padding-left: 22px;
    color: #13291f;
    font-size: 15px;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b8862f 0%, #c99a3f 100%);
}

body.t9-theme.t9-inner .t9-calc-v3__hero-side {
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    padding: 24px;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-side h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #fff;
}

body.t9-theme.t9-inner .t9-calc-v3__hero-side p {
    margin: 0;
    color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-calc-v3__shell {
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-calc-v3__card {
    border-radius: 24px;
    overflow: hidden;
}

body.t9-theme.t9-inner .t9-calc-v3__body {
    padding-top: 22px;
}

body.t9-theme.t9-inner .t9-calc-v3__state {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f0ead9;
    border: 1px solid #dcdacb;
    color: #13291f;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.t9-theme.t9-inner .t9-calc-v3__result-head,
body.t9-theme.t9-inner .t9-calc-v3__input-head {
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-calc-v3__result-head h3,
body.t9-theme.t9-inner .t9-calc-v3__input-head h3 {
    margin: 10px 0 6px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-calc-v3__result-head p,
body.t9-theme.t9-inner .t9-calc-v3__input-head p {
    margin: 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-calc-v3__row {
    margin-bottom: 2px;
}

body.t9-theme.t9-inner .t9-calc-v3__form .form-group {
    margin-bottom: 12px;
}

body.t9-theme.t9-inner .t9-calc-v3__form .radio {
    background: #d5d3c7;
}

body.t9-theme.t9-inner .t9-calc-v3__form .radio label {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

body.t9-theme.t9-inner .t9-calc-v3__form .radio input[type="radio"] {
    margin-right: 7px;
}

body.t9-theme.t9-inner .t9-calc-v3__form .wc-proceed-to-checkout .t9-btn,
body.t9-theme.t9-inner .t9-calc-v3__form .pricing-plan-footer .t9-btn {
    min-width: 190px;
}

body.t9-theme.t9-inner .t9-calc-v3__notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.t9-theme.t9-inner .t9-calc-v3__notes article {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
}

body.t9-theme.t9-inner .t9-calc-v3__notes h4 {
    margin: 0 0 7px;
    font-size: 24px;
    line-height: 1.16;
}

body.t9-theme.t9-inner .t9-calc-v3__notes p {
    margin: 0;
    color: #55655c;
}

@media (max-width: 1199px) {
    body.t9-theme.t9-inner .t9-calc-v3__hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    body.t9-theme.t9-inner .t9-calc-v3__notes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-calc-v3__hero-main {
        padding: 20px;
    }

    body.t9-theme.t9-inner .t9-calc-v3__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t9-theme.t9-inner .t9-calc-v3__hero-main p {
        font-size: 15px;
    }

    body.t9-theme.t9-inner .t9-calc-v3__hero-side {
        padding: 18px;
    }

    body.t9-theme.t9-inner .t9-calc-v3__hero-side h3 {
        font-size: 22px;
    }

    body.t9-theme.t9-inner .t9-calc-v3__result-head h3,
    body.t9-theme.t9-inner .t9-calc-v3__input-head h3 {
        font-size: 29px;
    }

    body.t9-theme.t9-inner .t9-calc-v3__form .wc-proceed-to-checkout .t9-btn,
    body.t9-theme.t9-inner .t9-calc-v3__form .pricing-plan-footer .t9-btn {
        width: 100%;
        min-width: 0;
    }

    body.t9-theme.t9-inner .t9-calc-v3__notes h4 {
        font-size: 22px;
    }
}

/* About v4 full redesign */
body.t9-theme.t9-inner .t9-about-v4 {
    background: radial-gradient(1100px 340px at 15% 0%, #f0ead9 0%, #f6f4ec 58%, #f6f4ec 100%);
}

body.t9-theme.t9-inner .t9-about-v4__hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    margin-bottom: 18px;
}

body.t9-theme.t9-inner .t9-about-v4__hero-content,
body.t9-theme.t9-inner .t9-about-v4__hero-media {
    border: 1px solid #d5d3c7;
    border-radius: 24px;
}

body.t9-theme.t9-inner .t9-about-v4__hero-content {
    background: #fff;
    padding: 28px 30px;
    box-shadow: 0 24px 44px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-about-v4__hero-content h1 {
    font-size: clamp(34px, 4.8vw, 52px);
    line-height: 1.06;
    margin: 14px 0;
}

body.t9-theme.t9-inner .t9-about-v4__hero-content p {
    color: #55655c;
    font-size: 17px;
    line-height: 1.7;
}

body.t9-theme.t9-inner .t9-about-v4__hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t9-theme.t9-inner .t9-about-v4__hero-media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

body.t9-theme.t9-inner .t9-about-v4__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-about-v4__pillar {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
}

body.t9-theme.t9-inner .t9-about-v4__pillar h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.15;
}

body.t9-theme.t9-inner .t9-about-v4__pillar p {
    margin: 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-about-v4__story {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-about-v4__story-media,
body.t9-theme.t9-inner .t9-about-v4__story-content {
    border: 1px solid #d5d3c7;
    border-radius: 22px;
}

body.t9-theme.t9-inner .t9-about-v4__story-media {
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

body.t9-theme.t9-inner .t9-about-v4__story-content {
    background: #fff;
    padding: 24px 26px;
}

body.t9-theme.t9-inner .t9-about-v4__story-content h2 {
    margin: 12px 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-about-v4__story-content p {
    margin: 0;
    color: #55655c;
    line-height: 1.68;
}

body.t9-theme.t9-inner .t9-about-v4__story-content ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

body.t9-theme.t9-inner .t9-about-v4__story-content li {
    position: relative;
    padding-left: 22px;
    color: #13291f;
}

body.t9-theme.t9-inner .t9-about-v4__story-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b8862f 0%, #c99a3f 100%);
}

body.t9-theme.t9-inner .t9-about-v4__proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-about-v4__proof-card {
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px;
}

body.t9-theme.t9-inner .t9-about-v4__proof-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-about-v4__proof-card p {
    margin: 0;
    color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-about-v4__cta {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-about-v4__cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-about-v4__cta p {
    margin: 0 auto 16px;
    max-width: 780px;
    color: #55655c;
}

/* FAQ v4 full redesign */
body.t9-theme.t9-inner .t9-faq-v4 {
    background: radial-gradient(1100px 340px at 15% 0%, #f0ead9 0%, #f6f4ec 58%, #f6f4ec 100%);
}

body.t9-theme.t9-inner .t9-faq-v4__hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    margin-bottom: 14px;
}

body.t9-theme.t9-inner .t9-faq-v4__hero-main,
body.t9-theme.t9-inner .t9-faq-v4__hero-side {
    border-radius: 22px;
    border: 1px solid #d5d3c7;
}

body.t9-theme.t9-inner .t9-faq-v4__hero-main {
    background: #fff;
    padding: 26px 28px;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-faq-v4__hero-main h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 4.8vw, 50px);
    line-height: 1.08;
}

body.t9-theme.t9-inner .t9-faq-v4__hero-main p {
    margin: 0;
    color: #55655c;
    font-size: 17px;
    line-height: 1.65;
}

body.t9-theme.t9-inner .t9-faq-v4__hero-side {
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    padding: 24px;
}

body.t9-theme.t9-inner .t9-faq-v4__hero-side h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: #fff;
}

body.t9-theme.t9-inner .t9-faq-v4__hero-side p {
    margin: 0;
    color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-faq-v4__hero-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body.t9-theme.t9-inner .t9-faq-v4__category-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-faq-v4__category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid #d5d3c7;
    background: #fff;
    color: #13291f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 8px 10px;
}

body.t9-theme.t9-inner .t9-faq-v4__section {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    margin-bottom: 14px;
}

body.t9-theme.t9-inner .t9-faq-v4__section-head {
    margin-bottom: 10px;
}

body.t9-theme.t9-inner .t9-faq-v4__section-head h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 36px);
    line-height: 1.12;
}

body.t9-theme.t9-inner .t9-faq-v4__section-head p {
    margin: 8px 0 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-faq-v4__accordion {
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-faq-v4__item {
    border: 1px solid #d5d3c7;
    border-radius: 14px;
    background: #f7f8f4;
    overflow: hidden;
}

body.t9-theme.t9-inner .t9-faq-v4__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 62px;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 700;
    color: #13291f;
}

body.t9-theme.t9-inner .t9-faq-v4__item summary::-webkit-details-marker {
    display: none;
}

body.t9-theme.t9-inner .t9-faq-v4__marker {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #d5d3c7;
    background: #d5d3c7;
    position: relative;
    flex: 0 0 auto;
}

body.t9-theme.t9-inner .t9-faq-v4__marker::before,
body.t9-theme.t9-inner .t9-faq-v4__marker::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #b8862f;
    transform: translate(-50%, -50%);
}

body.t9-theme.t9-inner .t9-faq-v4__marker::before {
    width: 10px;
    height: 1.5px;
}

body.t9-theme.t9-inner .t9-faq-v4__marker::after {
    width: 1.5px;
    height: 10px;
}

body.t9-theme.t9-inner .t9-faq-v4__item[open] .t9-faq-v4__marker::after {
    display: none;
}

body.t9-theme.t9-inner .t9-faq-v4__answer {
    padding: 0 16px 14px;
}

body.t9-theme.t9-inner .t9-faq-v4__answer p {
    margin: 0;
    color: #55655c;
    line-height: 1.64;
}

body.t9-theme.t9-inner .t9-faq-v4__cta {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-faq-v4__cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-faq-v4__cta p {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #55655c;
}

@media (max-width: 1199px) {
    body.t9-theme.t9-inner .t9-about-v4__hero,
    body.t9-theme.t9-inner .t9-about-v4__story,
    body.t9-theme.t9-inner .t9-faq-v4__hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    body.t9-theme.t9-inner .t9-about-v4__pillars,
    body.t9-theme.t9-inner .t9-faq-v4__category-nav {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-about-v4__proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-about-v4__hero-content,
    body.t9-theme.t9-inner .t9-about-v4__story-content,
    body.t9-theme.t9-inner .t9-about-v4__cta,
    body.t9-theme.t9-inner .t9-faq-v4__hero-main,
    body.t9-theme.t9-inner .t9-faq-v4__hero-side,
    body.t9-theme.t9-inner .t9-faq-v4__section,
    body.t9-theme.t9-inner .t9-faq-v4__cta {
        padding: 18px;
    }

    body.t9-theme.t9-inner .t9-about-v4__hero-content h1,
    body.t9-theme.t9-inner .t9-faq-v4__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t9-theme.t9-inner .t9-about-v4__hero-content p,
    body.t9-theme.t9-inner .t9-faq-v4__hero-main p {
        font-size: 15px;
    }

    body.t9-theme.t9-inner .t9-about-v4__hero-actions .t9-btn,
    body.t9-theme.t9-inner .t9-faq-v4__hero-actions .t9-btn,
    body.t9-theme.t9-inner .t9-faq-v4__cta .t9-btn {
        width: 100%;
    }

    body.t9-theme.t9-inner .t9-about-v4__pillar h3,
    body.t9-theme.t9-inner .t9-about-v4__proof-card h3 {
        font-size: 22px;
    }

    body.t9-theme.t9-inner .t9-faq-v4__section-head h2,
    body.t9-theme.t9-inner .t9-faq-v4__cta h2,
    body.t9-theme.t9-inner .t9-about-v4__cta h2 {
        font-size: 30px;
    }

    body.t9-theme.t9-inner .t9-faq-v4__item summary {
        font-size: 16px;
        min-height: 56px;
    }
}

/* Team + testimonials unified blocks */
body.t9-theme .t9-team-v2,
body.t9-theme .t9-proof-v2 {
    padding-top: 22px;
    padding-bottom: 22px;
}

body.t9-theme .t9-team-v2 .t9-section-head,
body.t9-theme .t9-proof-v2 .t9-section-head {
    margin-bottom: 14px;
}

body.t9-theme .t9-team-v2 .t9-section-head p {
    margin-top: 8px;
    max-width: 760px;
    color: #55655c;
}

body.t9-theme .t9-team-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.t9-theme .t9-team-v2__card {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    overflow: hidden;
}

body.t9-theme .t9-team-v2__photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

body.t9-theme .t9-team-v2__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.t9-theme .t9-team-v2__meta {
    padding: 16px 18px 18px;
}

body.t9-theme .t9-team-v2__meta h3 {
    margin: 0 0 5px;
    font-size: 25px;
    line-height: 1.14;
}

body.t9-theme .t9-team-v2__meta p {
    margin: 0;
    color: #55655c;
    font-weight: 600;
}

body.t9-theme .t9-proof-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.t9-theme .t9-proof-v2__card {
    background: linear-gradient(170deg, #ffffff 0%, #d5d3c7 100%);
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    padding: 18px;
}

body.t9-theme .t9-proof-v2__card h4 {
    margin: 0 0 8px;
    font-size: 23px;
    line-height: 1.18;
}

body.t9-theme .t9-proof-v2__card p {
    margin: 0;
    color: #55655c;
    line-height: 1.62;
}

body.t9-theme .t9-proof-v2__card strong {
    display: block;
    margin-top: 10px;
    color: #13291f;
    font-size: 13px;
    letter-spacing: 0.03em;
}

@media (max-width: 991px) {
    body.t9-theme .t9-team-v2__grid,
    body.t9-theme .t9-proof-v2__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t9-theme .t9-team-v2__meta h3,
    body.t9-theme .t9-proof-v2__card h4 {
        font-size: 22px;
    }
}

/* Team + testimonials anti-legacy v3 */
body.t9-theme .t9-team-v3,
body.t9-theme .t9-proof-v3 {
    padding-top: 22px;
    padding-bottom: 22px;
}

body.t9-theme .t9-team-v3__layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 16px;
}

body.t9-theme .t9-team-v3__intro {
    position: sticky;
    top: 104px;
    align-self: start;
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px;
}

body.t9-theme .t9-team-v3__intro .t9-eyebrow {
    color: #dcdacb;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

body.t9-theme .t9-team-v3__intro h2 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
}

body.t9-theme .t9-team-v3__intro p {
    color: #d5d3c7;
    margin: 0 0 16px;
    line-height: 1.62;
}

body.t9-theme .t9-team-v3__stack {
    display: grid;
    gap: 12px;
}

body.t9-theme .t9-team-v3__role {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 12px;
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    overflow: hidden;
}

body.t9-theme .t9-team-v3__role--ops {
    grid-template-columns: 1fr 280px;
    background: linear-gradient(170deg, #ffffff 0%, #d5d3c7 100%);
}

body.t9-theme .t9-team-v3__role--coord {
    grid-template-columns: 280px 1fr;
}

body.t9-theme .t9-team-v3__photo {
    min-height: 220px;
}

body.t9-theme .t9-team-v3__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.t9-theme .t9-team-v3__meta {
    padding: 16px 18px;
    display: grid;
    align-content: center;
    gap: 6px;
}

body.t9-theme .t9-team-v3__chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid #dcdacb;
    background: #d5d3c7;
    color: #b8862f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.t9-theme .t9-team-v3__meta h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.12;
}

body.t9-theme .t9-team-v3__meta p {
    margin: 0;
    color: #55655c;
    line-height: 1.56;
}

body.t9-theme .t9-team-v3__meta strong {
    margin-top: 2px;
    color: #13291f;
    font-size: 14px;
}

body.t9-theme .t9-proof-v3__head {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 14px;
    align-items: end;
    margin-bottom: 12px;
}

body.t9-theme .t9-proof-v3__metric {
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 16px 18px;
}

body.t9-theme .t9-proof-v3__metric span {
    display: block;
    color: #d5d3c7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.t9-theme .t9-proof-v3__metric strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 38px;
    line-height: 1;
}

body.t9-theme .t9-proof-v3__metric p {
    margin: 8px 0 0;
    color: #d5d3c7;
}

body.t9-theme .t9-proof-v3__matrix {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
}

body.t9-theme .t9-proof-v3__card {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    padding: 18px;
}

body.t9-theme .t9-proof-v3__card--primary {
    grid-row: span 2;
    background: linear-gradient(165deg, #d5d3c7 0%, #ffffff 100%);
}

body.t9-theme .t9-proof-v3__card h4 {
    margin: 0 0 8px;
    font-size: clamp(23px, 2.2vw, 30px);
    line-height: 1.14;
}

body.t9-theme .t9-proof-v3__card p {
    margin: 0;
    color: #55655c;
    line-height: 1.63;
}

body.t9-theme .t9-proof-v3__card strong {
    display: block;
    margin-top: 10px;
    color: #13291f;
    font-size: 14px;
}

@media (max-width: 1199px) {
    body.t9-theme .t9-team-v3__layout,
    body.t9-theme .t9-proof-v3__head,
    body.t9-theme .t9-proof-v3__matrix {
        grid-template-columns: 1fr;
    }

    body.t9-theme .t9-team-v3__intro {
        position: relative;
        top: auto;
    }

    body.t9-theme .t9-team-v3__role,
    body.t9-theme .t9-team-v3__role--ops,
    body.t9-theme .t9-team-v3__role--coord {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t9-theme .t9-team-v3__intro,
    body.t9-theme .t9-proof-v3__metric,
    body.t9-theme .t9-proof-v3__card {
        padding: 16px;
    }

    body.t9-theme .t9-team-v3__intro h2 {
        font-size: clamp(28px, 10vw, 38px);
    }

    body.t9-theme .t9-team-v3__meta h3 {
        font-size: 24px;
    }

    body.t9-theme .t9-team-v3__meta strong,
    body.t9-theme .t9-proof-v3__card strong {
        font-size: 13px;
    }

    body.t9-theme .t9-proof-v3__metric strong {
        font-size: 34px;
    }
}

/* Wave 5: fees + plans */
body.t9-theme.t9-inner .t9-pricing-v5 {
    background: radial-gradient(1100px 340px at 15% 0%, #f0ead9 0%, #f6f4ec 58%, #f6f4ec 100%);
}

body.t9-theme.t9-inner .t9-pricing-v5__hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-pricing-v5__hero-main,
body.t9-theme.t9-inner .t9-pricing-v5__hero-side {
    border: 1px solid #d5d3c7;
    border-radius: 22px;
}

body.t9-theme.t9-inner .t9-pricing-v5__hero-main {
    background: #fff;
    padding: 26px 28px;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-pricing-v5__hero-main h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 4.8vw, 50px);
    line-height: 1.08;
}

body.t9-theme.t9-inner .t9-pricing-v5__hero-main p {
    margin: 0;
    color: #55655c;
    font-size: 17px;
    line-height: 1.65;
}

body.t9-theme.t9-inner .t9-pricing-v5__hero-side {
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    padding: 22px;
}

body.t9-theme.t9-inner .t9-pricing-v5__hero-side h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 26px;
}

body.t9-theme.t9-inner .t9-pricing-v5__hero-side p {
    margin: 0;
    color: #d5d3c7;
}

body.t9-theme.t9-inner .t9-pricing-v5__plans,
body.t9-theme.t9-inner .t9-plans-v5__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-fees-v5 .t9-pricing-v5__plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.t9-theme.t9-inner .t9-pricing-v5__plan,
body.t9-theme.t9-inner .t9-plans-v5__card {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    padding: 18px;
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan.is-featured,
body.t9-theme.t9-inner .t9-plans-v5__card.is-featured {
    background: linear-gradient(165deg, #0e2a20 0%, #13291f 100%);
    border-color: rgba(255, 255, 255, 0.16);
}

body.t9-theme.t9-inner .t9-pricing-v5__plan.is-featured h3,
body.t9-theme.t9-inner .t9-pricing-v5__plan.is-featured strong,
body.t9-theme.t9-inner .t9-pricing-v5__plan.is-featured span,
body.t9-theme.t9-inner .t9-pricing-v5__plan.is-featured p,
body.t9-theme.t9-inner .t9-plans-v5__card.is-featured h3,
body.t9-theme.t9-inner .t9-plans-v5__card.is-featured strong,
body.t9-theme.t9-inner .t9-plans-v5__card.is-featured span,
body.t9-theme.t9-inner .t9-plans-v5__card.is-featured p {
    color: #fff;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan-meta,
body.t9-theme.t9-inner .t9-plans-v5__tagline {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan h3,
body.t9-theme.t9-inner .t9-plans-v5__card h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.08;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan-highlight,
body.t9-theme.t9-inner .t9-plans-v5__highlight {
    margin: 0;
    color: #55655c;
    line-height: 1.55;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan ul,
body.t9-theme.t9-inner .t9-plans-v5__card ul {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan li,
body.t9-theme.t9-inner .t9-plans-v5__card li {
    display: grid;
    gap: 2px;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan li span,
body.t9-theme.t9-inner .t9-plans-v5__card li span {
    font-size: 12px;
    font-weight: 700;
    color: #6d7d72;
}

body.t9-theme.t9-inner .t9-pricing-v5__plan li strong,
body.t9-theme.t9-inner .t9-plans-v5__card li strong {
    font-size: 16px;
    color: #13291f;
    line-height: 1.4;
}

body.t9-theme.t9-inner .t9-pricing-v5__included {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-pricing-v5__included-head h2 {
    margin: 0 0 6px;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.08;
}

body.t9-theme.t9-inner .t9-pricing-v5__included-head p {
    margin: 0 0 10px;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-pricing-v5__included ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
}

body.t9-theme.t9-inner .t9-pricing-v5__included li {
    position: relative;
    padding-left: 20px;
    color: #13291f;
    line-height: 1.55;
}

body.t9-theme.t9-inner .t9-pricing-v5__included li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b8862f 0%, #c99a3f 100%);
}

body.t9-theme.t9-inner .t9-pricing-v5__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-pricing-v5__group {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    padding: 16px 18px;
}

body.t9-theme.t9-inner .t9-pricing-v5__group h3 {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1.12;
}

body.t9-theme.t9-inner .t9-pricing-v5__group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-pricing-v5__group li span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6d7d72;
}

body.t9-theme.t9-inner .t9-pricing-v5__group li strong {
    color: #13291f;
    font-size: 15px;
    line-height: 1.52;
}

body.t9-theme.t9-inner .t9-plans-v5__compare {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(14, 42, 32, 0.06);
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-plans-v5__compare-head h2 {
    margin: 0 0 6px;
    font-size: clamp(30px, 4vw, 40px);
}

body.t9-theme.t9-inner .t9-plans-v5__compare-head p {
    margin: 0 0 10px;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-plans-v5__rows {
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-plans-v5__row {
    border: 1px solid #d5d3c7;
    border-radius: 14px;
    padding: 12px;
    background: #f7f8f4;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
}

body.t9-theme.t9-inner .t9-plans-v5__row h4 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}

body.t9-theme.t9-inner .t9-plans-v5__row span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #6d7d72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.t9-theme.t9-inner .t9-plans-v5__row strong {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    color: #13291f;
    line-height: 1.42;
}

body.t9-theme.t9-inner .t9-pricing-v5__cta {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 20px 46px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-pricing-v5__cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-pricing-v5__cta p {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-plans-v5__footnote {
    margin-top: 12px;
    color: #55655c;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 1199px) {
    body.t9-theme.t9-inner .t9-pricing-v5__hero,
    body.t9-theme.t9-inner .t9-pricing-v5__plans,
    body.t9-theme.t9-inner .t9-plans-v5__cards {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-fees-v5 .t9-pricing-v5__plans {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-pricing-v5__included ul,
    body.t9-theme.t9-inner .t9-pricing-v5__groups {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-plans-v5__row {
        grid-template-columns: 1fr 1fr;
    }

    body.t9-theme.t9-inner .t9-plans-v5__row h4 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-pricing-v5__hero-main,
    body.t9-theme.t9-inner .t9-pricing-v5__hero-side,
    body.t9-theme.t9-inner .t9-pricing-v5__included,
    body.t9-theme.t9-inner .t9-pricing-v5__group,
    body.t9-theme.t9-inner .t9-plans-v5__compare,
    body.t9-theme.t9-inner .t9-pricing-v5__cta {
        padding: 16px;
    }

    body.t9-theme.t9-inner .t9-pricing-v5__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t9-theme.t9-inner .t9-pricing-v5__hero-main p {
        font-size: 15px;
    }

    body.t9-theme.t9-inner .t9-pricing-v5__plan h3,
    body.t9-theme.t9-inner .t9-plans-v5__card h3 {
        font-size: 26px;
    }

    body.t9-theme.t9-inner .t9-pricing-v5__group h3 {
        font-size: 22px;
    }

    body.t9-theme.t9-inner .t9-pricing-v5__cta .t9-btn {
        width: 100%;
    }
}

/* Wave 6: Stores pack */
body.t9-theme.t9-inner .t9-stores-v6 {
    background: linear-gradient(180deg, #d5d3c7 0%, #d5d3c7 100%);
}

body.t9-theme.t9-inner .t9-stores-v6__hero {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
}

body.t9-theme.t9-inner .t9-stores-v6__hero-main,
body.t9-theme.t9-inner .t9-stores-v6__hero-side {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 44px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-stores-v6__hero-main h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.04;
}

body.t9-theme.t9-inner .t9-stores-v6__hero-main p,
body.t9-theme.t9-inner .t9-stores-v6__hero-side p {
    margin: 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-stores-v6__hero-points {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-stores-v6__hero-points li {
    position: relative;
    padding-left: 20px;
    color: #13291f;
}

body.t9-theme.t9-inner .t9-stores-v6__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8862f, #b8862f);
}

body.t9-theme.t9-inner .t9-stores-v6__hero-side h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
}

body.t9-theme.t9-inner .t9-stores-v6__hero-side .t9-btn {
    margin-top: 16px;
}

body.t9-theme.t9-inner .t9-stores-v6__layout {
    display: grid;
    grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

body.t9-theme.t9-inner .t9-stores-v6__sidebar {
    position: sticky;
    top: 110px;
}

body.t9-theme.t9-inner .t9-stores-v6__mobile-menu {
    display: none;
}

body.t9-theme.t9-inner .t9-stores-v6__menu {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-stores-v6__menu a,
body.t9-theme.t9-inner .t9-stores-v6__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #13291f;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

body.t9-theme.t9-inner .t9-stores-v6__menu a:hover,
body.t9-theme.t9-inner .t9-stores-v6__links a:hover {
    background: #d5d3c7;
    color: #13291f;
}

body.t9-theme.t9-inner .t9-stores-v6__menu a.is-active,
body.t9-theme.t9-inner .t9-stores-v6__links a.is-active {
    background: linear-gradient(135deg, #b8862f, #b8862f);
    color: #fff;
    border-color: #b8862f;
}

body.t9-theme.t9-inner .t9-stores-v6__content {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 38px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-stores-v6__content-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

body.t9-theme.t9-inner .t9-stores-v6__content-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-stores-v6__content-head p {
    margin: 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-stores-v6__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.t9-theme.t9-inner .t9-stores-v6__card {
    border: 1px solid #d5d3c7;
    border-radius: 16px;
    padding: 16px;
    background: #f7f8f4;
    display: grid;
    gap: 10px;
}

body.t9-theme.t9-inner .t9-stores-v6__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #13291f;
    background: #d5d3c7;
}

body.t9-theme.t9-inner .t9-stores-v6__card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

body.t9-theme.t9-inner .t9-stores-v6__card p {
    margin: 0;
    color: #55655c;
    line-height: 1.58;
}

body.t9-theme.t9-inner .t9-stores-v6__card-actions .t9-btn {
    width: 100%;
    justify-content: center;
}

body.t9-theme.t9-inner .t9-stores-v6__cta {
    margin-top: 20px;
    background: linear-gradient(135deg, #13291f, #b8862f);
    color: #d5d3c7;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
}

body.t9-theme.t9-inner .t9-stores-v6__cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

body.t9-theme.t9-inner .t9-stores-v6__cta p {
    margin: 0 auto 18px;
    max-width: 720px;
    color: #d5d3c7;
}

@media (max-width: 1199px) {
    body.t9-theme.t9-inner .t9-stores-v6__hero,
    body.t9-theme.t9-inner .t9-stores-v6__layout {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-stores-v6__sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-stores-v6__hero-main,
    body.t9-theme.t9-inner .t9-stores-v6__hero-side,
    body.t9-theme.t9-inner .t9-stores-v6__content,
    body.t9-theme.t9-inner .t9-stores-v6__cta {
        border-radius: 16px;
        padding: 16px;
    }

    body.t9-theme.t9-inner .t9-stores-v6__mobile-menu {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #d5d3c7;
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
    }

    body.t9-theme.t9-inner .t9-stores-v6__mobile-menu summary {
        list-style: none;
        cursor: pointer;
        padding: 12px 14px;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #13291f;
    }

    body.t9-theme.t9-inner .t9-stores-v6__mobile-menu .t9-stores-v6__links {
        padding: 0 10px 10px;
        display: grid;
        gap: 6px;
    }

    body.t9-theme.t9-inner .t9-stores-v6__menu {
        display: none;
    }

    body.t9-theme.t9-inner .t9-stores-v6__grid,
    body.t9-theme.t9-inner .t9-stores-v6__content-head {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }
}

/* Wave 7: Auth/account pack */
body.t9-theme.t9-inner .t9-auth-v7 {
    background: linear-gradient(180deg, #d5d3c7 0%, #d5d3c7 100%);
}

body.t9-theme.t9-inner .t9-auth-v7__hero {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-auth-v7__hero-main,
body.t9-theme.t9-inner .t9-auth-v7__hero-side,
body.t9-theme.t9-inner .t9-auth-v7__card,
body.t9-theme.t9-inner .t9-auth-v7__media {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-auth-v7__hero-main h1 {
    margin: 8px 0 10px;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.05;
}

body.t9-theme.t9-inner .t9-auth-v7__hero-main p,
body.t9-theme.t9-inner .t9-auth-v7__hero-side p {
    margin: 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-auth-v7__hero-points {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-auth-v7__hero-points li {
    position: relative;
    padding-left: 18px;
    color: #13291f;
}

body.t9-theme.t9-inner .t9-auth-v7__hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8862f, #b8862f);
}

body.t9-theme.t9-inner .t9-auth-v7__hero-side h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.16;
}

body.t9-theme.t9-inner .t9-auth-v7__hero-side .t9-btn {
    margin-top: 14px;
}

body.t9-theme.t9-inner .t9-auth-v7__section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

body.t9-theme.t9-inner .t9-auth-v7__section--single {
    grid-template-columns: 1fr;
}

body.t9-theme.t9-inner .t9-auth-v7__head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-auth-v7__head p {
    margin: 8px 0 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-auth-v7__form {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

body.t9-theme.t9-inner .t9-auth-v7__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

body.t9-theme.t9-inner .t9-auth-v7__field {
    display: grid;
    gap: 6px;
}

body.t9-theme.t9-inner .t9-auth-v7__field label {
    margin: 0;
    color: #13291f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.t9-theme.t9-inner .t9-auth-v7__field .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #d5d3c7;
    padding: 12px 14px;
    color: #13291f;
    background: #fff;
    box-shadow: none;
}

body.t9-theme.t9-inner .t9-auth-v7__field .form-control:focus {
    border-color: #b8862f;
    box-shadow: 0 0 0 4px rgba(184, 134, 47, 0.14);
}

body.t9-theme.t9-inner .t9-auth-v7__actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

body.t9-theme.t9-inner .t9-auth-v7__actions .t9-btn {
    min-height: 48px;
    justify-content: center;
}

body.t9-theme.t9-inner .t9-auth-v7__switch {
    margin: 14px 0 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-auth-v7__switch a {
    color: #b8862f;
    font-weight: 700;
}

body.t9-theme.t9-inner .t9-auth-v7__media {
    display: flex;
    padding: 0;
    overflow: hidden;
}

body.t9-theme.t9-inner .t9-auth-v7__media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

body.t9-theme.t9-inner .t9-auth-v7__error {
    margin: 14px 0 0;
    border: 1px solid #e3c98f;
    background: #fbf7ea;
    color: #b8862f;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    body.t9-theme.t9-inner .t9-auth-v7__hero,
    body.t9-theme.t9-inner .t9-auth-v7__section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-auth-v7__hero-main,
    body.t9-theme.t9-inner .t9-auth-v7__hero-side,
    body.t9-theme.t9-inner .t9-auth-v7__card {
        border-radius: 16px;
        padding: 16px;
    }

    body.t9-theme.t9-inner .t9-auth-v7__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t9-theme.t9-inner .t9-auth-v7__grid {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-auth-v7__actions .t9-btn {
        width: 100%;
    }
}

/* Wave 8: Legal pack */
body.t9-theme.t9-inner .t9-legal-v8 {
    background: linear-gradient(180deg, #d5d3c7 0%, #d5d3c7 100%);
}

body.t9-theme.t9-inner .t9-legal-v8__hero {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-main,
body.t9-theme.t9-inner .t9-legal-v8__hero-side,
body.t9-theme.t9-inner .t9-legal-v8__anchors,
body.t9-theme.t9-inner .t9-legal-v8__section-card,
body.t9-theme.t9-inner .t9-legal-v8__prohibited-head,
body.t9-theme.t9-inner .t9-legal-v8__prohibited-item,
body.t9-theme.t9-inner .t9-legal-v8__cta {
    background: #fff;
    border: 1px solid #d5d3c7;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(14, 42, 32, 0.08);
}

body.t9-theme.t9-inner .t9-legal-v8__hero-main,
body.t9-theme.t9-inner .t9-legal-v8__hero-side,
body.t9-theme.t9-inner .t9-legal-v8__anchors,
body.t9-theme.t9-inner .t9-legal-v8__prohibited-head,
body.t9-theme.t9-inner .t9-legal-v8__cta {
    padding: 24px;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-main h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.03;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-main p,
body.t9-theme.t9-inner .t9-legal-v8__hero-side dd {
    margin: 0;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-legal-v8__page-nav {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.t9-theme.t9-inner .t9-legal-v8__page-nav a {
    border: 1px solid #d5d3c7;
    color: #55655c;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}

body.t9-theme.t9-inner .t9-legal-v8__page-nav a.is-active {
    background: #b8862f;
    border-color: #b8862f;
    color: #fff;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-side h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-side dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-side dt {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6d7d72;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-side dd {
    margin: 3px 0 0;
}

body.t9-theme.t9-inner .t9-legal-v8__hero-side .t9-btn {
    margin-top: 16px;
}

body.t9-theme.t9-inner .t9-legal-v8__anchors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

body.t9-theme.t9-inner .t9-legal-v8__anchors a {
    border-radius: 12px;
    border: 1px solid #d5d3c7;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #13291f;
    background: #d5d3c7;
}

body.t9-theme.t9-inner .t9-legal-v8__sections {
    display: grid;
    gap: 12px;
}

body.t9-theme.t9-inner .t9-legal-v8__section-card {
    padding: 20px;
}

body.t9-theme.t9-inner .t9-legal-v8__section-card h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

body.t9-theme.t9-inner .t9-legal-v8__section-card p {
    margin: 0 0 10px;
    color: #55655c;
    line-height: 1.62;
}

body.t9-theme.t9-inner .t9-legal-v8__section-card ul {
    margin: 0;
    padding-left: 18px;
    color: #55655c;
    display: grid;
    gap: 6px;
}

body.t9-theme.t9-inner .t9-legal-v8__prohibited-list {
    display: grid;
    gap: 10px;
}

body.t9-theme.t9-inner .t9-legal-v8__prohibited-item {
    overflow: hidden;
}

body.t9-theme.t9-inner .t9-legal-v8__prohibited-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #13291f;
}

body.t9-theme.t9-inner .t9-legal-v8__marker {
    width: 22px;
    height: 22px;
    border: 1px solid #d5d3c7;
    border-radius: 999px;
    position: relative;
    flex-shrink: 0;
}

body.t9-theme.t9-inner .t9-legal-v8__marker::before,
body.t9-theme.t9-inner .t9-legal-v8__marker::after {
    content: "";
    position: absolute;
    background: #b8862f;
}

body.t9-theme.t9-inner .t9-legal-v8__marker::before {
    width: 10px;
    height: 2px;
    top: 10px;
    left: 5px;
}

body.t9-theme.t9-inner .t9-legal-v8__marker::after {
    width: 2px;
    height: 10px;
    top: 6px;
    left: 9px;
    transition: opacity 0.2s ease;
}

body.t9-theme.t9-inner .t9-legal-v8__prohibited-item[open] .t9-legal-v8__marker::after {
    opacity: 0;
}

body.t9-theme.t9-inner .t9-legal-v8__prohibited-body {
    padding: 0 16px 16px;
}

body.t9-theme.t9-inner .t9-legal-v8__prohibited-body p {
    margin: 0 0 8px;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-legal-v8__prohibited-body ul {
    margin: 0;
    padding-left: 18px;
    color: #55655c;
}

body.t9-theme.t9-inner .t9-legal-v8__cta {
    margin-top: 20px;
    text-align: center;
    padding: 28px;
    background: linear-gradient(135deg, #13291f, #b8862f);
    color: #dcdacb;
}

body.t9-theme.t9-inner .t9-legal-v8__cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.08;
}

body.t9-theme.t9-inner .t9-legal-v8__cta p {
    margin: 0 auto 16px;
    max-width: 760px;
    color: #d5d3c7;
}

@media (max-width: 1199px) {
    body.t9-theme.t9-inner .t9-legal-v8__hero {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-legal-v8__anchors {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    body.t9-theme.t9-inner .t9-legal-v8__hero-main,
    body.t9-theme.t9-inner .t9-legal-v8__hero-side,
    body.t9-theme.t9-inner .t9-legal-v8__anchors,
    body.t9-theme.t9-inner .t9-legal-v8__section-card,
    body.t9-theme.t9-inner .t9-legal-v8__prohibited-head,
    body.t9-theme.t9-inner .t9-legal-v8__cta {
        padding: 16px;
        border-radius: 16px;
    }

    body.t9-theme.t9-inner .t9-legal-v8__hero-main h1 {
        font-size: clamp(30px, 10vw, 40px);
    }

    body.t9-theme.t9-inner .t9-legal-v8__anchors {
        grid-template-columns: 1fr;
    }

    body.t9-theme.t9-inner .t9-legal-v8__page-nav a,
    body.t9-theme.t9-inner .t9-legal-v8__anchors a {
        text-align: center;
    }

    body.t9-theme.t9-inner .t9-legal-v8__cta .t9-btn {
        width: 100%;
    }
}

/* =====================================================================
   template_9 "Bull City — Emerald & Brass" layer
   stone/emerald/brass — Bricolage Grotesque + Hanken Grotesk
   ===================================================================== */

/* shared utilities */
.t9-theme .t9-mono {
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--t9-slate);
}
.t9-theme .t9-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--t9-accent);
}
.t9-theme .t9-kicker::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--t9-accent);
}
.t9-theme .t9-section {
    padding: clamp(58px, 8vw, 112px) 0;
}
.t9-theme .t9-rule {
    height: 1px;
    background: var(--t9-ink);
}


/* ---------- PAGE HERO (inner) — left-aligned ---------- */
.t9-theme .t9-page-hero {
    background: var(--t9-bg);
    border-bottom: 2px solid var(--t9-ink);
    padding: clamp(52px, 8vw, 104px) 0 clamp(34px, 4vw, 52px);
}
.t9-theme .t9-page-hero__inner {
    max-width: 940px;
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0;
}
.t9-theme .t9-page-hero__title {
    color: var(--t9-ink);
    text-align: left;
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 6vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-wrap: balance;
}
.t9-theme .t9-page-hero__title::before {
    content: "Bull City Freight";
    display: block;
    color: var(--t9-accent);
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.t9-theme .t9-page-hero__lead {
    text-align: left;
    margin-top: 20px;
    max-width: 60ch;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.62;
    color: var(--t9-muted);
}

/* ---------- FOOTER editorial ---------- */
.t9-theme .t9-footer {
    background: var(--t9-bg);
    border-top: 1px solid var(--t9-border);
    color: var(--t9-ink);
    position: relative;
}
.t9-theme .t9-footer {
    border-top: 2px solid var(--t9-ink);
}
.t9-theme .t9-footer::before {
    content: none;
}
.t9-theme .t9-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(48px, 6vw, 80px) 0 40px;
}
.t9-theme .t9-footer__brand p { color: var(--t9-muted); max-width: 42ch; margin: 16px 0; }
.t9-theme .t9-footer__logo img { height: 34px; width: auto; }
.t9-theme .t9-footer__meta { font-family: "Hanken Grotesk", system-ui, sans-serif; font-size: 12px; color: var(--t9-slate); }
.t9-theme .t9-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t9-theme .t9-footer__col h4 { font-family: "Hanken Grotesk", system-ui, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t9-slate); margin-bottom: 16px; }
.t9-theme .t9-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.t9-theme .t9-footer__col a { color: var(--t9-ink); font-size: 15px; }
.t9-theme .t9-footer__col a:hover { color: var(--t9-accent); }
.t9-theme .t9-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0 40px;
    border-top: 1px solid var(--t9-border);
    color: var(--t9-muted);
    font-size: 13px;
}
.t9-theme .t9-footer__legal { display: flex; gap: 22px; }
.t9-theme .t9-footer__legal a:hover { color: var(--t9-accent); }
@media (max-width: 820px) {
    .t9-theme .t9-footer__top { grid-template-columns: 1fr; }
    .t9-theme .t9-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PRELOADER fix (hide on inner pages) ---------- */
.t9-theme .preloader-area-wrap {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t9-bg);
}
.t9-theme .preloader-activate:not(.preloader-active) .preloader-area-wrap { display: none; }
.t9-loader {
    width: 42px;
    height: 42px;
    border: 3px solid var(--t9-border);
    border-top-color: var(--t9-accent);
    border-radius: 50%;
    animation: t9-spin 0.8s linear infinite;
}
.t9-loader__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
@keyframes t9-spin { to { transform: rotate(360deg); } }


/* ---------- inner page hero cards — flat frame ---------- */
body.t9-theme .t9-contact-v3__hero,
body.t9-theme .t9-legal-v8__hero,
body.t9-theme .t9-services-pack__hero {
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid var(--t9-ink);
    background: var(--t9-bg);
    box-shadow: none;
}

body.t9-theme.t9-inner .t9-contact-v3__form-shell,
body.t9-theme.t9-inner .t9-legal-v8__section-card,
body.t9-theme.t9-inner .t9-services-pack__card,
body.t9-theme.t9-inner .t9-services-tabs__panel {
    border-radius: 0;
    border: 1px solid var(--t9-border);
    box-shadow: none;
}

/* ---------- form messages (contact / apply) ---------- */
body.t9-theme .form-message.success,
body.t9-theme.t9-inner .t9-contact-v3__form .form-message.success {
    color: #274d18;
    background: #e9efe2;
    border-color: rgba(61, 93, 42, 0.34);
}

body.t9-theme .form-message.error,
body.t9-theme.t9-inner .t9-contact-v3__form .form-message.error {
    color: #7a5416;
    background: #efe4c9;
    border-color: rgba(184, 134, 47, 0.34);
}

@media (max-width: 640px) {
    .t9-theme .t9-header__login { display: none; }
}

/* =====================================================================
   BULL CITY HOME LAYER — bold confident emerald & brass
   marquee / intro / capabilities / band / crew / voices / cta
   ===================================================================== */

/* ---------- MARQUEE (hero) ---------- */
.t9-theme .t9-marquee {
    position: relative;
    background: var(--t9-deep);
    color: var(--t9-paper);
    overflow: hidden;
    padding: clamp(56px, 8vw, 118px) 0 clamp(48px, 6vw, 96px);
    border-bottom: 3px solid var(--t9-accent);
}
.t9-theme .t9-marquee::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 100% 0%, rgba(184, 134, 47, 0.18) 0%, rgba(184, 134, 47, 0) 55%),
        linear-gradient(180deg, rgba(10, 31, 24, 0) 0%, rgba(10, 31, 24, 0.35) 100%);
    pointer-events: none;
}
.t9-theme .t9-marquee__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
}
.t9-theme .t9-marquee__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--t9-accent-hi);
}
.t9-theme .t9-marquee__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--t9-accent);
}
.t9-theme .t9-marquee__title {
    margin: 22px 0 0;
    max-width: 16ch;
    font-size: clamp(44px, 6.4vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--t9-paper);
    text-wrap: balance;
}
.t9-theme .t9-marquee__title em {
    font-style: normal;
    color: var(--t9-accent-hi);
}
.t9-theme .t9-marquee__lede {
    margin-top: 26px;
    max-width: 52ch;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.6;
    color: rgba(246, 244, 236, 0.82);
}
.t9-theme .t9-marquee__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.t9-theme .t9-marquee .t9-btn-secondary {
    border-color: rgba(246, 244, 236, 0.5);
    color: var(--t9-paper);
}
.t9-theme .t9-marquee .t9-btn-secondary:hover {
    background: var(--t9-paper);
    color: var(--t9-deep);
    border-color: var(--t9-paper);
}
.t9-theme .t9-marquee__stats {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: clamp(38px, 5vw, 58px) 0 0;
    padding: 26px 0 0;
    border-top: 1px solid rgba(246, 244, 236, 0.22);
    gap: clamp(20px, 4vw, 46px);
}
.t9-theme .t9-marquee__stats li { position: relative; }
.t9-theme .t9-marquee__stats li + li { padding-left: clamp(20px, 4vw, 46px); }
.t9-theme .t9-marquee__stats li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: var(--t9-accent);
    opacity: 0.7;
}
.t9-theme .t9-marquee__stats b {
    display: block;
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    color: var(--t9-accent-hi);
    font-variant-numeric: tabular-nums;
}
.t9-theme .t9-marquee__stats span {
    display: block;
    margin-top: 8px;
    max-width: 20ch;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(246, 244, 236, 0.72);
}
.t9-theme .t9-marquee__media { position: relative; }
.t9-theme .t9-marquee__frame {
    position: relative;
    border: 1px solid rgba(216, 171, 82, 0.55);
    padding: 12px;
    background: rgba(246, 244, 236, 0.04);
}
.t9-theme .t9-marquee__frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.03);
}
.t9-theme .t9-marquee__frame::after {
    content: "";
    position: absolute;
    right: -10px;
    top: -10px;
    width: 64px;
    height: 64px;
    border-top: 3px solid var(--t9-accent);
    border-right: 3px solid var(--t9-accent);
}
.t9-theme .t9-marquee__badge {
    position: absolute;
    left: -14px;
    bottom: 26px;
    background: var(--t9-accent);
    color: var(--t9-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 18px;
}
@media (max-width: 900px) {
    .t9-theme .t9-marquee__grid { grid-template-columns: 1fr; }
    .t9-theme .t9-marquee__media { order: -1; max-width: 440px; }
}

/* ---------- INTRO (principles) ---------- */
.t9-theme .t9-intro { background: var(--t9-bg); }
.t9-theme .t9-intro__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(30px, 5vw, 76px);
}
.t9-theme .t9-intro__head { align-self: start; position: sticky; top: 108px; }
.t9-theme .t9-intro__head h2 {
    margin-top: 16px;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.06;
}
.t9-theme .t9-intro__lead { margin-top: 18px; max-width: 34ch; font-size: 16px; line-height: 1.6; }
.t9-theme .t9-intro__list { display: grid; gap: 0; }
.t9-theme .t9-intro__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(18px, 3vw, 40px);
    padding: 30px 0;
    border-top: 1px solid var(--t9-border);
}
.t9-theme .t9-intro__item:last-child { border-bottom: 1px solid var(--t9-border); }
.t9-theme .t9-intro__num {
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1;
    color: var(--t9-accent);
    font-variant-numeric: tabular-nums;
}
.t9-theme .t9-intro__item h3 { font-size: 22px; line-height: 1.2; }
.t9-theme .t9-intro__item p { margin-top: 10px; font-size: 16px; line-height: 1.62; }
@media (max-width: 860px) {
    .t9-theme .t9-intro__grid { grid-template-columns: 1fr; }
    .t9-theme .t9-intro__head { position: static; }
}
@media (max-width: 520px) {
    .t9-theme .t9-intro__item { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- CAPABILITIES (tiles) ---------- */
.t9-theme .t9-capabilities { background: var(--t9-surface); }
.t9-theme .t9-capabilities__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(30px, 4vw, 52px);
}
.t9-theme .t9-capabilities__head h2 {
    margin-top: 14px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.02;
    max-width: 16ch;
}
.t9-theme .t9-capabilities__head p { max-width: 38ch; font-size: 15px; line-height: 1.6; }
.t9-theme .t9-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--t9-border);
    border: 1px solid var(--t9-border);
}
.t9-theme .t9-capability {
    display: flex;
    flex-direction: column;
    background: var(--t9-bg);
    padding: 28px 26px 26px;
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
}
.t9-theme .t9-capability::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: var(--t9-accent);
    transition: width 0.25s ease;
}
.t9-theme .t9-capability:hover { background: var(--t9-deep); }
.t9-theme .t9-capability:hover::before { width: 100%; }
.t9-theme .t9-capability__num {
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: var(--t9-accent);
    font-variant-numeric: tabular-nums;
}
.t9-theme .t9-capability__thumb {
    margin: 16px 0 18px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--t9-border);
}
.t9-theme .t9-capability__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.t9-theme .t9-capability:hover .t9-capability__thumb img { transform: scale(1.05); }
.t9-theme .t9-capability h3 { font-size: 22px; line-height: 1.15; }
.t9-theme .t9-capability p { margin-top: 10px; font-size: 15px; line-height: 1.58; flex: 1; }
.t9-theme .t9-capability__link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--t9-accent);
}
.t9-theme .t9-capability:hover h3,
.t9-theme .t9-capability:hover p { color: var(--t9-paper); }
.t9-theme .t9-capability:hover .t9-capability__thumb { border-color: rgba(216, 171, 82, 0.5); }
.t9-theme .t9-capability:hover .t9-capability__link { color: var(--t9-accent-hi); }
@media (max-width: 900px) { .t9-theme .t9-capabilities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .t9-theme .t9-capabilities__grid { grid-template-columns: 1fr; } }

/* ---------- BAND (feature) ---------- */
.t9-theme .t9-band { background: var(--t9-deep); color: var(--t9-paper); }
.t9-theme .t9-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(30px, 5vw, 78px);
}
.t9-theme .t9-band__media {
    position: relative;
    border: 1px solid rgba(216, 171, 82, 0.5);
    padding: 12px;
}
.t9-theme .t9-band__media img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}
.t9-theme .t9-band__media::before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -10px;
    width: 66px;
    height: 66px;
    border-left: 3px solid var(--t9-accent);
    border-bottom: 3px solid var(--t9-accent);
}
.t9-theme .t9-band__copy .t9-kicker { color: var(--t9-accent-hi); }
.t9-theme .t9-band__copy .t9-kicker::before { background: var(--t9-accent-hi); }
.t9-theme .t9-band__copy h2 {
    margin-top: 16px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.03;
    color: var(--t9-paper);
    max-width: 15ch;
}
.t9-theme .t9-band__copy p {
    margin-top: 18px;
    max-width: 48ch;
    font-size: 17px;
    line-height: 1.62;
    color: rgba(246, 244, 236, 0.82);
}
.t9-theme .t9-band__callout {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(246, 244, 236, 0.22);
}
.t9-theme .t9-band__callout b {
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    color: var(--t9-accent-hi);
    font-variant-numeric: tabular-nums;
}
.t9-theme .t9-band__callout span { max-width: 26ch; font-size: 14px; line-height: 1.5; color: rgba(246, 244, 236, 0.78); }
@media (max-width: 860px) {
    .t9-theme .t9-band__grid { grid-template-columns: 1fr; }
    .t9-theme .t9-band__media { order: -1; max-width: 480px; }
}

/* ---------- CREW (team) ---------- */
.t9-theme .t9-crew { background: var(--t9-bg); }
.t9-theme .t9-crew__head { max-width: 60ch; margin-bottom: clamp(30px, 4vw, 50px); }
.t9-theme .t9-crew__head h2 { margin-top: 14px; font-size: clamp(30px, 4vw, 52px); line-height: 1.03; }
.t9-theme .t9-crew__head p { margin-top: 16px; font-size: 16px; line-height: 1.6; }
.t9-theme .t9-crew__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 38px); }
.t9-theme .t9-crew__person { display: flex; flex-direction: column; }
.t9-theme .t9-crew__photo {
    position: relative;
    border: 1px solid var(--t9-border);
    padding: 10px;
    background: var(--t9-surface);
}
.t9-theme .t9-crew__photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.t9-theme .t9-crew__plate {
    display: flex;
    flex-direction: column;
    margin: -26px 14px 0;
    position: relative;
    background: var(--t9-deep);
    padding: 14px 18px;
}
.t9-theme .t9-crew__role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--t9-accent-hi);
}
.t9-theme .t9-crew__plate h3 { margin-top: 4px; font-size: 21px; color: var(--t9-paper); }
.t9-theme .t9-crew__person > p { margin-top: 16px; font-size: 15px; line-height: 1.6; }
@media (max-width: 820px) { .t9-theme .t9-crew__grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ---------- VOICES (testimonials) ---------- */
.t9-theme .t9-voices { background: var(--t9-surface); }
.t9-theme .t9-voices__head { margin-bottom: clamp(26px, 3vw, 42px); }
.t9-theme .t9-voices__head h2 { margin-top: 12px; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.05; max-width: 20ch; }
.t9-theme .t9-voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.t9-theme .t9-voice {
    display: flex;
    flex-direction: column;
    background: var(--t9-deep);
    color: var(--t9-paper);
    padding: 30px 28px;
    border-top: 3px solid var(--t9-accent);
}
.t9-theme .t9-voice__mark {
    font-family: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: 54px;
    line-height: 0.6;
    color: var(--t9-accent);
}
.t9-theme .t9-voice__text {
    margin-top: 18px;
    flex: 1;
    font-size: 18px;
    line-height: 1.5;
    color: var(--t9-paper);
}
.t9-theme .t9-voice__by {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(246, 244, 236, 0.2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(246, 244, 236, 0.72);
}
@media (max-width: 860px) { .t9-theme .t9-voices__grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ---------- CTA ---------- */
.t9-theme .t9-cta {
    position: relative;
    background: var(--t9-deep-2);
    color: var(--t9-paper);
    overflow: hidden;
}
.t9-theme .t9-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 120% at 50% -10%, rgba(184, 134, 47, 0.22) 0%, rgba(184, 134, 47, 0) 60%);
    pointer-events: none;
}
.t9-theme .t9-cta__inner {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(12px, 2vw, 24px) 0;
    border-top: 1px solid rgba(216, 171, 82, 0.4);
    border-bottom: 1px solid rgba(216, 171, 82, 0.4);
}
.t9-theme .t9-cta .t9-kicker { color: var(--t9-accent-hi); justify-content: center; }
.t9-theme .t9-cta .t9-kicker::before { background: var(--t9-accent-hi); }
.t9-theme .t9-cta h2 {
    margin: 18px auto 0;
    max-width: 20ch;
    font-size: clamp(34px, 5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: var(--t9-paper);
}
.t9-theme .t9-cta p { margin: 20px auto 0; max-width: 52ch; font-size: 17px; line-height: 1.6; color: rgba(246, 244, 236, 0.82); }
.t9-theme .t9-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.t9-theme .t9-cta .t9-btn-secondary { border-color: rgba(246, 244, 236, 0.5); color: var(--t9-paper); }
.t9-theme .t9-cta .t9-btn-secondary:hover { background: var(--t9-paper); color: var(--t9-deep); border-color: var(--t9-paper); }
.t9-theme .t9-cta__note {
    margin-top: 26px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(246, 244, 236, 0.6);
}
