:root {
	--v-ink: #1c211e;
	--v-ink-soft: #4d544f;
	--v-olive: #34443a;
	--v-olive-dark: #26342c;
	--v-accent: #9a7b4f;
	--v-brass-light: #c5aa7f;
	--v-paper: #fbfaf7;
	--v-ivory: #f4f1ea;
	--v-sand: #e8e1d5;
	--v-line: #ddd8ce;
	--v-white: #fff;
	--v-danger: #9a443d;
	--v-success: #446a54;
	--v-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, "Times New Roman", serif;
	--v-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--v-container: 1380px;
	--v-content: 820px;
	--v-gutter: clamp(20px, 4vw, 64px);
	--v-section: clamp(76px, 9vw, 142px);
	--v-ease: cubic-bezier(.2, .7, .2, 1);
	--v-shadow: 0 20px 70px rgba(28, 33, 30, .10);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--v-paper);
	color: var(--v-ink);
	font-family: var(--v-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.has-overlay {
	overflow: hidden;
}

::selection {
	background: var(--v-olive);
	color: var(--v-white);
}

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

img {
	height: auto;
}

button,
input,
select,
textarea {
	color: inherit;
	font: inherit;
}

button {
	cursor: pointer;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
}

a:hover {
	color: var(--v-olive);
}

p,
figure,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 .65em;
	color: var(--v-ink);
	font-family: var(--v-serif);
	font-weight: 400;
	letter-spacing: -.025em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(48px, 6vw, 92px);
}

h2 {
	font-size: clamp(38px, 4.5vw, 68px);
}

h3 {
	font-size: clamp(25px, 2.5vw, 36px);
}

.site-frame {
	position: relative;
	overflow: clip;
	width: 100%;
}

.v-container {
	width: min(100% - (var(--v-gutter) * 2), var(--v-container));
	margin-inline: auto;
}

.v-container--content {
	max-width: var(--v-content);
}

.site-main {
	min-height: 50vh;
}

.screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	white-space: nowrap;
	clip-path: inset(50%);
}

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 100000;
	top: 10px;
	left: 10px;
	clip: auto !important;
	width: auto;
	height: auto;
	padding: 12px 18px;
	background: var(--v-white);
	color: var(--v-ink);
	font-weight: 700;
	clip-path: none;
}

:focus-visible {
	outline: 2px solid var(--v-accent);
	outline-offset: 4px;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--v-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow--light {
	color: var(--v-brass-light);
}

.v-button,
button.v-button,
input[type="submit"].v-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 52px;
	padding: 15px 25px;
	border: 1px solid transparent;
	border-radius: 1px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .11em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .3s var(--v-ease), background .3s var(--v-ease), border-color .3s var(--v-ease), transform .3s var(--v-ease);
}

.v-button:hover {
	transform: translateY(-2px);
}

.v-button--dark {
	background: var(--v-olive);
	color: var(--v-white);
}

.v-button--dark:hover {
	background: var(--v-ink);
	color: var(--v-white);
}

.v-button--light {
	background: var(--v-white);
	color: var(--v-olive);
}

.v-button--light:hover {
	background: var(--v-ivory);
	color: var(--v-ink);
}

.v-button--outline {
	border-color: var(--v-line);
	background: transparent;
	color: var(--v-ink);
}

.v-button--outline:hover {
	border-color: var(--v-ink);
	color: var(--v-ink);
}

.v-button--light-outline {
	border-color: rgba(255, 255, 255, .42);
	background: transparent;
	color: var(--v-white);
}

.v-button--light-outline:hover {
	border-color: var(--v-white);
	background: var(--v-white);
	color: var(--v-olive);
}

.v-text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 2px 0 6px;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: none;
	color: var(--v-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
	transition: gap .25s var(--v-ease), color .25s var(--v-ease);
}

.v-text-link:hover {
	gap: 18px;
	color: var(--v-accent);
}

.v-icon {
	flex: 0 0 auto;
}

/* Announcement and header */
.announcement-bar {
	position: relative;
	z-index: 70;
	background: var(--v-olive-dark);
	color: rgba(255, 255, 255, .88);
	font-size: 11px;
	letter-spacing: .08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.announcement-bar__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 36px;
}

.announcement-bar p {
	margin: 0;
	text-align: center;
}

.announcement-bar__contact {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}

.announcement-bar a {
	color: inherit;
	text-decoration: none;
}

.announcement-bar a:hover {
	color: var(--v-white);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	border-bottom: 1px solid rgba(28, 33, 30, .11);
	background: rgba(251, 250, 247, .96);
	transition: box-shadow .3s var(--v-ease), background .3s var(--v-ease);
}

.site-header.is-scrolled {
	box-shadow: 0 9px 35px rgba(28, 33, 30, .08);
	background: rgba(251, 250, 247, .98);
	backdrop-filter: blur(14px);
}

