:root {
  --bg: #090b0c;
  --surface: rgba(12, 14, 15, 0.82);
  --surface-border: rgba(215, 220, 222, 0.22);
  --text: #f3f3f0;
  --muted: #c4c5c4;
  --gold: #e7b955;
  --gold-light: #ffd985;
  --gold-deep: #bd8328;
  --shell: 65px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
}

button,
a,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #111;
  background: var(--gold-light);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: 100%;
  padding-inline: var(--shell);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  height: 911px;
  max-height: 1000px;
  overflow: hidden;
  background: #090b0c;
}

.hero__backdrop,
.hero__grain,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero__backdrop {
  z-index: -4;
  background-image: url("assets/keg-hero-background.png");
  background-image: image-set(
    url("assets/keg-hero-background.webp") type("image/webp"),
    url("assets/keg-hero-background.png") type("image/png")
  );
  background-position: center center;
  background-size: cover;
  transform: scale(1.008);
}

.hero::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 6, 7, 0.97) 0%, rgba(5, 7, 8, 0.87) 21%, rgba(5, 7, 8, 0.52) 41%, rgba(4, 6, 7, 0.05) 65%),
    linear-gradient(180deg, rgba(4, 6, 7, 0.5) 0%, transparent 27%, transparent 66%, rgba(4, 6, 7, 0.83) 100%);
}

.hero::after {
  z-index: 2;
  inset: auto 0 0;
  height: 185px;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 9, 0.58));
}

.hero__grain {
  z-index: -2;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  height: 108px;
  gap: 28px;
}

.brand {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1px 1fr;
  grid-template-rows: 42px 13px;
  width: 185px;
  color: var(--gold-light);
}

.brand__truck {
  grid-column: 1;
  grid-row: 1;
  width: 86px;
  height: 35px;
  align-self: center;
  fill: var(--gold);
  stroke: #101112;
  stroke-width: 2;
}

.brand__truck circle {
  fill: #111315;
  stroke: var(--gold);
}

.brand__rule {
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 43px;
  background: var(--gold);
}

.brand__word {
  grid-column: 3;
  grid-row: 1;
  padding-left: 11px;
  font-family: "Times New Roman", serif;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0.5px;
}

.brand__tag {
  grid-column: 1 / -1;
  align-self: end;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 2.1px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 2.8vw, 48px);
}

.nav__link {
  position: relative;
  padding: 27px 0 19px;
  color: #e4e4e2;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link--active {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.phone svg {
  width: 22px;
  flex: 0 0 auto;
  fill: var(--gold);
}

.phone__numbers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone__numbers a {
  transition: color 180ms ease;
}

.phone__numbers a:hover,
.phone__numbers a:focus-visible {
  color: var(--gold-light);
}

.header-cta {
  min-width: 177px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 13px;
  background: rgba(3, 5, 6, 0.52);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #0d0d0c;
  background: var(--gold);
  transform: translateY(-1px);
}

.language {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 50px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.language svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
}

.route-map {
  position: absolute;
  z-index: 3;
  top: 86px;
  right: 8.7%;
  width: min(51vw, 860px);
  height: 310px;
  color: var(--gold-light);
  opacity: 0.9;
  pointer-events: none;
}

