:root {
color-scheme: dark;
--bg: #0E1113;
--surface: #181C1F;
--surface-2: #20262B;
--accent: #C87C4C;
--accent-strong: #D98E5F;
--on-accent: #0E1113;
--text: #E7EBEE;
--text-dim: #B7BEC4;
--muted: #8A949C;
--rule: rgba(200, 124, 76, .24);
--hairline: rgba(231, 235, 238, .10);
--shadow: 0 30px 80px -40px rgba(0, 0, 0, .7);
--font-display: "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
--font-body: "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
--step: 8px;
--radius: 3px;
--radius-lg: 5px;
--ease: cubic-bezier(.65, .05, .36, 1);
--dur: .45s;
--icon-stroke: 1.5;
--grain-opacity: .05;
}
:root[data-theme="light"] {
color-scheme: light;
--bg: #F4F1E8;
--surface: #FFFFFF;
--surface-2: #F6F1E5;
--accent: #8A6A3B;
--accent-strong: #75592F;
--on-accent: #FFFFFF;
--text: #211E19;
--text-dim: #463F35;
--muted: #6C6358;
--rule: rgba(138, 106, 59, .28);
--hairline: rgba(33, 30, 25, .12);
--shadow: 0 30px 70px -44px rgba(80, 60, 30, .35);
--grain-opacity: .04;
}
@media (prefers-reduced-motion: reduce) {
:root { --dur: 0s; }
}
.vn-icon {
width: 1.25em;
height: 1.25em;
display: inline-block;
flex: none;
vertical-align: -.18em;
fill: none;
stroke: currentColor;
stroke-width: var(--icon-stroke);
stroke-linecap: round;
stroke-linejoin: round;
}
.vn-icon--xs { width: .9em; height: .9em; }
.vn-icon--sm { width: 1em; height: 1em; }
.vn-icon--lg { width: 1.6em; height: 1.6em; }
.vn-icon--xl { width: 2.4em; height: 2.4em; --icon-stroke: 1.15; }
.vn-icon--accent { color: var(--accent); }
.vn-icon--muted { color: var(--muted); }
.vn-icon--fill { fill: currentColor; stroke: none; }
.vn-eyebrow {
font-family: var(--font-body);
font-size: .78rem;
font-weight: 600;
letter-spacing: .22em;
text-transform: uppercase;
color: var(--accent);
display: inline-flex;
align-items: center;
gap: .75em;
}
.vn-eyebrow::before {
content: "";
width: 2em;
height: 1px;
background: currentColor;
}
.vn-rule {
border: 0;
height: 1px;
background: var(--rule);
margin: 0;
}
.vn-rule--center {
position: relative;
overflow: visible;
}
.vn-rule--center::after {
content: "";
position: absolute;
left: 50%;
top: 50%;
width: 7px;
height: 7px;
background: var(--accent);
transform: translate(-50%, -50%) rotate(45deg);
}
.vn-list {
list-style: none;
margin: 0;
padding: 0;
}
.vn-list > li {
position: relative;
padding-left: 1.5em;
}
.vn-list > li::before {
content: "";
position: absolute;
left: 0;
top: .62em;
width: 6px;
height: 6px;
background: var(--accent);
transform: rotate(45deg);
}
.vn-frame {
position: relative;
}
.vn-frame::before,
.vn-frame::after {
content: "";
position: absolute;
width: 14px;
height: 14px;
border: 1px solid var(--accent);
pointer-events: none;
}
.vn-frame::before {
top: 0;
left: 0;
border-right: 0;
border-bottom: 0;
}
.vn-frame::after {
right: 0;
bottom: 0;
border-left: 0;
border-top: 0;
}
.vn-scroll-cue {
width: 1px;
height: 56px;
background: var(--rule);
position: relative;
}
.vn-scroll-cue::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
width: 6px;
height: 6px;
border-right: 1px solid var(--accent);
border-bottom: 1px solid var(--accent);
transform: translateX(-50%) rotate(45deg);
}
.vn-grain {
position: relative;
isolation: isolate;
}
.vn-grain::after {
content: "";
position: absolute;
inset: 0;
z-index: -1;
pointer-events: none;
background-image: url(//notarius.traf.house/wp-content/themes/valeria-notarius/assets/identity/ornaments/grain.svg);
background-size: 180px 180px;
opacity: var(--grain-opacity);
mix-blend-mode: overlay;
}
:where(a, button, summary, [tabindex], input, select, textarea):focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
border-radius: 1px;
}*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
margin: 0;
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-size: 17px;
line-height: 1.75;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
:root {
--deco-dot: rgba(231, 235, 238, .05);
--sb-thumb: rgba(231, 235, 238, .16);
--sb-thumb-hover: rgba(231, 235, 238, .3);
}
:root[data-theme="light"] {
--deco-dot: rgba(33, 30, 25, .05);
--sb-thumb: rgba(33, 30, 25, .18);
--sb-thumb-hover: rgba(33, 30, 25, .32);
}
html { scrollbar-width: thin; scrollbar-color: var(--sb-thumb) transparent; }
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--sb-thumb); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--sb-thumb-hover); }
.bg-deco {
position: fixed; inset: 0;
z-index: 0; pointer-events: none;
background-color: var(--bg);
background-image: radial-gradient(circle, var(--deco-dot) 1px, transparent 1.7px);
background-size: 30px 30px;
background-repeat: repeat;
background-position: 0 0;
will-change: background-position;
}
.site-main, .site-footer { position: relative; z-index: 1; }
:root.theme-switching,
:root.theme-switching *,
:root.theme-switching *::before,
:root.theme-switching *::after {
transition:
background-color .45s ease,
color .45s ease,
border-color .45s ease,
fill .45s ease,
stroke .45s ease,
box-shadow .45s ease,
outline-color .45s ease !important;
}
::selection { background: var(--accent); color: var(--on-accent); }
a:visited { color: inherit; }
a, button, summary, .btn, .tabs__tab, .accordion__btn, .nav a, .link, input, select, textarea {
transition: color .28s ease, background-color .28s ease, border-color .28s ease, opacity .28s ease, box-shadow .28s ease;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.vn-skip {
position: absolute; left: -9999px; top: 0; z-index: 100;
background: var(--accent); color: var(--on-accent);
padding: 12px 20px; font-weight: 600; text-decoration: none;
}
.vn-skip:focus { left: 16px; top: 16px; }
.vn-preloader {
position: fixed; inset: 0; z-index: 90;
display: grid; place-items: center;
background: var(--bg);
color: var(--accent);
transition: opacity .6s ease, visibility .6s ease;
}
.vn-preloader.is-done { opacity: 0; visibility: hidden; }
.vn-preloader__mark {
stroke-dasharray: 120;
stroke-dashoffset: 120;
animation: vn-draw 1.4s var(--ease) forwards;
}
@keyframes vn-draw { to { stroke-dashoffset: 0; } }
.site-header {
position: sticky; top: 0; z-index: 20;
background: color-mix(in srgb, var(--bg) 78%, transparent);
backdrop-filter: saturate(150%) blur(12px);
-webkit-backdrop-filter: saturate(150%) blur(12px);
border-bottom: 1px solid var(--hairline);
}
.site-header .wrap {
display: flex; align-items: center; justify-content: space-between;
height: 76px;
}
.site-header.is-scrolled { border-bottom-color: var(--rule); }
.wordmark { display: inline-flex; text-decoration: none; }
.wordmark__logo { width: 224px; height: auto; color: var(--text); }
.nav { display: flex; gap: 22px; align-items: center; }
.nav__links { display: flex; gap: 34px; align-items: center; }
.nav a {
font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
color: var(--muted); text-decoration: none; font-weight: 600;
}
.nav a:hover { color: var(--text); }
.nav-toggle { display: none; }
.mobile-menu { display: none; }
.theme-toggle {
--sz: 40px;
position: relative; width: 66px; height: var(--sz);
border: 1px solid var(--rule); border-radius: 999px;
background: var(--surface); cursor: pointer; padding: 0; flex: none;
}
.theme-toggle::after {
content: ""; position: absolute; top: 4px; left: 4px;
width: calc(var(--sz) - 10px); height: calc(var(--sz) - 10px);
border-radius: 50%; background: var(--accent);
transition: transform .45s var(--ease), background-color .45s ease;
}
:root[data-theme="light"] .theme-toggle::after { transform: translateX(26px); }
.theme-toggle svg {
position: absolute; top: 50%; width: 15px; height: 15px;
transform: translateY(-50%); color: var(--muted);
}
.theme-toggle .i-moon { right: 9px; }
.theme-toggle .i-sun { left: 9px; }
:root[data-theme="dark"] .theme-toggle .i-moon { color: var(--accent); }
:root[data-theme="dark"] .theme-toggle .i-sun { color: var(--on-accent); }
:root[data-theme="light"] .theme-toggle .i-sun { color: var(--accent); }
:root[data-theme="light"] .theme-toggle .i-moon { color: var(--on-accent); }
@media (min-width: 1101px) {
.hero, .section {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.section, .section--split { border-top: 0; }
.hero__cue { margin-top: auto; }
}
.hero { padding: 70px 0; }
.hero__inner {
display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px;
align-items: center;
}
.hero__title {
font-family: var(--font-display); font-weight: 700;
font-size: clamp(2.5rem, 6vw, 4.6rem);
line-height: 1.04; letter-spacing: -0.02em;
margin: 22px 0 26px; color: var(--text);
}
.hero__lead {
font-size: clamp(1.06rem, 1.7vw, 1.28rem);
line-height: 1.6; color: var(--text-dim);
max-width: 46ch; margin: 0 0 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; }
.hero__meta {
margin: 40px 0 0; font-size: 13px; line-height: 1.7;
color: var(--muted); letter-spacing: .02em;
}
.hero__figure {
position: relative; justify-self: center;
width: fit-content; padding: 16px;
border-radius: var(--radius-lg);
}
.figure-frame { position: absolute; inset: 0; pointer-events: none; }
.figure-frame::before,
.figure-frame::after {
content: "";
position: absolute;
width: 0; height: 0;
border: 0 solid var(--accent);
transition: width .34s var(--ease), height .34s var(--ease) .34s;
}
.figure-frame::before { top: 0; left: 0; border-top-width: 1px; border-right-width: 1px; }
.figure-frame::after { right: 0; bottom: 0; border-bottom-width: 1px; border-left-width: 1px; }
.hero__figure:hover .figure-frame::before,
.hero__figure:hover .figure-frame::after,
.office__figure:hover .figure-frame::before,
.office__figure:hover .figure-frame::after {
width: 100%; height: 100%;
}
.hero__figure:not(:hover) .figure-frame::before,
.hero__figure:not(:hover) .figure-frame::after,
.office__figure:not(:hover) .figure-frame::before,
.office__figure:not(:hover) .figure-frame::after {
transition: height .34s var(--ease), width .34s var(--ease) .34s;
}
.hero__cue {
display: flex; justify-content: center;
margin-top: 4px; padding-bottom: 6px;
}
.hero__cue .vn-scroll-cue { animation: vn-bob 2.4s ease-in-out infinite; }
.hero__cue:hover .vn-scroll-cue { animation-play-state: paused; }
@keyframes vn-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.hero__figure img {
width: 340px; max-width: 100%;
filter: saturate(.92) contrast(1.02);
}
.btn {
font-family: var(--font-body); font-weight: 600;
font-size: 15px; letter-spacing: .01em;
padding: 15px 30px; border-radius: var(--radius); cursor: pointer;
border: 1px solid var(--accent); background: var(--accent); color: var(--on-accent);
text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn:hover { background: transparent; color: var(--text); }
.btn--ghost { background: transparent; color: var(--text); }
.btn--ghost:hover { background: var(--accent); color: var(--on-accent); }
.link {
color: var(--accent); text-decoration: none;
display: inline-flex; align-items: center; gap: 7px; font-weight: 600;
}
.link:hover { opacity: .7; }
:where(.site-main, .site-footer) a:not(.btn):not(.fab__btn):not(.hero__cue) {
position: relative;
text-decoration: none;
}
:where(.site-main, .site-footer) a:not(.btn):not(.fab__btn):not(.hero__cue)::after {
content: "";
position: absolute;
left: 0; bottom: -0.14em;
width: 100%; height: 1px;
background: currentColor;
opacity: .5;
transform: scaleX(.3);
transform-origin: left center;
transition: transform .4s var(--ease);
}
:where(.site-main, .site-footer) a:not(.btn):not(.fab__btn):not(.hero__cue):hover::after,
:where(.site-main, .site-footer) a:not(.btn):not(.fab__btn):not(.hero__cue):focus-visible::after {
transform: scaleX(1);
}
.section { padding: 70px 0; border-top: 1px solid var(--hairline); }
.section__head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 24px; }
.section__num {
font-family: var(--font-display); font-size: 15px;
font-style: italic; color: var(--accent);
}
.section h2 {
font-family: var(--font-display); font-weight: 700;
font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.1;
letter-spacing: -0.02em; margin: 0; color: var(--text);
}
.section__intro {
max-width: 56ch; margin: 0 0 48px; color: var(--muted);
font-size: 1.02rem;
}
.tabs__list {
display: flex; flex-wrap: wrap; gap: 4px;
border-bottom: 1px solid var(--rule); margin-bottom: 40px;
}
.tabs__tab {
font-family: var(--font-body); font-weight: 600; font-size: 14px;
display: inline-flex; align-items: center; gap: 9px;
padding: 14px 20px; cursor: pointer;
background: transparent; border: 0;
border-bottom: 2px solid transparent; margin-bottom: -1px;
color: var(--muted); letter-spacing: .01em;
}
.tabs__tab:hover { color: var(--text); }
.tabs__tab.is-active { color: var(--text); border-bottom-color: var(--accent); }
.tabs__tab .vn-icon { color: var(--accent); width: 2.4em; height: 2.4em; }
.tabs__panel { animation: vn-fade .4s ease; }
.tabs__lead { max-width: 62ch; color: var(--text-dim); margin: 0 0 34px; }
.tabs__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.tabs__subtitle {
font-family: var(--font-body); font-weight: 600; font-size: 12px;
letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
margin: 0 0 18px;
}
.tabs__cols .vn-list > li { margin-bottom: 12px; line-height: 1.55; font-size: .97rem; }
@keyframes vn-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.timeline { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.timeline__item {
display: grid; grid-template-columns: auto 1fr; gap: 28px;
padding: 30px 0; border-top: 1px solid var(--rule);
}
.timeline__item:last-child { border-bottom: 1px solid var(--rule); }
.timeline__num {
font-family: var(--font-display); font-weight: 700;
font-size: 1.5rem; color: var(--accent); line-height: 1;
}
.timeline__body h3 {
font-family: var(--font-body); font-weight: 600; font-size: 1.1rem;
margin: 0 0 8px; color: var(--text); letter-spacing: -0.005em;
}
.timeline__body p { margin: 0; color: var(--muted); font-size: .97rem; max-width: 68ch; }
.section--split { border-top: 1px solid var(--hairline); }
.office { display: grid; grid-template-columns: .8fr 1fr; gap: 64px; align-items: center; }
.office__figure { position: relative; width: fit-content; padding: 16px; justify-self: start; border-radius: var(--radius-lg); }
.office__figure img {
width: 380px; max-width: 100%;
filter: saturate(.85) contrast(1.02) brightness(.98);
}
.office__text .section__head { margin-bottom: 22px; }
.prose { max-width: 60ch; }
.prose p { margin: 0 0 20px; color: var(--text-dim); }
.prose a { color: var(--accent); }
.accordion { border-top: 1px solid var(--rule); }
.accordion__item { border-bottom: 1px solid var(--rule); }
.accordion__head { margin: 0; }
.accordion__btn {
width: 100%; display: flex; align-items: center; justify-content: space-between;
gap: 24px; padding: 24px 4px; cursor: pointer;
background: transparent; border: 0; text-align: left;
font-family: var(--font-display); font-weight: 600;
font-size: clamp(1rem, 1.7vw, 1.18rem); color: var(--text);
letter-spacing: -0.01em;
}
.accordion__btn:hover { color: var(--accent); }
.accordion__icon { color: var(--accent); flex: none; transition: transform .38s var(--ease); }
.accordion__btn[aria-expanded="true"] .accordion__icon { transform: rotate(135deg); }
.accordion__panel {
display: grid;
grid-template-rows: 1fr;
transition: grid-template-rows .42s var(--ease);
}
.js .accordion__panel { grid-template-rows: 0fr; }
.js .accordion__panel.is-open { grid-template-rows: 1fr; }
.accordion__panel-inner { overflow: hidden; min-height: 0; }
.accordion__panel p { margin: 0; max-width: 74ch; color: var(--muted); font-size: .98rem; padding: 0 4px 26px; }
.contacts { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: start; }
.contacts__list { display: grid; gap: 4px; }
.contacts__row {
display: grid; grid-template-columns: 190px 1fr; gap: 20px;
align-items: baseline; padding: 18px 0; border-top: 1px solid var(--rule);
}
.contacts__row:last-child { border-bottom: 1px solid var(--rule); }
.contacts__key {
display: inline-flex; align-items: center; gap: 12px;
font-size: 12px; font-weight: 600; letter-spacing: .12em;
text-transform: uppercase; color: var(--muted);
}
.contacts__key .vn-icon { width: 2.4em; height: 2.4em; }
.contacts__val { font-size: 1.04rem; color: var(--text); }
.contacts__val a { color: var(--text); }
.contacts__val a:hover { color: var(--accent); }
.card {
background: var(--surface); border: 1px solid var(--hairline);
border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.card h3 {
font-family: var(--font-display); font-weight: 700; font-size: 1.55rem;
letter-spacing: -0.02em; margin: 0 0 12px; color: var(--text);
}
.card p { margin: 0 0 24px; color: var(--muted); font-size: .96rem; }
.card__note { margin: 22px 0 0 !important; font-size: 12px; color: var(--muted); opacity: .7; }
.map {
margin-top: 56px; position: relative;
aspect-ratio: 16 / 7; border: 1px solid var(--hairline);
border-radius: var(--radius-lg); overflow: hidden; background: var(--surface);
}
.map iframe {
width: 100%; height: 100%; border: 0; display: block;
filter: grayscale(.35) sepia(.18) saturate(.85) hue-rotate(-8deg) contrast(.94) brightness(.98);
}
:root[data-theme="dark"] .map iframe,
:root:not([data-theme="light"]) .map iframe {
filter: invert(.9) hue-rotate(180deg) grayscale(.28) saturate(.75) contrast(.92) brightness(.95) sepia(.14);
}
.site-footer { padding: 72px 0 48px; border-top: 1px solid var(--hairline); }
.site-footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.site-footer__name {
margin: 0 0 12px; font-family: var(--font-display); font-weight: 600;
font-size: 15px; color: var(--text);
}
.site-footer__name span { display: block; color: var(--muted); font-weight: 400; }
.site-footer__meta { margin: 0 0 8px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.site-footer__meta a { color: var(--muted); text-decoration: none; }
.site-footer__meta a:hover { color: var(--text); }
.site-footer__bar {
margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--hairline);
display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; align-items: flex-start;
font-size: 12.5px; color: var(--muted);
}
.site-footer__bar a { color: var(--muted); text-decoration: none; }
.site-footer__bar a:hover { color: var(--text); }
.site-footer__sign { display: flex; flex-direction: column; gap: 5px; }
.site-footer__dev { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .55; }
.fab {
position: fixed; right: 24px; bottom: 24px; z-index: 30;
display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.fab__btn {
width: 48px; height: 48px; flex: none;
display: grid; place-items: center;
border-radius: 50%;
background: var(--accent); color: var(--on-accent);
box-shadow: var(--shadow); text-decoration: none;
transition: background-color .3s ease, transform .2s var(--ease);
}
.fab__btn svg { width: 22px; height: 22px; }
.fab__btn:hover { transform: translateY(-2px); }
.fab__btn--call { background: var(--surface); color: var(--text); border: 1px solid var(--rule); }
.dotnav {
position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
z-index: 25; display: flex; flex-direction: column; gap: 18px;
}
.dotnav a { position: relative; display: block; width: 20px; height: 20px; }
.dotnav a::before {
content: ""; position: absolute; top: 50%; right: 4px; margin-top: -3.5px;
width: 7px; height: 7px; border-radius: 50%;
border: 1px solid var(--muted); background: transparent;
transition: background-color .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.dotnav a:hover::before { border-color: var(--accent); }
.dotnav a.is-active::before {
background: var(--accent); border-color: var(--accent);
transform: scale(1.45);
}
.dotnav a::after {
content: attr(data-label);
position: absolute; right: 22px; top: 50%;
transform: translateY(-50%) translateX(6px);
padding: 5px 11px; border-radius: var(--radius);
background: var(--surface); border: 1px solid var(--hairline);
color: var(--text); font-size: 11px; font-weight: 600;
letter-spacing: .04em; white-space: nowrap;
opacity: 0; pointer-events: none;
transition: opacity .25s ease, transform .25s var(--ease);
}
.dotnav a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 1100px) { .dotnav { display: none; } }
.legal { padding: 120px 0 96px; }
.legal__wrap { max-width: 760px; }
.legal__title {
font-family: var(--font-display); font-weight: 700;
font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.12;
letter-spacing: -0.02em; margin: 20px 0 10px; color: var(--text);
}
.legal__meta { color: var(--muted); font-size: 13px; margin: 0 0 52px; }
.legal__body { color: var(--text-dim); }
.legal__body > :first-child { margin-top: 0; }
.legal__body h2 {
font-family: var(--font-display); font-weight: 700;
font-size: 1.35rem; letter-spacing: -0.01em;
margin: 46px 0 14px; color: var(--text);
}
.legal__body h3 {
font-weight: 600; font-size: 1.05rem;
margin: 28px 0 8px; color: var(--text);
}
.legal__body p { margin: 0 0 18px; }
.legal__body ul, .legal__body ol { margin: 0 0 18px; padding-left: 1.4em; }
.legal__body li { margin-bottom: 8px; }
.legal__body a { color: var(--accent); }
.legal__back { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--rule); font-size: .95rem; }
.legal__back a { color: var(--accent); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
body *, body *::before, body *::after { transition: none !important; animation: none !important; }
.reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
.vn-preloader { display: none; }
}
@media (max-width: 1000px) {
.hero__inner { grid-template-columns: 1fr; gap: 40px; }
.hero__figure { order: 0; justify-self: center; }
.hero__figure img { max-width: 300px; }
.office { grid-template-columns: 1fr; gap: 36px; }
.office__figure { order: 2; justify-self: center; }
.office__text { order: 1; }
.contacts { grid-template-columns: 1fr; gap: 40px; }
.tabs__cols { grid-template-columns: 1fr; gap: 32px; }
.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
.wrap { padding: 0 20px; }
.nav { gap: 14px; }
.nav__links { display: none; }
.wordmark__logo { width: 188px; }
.timeline__item { grid-template-columns: 1fr; gap: 10px; }
.contacts__row { grid-template-columns: 1fr; gap: 6px; }
.site-footer__grid { grid-template-columns: 1fr; }
.map { aspect-ratio: 4 / 3; }
.tabs__list {
justify-content: center;
gap: 8px;
border-bottom: 0;
margin-bottom: 30px;
}
.tabs__tab {
flex: 0 0 calc(50% - 4px);
justify-content: center;
text-align: center;
gap: 7px;
padding: 12px 8px;
margin-bottom: 0;
border: 1px solid var(--rule);
border-radius: var(--radius);
}
.tabs__tab.is-active {
color: var(--text);
border-color: var(--accent);
background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.tabs__tab .vn-icon { width: 1.7em; height: 1.7em; }
.tabs__tab span { line-height: 1.25; }
.nav-toggle {
display: inline-flex; align-items: center; justify-content: center;
width: 40px; height: 40px; padding: 0; flex: none;
background: var(--surface); border: 1px solid var(--rule);
border-radius: 999px; cursor: pointer;
position: relative; z-index: 50;
}
.nav-toggle__box { position: relative; width: 16px; height: 12px; }
.nav-toggle__bar {
position: absolute; left: 0; width: 100%; height: 1.5px;
background: var(--text); border-radius: 2px;
transition: transform .3s var(--ease), opacity .18s ease, top .3s var(--ease);
}
.nav-toggle__bar:nth-child(1) { top: 0; }
.nav-toggle__bar:nth-child(2) { top: 5px; }
.nav-toggle__bar:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { top: 5px; transform: rotate(-45deg); }
body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 60; }
.mobile-menu {
display: block;
position: fixed; inset: 0; z-index: 40;
visibility: hidden;
transition: visibility 0s linear .42s;
}
.mobile-menu.is-open { visibility: visible; transition-delay: 0s; }
.mobile-menu__backdrop {
position: absolute; inset: 0; padding: 0; border: 0;
background: color-mix(in srgb, var(--bg) 68%, transparent);
backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
opacity: 0; transition: opacity .35s ease; cursor: pointer;
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
position: absolute; top: 0; right: 0; bottom: 0;
width: min(80vw, 300px);
display: flex; flex-direction: column; justify-content: center;
gap: 4px; padding: 92px 28px 36px;
background: var(--surface); border-left: 1px solid var(--rule);
transform: translateX(100%);
transition: transform .4s var(--ease);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__panel a {
font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
font-weight: 600; color: var(--muted); text-decoration: none;
padding: 16px 6px; border-bottom: 1px solid var(--hairline);
}
.mobile-menu__panel a:last-child { border-bottom: 0; }
.mobile-menu__panel a:hover,
.mobile-menu__panel a:focus-visible { color: var(--text); }
}
@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
.mobile-menu, .mobile-menu__panel, .mobile-menu__backdrop { transition: none; }
}