/*
Theme Name: Dao Wuxingbao
Theme URI: https://daowuxingbao.com
Author: Dao Wuxingbao Trading Co., Ltd
Description: Trilingual (RU / EN / MN) one-page B2B theme for a Qingdao-based sourcing and trading company serving Irkutsk, Ulan-Ude and Mongolia. Includes an RFQ form that stores every request in the WordPress admin, a route-corridor hero, and contact details editable from the Customizer. No page setup required — install, activate, done.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dao-wuxingbao
Tags: one-column, custom-logo, custom-colors, translation-ready
*/

/* ============================================================
   TOKENS
   Palette drawn from the freight world this business lives in:
   customs-stamp crimson, oxidised rail verdigris, Gobi ochre,
   concrete paper, petrol ink.
   ============================================================ */
:root {
	--ink:      #0F1C23;
	--ink-2:    #172A33;
	--ink-3:    #23383F;
	--paper:    #E9EAE5;
	--paper-2:  #F4F5F1;
	--white:    #FDFDFC;
	--rail:     #2E6360;
	--rail-lit: #4E9A93;
	--stamp:    #AE2230;
	--gobi:     #B8862B;
	--steel:    #6E7C81;

	--line:      rgba(15, 28, 35, .14);
	--line-soft: rgba(15, 28, 35, .08);
	--line-dark: rgba(233, 234, 229, .16);

	--display: "Bitter", Georgia, serif;
	--body:    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

	--wrap: 1180px;
	--gut:  clamp(20px, 5vw, 56px);
	--sec:  clamp(64px, 9vw, 128px);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: inherit; }

:focus-visible {
	outline: 2px solid var(--gobi);
	outline-offset: 3px;
	border-radius: 2px;
}

.dwx-skip {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--gobi); color: var(--ink);
	padding: 12px 18px; font: 600 14px/1 var(--body);
}
.dwx-skip:focus { left: 12px; top: 12px; }

.dwx-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }

/* The header is sticky, so anchor targets need clearance. */
#main, #corridor, #sourcing, #process, #about, #faq, #request { scroll-margin-top: 78px; }

/* Section scaffolding — one rule owns vertical rhythm, nothing else touches it. */
.dwx-s { padding-block: var(--sec); position: relative; }
.dwx-s--tight { padding-block: clamp(48px, 6vw, 84px); }
.dwx-s--dark { background: var(--ink); color: var(--paper-2); }
.dwx-s--pale { background: var(--paper-2); }
.dwx-s + .dwx-s:not(.dwx-s--dark):not(.dwx-s--pale) { border-top: 1px solid var(--line); }

/* ============================================================
   TYPE SCALE
   ============================================================ */
.dwx-eyebrow {
	font: 600 12px/1 var(--mono);
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--rail);
	display: flex; align-items: center; gap: 12px;
	margin: 0 0 20px;
}
.dwx-eyebrow::after {
	content: ""; flex: 1; height: 1px; max-width: 72px;
	background: currentColor; opacity: .4;
}
.dwx-s--dark .dwx-eyebrow { color: var(--gobi); }

h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; margin: 0; }

.dwx-h1 {
	font-size: clamp(38px, 6.6vw, 78px);
	line-height: 1.02;
	letter-spacing: -.035em;
}
.dwx-h2 {
	font-size: clamp(28px, 3.8vw, 46px);
	line-height: 1.1;
	max-width: 22ch;
	margin-bottom: 14px;
}
.dwx-h3 { font-size: clamp(19px, 2vw, 23px); line-height: 1.24; font-weight: 600; }

.dwx-lead {
	font-size: clamp(17px, 1.4vw, 19px);
	color: var(--steel);
	max-width: 62ch;
	margin: 0;
}
.dwx-s--dark .dwx-lead { color: rgba(233, 234, 229, .72); }