.admin-bar .site-header.is-scrolled {
	top: 32px;
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: grid;
	grid-template-columns: 220px 1fr auto;
	align-items: center;
	min-height: 88px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.custom-logo-link {
	display: block;
	max-width: 210px;
}

.custom-logo {
	width: auto;
	max-height: 58px;
}

.virtu-wordmark {
	display: inline-flex;
	align-items: center;
	color: var(--v-ink);
	font-size: 0;
	line-height: 1;
	text-decoration: none;
}

.virtu-wordmark:hover {
	color: var(--v-ink);
}

.virtu-wordmark__mark {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-right: 12px;
	border: 1px solid var(--v-accent);
	color: var(--v-accent);
	font-family: var(--v-serif);
	font-size: 23px;
	font-style: italic;
}

.virtu-wordmark__name {
	font-family: var(--v-sans);
	font-size: 25px;
	font-weight: 600;
	letter-spacing: .25em;
}

.virtu-wordmark__domain {
	align-self: flex-end;
	margin: 0 0 2px 1px;
	color: var(--v-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .08em;
}

.desktop-navigation {
	justify-self: center;
}

.desktop-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.desktop-navigation > .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.2vw, 38px);
}

.desktop-navigation .menu > li {
	position: relative;
}

.desktop-navigation .menu > li > a {
	display: block;
	padding: 33px 0 31px;
	color: var(--v-ink);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .055em;
	text-decoration: none;
}

.desktop-navigation .menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 25px;
	left: 0;
	height: 1px;
	background: var(--v-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .28s var(--v-ease);
}

.desktop-navigation .menu > li:hover > a::after,
.desktop-navigation .menu > .current-menu-item > a::after,
.desktop-navigation .menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.desktop-navigation .sub-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -24px;
	z-index: 20;
	min-width: 240px;
	padding: 16px 0;
	border: 1px solid var(--v-line);
	background: var(--v-white);
	box-shadow: var(--v-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .2s ease, transform .25s var(--v-ease), visibility .2s;
}

.desktop-navigation li:hover > .sub-menu,
.desktop-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.desktop-navigation .sub-menu a {
	display: block;
	padding: 10px 24px;
	color: var(--v-ink-soft);
	font-size: 13px;
	text-decoration: none;
	transition: color .2s, padding .2s;
}

.desktop-navigation .sub-menu a:hover {
	padding-left: 29px;
	color: var(--v-olive);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

.header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	min-width: 50px;
	min-height: 52px;
	padding: 4px 8px;
	border: 0;
	background: transparent;
	color: var(--v-ink);
	font-size: 9px;
	letter-spacing: .04em;
	line-height: 1;
	text-decoration: none;
}

.header-icon:hover {
	color: var(--v-accent);
}

.header-icon__label {
	white-space: nowrap;
}

.header-menu-toggle {
	display: none;
	justify-self: start;
}

.header-cart__icon {
	position: relative;
}

.header-cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border: 2px solid var(--v-paper);
	border-radius: 50%;
	background: var(--v-olive);
	color: var(--v-white);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
}

/* Search overlay */
.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: flex-start;
	padding-top: clamp(80px, 13vh, 150px);
	background: rgba(244, 241, 234, .98);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-16px);
	transition: opacity .3s ease, transform .35s var(--v-ease), visibility .3s;
}

.search-overlay.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.search-overlay__inner {
	max-width: 980px;
}

.search-overlay__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 42px;
}

.search-overlay__top .eyebrow {
	margin: 0;
}

.search-overlay__inner > p {
	margin: 18px 0 0;
	color: var(--v-ink-soft);
	font-size: 13px;
}

.virtu-search-form {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid var(--v-ink);
}

.virtu-search-form__icon {
	display: grid;
	flex: 0 0 46px;
	place-items: center;
}

.virtu-search-form .search-field {
	flex: 1;
	min-width: 0;
	height: 72px;
	padding: 0 18px 0 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--v-ink);
	font-family: var(--v-serif);
	font-size: clamp(25px, 4vw, 44px);
}

.virtu-search-form .search-field::placeholder {
	color: rgba(28, 33, 30, .38);
}

.virtu-search-form button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 20px 0 20px 24px;
	border: 0;
	background: transparent;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/* Mobile drawer */
.mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 110;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s;
}

.mobile-drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.mobile-drawer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	border: 0;
	background: rgba(18, 24, 20, .53);
}

.mobile-drawer__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(92vw, 440px);
	height: 100%;
	padding: 0 28px 28px;
	background: var(--v-paper);
	box-shadow: 30px 0 70px rgba(0, 0, 0, .2);
	transform: translateX(-102%);
	transition: transform .38s var(--v-ease);
}