.route-map__shape {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-lines {
  fill: none;
  stroke: rgba(199, 146, 51, 0.35);
  stroke-width: 0.8;
}

.route-glow {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.35;
  filter: drop-shadow(0 0 5px #e4ae4b);
}

.route-nodes circle {
  fill: #fff1b8;
  stroke: #d39531;
  stroke-width: 2;
}

.route-label {
  position: absolute;
  color: var(--gold-light);
  font-size: 19px;
  font-weight: 600;
  text-shadow: 0 0 14px #19130a;
}

.route-label--cis {
  top: 78px;
  left: 12.2%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.route-label--cis strong {
  font-size: 23px;
}

.route-label--cis span {
  color: rgba(239, 239, 229, 0.79);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}

.route-label--kazakhstan {
  top: 105px;
  left: 43.5%;
}

.route-label--china {
  top: 159px;
  left: 73.5%;
}

.hero-note {
  position: absolute;
  z-index: 4;
  top: 126px;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 280px;
  border-left: 1px solid rgba(231, 185, 85, 0.25);
  color: #d5bd8c;
  font-size: 12px;
  letter-spacing: 4px;
  line-height: 1.75;
}

.hero-note span {
  padding-left: 13px;
}

.hero-note i {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold-deep), rgba(231, 185, 85, 0));
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 49px;
}

.hero__copy {
  width: 680px;
}

.eyebrow {
  margin: 0 0 23px 2px;
  color: #d8d8d5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
}

h1 {
  margin: 0;
  color: #f5f4ef;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 4.55vw, 76px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 0.99;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
}

h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero__description {
  margin: 25px 0 29px 2px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.53;
}

.hero__buttons {
  display: flex;
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 32px;
  border-radius: 13px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--gold {
  width: 288px;
  border: 1px solid #efc463;
  background: linear-gradient(135deg, #ffdc86, #d99a36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 30px rgba(178, 116, 28, 0.15);
  color: #17140f;
}

.button--gold:hover,
.button--gold:focus-visible {
  background: linear-gradient(135deg, #ffe5a2, #ebb34d);
}

.button--outline {
  width: 320px;
  border: 1px solid var(--gold);
  background: rgba(5, 7, 8, 0.62);
  color: var(--gold-light);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(231, 185, 85, 0.13);
}

.features {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 48px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 118px;
  padding: 20px 23px;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 17, 18, 0.74), rgba(15, 16, 17, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 34px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(8px);
}

.feature-card__icon {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.feature-card h2 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.25;
}

.feature-card p {
  margin: 0;
  color: #b8b9b8;
  font-size: 14px;
  line-height: 1.4;
}

.inquiry {
  width: min(92vw, 510px);
  padding: 42px;
  border: 1px solid rgba(231, 185, 85, 0.52);
  border-radius: 22px;
  color: var(--text);
  background: linear-gradient(145deg, #151718, #080a0b);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
}

.inquiry::backdrop {
  background: rgba(3, 4, 5, 0.8);
  backdrop-filter: blur(6px);
}

.inquiry__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 31px;
}

.inquiry__eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
}

.inquiry h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
}

.inquiry > p:not(.inquiry__eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.inquiry__form {
  display: grid;
  gap: 18px;
  margin-top: 25px;
}

.inquiry__form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.inquiry__form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #454747;
  border-radius: 9px;
  outline: none;
  color: white;
  background: #0c0e0f;
}

.inquiry__form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(231, 185, 85, 0.14);
}

.inquiry__form .button {
  width: 100%;
  margin-top: 4px;
}

.inquiry__success {
  color: var(--gold-light);
  text-align: center;
}

main {
  overflow: hidden;
  background: #090b0c;
}

.section {
  position: relative;
  padding-block: 128px;
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
}

.section-title {
  margin: 0;
  color: #f3f1eb;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 600;
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.section-title em {
  color: var(--gold-light);
  font-style: normal;
}

.section-lead {
  max-width: 610px;
  margin: 34px 0 18px;
  color: #e9e7e1;
  font-size: 20px;
  line-height: 1.6;
}

.section-text {
  max-width: 630px;
  margin: 0;
  color: #9e9f9e;
  font-size: 16px;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 6px;
  color: #9d9e9d;
  font-size: 16px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(231, 185, 85, .55);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 24px;
  border-color: var(--gold-light);
}

.text-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(231, 185, 85, .17);
  border-bottom: 1px solid rgba(231, 185, 85, .17);
  background: #0d0f10;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr 72px 1.3fr 72px 1fr;
  align-items: center;
  min-height: 102px;
  gap: 32px;
}

.trust-strip p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: #e1dfda;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  white-space: nowrap;
}

.trust-strip p span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}

.trust-strip svg {
  width: 72px;
  fill: none;
  stroke: rgba(231, 185, 85, .42);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(60px, 7vw, 130px);
  background:
    radial-gradient(circle at 74% 44%, rgba(197, 139, 44, .09), transparent 34%),
    #090b0c;
}

.about-section::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(231, 185, 85, .12), transparent);
  content: "";
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 38px 0 30px;
  padding: 0;
  list-style: none;
}

.about-points > li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-top: 19px;
  border-top: 1px solid rgba(231, 185, 85, .28);
}

.about-points span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
}

.about-points p {
  margin: 0;
  color: #979998;
  font-size: 13px;
  line-height: 1.55;
}

.about-points strong {
  display: block;
  margin-bottom: 7px;
  color: #f0efeb;
  font-size: 14px;
}

.warehouse-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
}