.dwx-data { font: 400 13px/1.4 var(--mono); letter-spacing: .02em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.dwx-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 15px 26px;
	font: 600 15px/1 var(--body);
	text-decoration: none;
	border: 1px solid transparent;
	background: var(--stamp);
	color: var(--white);
	cursor: pointer;
	transition: transform .16s ease, background .16s ease, color .16s ease;
}
.dwx-btn:hover { background: #92161F; transform: translateY(-1px); }
.dwx-btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.dwx-btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper-2); }
.dwx-s--dark .dwx-btn--ghost,
.dwx-hero .dwx-btn--ghost { border-color: var(--line-dark); color: var(--paper-2); }
.dwx-s--dark .dwx-btn--ghost:hover,
.dwx-hero .dwx-btn--ghost:hover { background: var(--paper-2); color: var(--ink); }
.dwx-btn--wide { width: 100%; justify-content: center; }
.dwx-btn__arw { font-family: var(--mono); font-size: 14px; opacity: .8; }

@media (prefers-reduced-motion: reduce) {
	.dwx-btn:hover { transform: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.dwx-head {
	position: sticky; top: 0; z-index: 60;
	background: var(--ink);
	color: var(--paper-2);
	border-bottom: 1px solid var(--line-dark);
}
.dwx-head__in {
	display: flex; align-items: center; gap: 20px;
	min-height: 66px;
	width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut);
}

.dwx-brand {
	display: flex; align-items: center; gap: 11px;
	text-decoration: none; color: inherit;
	margin-right: auto;
	flex-shrink: 0;
}
.dwx-brand__mark {
	width: 30px; height: 30px; flex: 0 0 30px;
	display: grid; place-items: center;
	background: var(--stamp);
	font: 800 14px/1 var(--display);
	color: var(--white);
	letter-spacing: -.04em;
}
.dwx-brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.dwx-brand__name { font: 800 16px/1.1 var(--display); letter-spacing: -.02em; }
.dwx-brand__sub { font: 400 10px/1.2 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--rail-lit); }

.dwx-nav { display: flex; align-items: center; gap: 26px; }
.dwx-nav a {
	font: 500 14.5px/1 var(--body);
	text-decoration: none;
	color: rgba(233, 234, 229, .8);
	padding: 6px 0;
	border-bottom: 1px solid transparent;
	transition: color .15s ease, border-color .15s ease;
	white-space: nowrap;
}
.dwx-nav a:hover { color: var(--white); border-bottom-color: var(--gobi); }