.mobile-drawer.is-open .mobile-drawer__panel {
	transform: translateX(0);
}

.mobile-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	border-bottom: 1px solid var(--v-line);
}

.mobile-drawer__search {
	padding: 24px 0 10px;
}

.mobile-drawer__search .virtu-search-form .search-field {
	height: 52px;
	font-family: var(--v-sans);
	font-size: 14px;
}

.mobile-drawer__search .virtu-search-form button {
	width: 42px;
	overflow: hidden;
	padding: 12px 0;
	color: transparent;
}

.mobile-drawer__search .virtu-search-form button svg {
	color: var(--v-ink);
}

.mobile-drawer nav {
	overflow-y: auto;
	padding: 20px 0;
}

.mobile-menu,
.mobile-menu ul,
.mobile-drawer nav > .menu,
.mobile-drawer nav > .menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-menu > li,
.mobile-drawer nav > .menu > li {
	border-bottom: 1px solid var(--v-line);
}

.mobile-menu > li > a,
.mobile-drawer nav > .menu > li > a {
	display: block;
	padding: 15px 0;
	color: var(--v-ink);
	font-family: var(--v-serif);
	font-size: 23px;
	line-height: 1.25;
	text-decoration: none;
}

.mobile-menu .sub-menu,
.mobile-drawer nav > .menu .sub-menu {
	padding: 0 0 12px 18px;
}

.mobile-menu .sub-menu a,
.mobile-drawer nav > .menu .sub-menu a {
	display: block;
	padding: 6px 0;
	color: var(--v-ink-soft);
	font-size: 13px;
	text-decoration: none;
}

.mobile-drawer__footer {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--v-line);
	font-size: 13px;
}

.mobile-drawer__footer a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

/* Hero */
.home-hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(620px, 75vh, 850px);
	overflow: hidden;
	background: #ece7dc;
}

.home-hero__image {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: var(--v-hero-image);
	background-position: center center;
	background-size: cover;
}

.home-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(239, 235, 226, .99) 0%, rgba(239, 235, 226, .96) 22%, rgba(239, 235, 226, .73) 40%, rgba(239, 235, 226, .1) 61%, rgba(239, 235, 226, 0) 76%);
	content: "";
}

.home-hero__inner {
	display: flex;
	align-items: center;
	min-height: inherit;
}

.home-hero__content {
	max-width: 660px;
	padding: 80px 0 100px;
}

.home-hero h1 {
	max-width: 660px;
	margin-bottom: 26px;
	font-size: clamp(54px, 6.2vw, 96px);
}

.home-hero__content > p {
	max-width: 560px;
	margin-bottom: 35px;
	color: var(--v-ink-soft);
	font-size: clamp(17px, 1.45vw, 20px);
	line-height: 1.7;
}

.home-hero__buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 28px;
}

.home-hero__caption {
	position: absolute;
	right: 18px;
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
	writing-mode: vertical-rl;
	color: rgba(255, 255, 255, .8);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .14em;
	text-shadow: 0 1px 7px rgba(0, 0, 0, .35);
	text-transform: uppercase;
}

.home-hero__caption span {
	color: var(--v-white);
	font-weight: 800;
	letter-spacing: .2em;
}

/* Trust strip */
.trust-strip {
	border-bottom: 1px solid var(--v-line);
	background: var(--v-paper);
}

.trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 104px;
	padding: 20px clamp(16px, 2vw, 34px);
	border-right: 1px solid var(--v-line);
}

.trust-item:first-child {
	padding-left: 0;
}

.trust-item:last-child {
	padding-right: 0;
	border-right: 0;
}

.trust-item > svg {
	color: var(--v-accent);
}

.trust-item strong,
.trust-item span {
	display: block;
}

.trust-item strong {
	margin-bottom: 3px;
	font-family: var(--v-serif);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.25;
}

.trust-item span {
	color: var(--v-ink-soft);
	font-size: 11px;
	letter-spacing: .025em;
}

/* Sections */
.home-section {
	padding: var(--v-section) 0;
}

.section-heading {
	margin-bottom: clamp(40px, 5vw, 72px);
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
	align-items: end;
	gap: 70px;
}

.section-heading--split p {
	margin: 0 0 7px;
	color: var(--v-ink-soft);
	font-size: 16px;
	line-height: 1.8;
}

.section-heading--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
}

/* Categories */
.category-section {
	background: var(--v-paper);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(2, minmax(300px, 35vw));
	gap: 16px;
	max-height: 860px;
}

.category-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: var(--v-ivory);
	color: var(--v-white);
	text-decoration: none;
}

.category-card--1 {
	grid-column: 1 / 6;
	grid-row: 1 / 3;
}

.category-card--2 {
	grid-column: 6 / 10;
	grid-row: 1;
}

