:root {
--ink: #10201b;
--forest: #0b2b23;
--forest-deep: #071d18;
--moss: #355b4e;
--gold: #c1a05d;
--gold-soft: #decda5;
--cream: #f4f0e7;
--paper: #faf8f2;
--line: rgba(16, 32, 27, 0.16);
--muted: #6d766f;
--white: #fff;
--shell: min(1240px, calc(100% - 80px));
--serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
--sans: "DM Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
background: var(--paper);
color: var(--ink);
font-family: var(--sans);
-webkit-font-smoothing: antialiased;
}
body.menu-open,
body.dialog-open {
overflow: hidden;
}
body.tkoj-page {
min-width: 320px;
}
.admin-bar .site-header {
top: 32px;
}
a {
color: inherit;
text-decoration: none;
}
button,
input {
font: inherit;
}
button {
color: inherit;
}
img,
svg {
display: block;
}
.shell {
width: var(--shell);
margin-inline: auto;
}
.skip-link {
position: fixed;
z-index: 999;
top: 12px;
left: 12px;
padding: 10px 16px;
background: #fff;
color: #000;
transform: translateY(-150%);
}
.skip-link:focus {
transform: translateY(0);
}
.announcement {
position: relative;
z-index: 60;
background: var(--forest-deep);
color: rgba(255, 255, 255, 0.82);
font-size: 11px;
letter-spacing: 0.08em;
}
.announcement__inner {
display: flex;
align-items: center;
justify-content: center;
min-height: 38px;
gap: 16px;
}
.announcement__label {
padding: 3px 8px;
background: var(--gold);
color: var(--forest-deep);
font-size: 9px;
font-weight: 700;
}
.announcement a {
display: flex;
align-items: center;
gap: 8px;
transition: color 0.2s;
}
.announcement a:hover {
color: #fff;
}
.announcement__date {
color: rgba(255, 255, 255, 0.4);
}
.site-header {
position: sticky;
z-index: 50;
top: 0;
border-bottom: 1px solid rgba(16, 32, 27, 0.1);
background: rgba(250, 248, 242, 0.94);
backdrop-filter: blur(16px);
transition: box-shadow 0.25s, transform 0.25s;
}
.site-header.is-scrolled {
box-shadow: 0 12px 30px rgba(7, 29, 24, 0.08);
}
.header__inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 88px;
}
.brand {
display: inline-flex;
align-items: center;
flex: 0 0 auto;
gap: 14px;
}
.brand__monogram {
display: grid;
width: 49px;
height: 49px;
place-items: center;
border: 1px solid var(--ink);
font-family: var(--serif);
font-size: 17px;
font-weight: 700;
letter-spacing: 0.04em;
}
.brand__text {
display: flex;
flex-direction: column;
gap: 3px;
}
.brand__text strong {
font-family: "DM Sans", sans-serif;
font-size: 14px;
line-height: 1;
letter-spacing: 0.16em;
}
.brand__text small {
color: var(--muted);
font-size: 9px;
letter-spacing: 0.12em;
}
.desktop-nav {
display: flex;
align-items: center;
justify-content: center;
margin-left: auto;
gap: clamp(20px, 2.2vw, 40px);
}
.desktop-nav a {
position: relative;
padding: 34px 0;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.05em;
}
.desktop-nav a::after {
position: absolute;
right: 0;
bottom: 23px;
left: 0;
height: 1px;
background: var(--gold);
content: "";
transform: scaleX(0);
transform-origin: right;
transition: transform 0.25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
transform: scaleX(1);
transform-origin: left;
}
.header__actions {
display: flex;
align-items: center;
margin-left: clamp(16px, 2vw, 32px);
gap: 10px;
}
.icon-button,
.menu-button {
border: 0;
background: transparent;
cursor: pointer;
}
.icon-button {
display: grid;
width: 44px;
height: 44px;
place-items: center;
}
.icon-button svg {
width: 20px;
fill: none;
stroke: currentColor;
stroke-linecap: round;
stroke-width: 1.5;
}
.menu-button {
display: none;
width: 50px;
padding: 7px 4px;
}
.menu-button span {
display: block;
margin-bottom: 7px;
font-size: 8px;
font-weight: 700;
letter-spacing: 0.16em;
}
.menu-button i {
display: block;
width: 28px;
height: 1px;
margin: 0 auto 6px;
background: currentColor;
transition: transform 0.2s;
}
.menu-button[aria-expanded="true"] i:first-of-type {
transform: translateY(3.5px) rotate(45deg);
}
.menu-button[aria-expanded="true"] i:last-of-type {
transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-menu {
position: fixed;
z-index: 49;
inset: 88px 0 0;
min-height: calc(100dvh - 88px);
padding: 42px max(24px, calc((100vw - 1240px) / 2));
background: var(--forest-deep);
color: #fff;
overflow-y: auto;
}
.mobile-menu__nav {
border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-menu__nav a {
display: flex;
align-items: center;
padding: 20px 2px;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
font-family: var(--serif);
font-size: 20px;
}
.mobile-menu__nav span {
width: 46px;
color: var(--gold);
font-family: var(--sans);
font-size: 10px;
}
.mobile-menu > p {
margin: 38px 0 0;
color: rgba(255, 255, 255, 0.5);
font-family: var(--serif);
font-size: 14px;
line-height: 1.8;
}
.hero {
position: relative;
min-height: clamp(640px, calc(100dvh - 126px), 860px);
overflow: hidden;
background: var(--forest-deep);
color: #fff;
}
.hero__image,
.hero__veil {
position: absolute;
inset: 0;
}
.hero__image {
background-image: url(//tk-owner.com/wp-content/plugins/tk-owner-journal-homepage/assets/images/tk-owner-hero.png);
background-position: 50% 50%;
background-size: cover;
animation: heroReveal 1.3s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero__veil {
background:
linear-gradient(90deg, rgba(6, 27, 22, 0.97) 0%, rgba(6, 27, 22, 0.8) 31%, rgba(6, 27, 22, 0.12) 65%, rgba(6, 27, 22, 0.16) 100%),
linear-gradient(0deg, rgba(6, 27, 22, 0.48), transparent 38%);
}
.hero__content {
position: relative;
z-index: 2;
display: flex;
min-height: inherit;
padding-top: clamp(92px, 12vh, 150px);
padding-bottom: 88px;
flex-direction: column;
align-items: flex-start;
}
.eyebrow {
display: flex;
align-items: center;
margin: 0 0 20px;
color: var(--moss);
font-size: 10px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
}
.eyebrow span {
display: inline-block;
width: 36px;
height: 1px;
margin-right: 12px;
background: var(--gold);
}
.eyebrow--light {
color: var(--gold-soft);
}
.hero h1 {
margin: 0;
font-family: var(--serif);
font-size: clamp(49px, 6.2vw, 92px);
font-weight: 500;
line-height: 1.18;
letter-spacing: 0.02em;
}
.hero h1 span {
display: block;
animation: textLift 0.8s 0.25s both;
}
.hero h1 span:last-child {
animation-delay: 0.36s;
}
.hero__lead {
margin: 30px 0 0;
color: rgba(255, 255, 255, 0.74);
font-family: var(--serif);
font-size: clamp(13px, 1.2vw, 16px);
line-height: 2;
letter-spacing: 0.06em;
animation: textLift 0.8s 0.5s both;
}
.hero__actions {
display: flex;
align-items: center;
margin-top: 42px;
gap: 34px;
animation: textLift 0.8s 0.62s both;
}
.button {
display: inline-flex;
min-width: 210px;
min-height: 58px;
padding: 0 22px;
align-items: center;
justify-content: space-between;
gap: 30px;
border: 1px solid transparent;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.06em;
transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.button span {
font-size: 20px;
font-weight: 400;
transition: transform 0.25s;
}
.button:hover span {
transform: translateX(4px);
}
.button--light {
background: var(--cream);
color: var(--forest-deep);
}
.button--light:hover {
background: var(--gold);
}
.button--dark {
background: var(--forest);
color: #fff;
}
.button--dark:hover {
border-color: var(--forest);
background: transparent;
color: var(--forest);
}
.text-link {
display: inline-flex;
align-items: center;
gap: 18px;
padding-bottom: 6px;
border-bottom: 1px solid var(--ink);
font-size: 12px;
font-weight: 600;
}
.text-link span {
transition: transform 0.2s;
}
.text-link:hover span {
transform: translate(3px, -2px);
}
.text-link--light {
border-color: rgba(255, 255, 255, 0.45);
}
.hero__index {
position: absolute;
z-index: 3;
right: max(40px, calc((100vw - 1240px) / 2));
bottom: 38px;
display: flex;
align-items: center;
gap: 12px;
font-size: 9px;
letter-spacing: 0.12em;
}
.hero__index i {
width: 72px;
height: 1px;
background: linear-gradient(90deg, #fff 25%, rgba(255, 255, 255, 0.3) 25%);
}
.hero__scroll {
position: absolute;
z-index: 3;
bottom: 64px;
left: 20px;
display: flex;
align-items: center;
margin: 0;
gap: 12px;
font-size: 8px;
letter-spacing: 0.2em;
transform: rotate(90deg);
transform-origin: left center;
}
.hero__scroll i {
display: block;
width: 50px;
height: 1px;
overflow: hidden;
background: rgba(255, 255, 255, 0.35);
}
.trust-strip {
background: var(--forest);
color: #fff;
}
.trust-strip__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
}
.trust-strip__grid > div {
display: flex;
min-height: 88px;
padding: 0 30px;
align-items: center;
justify-content: center;
gap: 15px;
border-right: 1px solid rgba(255, 255, 255, 0.11);
}
.trust-strip__grid > div:first-child {
border-left: 1px solid rgba(255, 255, 255, 0.11);
}
.trust-strip strong {
color: var(--gold);
font-size: 11px;
letter-spacing: 0.16em;
}
.trust-strip span {
color: rgba(255, 255, 255, 0.7);
font-size: 11px;
}
.section {
padding-block: clamp(92px, 11vw, 150px);
}
.section-heading {
display: flex;
margin-bottom: 56px;
align-items: flex-end;
justify-content: space-between;
gap: 30px;
}
.section-heading .eyebrow {
margin-bottom: 16px;
}
.section-heading h2 {
margin: 0;
font-family: var(--serif);
font-size: clamp(35px, 4vw, 55px);
font-weight: 600;
letter-spacing: 0.03em;
}
.section-heading > p {
max-width: 360px;
margin: 0 0 7px;
color: var(--muted);
font-family: var(--serif);
font-size: 13px;
line-height: 1.8;
}
.gateway-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-top: 1px solid var(--line);
border-left: 1px solid var(--line);
}
.gateway-card {
position: relative;
display: flex;
min-height: 370px;
padding: 28px 26px 32px;
flex-direction: column;
justify-content: space-between;
border-right: 1px solid var(--line);
border-bottom: 1px solid var(--line);
background: transparent;
overflow: hidden;
transition: color 0.3s, background 0.3s, transform 0.3s;
}
.gateway-card::before {
position: absolute;
right: -90px;
bottom: -110px;
width: 230px;
height: 230px;
border: 1px solid rgba(193, 160, 93, 0.26);
border-radius: 50%;
content: "";
transition: transform 0.45s;
}
.gateway-card:hover {
z-index: 1;
background: #fff;
transform: translateY(-7px);
box-shadow: 0 20px 50px rgba(7, 29, 24, 0.08);
}
.gateway-card:hover::before {
transform: scale(1.35);
}
.gateway-card--dark {
background: var(--forest);
color: #fff;
}
.gateway-card--dark:hover {
background: var(--forest-deep);
}
.gateway-card--gold {
background: #d5bd88;
color: var(--forest-deep);
}
.gateway-card--gold:hover {
background: var(--gold);
}
.gateway-card__top {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
}
.gateway-card__top span {
color: var(--gold);
font-size: 11px;
font-weight: 700;
}
.gateway-card--gold .gateway-card__top span {
color: var(--forest);
}
.gateway-card__top i {
display: grid;
width: 33px;
height: 33px;
place-items: center;
border: 1px solid currentColor;
border-radius: 50%;
font-style: normal;
font-size: 12px;
opacity: 0.6;
transition: transform 0.25s, opacity 0.25s;
}
.gateway-card:hover .gateway-card__top i {
opacity: 1;
transform: rotate(45deg);
}
.gateway-card > div:last-child {
position: relative;
z-index: 1;
}
.gateway-card p {
margin: 0 0 13px;
color: var(--moss);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.15em;
}
.gateway-card--dark p {
color: var(--gold-soft);
}
.gateway-card h3 {
margin: 0;
font-family: var(--serif);
font-size: clamp(22px, 2vw, 28px);
font-weight: 600;
line-height: 1.55;
}
.gateway-card small {
display: block;
margin-top: 20px;
color: var(--muted);
font-size: 10px;
line-height: 1.6;
}
.gateway-card--dark small {
color: rgba(255, 255, 255, 0.55);
}
.gateway-card--gold small {
color: rgba(7, 29, 24, 0.7);
}
.feature {
position: relative;
background:
radial-gradient(circle at 85% 5%, rgba(193, 160, 93, 0.12), transparent 27%),
var(--forest-deep);
color: #fff;
}
.section-heading--inverse > p {
color: rgba(255, 255, 255, 0.5);
}
.feature-lead {
display: grid;
grid-template-columns: 1.15fr 0.85fr;
min-height: 560px;
background: var(--cream);
color: var(--ink);
}
.feature-lead__image {
position: relative;
min-height: 500px;
background:
linear-gradient(0deg, rgba(7, 29, 24, 0.25), rgba(7, 29, 24, 0.06)),
url(//tk-owner.com/wp-content/plugins/tk-owner-journal-homepage/assets/images/tk-owner-hero.png) 72% center / cover;
overflow: hidden;
}
.feature-lead__year {
position: absolute;
bottom: -0.23em;
left: -0.04em;
color: rgba(255, 255, 255, 0.16);
font-family: "DM Sans", sans-serif;
font-size: clamp(100px, 15vw, 210px);
font-weight: 600;
line-height: 0.8;
letter-spacing: -0.08em;
}
.feature-lead__badge {
position: absolute;
top: 26px;
left: 26px;
padding: 9px 13px;
background: var(--gold);
color: var(--forest-deep);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.12em;
}
.feature-lead__body {
position: relative;
display: flex;
padding: clamp(48px, 6vw, 86px);
flex-direction: column;
justify-content: center;
}
.feature-lead__kicker {
margin: 0 0 22px;
color: #8c723c;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.16em;
}
.feature-lead__body h3 {
margin: 0;
font-family: var(--serif);
font-size: clamp(28px, 3vw, 43px);
font-weight: 600;
line-height: 1.55;
}
.feature-lead__body > p:not(.feature-lead__kicker) {
max-width: 430px;
margin: 28px 0 0;
color: var(--muted);
font-size: 12px;
line-height: 2;
}
.circle-link {
display: grid;
width: 60px;
height: 60px;
margin-top: 40px;
place-items: center;
border: 1px solid var(--ink);
border-radius: 50%;
font-size: 20px;
transition: background 0.25s, color 0.25s, transform 0.25s;
}
.feature-lead:hover .circle-link {
background: var(--forest);
color: #fff;
transform: translateX(6px);
}
.feature-mini-grid {
display: grid;
margin-top: 1px;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: rgba(255, 255, 255, 0.14);
}
.feature-mini {
display: grid;
min-height: 140px;
padding: 24px;
grid-template-columns: 44px 1fr 30px;
align-items: center;
background: var(--forest-deep);
transition: background 0.25s;
}
.feature-mini:hover {
background: #10382e;
}
.feature-mini__no {
color: var(--gold);
font-size: 10px;
}
.feature-mini p {
margin: 0 0 8px;
color: rgba(255, 255, 255, 0.43);
font-size: 8px;
font-weight: 700;
letter-spacing: 0.16em;
}
.feature-mini h3 {
margin: 0;
font-family: var(--serif);
font-size: 17px;
font-weight: 500;
}
.feature-mini i {
font-style: normal;
opacity: 0.5;
transition: transform 0.25s;
}
.feature-mini:hover i {
opacity: 1;
transform: translate(3px, -3px);
}
.latest {
background: var(--paper);
}
.latest__heading {
margin-bottom: 34px;
}
.filter-tabs {
display: flex;
margin-bottom: 24px;
gap: 8px;
}
.filter-tabs button {
padding: 9px 17px;
border: 1px solid var(--line);
border-radius: 100px;
background: transparent;
color: var(--muted);
font-size: 10px;
cursor: pointer;
transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-tabs button:hover,
.filter-tabs button.is-active {
border-color: var(--forest);
background: var(--forest);
color: #fff;
}
.article-list {
border-top: 1px solid var(--line);
}
.article-row {
display: grid;
padding-block: 28px;
grid-template-columns: 260px 1fr 62px;
align-items: center;
gap: clamp(26px, 4vw, 54px);
border-bottom: 1px solid var(--line);
transition: opacity 0.2s;
}
.article-row[hidden] {
display: none;
}
.article-row__thumb {
aspect-ratio: 16 / 9;
}
.thumb {
position: relative;
display: flex;
padding: 20px;
flex-direction: column;
justify-content: space-between;
color: #fff;
overflow: hidden;
}
.thumb::after {
position: absolute;
top: -40%;
right: -20%;
width: 70%;
aspect-ratio: 1;
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 50%;
content: "";
}
.thumb span {
position: relative;
z-index: 1;
font-size: 11px;
font-weight: 600;
line-height: 1.3;
letter-spacing: 0.16em;
}
.thumb i {
position: relative;
z-index: 1;
align-self: flex-end;
font-family: "DM Sans", sans-serif;
font-size: 26px;
font-style: normal;
font-weight: 600;
letter-spacing: -0.03em;
}
.thumb--cost {
background: #8d733e;
}
.thumb--union {
background:
linear-gradient(135deg, rgba(11, 43, 35, 0.88), rgba(11, 43, 35, 0.43)),
url(//tk-owner.com/wp-content/plugins/tk-owner-journal-homepage/assets/images/tk-owner-hero.png) 76% center / cover;
}
.thumb--finance {
background: #8d733e;
}
.thumb--ownership {
background: #315b4d;
}
.thumb--race {
background: #7b4035;
}
.thumb.has-image {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.thumb--jra {
background: #3e556b;
}
.article-meta {
display: flex;
align-items: center;
gap: 16px;
}
.tag {
padding: 5px 9px;
border: 1px solid #7c9a8e;
color: #426b5e;
font-size: 9px;
font-weight: 600;
}
.tag--gold {
border-color: #c7aa70;
color: #8e7139;
}
.tag--green {
border-color: #7c9a8e;
color: #426b5e;
}
.tag--red {
border-color: #ba827a;
color: #8e4b41;
}
.tag--blue {
border-color: #8296aa;
color: #506a84;
}
.article-meta time {
color: #90968f;
font-family: "DM Sans", sans-serif;
font-size: 10px;
letter-spacing: 0.08em;
}
.article-row__content h3 {
margin: 15px 0 10px;
font-family: var(--serif);
font-size: clamp(18px, 1.8vw, 24px);
font-weight: 600;
line-height: 1.65;
}
.article-row__content h3 a {
background-image: linear-gradient(var(--gold), var(--gold));
background-position: 0 100%;
background-repeat: no-repeat;
background-size: 0 1px;
transition: background-size 0.35s;
}
.article-row:hover .article-row__content h3 a {
background-size: 100% 1px;
}
.article-row__content > p {
margin: 0;
color: var(--muted);
font-size: 11px;
line-height: 1.8;
}
.article-row__arrow {
display: grid;
width: 48px;
height: 48px;
place-items: center;
border: 1px solid var(--line);
border-radius: 50%;
font-size: 16px;
transition: background 0.25s, color 0.25s, transform 0.25s;
}
.article-row:hover .article-row__arrow {
background: var(--forest);
color: #fff;
transform: translate(3px, -3px);
}
.numbers {
position: relative;
padding-block: clamp(82px, 10vw, 130px);
background:
radial-gradient(circle at 70% -10%, rgba(193, 160, 93, 0.13), transparent 35%),
var(--forest);
color: #fff;
}
.numbers::before {
position: absolute;
inset: 0;
background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
background-size: 54px 54px;
content: "";
mask-image: linear-gradient(90deg, transparent, #000);
}
.numbers__inner {
position: relative;
display: grid;
grid-template-columns: 0.9fr 1.1fr;
align-items: center;
gap: clamp(60px, 10vw, 150px);
}
.numbers__copy h2 {
margin: 0;
font-family: var(--serif);
font-size: clamp(36px, 4.3vw, 60px);
font-weight: 500;
line-height: 1.5;
}
.numbers__copy > p:last-child {
max-width: 440px;
margin: 30px 0 0;
color: rgba(255, 255, 255, 0.55);
font-size: 12px;
line-height: 2.1;
}
.numbers__stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.numbers__stats > div {
display: flex;
min-height: 170px;
padding: 24px;
flex-direction: column;
align-items: flex-start;
justify-content: center;
border-top: 1px solid rgba(255, 255, 255, 0.14);
border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.numbers__stats > div:nth-child(even) {
border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.numbers__stats > div:nth-last-child(-n + 2) {
border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.numbers__stats strong {
color: var(--gold-soft);
font-family: var(--serif);
font-size: 36px;
font-weight: 500;
}
.numbers__stats span {
margin-top: 13px;
color: rgba(255, 255, 255, 0.5);
font-size: 10px;
}
.about {
background: var(--cream);
}
.about__grid {
display: grid;
grid-template-columns: 0.95fr 1.05fr;
align-items: center;
gap: clamp(60px, 10vw, 150px);
}
.about__visual {
position: relative;
display: grid;
min-height: 490px;
place-items: center;
border: 1px solid var(--line);
background:
linear-gradient(135deg, transparent 49.8%, var(--line) 50%, transparent 50.2%),
var(--paper);
overflow: hidden;
}
.about__outline {
color: transparent;
font-family: var(--serif);
font-size: clamp(170px, 23vw, 310px);
font-weight: 700;
line-height: 1;
-webkit-text-stroke: 1px rgba(11, 43, 35, 0.18);
}
.about__seal {
position: absolute;
right: 10%;
bottom: 10%;
display: grid;
width: 100px;
height: 100px;
place-items: center;
border-radius: 50%;
background: var(--gold);
color: var(--forest-deep);
font-size: 9px;
font-weight: 700;
line-height: 1.6;
text-align: center;
letter-spacing: 0.14em;
transform: rotate(9deg);
}
.about__copy h2 {
margin: 0;
font-family: var(--serif);
font-size: clamp(32px, 3.9vw, 52px);
font-weight: 600;
line-height: 1.55;
}
.about__copy > p:not(.eyebrow) {
max-width: 570px;
margin: 28px 0 0;
color: var(--muted);
font-family: var(--serif);
font-size: 13px;
line-height: 2.1;
}
.about__copy .button {
margin-top: 38px;
}
.cta {
background: var(--gold);
color: var(--forest-deep);
}
.cta__inner {
display: flex;
min-height: 330px;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.cta__inner > div > p {
margin: 0 0 18px;
font-size: 9px;
font-weight: 700;
letter-spacing: 0.18em;
}
.cta h2 {
margin: 0;
font-family: var(--serif);
font-size: clamp(39px, 5vw, 68px);
font-weight: 500;
line-height: 1.35;
}
.cta__inner > a {
display: grid;
width: clamp(190px, 18vw, 240px);
aspect-ratio: 1;
padding: 42px;
place-items: center;
border: 1px solid rgba(7, 29, 24, 0.45);
border-radius: 50%;
font-size: 12px;
font-weight: 600;
transition: background 0.25s, color 0.25s, transform 0.25s;
}
.cta__inner > a span {
align-self: end;
}
.cta__inner > a i {
align-self: start;
font-size: 23px;
font-style: normal;
}
.cta__inner > a:hover {
background: var(--forest-deep);
color: #fff;
transform: rotate(-4deg);
}
.site-footer {
padding-top: 78px;
background: var(--forest-deep);
color: #fff;
}
.footer__top {
display: flex;
padding-bottom: 64px;
align-items: flex-start;
justify-content: space-between;
gap: 30px;
border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.brand--footer .brand__monogram {
border-color: rgba(255, 255, 255, 0.65);
}
.brand--footer .brand__text small {
color: rgba(255, 255, 255, 0.42);
}
.footer__top > p {
margin: 0;
color: rgba(255, 255, 255, 0.52);
font-family: var(--serif);
font-size: 14px;
line-height: 1.8;
}
.footer__links {
display: grid;
padding-block: 58px 78px;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}
.footer__links > div {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 13px;
}
.footer__links p {
margin: 0 0 10px;
color: var(--gold);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.18em;
}
.footer__links a {
color: rgba(255, 255, 255, 0.61);
font-size: 11px;
transition: color 0.2s, transform 0.2s;
}
.footer__links a:hover {
color: #fff;
transform: translateX(3px);
}
.footer__bottom {
display: flex;
min-height: 68px;
align-items: center;
justify-content: space-between;
border-top: 1px solid rgba(255, 255, 255, 0.14);
color: rgba(255, 255, 255, 0.38);
font-size: 8px;
letter-spacing: 0.14em;
}
.search-dialog {
width: min(820px, calc(100% - 32px));
padding: 0;
border: 0;
background: var(--paper);
color: var(--ink);
}
.search-dialog::backdrop {
background: rgba(7, 29, 24, 0.9);
backdrop-filter: blur(8px);
}
.search-dialog__close {
position: absolute;
top: 18px;
right: 22px;
width: 40px;
height: 40px;
border: 0;
background: transparent;
font-family: "DM Sans", sans-serif;
font-size: 29px;
font-weight: 300;
cursor: pointer;
}
.search-dialog__form {
padding: clamp(60px, 9vw, 100px);
}
.search-dialog__form label {
display: block;
margin-bottom: 28px;
font-family: var(--serif);
font-size: clamp(27px, 4vw, 42px);
font-weight: 600;
}
.search-dialog__form > div {
display: grid;
grid-template-columns: 1fr auto;
border-bottom: 1px solid var(--ink);
}
.search-dialog input {
min-width: 0;
padding: 16px 0;
border: 0;
outline: 0;
background: transparent;
font-family: var(--serif);
font-size: 18px;
}
.search-dialog__form button[type="submit"] {
padding: 0 8px 0 30px;
border: 0;
background: transparent;
font-size: 11px;
font-weight: 700;
cursor: pointer;
}
.search-dialog__form > p {
margin: 16px 0 0;
color: var(--muted);
font-size: 9px;
}
@keyframes heroReveal {
from {
opacity: 0;
transform: scale(1.06);
}
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes textLift {
from {
opacity: 0;
transform: translateY(24px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
scroll-behavior: auto !important;
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
@media (max-width: 1100px) {
:root {
--shell: min(100% - 48px, 1240px);
}
.desktop-nav {
display: none;
}
.menu-button {
display: block;
}
.hero__veil {
background:
linear-gradient(90deg, rgba(6, 27, 22, 0.94) 0%, rgba(6, 27, 22, 0.7) 46%, rgba(6, 27, 22, 0.16) 84%),
linear-gradient(0deg, rgba(6, 27, 22, 0.48), transparent 38%);
}
.gateway-grid {
grid-template-columns: repeat(2, 1fr);
}
.gateway-card {
min-height: 330px;
}
.article-row {
grid-template-columns: 220px 1fr 48px;
gap: 28px;
}
.about__grid {
gap: 60px;
}
}
@media (max-width: 820px) {
.announcement__date {
display: none;
}
.header__inner {
height: 76px;
}
.mobile-menu {
inset-block-start: 76px;
min-height: calc(100dvh - 76px);
}
.hero {
min-height: 730px;
}
.hero__image {
background-position: 64% center;
}
.hero__veil {
background:
linear-gradient(0deg, rgba(6, 27, 22, 0.96) 0%, rgba(6, 27, 22, 0.72) 56%, rgba(6, 27, 22, 0.18) 100%),
linear-gradient(90deg, rgba(6, 27, 22, 0.7), transparent);
}
.hero__content {
justify-content: flex-end;
padding-top: 190px;
padding-bottom: 110px;
}
.hero__scroll {
display: none;
}
.trust-strip__grid {
grid-template-columns: repeat(2, 1fr);
}
.trust-strip__grid > div {
min-height: 74px;
border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.section-heading {
align-items: flex-start;
flex-direction: column;
gap: 18px;
}
.feature-lead {
grid-template-columns: 1fr;
}
.feature-lead__image {
min-height: 420px;
}
.feature-mini-grid {
grid-template-columns: 1fr;
}
.article-row {
grid-template-columns: 170px 1fr 42px;
gap: 20px;
}
.article-row__content > p {
display: none;
}
.numbers__inner,
.about__grid {
grid-template-columns: 1fr;
}
.numbers__copy {
max-width: 620px;
}
.about__visual {
min-height: 400px;
}
.cta__inner {
min-height: 300px;
}
.footer__links {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 782px) {
.admin-bar .site-header {
top: 46px;
}
}
@media (max-width: 600px) {
:root {
--shell: calc(100% - 40px);
}
.announcement__inner {
justify-content: flex-start;
gap: 10px;
}
.announcement a {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.brand {
gap: 10px;
}
.brand__monogram {
width: 42px;
height: 42px;
font-size: 15px;
}
.brand__text strong {
font-size: 11px;
}
.brand__text small {
font-size: 7px;
}
.header__actions {
margin-left: 6px;
gap: 0;
}
.icon-button {
width: 38px;
}
.menu-button {
width: 44px;
}
.hero {
min-height: calc(100svh - 114px);
}
.hero__image {
background-position: 62% center;
}
.hero__content {
padding-bottom: 90px;
}
.hero h1 {
font-size: clamp(38px, 10.6vw, 48px);
line-height: 1.28;
}
.hero__lead br {
display: none;
}
.hero__actions {
width: 100%;
margin-top: 32px;
align-items: flex-start;
flex-direction: column;
gap: 20px;
}
.button {
width: 100%;
}
.hero__index {
right: 20px;
bottom: 22px;
}
.trust-strip__grid {
width: 100%;
}
.trust-strip__grid > div {
padding: 0 12px;
flex-direction: column;
gap: 5px;
}
.trust-strip__grid > div:nth-child(odd) {
border-left: 0;
}
.gateway-grid {
grid-template-columns: 1fr;
}
.gateway-card {
min-height: 285px;
}
.feature .section-heading {
margin-bottom: 36px;
}
.feature-lead__image {
min-height: 330px;
}
.feature-lead__body {
padding: 38px 28px 44px;
}
.feature-lead__body h3 br {
display: none;
}
.filter-tabs {
width: calc(100vw - 20px);
padding-right: 20px;
overflow-x: auto;
}
.filter-tabs button {
white-space: nowrap;
}
.article-row {
padding-block: 24px;
grid-template-columns: 112px 1fr;
align-items: start;
gap: 17px;
}
.article-row__thumb {
aspect-ratio: 1 / 1.08;
}
.thumb {
padding: 13px;
}
.thumb span {
font-size: 8px;
}
.thumb i {
font-size: 18px;
}
.article-meta {
align-items: flex-start;
flex-direction: column;
gap: 7px;
}
.article-row__content h3 {
margin-block: 10px 0;
font-size: 15px;
line-height: 1.7;
}
.article-row__content h3 br {
display: none;
}
.article-row__arrow {
display: none;
}
.numbers__stats > div {
min-height: 140px;
padding: 18px;
}
.numbers__stats strong {
font-size: 29px;
}
.numbers__stats span {
font-size: 8px;
}
.about__visual {
min-height: 300px;
}
.about__copy h2 br {
display: none;
}
.cta__inner {
padding-block: 68px;
align-items: flex-start;
flex-direction: column;
}
.cta__inner > a {
width: 160px;
padding: 30px;
align-self: flex-end;
}
.footer__top {
flex-direction: column;
}
.footer__links {
grid-template-columns: 1fr 1fr;
}
.footer__links > div:last-child {
grid-column: 1 / -1;
}
}