.dwx-langs { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.dwx-langs a {
	font: 600 11.5px/1 var(--mono);
	letter-spacing: .06em;
	text-decoration: none;
	padding: 7px 9px;
	color: rgba(233, 234, 229, .55);
	transition: color .15s ease, background .15s ease;
}
.dwx-langs a:hover { color: var(--white); }
.dwx-langs a[aria-current="true"] { color: var(--ink); background: var(--gobi); }

.dwx-head .dwx-btn { padding: 11px 18px; font-size: 14px; flex-shrink: 0; }

.dwx-burger {
	display: none;
	background: none; border: 1px solid var(--line-dark); color: var(--paper-2);
	font: 600 12px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase;
	padding: 10px 13px; cursor: pointer;
}

@media (max-width: 1080px) {
	.dwx-nav { display: none; }
	.dwx-burger { display: block; }
	.dwx-head--open .dwx-nav {
		display: flex; flex-direction: column; align-items: flex-start;
		gap: 2px;
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--ink-2);
		border-bottom: 1px solid var(--line-dark);
		padding: 14px var(--gut) 22px;
	}
	.dwx-head--open .dwx-nav a { font-size: 17px; padding: 10px 0; width: 100%; }
	.dwx-head__cta { display: none; }
}
@media (max-width: 560px) {
	.dwx-brand__sub { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.dwx-hero {
	background: var(--ink);
	color: var(--paper-2);
	padding-block: clamp(52px, 7vw, 92px) clamp(40px, 5vw, 64px);
	position: relative;
	overflow: hidden;
}
/* Faint survey grid — the graph paper a route gets drawn on. */
.dwx-hero::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		linear-gradient(var(--line-dark) 1px, transparent 1px),
		linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
	background-size: 56px 56px;
	opacity: .5;
	mask-image: radial-gradient(120% 90% at 78% 8%, #000 0%, transparent 72%);
	-webkit-mask-image: radial-gradient(120% 90% at 78% 8%, #000 0%, transparent 72%);
	pointer-events: none;
}
.dwx-hero > * { position: relative; z-index: 1; }

.dwx-hero__eyebrow {
	font: 600 12px/1 var(--mono);
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--gobi);
	margin: 0 0 24px;
}
.dwx-h1 .dwx-h1__mid { color: var(--rail-lit); display: block; }
.dwx-h1 .dwx-h1__end { display: block; }

.dwx-hero__sub {
	font-size: clamp(16.5px, 1.35vw, 19px);
	line-height: 1.6;
	color: rgba(233, 234, 229, .74);
	max-width: 56ch;
	margin: 26px 0 0;
}
.dwx-hero__acts {
	display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
	margin-top: 34px;
}
.dwx-hero__note {
	font: 400 13px/1.4 var(--mono);
	color: var(--rail-lit);
	display: flex; align-items: center; gap: 8px;
}
.dwx-hero__note::before {
	content: ""; width: 7px; height: 7px; flex: 0 0 7px;
	background: var(--rail-lit); border-radius: 50%;
}

/* ============================================================
   SIGNATURE — THE CORRIDOR
   A freight waybill rendered as a scale drawing: stations on a
   rail, kilometre marks below, border crossings stamped.
   ============================================================ */
.dwx-corridor {
	margin-top: clamp(48px, 6vw, 76px);
	border: 1px solid var(--line-dark);
	background: linear-gradient(180deg, rgba(46, 99, 96, .14), rgba(15, 28, 35, 0));
	padding: 22px clamp(16px, 3vw, 30px) 26px;
}
.dwx-corridor__top {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
	padding-bottom: 20px;
	border-bottom: 1px dashed var(--line-dark);
	margin-bottom: 34px;
}
.dwx-corridor__label {
	font: 600 11.5px/1 var(--mono);
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--paper-2);
}
.dwx-corridor__span { font: 400 12px/1 var(--mono); color: var(--rail-lit); letter-spacing: .05em; }

.dwx-rail {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	position: relative;
}
/* the line itself */
.dwx-rail::before {
	content: "";
	position: absolute;
	top: 7px; left: 6%; right: 6%;
	height: 2px;
	background: linear-gradient(90deg, var(--rail), var(--rail-lit) 45%, var(--gobi));
}

.dwx-stop { position: relative; padding-top: 26px; text-align: center; }
.dwx-stop__dot {
	position: absolute; top: 1px; left: 50%; transform: translateX(-50%);
	width: 15px; height: 15px;
	border: 2px solid var(--rail-lit);
	background: var(--ink);
	border-radius: 50%;
	z-index: 2;
}
.dwx-stop--border .dwx-stop__dot {
	border-radius: 1px;
	border-color: var(--stamp);
	background: var(--stamp);
	width: 11px; height: 11px; top: 3px;
	transform: translateX(-50%) rotate(45deg);
}
.dwx-stop--end .dwx-stop__dot { border-color: var(--gobi); background: var(--gobi); }

.dwx-stop__city {
	font: 600 14.5px/1.2 var(--body);
	color: var(--paper-2);
	display: block;
	overflow-wrap: break-word;
	hyphens: auto;
}
.dwx-stop__meta {
	font: 400 10.5px/1.35 var(--mono);
	color: rgba(233, 234, 229, .48);
	display: block; margin-top: 5px;
}
.dwx-stop__km {
	font: 600 11px/1 var(--mono);
	color: var(--rail-lit);
	display: block; margin-top: 9px;
	letter-spacing: .04em;
}
.dwx-stop--end .dwx-stop__city { color: var(--gobi); }
.dwx-stop--end .dwx-stop__km { color: var(--gobi); }

/* A pulse of light running the corridor, west to east. */
.dwx-rail__car {
	position: absolute; top: 7px; left: 6%;
	width: 96px; height: 2px;
	background: linear-gradient(90deg, transparent, rgba(233, 234, 229, .15) 40%, var(--white));
	transform: translateX(-100%);
	animation: dwx-run 9s linear infinite;
	z-index: 1;
	pointer-events: none;
}
@keyframes dwx-run {
	0%   { left: 6%;  opacity: 0; }
	10%  { opacity: 1; }
	80%  { opacity: 1; }
	100% { left: 94%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.dwx-rail__car { animation: none; opacity: 0; }
}

.dwx-corridor__foot {
	margin: 30px 0 0;
	padding-top: 18px;
	border-top: 1px dashed var(--line-dark);
	font: 400 12.5px/1.55 var(--mono);
	color: rgba(233, 234, 229, .5);
	max-width: 78ch;
}

/* Corridor stacks vertically on narrow screens: the rail becomes a column. */
@media (max-width: 900px) {
	.dwx-rail { grid-auto-flow: row; grid-auto-columns: auto; gap: 0; }
	.dwx-rail::before { top: 8px; bottom: 8px; left: 7px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--rail), var(--rail-lit) 45%, var(--gobi)); }
	.dwx-stop { padding: 11px 0 11px 34px; text-align: left; }
	.dwx-stop__dot { top: 15px; left: 0; transform: none; }
	.dwx-stop--border .dwx-stop__dot { left: 2px; transform: rotate(45deg); }
	.dwx-stop__meta { display: inline; margin-left: 8px; }
	.dwx-stop__km { display: inline-block; margin: 0 0 0 10px; }
	.dwx-stop__city { display: inline; }
	.dwx-rail__car { display: none; }
}