.category-card--3 {
	grid-column: 10 / 13;
	grid-row: 1;
}

.category-card--4 {
	grid-column: 6 / 9;
	grid-row: 2;
}

.category-card--5 {
	grid-column: 9 / 13;
	grid-row: 2;
}

.category-card__media,
.category-card__media::after {
	position: absolute;
	inset: 0;
}

.category-card__media {
	z-index: -1;
	overflow: hidden;
}

.category-card__media::after {
	background: linear-gradient(180deg, rgba(10, 15, 12, .03) 24%, rgba(10, 15, 12, .72) 100%);
	content: "";
}

.category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--v-ease), filter .5s ease;
}

.category-card:hover .category-card__media img {
	filter: saturate(.92);
	transform: scale(1.035);
}

.category-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	background:
		radial-gradient(circle at 75% 22%, rgba(255, 255, 255, .23), transparent 30%),
		linear-gradient(135deg, #798276, #34443a);
}

.category-card:nth-child(2) .category-card__placeholder {
	background: linear-gradient(135deg, #aa9274, #715e48);
}

.category-card:nth-child(3) .category-card__placeholder {
	background: linear-gradient(135deg, #c2bbae, #7c837b);
}

.category-card:nth-child(4) .category-card__placeholder {
	background: linear-gradient(135deg, #9a8877, #5d5147);
}

.category-card:nth-child(5) .category-card__placeholder {
	background: linear-gradient(135deg, #7b8581, #3b4743);
}

.category-card__placeholder span {
	color: rgba(255, 255, 255, .16);
	font-family: var(--v-serif);
	font-size: clamp(120px, 16vw, 260px);
	font-style: italic;
}

.category-card__content {
	position: absolute;
	right: clamp(22px, 3vw, 42px);
	bottom: clamp(22px, 3vw, 40px);
	left: clamp(22px, 3vw, 42px);
}

.category-card__count {
	display: block;
	margin-bottom: 9px;
	color: rgba(255, 255, 255, .72);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.category-card h3 {
	max-width: calc(100% - 45px);
	margin: 0;
	color: var(--v-white);
	font-size: clamp(26px, 3vw, 44px);
}

.category-card__arrow {
	position: absolute;
	right: 0;
	bottom: 7px;
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	place-items: center;
	transition: color .25s, background .25s, transform .3s var(--v-ease);
}

.category-card:hover .category-card__arrow {
	background: var(--v-white);
	color: var(--v-ink);
	transform: translateX(3px);
}

/* Product sections */
.product-section--paper {
	border-top: 1px solid var(--v-line);
	border-bottom: 1px solid var(--v-line);
	background: #f6f3ed;
}

/* Story */
.home-story {
	background: var(--v-olive-dark);
}

.home-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
	min-height: 760px;
}

.home-story__image {
	position: relative;
	min-height: 620px;
	background-position: 74% center;
	background-size: cover;
}

.home-story__image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(18, 28, 22, .05), rgba(18, 28, 22, .18));
	content: "";
}

.home-story__seal {
	position: absolute;
	right: -55px;
	bottom: 60px;
	z-index: 2;
	display: grid;
	width: 110px;
	height: 110px;
	border: 1px solid rgba(255, 255, 255, .48);
	border-radius: 50%;
	background: var(--v-olive-dark);
	color: var(--v-white);
	place-content: center;
	text-align: center;
}

.home-story__seal b {
	font-family: var(--v-serif);
	font-size: 38px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
}

.home-story__seal small {
	margin-top: 5px;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .15em;
}

.home-story__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 8vw, 130px) clamp(45px, 7vw, 120px);
	color: rgba(255, 255, 255, .78);
}

.home-story__content h2 {
	max-width: 620px;
	margin-bottom: 28px;
	color: var(--v-white);
}

.home-story__lead {
	max-width: 610px;
	margin-bottom: 40px;
	font-size: 17px;
	line-height: 1.8;
}

.home-story__values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	margin-bottom: 44px;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.home-story__values > div {
	padding: 23px 18px 0 0;
}

.home-story__values span {
	display: block;
	margin-bottom: 22px;
	color: var(--v-brass-light);
	font-size: 10px;
	letter-spacing: .14em;
}

.home-story__values strong {
	display: block;
	margin-bottom: 8px;
	color: var(--v-white);
	font-family: var(--v-serif);
	font-size: 22px;
	font-weight: 400;
}

.home-story__values p {
	margin: 0;
	color: rgba(255, 255, 255, .59);
	font-size: 12px;
	line-height: 1.55;
}

/* Journal */
.journal-section {
	border-top: 1px solid var(--v-line);
	background: var(--v-ivory);
}

.journal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(22px, 3vw, 44px);
}

.journal-card__image {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #ded8cc;
	text-decoration: none;
}