.warehouse-visual::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -24px;
  width: 72%;
  height: 76%;
  border-top: 1px solid rgba(231, 185, 85, .38);
  border-right: 1px solid rgba(231, 185, 85, .38);
  content: "";
}

.warehouse-visual picture,
.warehouse-visual img {
  display: block;
  width: 100%;
  height: 620px;
}

.warehouse-visual img {
  border-radius: 2px;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(.8) contrast(1.05);
}

.warehouse-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 53%, rgba(5, 7, 8, .72));
  content: "";
  pointer-events: none;
}

.warehouse-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 17px;
  width: min(88%, 440px);
  min-height: 106px;
  padding: 24px 30px;
  border-top: 1px solid rgba(231, 185, 85, .5);
  background: rgba(8, 10, 11, .88);
  backdrop-filter: blur(8px);
}

.warehouse-visual figcaption svg {
  width: 45px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.warehouse-visual figcaption span {
  color: #a7a9a8;
  font-size: 13px;
  line-height: 1.5;
}

.warehouse-visual figcaption strong {
  display: block;
  margin-bottom: 5px;
  color: #f2f0eb;
  font-size: 15px;
}

.services-section {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(circle at 12% 22%, rgba(218, 158, 57, .08), transparent 26%),
    #101213;
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .11);
  border-left: 1px solid rgba(255, 255, 255, .11);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 362px;
  padding: 34px 34px 31px;
  border-right: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(8, 10, 11, .35);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 1;
  background: rgba(231, 185, 85, .075);
  transform: translateY(-3px);
}

.service-card--accent {
  background: linear-gradient(145deg, rgba(231, 185, 85, .15), rgba(8, 10, 11, .46));
}

.service-card__number {
  position: absolute;
  top: 32px;
  right: 34px;
  color: rgba(231, 185, 85, .55);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}

.service-card__icon {
  width: 55px;
  height: 55px;
  margin-bottom: 52px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 0 0 16px;
  color: #f3f1ec;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.service-card p {
  max-width: 355px;
  margin: 0;
  color: #999b9a;
  font-size: 14px;
  line-height: 1.7;
}

.service-card__line {
  width: 48px;
  height: 1px;
  margin-top: auto;
  background: var(--gold);
  transition: width 220ms ease;
}

.service-card:hover .service-card__line {
  width: 100%;
}

.route-section {
  min-height: 960px;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(191, 129, 37, .13), transparent 43%),
    #090b0c;
}

.route-section::before {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 45h90M45 0v90' stroke='%23d29a3b' stroke-opacity='.08' fill='none'/%3E%3C/svg%3E");
  content: "";
}

.route-section__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.route-section__head .section-kicker {
  grid-column: 1 / -1;
}

.route-section__head > p:last-child {
  justify-self: end;
  max-width: 430px;
  margin: 0 0 7px;
  color: #9c9d9c;
  line-height: 1.7;
}

.journey {
  position: relative;
  z-index: 1;
  height: 500px;
  margin-top: 48px;
}

.journey__line {
  position: absolute;
  top: 74px;
  left: 2%;
  width: 96%;
  height: 160px;
  overflow: visible;
}

.journey__line path {
  fill: none;
  stroke: rgba(241, 190, 87, .9);
  stroke-width: 1.5;
}

.journey__line circle {
  fill: #fff0ba;
  stroke: #c88c2e;
  stroke-width: 2;
}

.journey-stop {
  position: absolute;
  width: 29%;
  max-width: 370px;
  padding: 27px 29px 30px;
  border: 1px solid rgba(231, 185, 85, .25);
  background: rgba(10, 12, 13, .89);
  backdrop-filter: blur(7px);
}

.journey-stop--china { top: 224px; left: 1%; }
.journey-stop--kz { top: 197px; left: 50%; transform: translateX(-50%); }
.journey-stop--cis { top: 224px; right: 1%; }