/* ============================================================
   WHY — three claims, each with a stamped index
   ============================================================ */
.dwx-grid3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
	gap: 1px;
	background: var(--line);
	margin-top: clamp(36px, 4vw, 56px);
	border: 1px solid var(--line);
}
.dwx-card { background: var(--paper-2); padding: clamp(26px, 3vw, 38px); }
.dwx-card h3 { margin-bottom: 12px; }
.dwx-card p { margin: 0; color: var(--steel); font-size: 16px; }
.dwx-card__rule {
	width: 34px; height: 3px; background: var(--stamp);
	margin-bottom: 22px;
}

/* ============================================================
   SOURCING
   ============================================================ */
.dwx-src {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 44px) clamp(24px, 4vw, 64px);
	margin-top: clamp(36px, 4vw, 54px);
}
@media (max-width: 680px) { .dwx-src { grid-template-columns: 1fr; } }
.dwx-src__item {
	border-top: 2px solid var(--ink);
	padding-top: 20px;
}
.dwx-src__item h3 { margin-bottom: 12px; }
.dwx-src__item p {
	margin: 0;
	font: 400 14.5px/1.75 var(--mono);
	color: var(--steel);
}

.dwx-open {
	margin-top: clamp(40px, 4.5vw, 62px);
	background: var(--ink);
	color: var(--paper-2);
	padding: clamp(28px, 4vw, 46px);
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: clamp(22px, 3vw, 44px);
}
.dwx-open h3 { color: var(--white); margin-bottom: 10px; }
.dwx-open p { margin: 0; color: rgba(233, 234, 229, .72); max-width: 56ch; font-size: 16px; }
@media (max-width: 720px) {
	.dwx-open { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS — a real sequence, so numbers earn their place
   ============================================================ */
.dwx-steps {
	list-style: none; margin: clamp(36px, 4vw, 56px) 0 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.dwx-step {
	background: var(--paper-2);
	padding: clamp(24px, 2.6vw, 34px);
	display: flex; gap: 18px;
}
.dwx-step__n {
	font: 800 15px/1 var(--mono);
	color: var(--stamp);
	letter-spacing: .04em;
	flex: 0 0 auto;
	padding-top: 4px;
}
.dwx-step h3 { margin-bottom: 9px; }
.dwx-step p { margin: 0; color: var(--steel); font-size: 15.5px; }

/* ============================================================
   ABOUT
   ============================================================ */
.dwx-about {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 76px);
	align-items: start;
	margin-top: clamp(30px, 3.5vw, 44px);
}
.dwx-about p { color: var(--steel); margin: 0 0 18px; }
.dwx-about p:last-child { margin-bottom: 0; }
.dwx-about strong { color: var(--ink); font-weight: 600; }

.dwx-facts { border-top: 2px solid var(--ink); }
.dwx-facts div {
	display: grid; grid-template-columns: 1fr; gap: 3px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
}
.dwx-facts dt, .dwx-facts__k {
	font: 600 11px/1.3 var(--mono);
	letter-spacing: .13em; text-transform: uppercase;
	color: var(--rail);
}
.dwx-facts__v { font-size: 15.5px; font-weight: 500; }
@media (max-width: 860px) {
	.dwx-about { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.dwx-faq { margin-top: clamp(30px, 3.5vw, 46px); border-top: 1px solid var(--line); }
.dwx-faq details { border-bottom: 1px solid var(--line); }
.dwx-faq summary {
	cursor: pointer;
	list-style: none;
	padding: 22px 44px 22px 0;
	font: 600 clamp(17px, 1.6vw, 20px)/1.35 var(--display);
	position: relative;
	transition: color .15s ease;
}
.dwx-faq summary::-webkit-details-marker { display: none; }
.dwx-faq summary:hover { color: var(--stamp); }
.dwx-faq summary::after {
	content: "+";
	position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
	font: 400 24px/1 var(--mono); color: var(--rail);
}
.dwx-faq details[open] summary::after { content: "–"; }
.dwx-faq__a {
	margin: 0; padding: 0 clamp(0px, 6vw, 96px) 26px 0;
	color: var(--steel);
	max-width: 72ch;
}

/* ============================================================
   RFQ FORM
   ============================================================ */
.dwx-rfq {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
	gap: clamp(32px, 5vw, 68px);
	align-items: start;
	margin-top: clamp(30px, 3.5vw, 46px);
}
@media (max-width: 900px) { .dwx-rfq { grid-template-columns: 1fr; } }

.dwx-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.dwx-f { display: flex; flex-direction: column; gap: 7px; }
.dwx-f--full { grid-column: 1 / -1; }
@media (max-width: 620px) {
	.dwx-form { grid-template-columns: 1fr; }
	.dwx-f { grid-column: 1 / -1; }
}

.dwx-f label {
	font: 600 11.5px/1.3 var(--mono);
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--rail);
	display: flex; gap: 7px; align-items: baseline;
}
.dwx-f label em {
	font: 400 10px/1 var(--mono);
	letter-spacing: .08em;
	color: var(--stamp);
	font-style: normal;
	text-transform: none;
}
.dwx-f input, .dwx-f select, .dwx-f textarea {
	font: 400 16px/1.5 var(--body);
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 0;
	padding: 13px 15px;
	width: 100%;
	transition: border-color .15s ease, box-shadow .15s ease;
	-webkit-appearance: none;
	appearance: none;
}
.dwx-f select {
	background-image: linear-gradient(45deg, transparent 50%, var(--rail) 50%), linear-gradient(135deg, var(--rail) 50%, transparent 50%);
	background-position: calc(100% - 20px) center, calc(100% - 14px) center;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 40px;
}
.dwx-f textarea { min-height: 112px; resize: vertical; }
.dwx-f input:focus, .dwx-f select:focus, .dwx-f textarea:focus {
	outline: none;
	border-color: var(--rail);
	box-shadow: 0 0 0 3px rgba(46, 99, 96, .14);
}
.dwx-f input::placeholder, .dwx-f textarea::placeholder { color: #9BA6AA; }

.dwx-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.dwx-form__foot { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.dwx-form__privacy { margin: 0; font-size: 13px; line-height: 1.6; color: var(--steel); max-width: 62ch; }

/* form result banners */
.dwx-note {
	grid-column: 1 / -1;
	border-left: 3px solid var(--rail);
	background: rgba(46, 99, 96, .08);
	padding: 18px 22px;
	margin-bottom: 6px;
}
.dwx-note--err { border-left-color: var(--stamp); background: rgba(174, 34, 48, .07); }
.dwx-note h3 { font-size: 18px; margin-bottom: 5px; }
.dwx-note p { margin: 0; font-size: 15px; color: var(--steel); }

/* direct contact rail */
.dwx-contact { border-top: 2px solid var(--ink); }
.dwx-contact h3 { padding: 18px 0 6px; font-size: 19px; }
.dwx-contact ul { list-style: none; margin: 0; padding: 0; }
.dwx-contact li { padding: 14px 0; border-top: 1px solid var(--line); }
.dwx-contact__k {
	display: block;
	font: 600 10.5px/1.3 var(--mono);
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--rail);
	margin-bottom: 4px;
}
.dwx-contact__v { font-size: 16px; font-weight: 500; text-decoration: none; word-break: break-word; }
a.dwx-contact__v { border-bottom: 1px solid var(--line); }
a.dwx-contact__v:hover { border-bottom-color: var(--stamp); color: var(--stamp); }

/* ============================================================
   FOOTER
   ============================================================ */
.dwx-foot {
	background: var(--ink);
	color: rgba(233, 234, 229, .62);
	padding-block: clamp(44px, 5vw, 68px) 30px;
	font-size: 14.5px;
}
.dwx-foot__top {
	display: flex; flex-wrap: wrap; gap: 26px 40px;
	justify-content: space-between; align-items: flex-start;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--line-dark);
}
.dwx-foot__tag { font: 400 13px/1.5 var(--mono); color: var(--rail-lit); margin: 8px 0 0; max-width: 40ch; }
.dwx-foot__cn { font-size: 15px; color: rgba(233, 234, 229, .8); margin: 0; }
.dwx-foot__nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.dwx-foot__nav a { text-decoration: none; color: inherit; }
.dwx-foot__nav a:hover { color: var(--white); }
.dwx-foot__bot {
	display: flex; flex-wrap: wrap; gap: 10px 28px;
	justify-content: space-between;
	padding-top: 22px;
	font: 400 12.5px/1.6 var(--mono);
	color: rgba(233, 234, 229, .45);
}
.dwx-foot__bot a { text-decoration: none; }
.dwx-foot__bot a:hover { color: var(--white); }

.dwx-foot .dwx-brand__name { color: var(--white); }

/* ============================================================
   PRINT — the corridor and the contacts are what people print
   ============================================================ */
@media print {
	.dwx-head, .dwx-hero__acts, .dwx-form, .dwx-burger { display: none !important; }
	body { background: #fff; color: #000; }
	.dwx-hero, .dwx-s--dark, .dwx-foot, .dwx-open { background: #fff !important; color: #000 !important; }
	.dwx-stop__city, .dwx-corridor__label { color: #000 !important; }
}

/* ============================================================
   VERY NARROW PHONES (≤400px) — the header row must still fit
   ============================================================ */
@media (max-width: 400px) {
	:root { --gut: 16px; }
	.dwx-head__in { gap: 10px; }
	.dwx-brand { gap: 8px; }
	.dwx-brand__name { font-size: 14.5px; }
	.dwx-brand__mark { width: 26px; height: 26px; flex-basis: 26px; font-size: 12px; }
	.dwx-langs a { padding: 6px 6px; font-size: 11px; }
	.dwx-burger { padding: 9px 10px; font-size: 11px; }
	.dwx-h1 { font-size: 33px; }
	.dwx-corridor { padding-inline: 14px; }
}