.journal-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .65s var(--v-ease);
}

.journal-card:hover .journal-card__image img {
	transform: scale(1.035);
}

.journal-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #c7bda9, #7a8077);
	color: rgba(255, 255, 255, .7);
	place-items: center;
}

.journal-card:nth-child(2) .journal-card__placeholder {
	background: linear-gradient(135deg, #8a927f, #445348);
}

.journal-card:nth-child(3) .journal-card__placeholder {
	background: linear-gradient(135deg, #b29a7e, #74634f);
}

.journal-card__placeholder b {
	font-family: var(--v-serif);
	font-size: 72px;
	font-style: italic;
	font-weight: 400;
}

.journal-card__content {
	padding: 27px 2px 0;
}

.journal-card__date {
	display: block;
	margin-bottom: 12px;
	color: var(--v-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.journal-card h3 {
	margin-bottom: 15px;
	font-size: clamp(25px, 2.2vw, 34px);
}

.journal-card h3 a {
	color: inherit;
	text-decoration: none;
}

.journal-card h3 a:hover {
	color: var(--v-olive);
}

.journal-card p {
	margin-bottom: 21px;
	color: var(--v-ink-soft);
	font-size: 14px;
	line-height: 1.7;
}

/* Footer */
.site-footer {
	background: #18221c;
	color: rgba(255, 255, 255, .67);
}

.footer-newsletter {
	border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.footer-newsletter__inner {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: center;
	gap: 80px;
	padding-top: clamp(58px, 7vw, 96px);
	padding-bottom: clamp(58px, 7vw, 96px);
}

.footer-newsletter h2 {
	max-width: 780px;
	margin: 0;
	color: var(--v-white);
	font-size: clamp(40px, 5vw, 70px);
}

.footer-newsletter__action {
	padding-left: clamp(0px, 3vw, 60px);
	border-left: 1px solid rgba(255, 255, 255, .16);
}

.footer-newsletter__action p {
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 1.75;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: clamp(38px, 5vw, 80px);
	padding-top: 74px;
	padding-bottom: 70px;
}

.footer-brand .virtu-wordmark {
	margin-bottom: 24px;
	color: var(--v-white);
}

.footer-brand .custom-logo {
	filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand > p {
	max-width: 300px;
	margin-bottom: 24px;
	font-size: 14px;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	display: grid;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .19);
	border-radius: 50%;
	color: var(--v-white);
	place-items: center;
	transition: background .2s, color .2s, border .2s;
}

.footer-social a:hover {
	border-color: var(--v-white);
	background: var(--v-white);
	color: var(--v-olive);
}

.footer-column h2,
.footer-widget .widget-title {
	margin-bottom: 22px;
	color: var(--v-white);
	font-family: var(--v-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-menu,
.footer-legal {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu a,
.footer-contact a {
	color: rgba(255, 255, 255, .67);
	font-size: 13px;
	text-decoration: none;
}

.footer-menu a:hover,
.footer-contact a:hover {
	color: var(--v-white);
}

.footer-contact p {
	margin-top: 14px;
	font-size: 12px;
}

.footer-widgets {
	grid-column: 1 / -1;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	min-height: 72px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: 10px;
	letter-spacing: .04em;
}

.footer-bottom p {
	margin: 0;
}

.footer-legal {
	display: flex;
	gap: 20px;
}

.footer-legal a {
	color: inherit;
	text-decoration: none;
}

.footer-credit {
	text-align: right;
}

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 50;
	display: grid;
	width: 46px;
	height: 46px;
	border: 1px solid var(--v-line);
	border-radius: 50%;
	background: var(--v-paper);
	box-shadow: 0 8px 30px rgba(28, 33, 30, .14);
	opacity: 0;
	place-items: center;
	transform: translateY(15px);
	visibility: hidden;
	transition: opacity .25s, transform .25s, visibility .25s;
}

.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

/* Breadcrumbs and editorial pages */
.virtu-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 28px;
	color: #7b7f7b;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .075em;
	text-transform: uppercase;
}

.virtu-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.virtu-breadcrumb a:hover {
	color: var(--v-ink);
}

.page-heading {
	padding: clamp(70px, 9vw, 130px) 0 clamp(55px, 7vw, 100px);
	border-bottom: 1px solid var(--v-line);
	background: var(--v-ivory);
	text-align: center;
}

.page-heading .virtu-breadcrumb,
.article-header .virtu-breadcrumb {
	justify-content: center;
}

.page-heading h1 {
	margin-bottom: 18px;
}

.page-heading__intro,
.archive-description {
	max-width: 680px;
	margin: 0 auto;
	color: var(--v-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.entry-page {
	padding-top: clamp(55px, 7vw, 90px);
	padding-bottom: var(--v-section);
}

.entry-page__hero {
	margin-bottom: 50px;
}

.entry-page__hero img {
	width: 100%;
}

.entry-content {
	color: #303632;
	font-size: clamp(16px, 1.35vw, 18px);
	line-height: 1.82;
}

.entry-content > * {
	margin-right: auto;
	margin-left: auto;
}

.entry-content h2 {
	margin-top: 2em;
	font-size: clamp(34px, 4vw, 51px);
}

.entry-content h3 {
	margin-top: 1.8em;
	font-size: clamp(27px, 3vw, 37px);
}

.entry-content h4 {
	margin-top: 1.65em;
	font-size: 24px;
}

.entry-content a {
	color: var(--v-olive);
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4em;
}

.entry-content li {
	margin-bottom: .48em;
}

.entry-content blockquote {
	margin: 2.2em 0;
	padding: .3em 0 .3em clamp(25px, 5vw, 55px);
	border-left: 1px solid var(--v-accent);
	color: var(--v-olive);
	font-family: var(--v-serif);
	font-size: clamp(25px, 3.4vw, 39px);
	font-style: italic;
	line-height: 1.35;
}

.entry-content table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 14px;
}

.entry-content th,
.entry-content td {
	padding: 14px;
	border-bottom: 1px solid var(--v-line);
	text-align: left;
}

.entry-content th {
	background: var(--v-ivory);
	font-weight: 600;
}

.entry-content .alignwide {
	width: min(1100px, calc(100vw - (var(--v-gutter) * 2)));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

/* Journal archives */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(48px, 6vw, 90px) clamp(28px, 4vw, 58px);
	padding-top: var(--v-section);
	padding-bottom: var(--v-section);
}

.archive-card__image {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--v-ivory);
}

.archive-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s var(--v-ease);
}

.archive-card:hover .archive-card__image img {
	transform: scale(1.035);
}

.archive-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #c8bdac, #788176);
	color: rgba(255, 255, 255, .7);
	place-items: center;
}

.archive-card__content {
	padding-top: 28px;
}

.archive-card__content .eyebrow {
	margin-bottom: 12px;
	text-decoration: none;
}

.archive-card h2 {
	margin-bottom: 14px;
	font-size: clamp(29px, 3vw, 42px);
}

.archive-card h2 a {
	text-decoration: none;
}

.archive-card p {
	color: var(--v-ink-soft);
	font-size: 14px;
}

.post-meta {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 19px;
	color: #7b7f7b;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.pagination-wrap {
	grid-column: 1 / -1;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.nav-links .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid var(--v-line);
	background: transparent;
	color: var(--v-ink);
	font-size: 12px;
	text-decoration: none;
	place-items: center;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
	border-color: var(--v-olive);
	background: var(--v-olive);
	color: var(--v-white);
}

/* Single article */
.article-header {
	padding: clamp(70px, 10vw, 150px) 0 clamp(55px, 7vw, 100px);
	background: var(--v-ivory);
	text-align: center;
}

.article-header h1 {
	margin-bottom: 25px;
	font-size: clamp(48px, 6vw, 83px);
}

.article-header .post-meta {
	justify-content: center;
}

.article-hero {
	margin-top: -1px;
	margin-bottom: clamp(55px, 8vw, 105px);
	padding-top: clamp(25px, 4vw, 55px);
}

.article-hero img {
	width: 100%;
	max-height: 760px;
	object-fit: cover;
}

.article-footer {
	margin-top: 55px;
	padding-top: 24px;
	border-top: 1px solid var(--v-line);
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.article-tags a {
	padding: 7px 12px;
	border: 1px solid var(--v-line);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
}

.post-navigation-wrap {
	margin: 55px 0;
	padding: 30px 0;
	border-top: 1px solid var(--v-line);
	border-bottom: 1px solid var(--v-line);
}

.post-navigation-wrap .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.post-navigation-wrap .nav-next {
	text-align: right;
}

.post-navigation-wrap a {
	display: block;
	text-decoration: none;
}

.post-navigation-wrap span {
	display: block;
	margin-bottom: 7px;
	color: var(--v-accent);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.post-navigation-wrap strong {
	font-family: var(--v-serif);
	font-size: 21px;
	font-weight: 400;
	line-height: 1.3;
}

/* Comments */
.comments-area {
	margin: 60px 0 0;
	padding: 45px 0 0;
	border-top: 1px solid var(--v-line);
}

.comments-title,
.comment-reply-title {
	font-size: 34px;
}

.comment-list {
	margin: 0 0 50px;
	padding: 0;
	list-style: none;
}

.comment-list .children {
	margin-left: 35px;
	list-style: none;
}

.comment-body {
	padding: 25px 0;
	border-bottom: 1px solid var(--v-line);
}

.comment-meta {
	font-size: 12px;
}

.comment-author img {
	float: left;
	margin-right: 12px;
	border-radius: 50%;
}

.comment-content {
	clear: both;
	padding-top: 14px;
}

.comment-form label {
	display: block;
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--v-line);
	border-radius: 0;
	background: var(--v-white);
}

.comment-form input[type="submit"] {
	min-height: 50px;
	padding: 14px 24px;
	border: 0;
	background: var(--v-olive);
	color: var(--v-white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/* Empty and 404 states */
.no-results {
	grid-column: 1 / -1;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.no-results h2 {
	margin-bottom: 20px;
}

.no-results > p {
	color: var(--v-ink-soft);
}

.no-results .virtu-search-form {
	margin: 40px 0;
}

.not-found-page {
	display: grid;
	min-height: 72vh;
	background: var(--v-ivory);
	place-items: center;
	text-align: center;
}

.not-found-page__inner {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}

.not-found-page__number {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	color: rgba(52, 68, 58, .06);
	font-family: var(--v-serif);
	font-size: clamp(210px, 33vw, 510px);
	line-height: .7;
	transform: translate(-50%, -50%);
}

.not-found-page .eyebrow,
.not-found-page h1,
.not-found-page p,
.not-found-page__actions {
	position: relative;
	z-index: 1;
}

.not-found-page h1 {
	margin-bottom: 20px;
}

.not-found-page p {
	max-width: 600px;
	margin: 0 auto 34px;
	color: var(--v-ink-soft);
}

.not-found-page__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
}

/* WordPress utilities */
.wp-caption,
.gallery-caption {
	max-width: 100%;
	color: var(--v-ink-soft);
	font-size: 12px;
}

.sticky {
	position: relative;
}

.bypostauthor {
	position: relative;
}

.alignleft {
	float: left;
	margin-right: 2em;
}

.alignright {
	float: right;
	margin-left: 2em;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/* Responsive */
@media (max-width: 1180px) {
	.site-header__inner {
		grid-template-columns: 200px 1fr auto;
	}

	.desktop-navigation > .menu {
		gap: 18px;
	}

	.desktop-navigation .menu > li > a {
		font-size: 11px;
	}

	.category-grid {
		grid-template-rows: repeat(2, minmax(280px, 36vw));
	}

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

	.home-story__content {
		padding-right: 55px;
		padding-left: 80px;
	}
}

@media (max-width: 1024px) {
	.admin-bar .site-header.is-scrolled {
		top: 32px;
	}

	.site-header__inner {
		grid-template-columns: 72px 1fr auto;
		min-height: 76px;
	}

	.header-menu-toggle {
		display: inline-flex;
	}

	.site-branding {
		justify-self: center;
	}

	.desktop-navigation {
		display: none;
	}

	.header-actions .header-icon__label {
		display: none;
	}

	.header-actions .header-icon {
		min-width: 43px;
	}

	.home-hero {
		min-height: 690px;
	}

	.home-hero::before {
		background: linear-gradient(90deg, rgba(239, 235, 226, .98), rgba(239, 235, 226, .9) 34%, rgba(239, 235, 226, .26) 70%, rgba(239, 235, 226, .04));
	}

	.home-hero__content {
		max-width: 570px;
	}

	.trust-strip__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-item:nth-child(2) {
		border-right: 0;
	}

	.trust-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--v-line);
	}

	.trust-item:nth-child(3) {
		padding-left: 0;
	}

	.category-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 520px repeat(2, 320px);
		max-height: none;
	}

	.category-card--1 {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.category-card--2,
	.category-card--3,
	.category-card--4,
	.category-card--5 {
		grid-column: auto;
		grid-row: auto;
	}

	.home-story__grid {
		width: 100%;
		grid-template-columns: 1fr;
	}

	.home-story__image {
		min-height: 600px;
	}

	.home-story__seal {
		right: 40px;
		bottom: -55px;
	}

	.home-story__content {
		padding-right: var(--v-gutter);
		padding-left: var(--v-gutter);
	}

	.footer-main {
		grid-template-columns: 1.5fr repeat(2, 1fr);
	}

	.footer-contact {
		grid-column: 2;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header,
	.admin-bar .site-header.is-scrolled {
		top: 46px;
	}
}

@media (max-width: 760px) {
	:root {
		--v-gutter: 20px;
		--v-section: 78px;
	}

	h1 {
		font-size: clamp(43px, 14vw, 65px);
	}

	h2 {
		font-size: clamp(37px, 11vw, 52px);
	}

	.announcement-bar__inner {
		display: flex;
		justify-content: center;
		min-height: 34px;
	}

	.announcement-bar__spacer,
	.announcement-bar__contact {
		display: none;
	}

	.announcement-bar p {
		font-size: 9px;
	}

	.site-header__inner {
		grid-template-columns: 48px 1fr auto;
		min-height: 70px;
	}

	.virtu-wordmark__mark {
		width: 29px;
		height: 29px;
		margin-right: 9px;
		font-size: 19px;
	}

	.virtu-wordmark__name {
		font-size: 20px;
	}

	.header-actions .header-search-toggle,
	.header-actions > a:not(.header-cart) {
		display: none;
	}

	.header-actions .header-icon {
		min-width: 40px;
		padding-right: 0;
		padding-left: 0;
	}

	.home-hero {
		min-height: 780px;
		padding-bottom: 0;
		background: var(--v-ivory);
	}

	.home-hero__image {
		inset: auto 0 0;
		height: 48%;
		background-position: 68% center;
	}

	.home-hero::before {
		inset: 0 0 auto;
		height: 59%;
		background: linear-gradient(180deg, var(--v-ivory) 0%, var(--v-ivory) 80%, rgba(244, 241, 234, 0) 100%);
	}

	.home-hero__inner {
		align-items: flex-start;
	}

	.home-hero__content {
		max-width: 100%;
		padding: 68px 0 0;
	}

	.home-hero h1 {
		margin-bottom: 20px;
		font-size: clamp(49px, 14.5vw, 69px);
	}

	.home-hero__content > p {
		max-width: 100%;
		margin-bottom: 28px;
		font-size: 16px;
	}

	.home-hero__buttons {
		gap: 21px;
	}

	.home-hero__caption {
		display: none;
	}

	.trust-strip__inner {
		grid-template-columns: 1fr;
		padding: 11px 0;
	}

	.trust-item,
	.trust-item:first-child,
	.trust-item:nth-child(3),
	.trust-item:last-child {
		min-height: 78px;
		padding: 14px 0;
		border-right: 0;
		border-bottom: 1px solid var(--v-line);
	}

	.trust-item:last-child {
		border-bottom: 0;
	}

	.section-heading--split {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.section-heading--row {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
	}

	.category-grid {
		display: flex;
		overflow-x: auto;
		gap: 12px;
		margin-right: calc(var(--v-gutter) * -1);
		padding-right: var(--v-gutter);
		scroll-snap-type: x mandatory;
	}

	.category-card,
	.category-card--1 {
		flex: 0 0 min(82vw, 355px);
		height: 470px;
		scroll-snap-align: start;
	}

	.category-card h3 {
		font-size: 32px;
	}

	.home-story__image {
		min-height: 430px;
	}

	.home-story__seal {
		right: 20px;
		width: 90px;
		height: 90px;
	}

	.home-story__content {
		padding-top: 86px;
		padding-bottom: 80px;
	}

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

	.home-story__values > div {
		display: grid;
		grid-template-columns: 38px 95px 1fr;
		align-items: start;
		gap: 10px;
		padding: 17px 0;
		border-bottom: 1px solid rgba(255, 255, 255, .13);
	}

	.home-story__values span,
	.home-story__values strong,
	.home-story__values p {
		margin: 0;
	}

	.home-story__values strong {
		font-size: 18px;
	}

	.journal-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.footer-newsletter__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-newsletter__action {
		padding: 0;
		border: 0;
	}

	.footer-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 45px 25px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-contact {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 24px 0;
		text-align: center;
	}

	.footer-legal {
		justify-content: center;
	}

	.footer-credit {
		text-align: center;
	}

	.page-heading {
		text-align: left;
	}

	.page-heading .virtu-breadcrumb,
	.article-header .virtu-breadcrumb {
		justify-content: flex-start;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	.article-header {
		text-align: left;
	}

	.article-header .post-meta {
		justify-content: flex-start;
	}

	.article-header h1 {
		font-size: clamp(43px, 13vw, 66px);
	}

	.entry-content .alignwide,
	.entry-content .alignfull {
		width: 100%;
		margin-left: 0;
		transform: none;
	}

	.post-navigation-wrap .nav-links {
		grid-template-columns: 1fr;
	}

	.post-navigation-wrap .nav-next {
		text-align: left;
	}

	.virtu-search-form .search-field {
		font-size: 22px;
	}

	.search-overlay {
		padding-top: 45px;
	}

	.search-overlay__top {
		margin-bottom: 28px;
	}

	.search-overlay .virtu-search-form button {
		width: 40px;
		overflow: hidden;
		padding-left: 0;
		color: transparent;
	}

	.search-overlay .virtu-search-form button svg {
		color: var(--v-ink);
	}
}

@media (max-width: 480px) {
	.home-hero {
		min-height: 790px;
	}

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

	.v-button {
		width: 100%;
	}

	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-brand,
	.footer-contact {
		grid-column: auto;
	}

	.footer-legal {
		align-items: center;
		flex-direction: column;
		gap: 8px;
	}

	.mobile-drawer__panel {
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