.journey-stop > span {
  position: absolute;
  top: 26px;
  right: 27px;
  color: rgba(231, 185, 85, .55);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.journey-stop__label {
  margin: 0 0 10px !important;
  color: var(--gold) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 3px;
}

.journey-stop h3 {
  margin: 0 0 15px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
}

.journey-stop p {
  margin: 0;
  color: #979998;
  font-size: 13px;
  line-height: 1.65;
}

.route-tags {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.route-tags li {
  padding: 11px 19px;
  border: 1px solid rgba(231, 185, 85, .23);
  border-radius: 999px;
  color: #c3c3bf;
  font-size: 12px;
}

.process-section {
  background: #111314;
}

.process-section .section-heading {
  align-items: end;
}

.process-section .section-heading .text-link {
  justify-self: end;
  margin-bottom: 4px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(231, 185, 85, .32);
  list-style: none;
}

.process-list li {
  min-height: 280px;
  padding: 29px 25px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.process-list li:not(:first-child) {
  padding-left: 25px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  display: block;
  margin-bottom: 76px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.process-list h3 {
  margin: 0 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: #939594;
  font-size: 13px;
  line-height: 1.65;
}

.assurance-section {
  padding-block: 96px;
  background: #090b0c;
}

.assurance-card {
  display: grid;
  grid-template-columns: 150px minmax(350px, .9fr) minmax(350px, .7fr);
  align-items: center;
  gap: 46px;
  min-height: 315px;
  padding: 55px 65px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(255, 227, 157, .97), rgba(213, 155, 58, .96)),
    var(--gold);
  color: #15130f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .26);
}

.assurance-card__mark {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(27, 21, 11, .35);
  border-radius: 50%;
}

.assurance-card__mark svg {
  width: 65px;
  fill: none;
  stroke: #15130f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.assurance-card .section-kicker {
  margin-bottom: 15px;
  color: rgba(35, 28, 14, .66);
}

.assurance-card .section-title,
.assurance-card .section-title em {
  color: #15130f;
  font-size: clamp(36px, 3.1vw, 50px);
}

.assurance-card > p {
  margin: 0;
  color: rgba(28, 24, 16, .76);
  font-size: 15px;
  line-height: 1.75;
}

.quote-section {
  padding-top: 70px;
  background: #090b0c;
}

.quote-panel {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
  padding: 74px;
  overflow: hidden;
  border: 1px solid rgba(231, 185, 85, .22);
  background:
    radial-gradient(circle at 5% 15%, rgba(231, 185, 85, .14), transparent 31%),
    linear-gradient(145deg, #111415, #080a0b);
}

.quote-panel::before {
  position: absolute;
  right: -140px;
  bottom: -270px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(231, 185, 85, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(231, 185, 85, .025), 0 0 0 160px rgba(231, 185, 85, .018);
  content: "";
}

.quote-panel > * {
  position: relative;
  z-index: 1;
}

.quote-panel__copy > p:not(.section-kicker) {
  max-width: 470px;
  margin: 26px 0 39px;
  color: #a1a3a2;
  line-height: 1.7;
}

.quote-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.quote-phone {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  color: var(--gold-light);
  font-size: 21px;
  font-weight: 700;
}

.quote-phone svg {
  width: 25px;
  fill: var(--gold);
}

.quote-phone--second {
  min-height: 30px;
  margin-left: 38px;
}

.quote-email {
  margin-left: 38px;
  color: #c9c9c4;
  font-size: 15px;
  transition: color 180ms ease;
}

.quote-email:hover,
.quote-email:focus-visible {
  color: var(--gold-light);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
}

.form-row {
  display: grid;
  align-content: start;
  gap: 9px;
}

.form-row--wide {
  grid-column: 1 / -1;
}

.form-row label {
  color: #c8c8c4;
  font-size: 12px;
  font-weight: 600;
}

.form-row > input {
  width: 100%;
  height: 57px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  outline: 0;
  color: #f4f3ef;
  background: rgba(1, 2, 3, .44);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row > input::placeholder {
  color: #6f7271;
}

.form-row > input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(231, 185, 85, .1);
}

.quote-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.consent {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 11px !important;
  color: #8f9291 !important;
  cursor: pointer;
  font-weight: 400 !important;
}

.consent input {
  width: 19px;
  height: 19px;
  accent-color: var(--gold-deep);
}

.quote-form__bottom .button {
  width: 260px;
  flex: 0 0 auto;
}

.quote-form__success {
  min-height: 20px;
  color: var(--gold-light);
  font-size: 13px;
  text-align: right;
}

.faq-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 110px;
  background: #090b0c;
}

.faq-section__heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 20px 58px 20px 0;
  color: #ecebe6;
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 19px;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 0 30px;
  padding-right: 60px;
  color: #989a99;
  font-size: 14px;
  line-height: 1.75;
}

.footer {
  border-top: 1px solid rgba(231, 185, 85, .19);
  background: #050708;
}

.footer__top {
  display: grid;
  grid-template-columns: .6fr 1fr .65fr;
  align-items: start;
  gap: 90px;
  padding-top: 76px;
  padding-bottom: 74px;
}

.brand--footer {
  transform: scale(1.08);
  transform-origin: left top;
}

.footer__statement p {
  margin: -8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(33px, 3vw, 48px);
  line-height: 1.13;
}

.footer__statement em {
  color: var(--gold-light);
  font-style: normal;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__contact > span {
  margin-bottom: 13px;
  color: #777a78;
  font-size: 9px;
  letter-spacing: 3px;
}

.footer__phone {
  margin-bottom: 7px;
  color: #f1efea;
  font-size: 21px;
  font-weight: 700;
}

.footer__phone--second {
  margin-bottom: 22px;
}

.footer__email {
  margin-bottom: 24px;
  color: #aaa;
  font-size: 14px;
  transition: color 180ms ease;
}

.footer__email:hover,
.footer__email:focus-visible {
  color: var(--gold-light);
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #686b69;
  font-size: 11px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1400px) {
  :root { --shell: 40px; }
  .header { grid-template-columns: 205px 1fr auto; gap: 17px; }
  .nav { gap: 22px; }
  .nav__link { font-size: 13px; }
  .header__actions { gap: 17px; }
  .phone { font-size: 13px; }
  .header-cta { min-width: 150px; }
  .route-map { right: 4%; }
  .features { gap: 18px; }
  .feature-card { grid-template-columns: 58px 1fr; padding: 18px; }
  .feature-card__icon { width: 48px; height: 48px; }
  .feature-card h2 { font-size: 14px; }
  .feature-card p { font-size: 12px; }
}

@media (max-width: 1120px) {
  .header { grid-template-columns: 200px 1fr auto; }
  .nav { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid rgba(231, 185, 85, 0.4);
    border-radius: 10px;
    background: rgba(5, 7, 8, 0.68);
    cursor: pointer;
  }
  .menu-toggle span { display: block; height: 1px; background: var(--gold-light); }
  .nav.is-open {
    position: absolute;
    top: 86px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 250px;
    padding: 14px 24px;
    border: 1px solid rgba(231, 185, 85, 0.35);
    border-radius: 14px;
    background: rgba(9, 11, 12, 0.97);
  }
  .nav.is-open .nav__link { padding: 15px 0; }
  .nav.is-open .nav__link::after { bottom: 7px; }
  .route-map { right: -8%; width: 63vw; opacity: .72; }
  .hero-note { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); bottom: 32px; }
  .feature-card { min-height: 92px; }
}

@media (max-width: 760px) {
  :root { --shell: 20px; }
  .hero {
    height: auto;
    max-height: none;
    min-height: 100svh;
    overflow: hidden;
    padding-bottom: 24px;
  }
  .hero__backdrop {
    height: 720px;
    background-position: 60% top;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(4, 6, 7, .91), rgba(4, 6, 7, .35)),
      linear-gradient(180deg, rgba(4, 6, 7, .22) 0%, rgba(4, 6, 7, .34) 36%, #090b0c 71%);
  }
  .header {
    grid-template-columns: 1fr auto;
    height: 88px;
    padding-top: 5px;
  }
  .brand { transform: scale(.84); transform-origin: left center; }
  .header__actions { display: none; }
  .nav.is-open { top: 78px; right: 20px; }
  .route-map { display: none; }
  .hero__content { padding-top: 65px; }
  .hero__copy { width: 100%; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: 3px; }
  h1 { font-size: clamp(34px, 9.2vw, 42px); line-height: 1.04; letter-spacing: -1px; }
  .hero__description { margin-top: 22px; font-size: 15px; }
  .desktop-break { display: none; }
  .hero__buttons { flex-direction: column; gap: 12px; }
  .button, .button--gold, .button--outline { width: 100%; height: 58px; }
  .features {
    position: relative;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 50px;
  }
  .feature-card { min-height: 94px; border-radius: 15px; }
  .feature-card h2 { font-size: 15px; }
  .feature-card p { font-size: 13px; }
  .inquiry { padding: 38px 24px 28px; }
}

@media (max-width: 1200px) {
  .section { padding-block: 100px; }
  .about-section { grid-template-columns: .9fr 1.1fr; gap: 58px; }
  .warehouse-visual,
  .warehouse-visual picture,
  .warehouse-visual img { height: 560px; min-height: 560px; }
  .service-card { min-height: 330px; padding: 29px; }
  .service-card__icon { margin-bottom: 40px; }
  .assurance-card { grid-template-columns: 115px 1fr 1fr; padding: 46px; gap: 30px; }
  .assurance-card__mark { width: 105px; height: 105px; }
  .quote-panel { gap: 52px; padding: 56px; }
  .faq-section { gap: 65px; }
}

@media (max-width: 980px) {
  .trust-strip__inner { grid-template-columns: 1fr 38px 1.2fr 38px 1fr; gap: 13px; }
  .trust-strip svg { width: 38px; }
  .trust-strip p { gap: 9px; font-size: 11px; }
  .about-section { grid-template-columns: 1fr; }
  .about-section::before { display: none; }
  .warehouse-visual { width: 82%; margin-left: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .route-section { min-height: 900px; }
  .journey-stop { width: 31%; padding: 23px; }
  .journey-stop h3 { font-size: 27px; }
  .process-list { grid-template-columns: repeat(2, 1fr); border-left: 1px solid rgba(255,255,255,.1); }
  .process-list li { min-height: 230px; padding: 28px !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-list li:nth-child(2n) { border-right: 0; }
  .process-list li > span { margin-bottom: 48px; }
  .assurance-card { grid-template-columns: 100px 1fr; }
  .assurance-card > p { grid-column: 2; }
  .quote-panel { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; }
  .faq-section__heading { position: static; }
  .footer__top { grid-template-columns: .55fr 1fr; }
  .footer__contact { grid-column: 2; }
}

@media (max-width: 680px) {
  .section { padding-block: 78px; }
  .section-title { font-size: clamp(36px, 10.6vw, 46px); letter-spacing: -1px; }
  .section-lead { margin-top: 26px; font-size: 17px; }
  .section-text { font-size: 15px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .trust-strip__inner { grid-template-columns: 1fr; gap: 0; padding-block: 18px; }
  .trust-strip p { min-height: 42px; font-size: 12px; }
  .trust-strip svg { display: none; }
  .about-points { grid-template-columns: 1fr; }
  .warehouse-visual { width: 100%; min-height: 450px; }
  .warehouse-visual picture,
  .warehouse-visual img { height: 450px; min-height: 450px; }
  .warehouse-visual::before { top: -12px; right: -12px; }
  .warehouse-visual figcaption { width: 93%; min-height: 90px; padding: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .route-section { min-height: 0; }
  .route-section__head { grid-template-columns: 1fr; }
  .route-section__head > p:last-child { justify-self: start; margin-top: 25px; }
  .journey { height: auto; margin-top: 60px; padding-left: 29px; }
  .journey::before { position: absolute; top: 4px; bottom: 4px; left: 8px; width: 1px; background: linear-gradient(var(--gold), rgba(231,185,85,.15)); content: ""; }
  .journey__line { display: none; }
  .journey-stop { position: relative; top: auto; right: auto; left: auto; width: 100%; max-width: none; margin-bottom: 16px; transform: none; }
  .journey-stop::before { position: absolute; top: 35px; left: -27px; width: 9px; height: 9px; border: 2px solid var(--gold-deep); border-radius: 50%; background: #fff0ba; box-shadow: 0 0 12px var(--gold); content: ""; }
  .route-tags { justify-content: flex-start; margin-top: 36px; }
  .process-section .section-heading .text-link { justify-self: start; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; display: grid; grid-template-columns: 52px 1fr; gap: 14px; border-right: 0; }
  .process-list li > span { margin: 0; }
  .assurance-section { padding-block: 50px; }
  .assurance-card { grid-template-columns: 1fr; padding: 35px 26px; }
  .assurance-card__mark { width: 86px; height: 86px; }
  .assurance-card > p { grid-column: 1; }
  .quote-section { padding-top: 48px; }
  .quote-panel { padding: 37px 22px; gap: 48px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-row--wide { grid-column: 1; }
  .quote-form__bottom { align-items: stretch; flex-direction: column; }
  .quote-form__bottom .button { width: 100%; }
  .faq-section { gap: 42px; }
  .faq-list summary { min-height: 84px; padding-right: 42px; font-size: 18px; }
  .faq-list details p { padding-right: 22px; }
  .footer__top { grid-template-columns: 1fr; gap: 50px; }
  .brand--footer { transform: none; }
  .footer__contact { grid-column: 1; }
  .footer__bottom { grid-template-columns: 1fr auto; gap: 12px; padding-block: 22px; }
  .footer__bottom p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
