@charset "utf-8";

:root {
  --accent-dark: #284534;
  --bg-base: #F8F5F4;
  --bg-alt: #EDE8E2;
  --surface: #FFFFFF;
  --text: #2B2B28;
  --text-muted: #8A857E;
  --line: #DCD6CE;
  --watermark: #EFE9E3;

  --lat: "Roboto Condensed", "Arial Narrow", sans-serif;
  --body: "Noto Sans", "Helvetica Neue", sans-serif;

  --max: 1180px;
  --gutter: 20px;
  --pad-y: 64px;
}

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

body {
  margin: 0;
  background-color: var(--bg-base);
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  line-height: 2.1;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
iframe { border: 0; display: block; }

[hidden] { display: none !important; }

.l-inner {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.is_pc { display: none; }
.is_sp { display: block; }

/* shared type */

.c-label {
  font-family: var(--lat);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.c-h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 22px;
}

.c-body { font-size: 14px; line-height: 2.1; margin-bottom: 1.5em; }
.c-body:last-of-type { margin-bottom: 26px; }

.c-btn {
  display: inline-block;
  position: relative;
  min-width: 230px;
  padding: 14px 46px 14px 20px;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
  background-image: linear-gradient(to right, var(--accent-dark) 50%, transparent 50%);
  background-size: 202% 100%;
  background-position: right bottom;
  transition: background-position .35s ease, color .35s ease;
}
.c-btn:hover { background-position: left bottom; color: var(--surface); }
.c-btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: currentColor;
}
.c-btn__lat {
  display: block;
  font-family: var(--lat);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.c-btn__sub { display: block; font-size: 11px; line-height: 1.6; color: inherit; opacity: .75; }
.c-btn.is--light { border-color: var(--bg-base); color: var(--bg-base); background-image: linear-gradient(to right, var(--bg-base) 50%, transparent 50%); }
.c-btn.is--light:hover { color: var(--accent-dark); }
.c-btn.is--sm { min-width: 0; margin-top: 18px; }

.c-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.c-head__h {
  font-family: var(--lat);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.c-textbtn {
  font-family: var(--lat);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.c-textbtn.is_sp { display: inline-block; margin-top: 22px; }

/* preloader */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .5s ease;
}
.preloader.is--out { opacity: 0; pointer-events: none; }
.preloader__mark { font-family: var(--lat); font-size: 15px; font-weight: 700; letter-spacing: 0.28em; color: var(--accent-dark); }
.preloader__dots { display: flex; gap: 7px; }
.preloader__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-dark);
  animation: dot 1s infinite ease-in-out;
}
.preloader__dots span:last-child { animation-delay: .3s; }
@keyframes dot { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }

/* header */

.l-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background-color: var(--surface);
  border-bottom: 1px solid var(--line);
}
.l-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 10px var(--gutter);
}
.l-header__logo-mark {
  display: block;
  width: auto;
  height: 19px;
  filter: brightness(0);
  /* was type until we got the mark drawn, keep the same optical height */
}

.l-header__cta {
  display: none;
  background-color: var(--accent-dark);
  color: var(--surface);
  font-family: var(--lat);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 20px;
}
.l-header__cta:hover { opacity: .88; }

.l-header__burger {
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.l-header__burger span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background-color: var(--accent-dark);
  transition: transform .3s ease, top .3s ease;
}
.l-header__burger span:first-child { top: 17px; }
.l-header__burger span:last-child { top: 25px; }
.l-header__burger.is--open span:first-child { top: 21px; transform: rotate(45deg); }
.l-header__burger.is--open span:last-child { top: 21px; transform: rotate(-45deg); }

.g-nav__list { display: flex; gap: 26px; }
.g-nav a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding-bottom: 3px;
}
.g-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-dark);
  transition: width .3s ease;
}
.g-nav a:hover::after { width: 100%; }

/* overlay nav */

.overlay-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: var(--bg-base);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: navIn .22s ease-out both;
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.overlay-nav__in { padding: 76px var(--gutter) 48px; }
.overlay-nav__list li { border-bottom: 1px solid var(--line); }
.overlay-nav__list a {
  display: block;
  padding: 17px 2px;
  font-family: var(--lat);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
}
.overlay-nav__cta {
  display: block;
  margin-top: 26px;
  padding: 15px 20px;
  background-color: var(--accent-dark);
  color: var(--bg-base);
  font-family: var(--lat);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
}
.overlay-nav__tel {
  display: block;
  margin: 16px 0 22px;
  font-family: var(--lat);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.overlay-nav__legal { display: grid; gap: 6px; }
.overlay-nav__legal a { font-size: 12px; color: var(--text-muted); }

/* hero */

.p-hero { position: relative; background-color: var(--accent-dark); overflow: hidden; }
.p-hero__media { position: relative; }
.p-hero__img {
  display: block;
  width: 100%;
  height: 56vh;
  min-height: 350px;
  object-fit: cover;
  object-position: 50% 42%;
}
/* the darkening. two layers, a flat wash for legibility and a gradient so the
   facts strip at the bottom does not float on a bright patch of desk */
.p-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 35, 27, 0.78);
  background-image: linear-gradient(to bottom, rgba(16, 27, 20, 0.5) 0%, rgba(16, 27, 20, 0.3) 38%, rgba(14, 24, 18, 0.9) 100%);
}
.p-hero__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 8px;
  color: var(--bg-base);
}
.p-hero__in { width: 100%; }
.p-hero__h {
  margin-top: 12px;
  max-width: 17em;
  font-family: var(--lat);
  font-size: clamp(27px, 7.4vw, 40px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.005em;
}
.p-hero__lead {
  margin-top: 16px;
  max-width: 46em;
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(248, 245, 244, 0.85);
}
.p-hero__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 24px; }
.p-hero__btn {
  background-color: var(--bg-base);
  color: var(--accent-dark);
  font-family: var(--lat);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 30px;
}
.p-hero__alt {
  font-family: var(--lat);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--bg-base);
  border-bottom: 1px solid rgba(248, 245, 244, 0.55);
  padding-bottom: 3px;
}

/* feature */

.p-feature { padding: var(--pad-y) 0; }
.p-feature:nth-of-type(even) { background-color: var(--bg-alt); }
.p-feature__in { display: grid; gap: 30px; }
.p-feature__in > * { min-width: 0; }
.p-feature__media { position: relative; }
.p-feature__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; position: relative; z-index: 2; }
.decbox {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 62%;
  height: 58%;
  background-color: var(--bg-alt);
  z-index: 1;
}
.p-feature.is--rev .decbox { right: auto; left: -10px; background-color: var(--bg-base); }

/* marquee */

.p-marquee { overflow: hidden; padding: 8px 0 14px; }
.p-marquee__track {
  display: flex;
  width: max-content;
  animation: slide 34s linear infinite;
}
.p-marquee__track span {
  font-family: var(--lat);
  font-size: clamp(90px, 13vw, 200px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--watermark);
  white-space: nowrap;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .overlay-nav { animation: none; }
  .p-marquee__track { animation: none; }
  .preloader__dots span { animation: none; }
}

/* dark panel */

.p-panel { position: relative; padding: var(--pad-y) 0; }
.p-panel__bg { position: absolute; inset: 0; z-index: 0; }
.p-panel__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.p-panel__in { position: relative; z-index: 2; display: grid; gap: 26px; }
.p-panel__card {
  position: relative;
  background-color: var(--accent-dark);
  color: var(--bg-base);
  padding: 34px 22px 40px;
}
.p-panel__h {
  font-family: var(--lat);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.p-panel__body { font-size: 14px; line-height: 2.1; margin-bottom: 1.4em; }
.p-panel__ill { position: absolute; right: 14px; bottom: 10px; color: rgba(248, 245, 244, .18); }
.p-panel__photo { background-color: var(--surface); padding: 10px 10px 14px; transform: rotate(-2deg); box-shadow: 0 6px 22px rgba(43, 43, 40, .12); }
.p-panel__photo img { width: 100%; aspect-ratio: 62 / 46; object-fit: cover; }
.p-panel__script {
  margin: 24px 0 12px;
  font-family: var(--lat);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
}
.p-panel__rows dt { font-weight: 700; font-size: 14px; }
.p-panel__rows dd { font-family: var(--lat); font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

/* services */

/* notes */

/* info */

.p-info { background-color: var(--bg-alt); padding-bottom: var(--pad-y); }
.p-info__map iframe { display: block; width: 100%; height: 280px; filter: grayscale(1) contrast(1.03); }
.p-info__map .c-gate__ask { min-height: 280px; }
.p-info__row { display: grid; gap: 18px; margin-top: -30px; position: relative; z-index: 2; }
.p-info__col { min-width: 0; padding: 24px 20px 26px; }

.p-board { background-color: var(--accent-dark); color: var(--bg-base); }
.p-board__mark { font-family: var(--lat); font-size: 20px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 18px; }
.p-board__list dt {
  font-family: var(--lat);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 14px;
}
.p-board__list dt:first-of-type { margin-top: 0; }
.p-board__list dd { font-size: 13.5px; line-height: 1.9; }
.p-board__list a { border-bottom: 1px solid rgba(248, 245, 244, .4); }
.p-board__note { margin-top: 18px; font-size: 12px; line-height: 1.9; opacity: .8; }

.p-side { background-color: var(--surface); border: 1px solid var(--line); }
.p-side__h { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.p-side__list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.95;
  margin-bottom: 6px;
}
.p-side__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background-color: var(--accent-dark);
}
.p-side__note { margin-top: 14px; font-size: 12px; line-height: 1.9; color: var(--text-muted); }

.p-notice {
  margin-top: 26px;
  background-color: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 20px;
  text-align: center;
}
.p-notice p { font-size: 12.5px; line-height: 1.95; margin-bottom: 10px; }
.p-notice p:last-child { margin-bottom: 0; }
.p-notice a { color: var(--accent-dark); border-bottom: 1px solid var(--line); }

/* breadcrumb */

.p-crumb { padding: 18px 0 26px; }
.p-crumb__list { display: flex; gap: 8px; font-family: var(--lat); font-size: 11.5px; letter-spacing: 0.08em; color: var(--text-muted); }

/* footer */

.l-footer { background-color: var(--surface); border-top: 1px solid var(--line); padding: 34px 0 26px; }
.l-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-bottom: 20px; }
.l-footer__links a { font-size: 13px; }
.l-footer__legal { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.l-footer__legal a { font-size: 11.5px; color: var(--text-muted); }
.l-footer__base { padding: 22px 0 0; }
.l-footer__mark { display: block; width: auto; height: 22px; filter: brightness(0); }
.l-footer__desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.l-footer__nap { margin-top: 16px; font-size: 12.5px; line-height: 1.9; color: var(--text-muted); }
.l-footer__nap a { border-bottom: 1px solid var(--line); }
.l-footer__reg { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.l-footer__reg p { font-size: 11.5px; line-height: 1.85; color: var(--text-muted); }
.l-footer__reg b { color: var(--text); font-weight: 700; }
.l-footer__disclaimer { margin-top: 20px; font-size: 11.5px; line-height: 1.85; color: var(--text-muted); }
.l-footer__copy { margin-top: 14px; font-family: var(--lat); font-size: 11.5px; letter-spacing: 0.06em; color: var(--text-muted); }

.c-pagetop {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--accent-dark);
  color: var(--bg-base);
  display: grid;
  place-items: center;
}

/* pc */

/* ---- statutes ---- */

/* ---- week by week ---- */

.p-timeline {
  background-color: var(--accent-dark);
  color: var(--bg-base);
  padding: var(--pad-y) 0;
}
.p-timeline .c-head__h { color: var(--bg-base); }
.p-timeline .c-textbtn { color: var(--bg-base); border-color: rgba(248, 245, 244, 0.4); }
.p-timeline__lead {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 2.05;
  max-width: 60em;
  color: rgba(248, 245, 244, 0.82);
}
.p-timeline__list {
  margin-top: 34px;
  border-top: 1px solid rgba(248, 245, 244, 0.22);
}
.p-timeline__step {
  display: grid;
  gap: 4px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(248, 245, 244, 0.22);
  min-width: 0;
}
.p-timeline__when {
  font-family: var(--lat);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(248, 245, 244, 0.6);
}
.p-timeline__body h3 {
  font-family: var(--lat);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
.p-timeline__body p {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(248, 245, 244, 0.8);
}
.p-timeline__foot {
  margin-top: 26px;
  font-size: 12.5px;
  line-height: 1.95;
  color: rgba(248, 245, 244, 0.62);
  max-width: 56em;
}

/* ---- legal pages ---- */

.page-legal .preloader { display: none; }

.p-legal {
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 34px 0 30px;
}
.p-legal__eyebrow {
  font-family: var(--lat);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.p-legal__title {
  margin-top: 6px;
  font-family: var(--lat);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--accent-dark);
}
.p-legal__meta {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-muted);
}
.p-legal__wrap { padding: 34px 0 10px; }
.p-legal__doc { width: 100%; }
.p-legal__h {
  font-family: var(--lat);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--accent-dark);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.p-legal__h + .p-legal__p { margin-top: 14px; }
.p-legal__p {
  font-size: 13.5px;
  line-height: 2.05;
}
.p-legal__p + .p-legal__h { margin-top: 32px; }
.p-legal__p + .p-legal__p { margin-top: 13px; }
.p-legal__p.is--note {
  margin-top: 30px;
  padding: 16px 18px;
  background-color: var(--surface);
  border-left: 3px solid var(--accent-dark);
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text-muted);
}

.p-crumb__list li + li::before { content: "/"; padding-right: 8px; color: var(--line); }
.p-crumb__list a { color: var(--text-muted); }

/* ---- cookie notice ---- */

.c-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background-color: var(--accent-dark);
  color: var(--bg-base);
  border-top: 1px solid rgba(248, 245, 244, 0.2);
}
.c-cookiebar__in {
  display: grid;
  gap: 12px;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 16px var(--gutter) 18px;
}

/* ---- cases ---- */

.p-cases {
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--line);
}
.p-cases__lead {
  margin-top: 18px;
  max-width: 60em;
  font-size: 13.5px;
  line-height: 2.05;
}
.p-cases__grid { display: grid; gap: 22px; margin-top: 34px; }
.p-cases__item {
  min-width: 0;
  background-color: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 20px 24px;
}
.p-cases__item.is--lost { border-color: var(--text-muted); background-color: var(--bg-alt); }
.p-cases__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.p-cases__tag {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--surface);
  background-color: var(--accent-dark);
  padding: 4px 11px;
}
.is--lost .p-cases__tag { background-color: var(--text-muted); }
.p-cases__ref {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.09em;
  color: var(--text-muted);
}
.p-cases__h {
  margin-top: 16px;
  font-family: var(--lat);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--accent-dark);
}
.p-cases__rows { margin-top: 16px; }
.p-cases__rows dt {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
}
.p-cases__rows dt:first-child { margin-top: 0; }
.p-cases__rows dd {
  margin-left: 0;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.95;
}
.p-cases__rows dd + dd { margin-top: 9px; }
.p-cases__foot {
  margin-top: 30px;
  max-width: 58em;
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--text-muted);
}

/* ---- limitation ---- */

/* =========================================================
   inner pages. one block per page, mobile first, no max-width
   ========================================================= */

.page-inner .preloader { display: none; }

/* shared closing strip, used on four of the pages */

.w-cta { background-color: var(--accent-dark); color: var(--bg-base); padding: 40px 0 44px; }
.w-cta__in { display: grid; gap: 20px; }
.w-cta__h {
  font-family: var(--lat);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  max-width: 18em;
}
.w-cta__p { margin-top: 10px; font-size: 13px; line-height: 1.9; color: rgba(248, 245, 244, 0.78); max-width: 40em; }
.w-cta__btn {
  justify-self: start;
  background-color: var(--bg-base);
  color: var(--accent-dark);
  font-family: var(--lat);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 30px;
  white-space: nowrap;
}

/* grid children default to min-width auto, which lets a long word or a wide
   image shove a column sideways. this is the catch-all for the inner pages */
.w-open__text, .w-open__meta, .w-step__body, .v-top__panel, .v-split__media,
.k-row__media, .f-price__body, .f-head__in > * { min-width: 0; }

/* ---------- how it works ---------- */

.w-open { background-color: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 34px 0 36px; }
.w-open__in { display: grid; gap: 26px; }
.w-open__h {
  margin-top: 8px;
  font-family: var(--lat);
  font-size: clamp(26px, 6.6vw, 36px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--accent-dark);
}
.w-open__lead { margin-top: 16px; font-size: 13.5px; line-height: 2.05; max-width: 52em; }
.w-open__meta dl { border-top: 1px solid var(--line); }
.w-open__meta dt {
  padding-top: 12px;
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.w-open__meta dd {
  margin-left: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
}

.w-steps { padding: var(--pad-y) 0 10px; }
.w-step { display: grid; gap: 10px; padding: 26px 0; border-top: 1px solid var(--line); }
.w-step:first-child { border-top: 0; padding-top: 0; }
.w-step__num {
  font-family: var(--lat);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--line);
  letter-spacing: 0.02em;
}
.w-step__h {
  font-family: var(--lat);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--accent-dark);
}
.w-step__body p { margin-top: 12px; font-size: 13.5px; line-height: 2; }

.w-band { position: relative; margin-top: 26px; }
.w-band__img { display: block; width: 100%; height: 240px; object-fit: cover; }
.w-band__cap {
  background-color: var(--accent-dark);
  color: rgba(248, 245, 244, 0.82);
  font-size: 12px;
  line-height: 1.8;
  padding: 12px var(--gutter) 14px;
}

.w-need { background-color: var(--bg-alt); padding: var(--pad-y) 0; }
.w-need__h {
  font-family: var(--lat);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-dark);
}
.w-need__cols { display: grid; gap: 30px; margin-top: 28px; }
.w-need__col { min-width: 0; }
.w-need__label {
  font-family: var(--lat);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-dark);
}
.w-need__list { margin-top: 16px; }
.w-need__list li { position: relative; padding-left: 20px; font-size: 13.5px; line-height: 1.95; }
.w-need__list li + li { margin-top: 9px; }
.w-need__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-dark);
}
.w-need__list.is--no li::before { background-color: transparent; border: 1px solid var(--text-muted); }
.w-need__note { margin-top: 18px; font-size: 12.5px; line-height: 1.9; color: var(--text-muted); }

/* ---------- vehicles ---------- */

.v-top { background-color: var(--accent-dark); }
.v-top__media img { display: block; width: 100%; height: 260px; object-fit: cover; }
.v-top__panel { color: var(--bg-base); padding: 28px var(--gutter) 34px; }
.v-top__panel .c-label { color: rgba(248, 245, 244, 0.62); }
.v-top__h {
  margin-top: 10px;
  font-family: var(--lat);
  font-size: clamp(25px, 6.4vw, 34px);
  font-weight: 700;
  line-height: 1.26;
}
.v-top__lead { margin-top: 15px; font-size: 13.5px; line-height: 2; color: rgba(248, 245, 244, 0.84); }

.v-sit { padding: var(--pad-y) 0; }
.v-sit__grid { display: grid; gap: 24px; margin-top: 30px; }
.v-sit__item { min-width: 0; padding-top: 18px; border-top: 1px solid var(--line); }
.v-sit__ico { color: var(--accent-dark); line-height: 0; }
.v-sit__item h3 {
  margin-top: 12px;
  font-family: var(--lat);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent-dark);
}
.v-sit__item p { margin-top: 9px; font-size: 13px; line-height: 1.95; }

.v-split { background-color: var(--bg-alt); padding: var(--pad-y) 0; }
.v-split__in { display: grid; gap: 26px; }
.v-split__media img { display: block; width: 100%; height: auto; }
.v-split__text { min-width: 0; }
.v-split__h {
  margin-top: 8px;
  font-family: var(--lat);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-dark);
}
.v-split__text p { margin-top: 14px; font-size: 13.5px; line-height: 2; }
.v-split__note { padding: 14px 16px; background-color: var(--surface); border-left: 3px solid var(--accent-dark); font-size: 12.5px; }

.v-fees { padding: var(--pad-y) 0; }
.v-fees__h {
  font-family: var(--lat);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-dark);
}
.v-fees__rows { margin-top: 24px; border-top: 1px solid var(--line); }
.v-fees__row { display: grid; gap: 6px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.v-fees__name { font-family: var(--lat); font-size: 17px; font-weight: 700; line-height: 1.4; color: var(--accent-dark); }
.v-fees__desc { font-size: 13px; line-height: 1.9; }
.v-fees__price { font-family: var(--lat); font-size: 22px; font-weight: 700; color: var(--accent-dark); }
.v-fees__note { margin-top: 18px; font-size: 12.5px; line-height: 1.9; color: var(--text-muted); }
.v-fees__note a { border-bottom: 1px solid var(--line); }

.v-cant { background-color: var(--accent-dark); color: var(--bg-base); padding: var(--pad-y) 0; }
.v-cant__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; }
.v-cant__list { margin-top: 22px; }
.v-cant__list li {
  padding: 16px 0;
  border-top: 1px solid rgba(248, 245, 244, 0.22);
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(248, 245, 244, 0.82);
}
.v-cant__list b { color: var(--bg-base); }

/* ---------- consumer & civil ---------- */

.k-head { padding: 34px 0 30px; border-bottom: 1px solid var(--line); }
.k-head__h {
  margin-top: 8px;
  font-family: var(--lat);
  font-size: clamp(25px, 6.4vw, 35px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--accent-dark);
  max-width: 20em;
}
.k-head__lead { margin-top: 16px; font-size: 13.5px; line-height: 2.05; max-width: 56em; }

.k-rows { padding: 10px 0 0; }
.k-row { padding: var(--pad-y) 0; }
.k-row:nth-child(even) { background-color: var(--bg-alt); }
.k-row__in { display: grid; gap: 24px; }
.k-row__media img { display: block; width: 100%; height: 220px; object-fit: cover; }
.k-row__text { min-width: 0; }
.k-row__num {
  font-family: var(--lat);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}
.k-row__h {
  margin-top: 6px;
  font-family: var(--lat);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-dark);
}
.k-row__text p:not(.k-row__num) { margin-top: 13px; font-size: 13.5px; line-height: 2; }

.k-more { padding: var(--pad-y) 0; border-top: 1px solid var(--line); }
.k-more__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--accent-dark); }
.k-more__grid { display: grid; gap: 22px; margin-top: 26px; }
.k-more__item { min-width: 0; padding: 18px 18px 20px; background-color: var(--surface); border: 1px solid var(--line); }
.k-more__item h3 { font-family: var(--lat); font-size: 16px; font-weight: 700; line-height: 1.4; color: var(--accent-dark); }
.k-more__item p { margin-top: 8px; font-size: 12.5px; line-height: 1.9; }

.k-lines { background-color: var(--accent-dark); color: var(--bg-base); padding: var(--pad-y) 0; }
.k-lines__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; }
.k-lines__lead { margin-top: 14px; font-size: 13.5px; line-height: 2; color: rgba(248, 245, 244, 0.8); max-width: 50em; }
.k-lines__list { display: grid; gap: 0; margin-top: 24px; }
.k-lines__list li {
  padding: 13px 0 13px 22px;
  position: relative;
  border-bottom: 1px solid rgba(248, 245, 244, 0.2);
  font-size: 13px;
  line-height: 1.85;
  color: rgba(248, 245, 244, 0.84);
}
.k-lines__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 11px;
  height: 1px;
  background-color: rgba(248, 245, 244, 0.55);
}
.k-lines__foot { margin-top: 22px; font-size: 12.5px; line-height: 1.9; color: rgba(248, 245, 244, 0.66); max-width: 52em; }

/* ---------- fees ---------- */

.f-head { background-color: var(--bg-alt); padding: 34px 0 34px; border-bottom: 2px solid var(--accent-dark); }
.f-head__in { display: grid; gap: 18px; }
.f-head__h {
  margin-top: 8px;
  font-family: var(--lat);
  font-size: clamp(27px, 7vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--accent-dark);
}
.f-head__lead { font-size: 13.5px; line-height: 2.05; max-width: 44em; }

.f-price { padding: var(--pad-y) 0 0; }
.f-price__item { display: grid; gap: 12px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.f-price__item:first-child { padding-top: 0; }
.f-price__amt {
  font-family: var(--lat);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
}
.f-price__body h2 { font-family: var(--lat); font-size: 20px; font-weight: 700; line-height: 1.35; color: var(--accent-dark); }
.f-price__body p { margin-top: 11px; font-size: 13.5px; line-height: 2; }
.f-price__body ul { margin-top: 14px; }
.f-price__body li { position: relative; padding-left: 18px; font-size: 12.5px; line-height: 1.9; color: var(--text-muted); }
.f-price__body li + li { margin-top: 6px; }
.f-price__body li::before { content: ""; position: absolute; left: 0; top: 11px; width: 9px; height: 1px; background-color: var(--text-muted); }

.f-time { padding: var(--pad-y) 0; }
.f-time__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--accent-dark); }
.f-time__lead { margin-top: 12px; font-size: 13.5px; line-height: 2; max-width: 52em; }

.f-terms { background-color: var(--bg-alt); padding: var(--pad-y) 0; }
.f-terms__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--accent-dark); }
.f-terms__grid { display: grid; gap: 24px; margin-top: 26px; }
.f-terms__block { min-width: 0; padding-top: 15px; border-top: 2px solid var(--accent-dark); }
.f-terms__block h3 { font-family: var(--lat); font-size: 16px; font-weight: 700; line-height: 1.4; color: var(--accent-dark); }
.f-terms__block p { margin-top: 9px; font-size: 13px; line-height: 1.95; }
.f-terms__block a { border-bottom: 1px solid var(--line); }

/* ---------- about ---------- */

.a-top { position: relative; background-color: var(--accent-dark); }
.a-top__media img { display: block; width: 100%; height: 300px; object-fit: cover; opacity: .42; }
.a-top__cap { position: absolute; inset: auto 0 0 0; padding-bottom: 26px; color: var(--bg-base); }
.a-top__cap .c-label { color: rgba(248, 245, 244, 0.66); }
.a-top__h {
  margin-top: 10px;
  font-family: var(--lat);
  font-size: clamp(24px, 6.2vw, 34px);
  font-weight: 700;
  line-height: 1.26;
  max-width: 19em;
}

.a-story { padding: var(--pad-y) 0; }
.a-story__in { display: grid; gap: 34px; }
.a-story__main { min-width: 0; }
.a-story__drop { font-size: 15px; line-height: 2; color: var(--accent-dark); }
.a-story__main p + p { margin-top: 14px; }
.a-story__h {
  margin-top: 30px;
  font-family: var(--lat);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--accent-dark);
}
.a-story__h + p { margin-top: 13px; }
.a-story__main p { font-size: 13.5px; line-height: 2.05; }
.a-story__side { min-width: 0; background-color: var(--bg-alt); padding: 20px 20px 6px; }
.a-story__fact { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.a-story__fact:last-child { border-bottom: 0; }
.a-story__k {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.a-story__v { margin-top: 4px; font-size: 13.5px; line-height: 1.7; color: var(--accent-dark); }

.a-shots { padding-bottom: var(--pad-y); }
.a-shots__grid { display: grid; gap: 20px; }
.a-shots__fig { min-width: 0; margin: 0; }
.a-shots__fig img { display: block; width: 100%; height: 210px; object-fit: cover; }
.a-shots__fig figcaption { margin-top: 9px; font-size: 12px; line-height: 1.8; color: var(--text-muted); }

.a-people { background-color: var(--bg-alt); padding: var(--pad-y) 0; }
.a-people__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--accent-dark); }
.a-people__lead { margin-top: 13px; font-size: 13.5px; line-height: 2; max-width: 52em; }
.a-people__grid { display: grid; gap: 22px; margin-top: 28px; }
.a-people__card { min-width: 0; background-color: var(--surface); border: 1px solid var(--line); padding: 22px 20px 24px; }
.a-people__role {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.a-people__card h3 { margin-top: 6px; font-family: var(--lat); font-size: 19px; font-weight: 700; line-height: 1.35; color: var(--accent-dark); }
.a-people__card p:not(.a-people__role) { margin-top: 12px; font-size: 13px; line-height: 1.95; }

.a-stand { padding: var(--pad-y) 0; }
.a-stand__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--accent-dark); }
.a-stand__list { margin-top: 24px; counter-reset: stand; }
.a-stand__list li {
  counter-increment: stand;
  position: relative;
  padding: 20px 0 20px 42px;
  border-top: 1px solid var(--line);
}
.a-stand__list li::before {
  content: counter(stand, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--lat);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}
.a-stand__list h3 { font-family: var(--lat); font-size: 17px; font-weight: 700; line-height: 1.4; color: var(--accent-dark); }
.a-stand__list p { margin-top: 8px; font-size: 13px; line-height: 1.95; }
.a-stand__list a { border-bottom: 1px solid var(--line); }

/* ---------- contact ---------- */

.c-top { background-color: var(--bg-alt); padding: 32px 0 30px; }
.c-top__h {
  margin-top: 8px;
  font-family: var(--lat);
  font-size: clamp(26px, 6.8vw, 36px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--accent-dark);
}
.c-top__lead { margin-top: 15px; font-size: 13.5px; line-height: 2.05; max-width: 50em; }

.c-main { padding: var(--pad-y) 0; }
.c-main__in { display: grid; gap: 34px; }
.c-form { min-width: 0; }
.c-form__done {
  background-color: var(--accent-dark);
  color: var(--bg-base);
  padding: 24px 22px 26px;
}
.c-form__done h2 { font-family: var(--lat); font-size: 21px; font-weight: 700; line-height: 1.35; }
.c-form__done p { margin-top: 12px; font-size: 13.5px; line-height: 1.95; color: rgba(248, 245, 244, 0.85); }
.c-form__done a { color: var(--bg-base); border-bottom: 1px solid rgba(248, 245, 244, 0.5); }
.c-form__box { border: 1px solid var(--line); background-color: var(--surface); padding: 22px 20px 26px; }
.c-form__h { font-family: var(--lat); font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--accent-dark); }
.c-form__intro { margin-top: 10px; font-size: 12.5px; line-height: 1.9; color: var(--text-muted); }
.c-form__row { margin-top: 18px; }
.c-form__pair { display: grid; gap: 0; }
.c-form__lab {
  display: block;
  font-family: var(--lat);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.c-form__lab span { text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.c-form__in {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background-color: var(--bg-base);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.c-form__in:focus { outline: 2px solid var(--accent-dark); outline-offset: 1px; }
.c-form__in.is--bad { border-color: #A4483C; background-color: #FBF2F0; }
.c-form__area { resize: vertical; min-height: 150px; }
.c-form__hint { margin-top: 7px; font-size: 12px; line-height: 1.8; color: var(--text-muted); }
.c-form__check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin-top: 20px; align-items: start; }
.c-form__check input { margin-top: 5px; width: 16px; height: 16px; }
.c-form__check label { font-size: 12.5px; line-height: 1.8; color: var(--text-muted); }
.c-form__check a { color: var(--text); border-bottom: 1px solid var(--line); }
.c-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.c-form__err {
  margin-top: 16px;
  padding: 11px 13px;
  background-color: #FBF2F0;
  border-left: 3px solid #A4483C;
  font-size: 12.5px;
  line-height: 1.8;
  color: #7C382F;
}
.c-form__go {
  margin-top: 20px;
  background-color: var(--accent-dark);
  color: var(--surface);
  font-family: var(--lat);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 0;
  padding: 14px 32px;
  cursor: pointer;
}
.c-form__small { margin-top: 14px; font-size: 11.5px; line-height: 1.8; color: var(--text-muted); }

.c-aside { min-width: 0; }
.c-aside__block { padding: 18px 18px 20px; border: 1px solid var(--line); }
.c-aside__block + .c-aside__block { margin-top: -1px; }
.c-aside__block.is--dark { background-color: var(--accent-dark); border-color: var(--accent-dark); color: var(--bg-base); }
.c-aside__k {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.is--dark .c-aside__k { color: rgba(248, 245, 244, 0.6); }
.c-aside__big { margin-top: 6px; font-family: var(--lat); font-size: 25px; font-weight: 700; letter-spacing: 0.01em; }
.c-aside__big a { color: var(--bg-base); }
.c-aside__val { margin-top: 6px; font-size: 14px; line-height: 1.75; color: var(--accent-dark); }
.c-aside__val a { border-bottom: 1px solid var(--line); }
.c-aside__note { margin-top: 9px; font-size: 12px; line-height: 1.85; color: var(--text-muted); }
.is--dark .c-aside__note { color: rgba(248, 245, 244, 0.72); }

.c-map { background-color: var(--bg-alt); }
.c-map iframe { display: block; width: 100%; height: 320px; border: 0; }
.c-map__note {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 12px var(--gutter) 16px;
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

.c-before { padding: var(--pad-y) 0; }
.c-before__h { font-family: var(--lat); font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--accent-dark); }
.c-before__grid { display: grid; gap: 24px; margin-top: 26px; }
.c-before__item { min-width: 0; padding-top: 16px; border-top: 2px solid var(--accent-dark); }
.c-before__item h3 { font-family: var(--lat); font-size: 17px; font-weight: 700; line-height: 1.4; color: var(--accent-dark); }
.c-before__item p { margin-top: 10px; font-size: 13px; line-height: 1.95; }

/* ---- is this you ---- */

.p-help { background-color: var(--bg-alt); padding: var(--pad-y) 0; }
.p-help__lead { margin-top: 16px; max-width: 46em; font-size: 13.5px; line-height: 2; }
.p-help__grid { display: grid; gap: 20px; margin-top: 30px; }
.p-help__item {
  min-width: 0;
  background-color: var(--surface);
  border-left: 3px solid var(--accent-dark);
  padding: 20px 20px 22px;
}
.p-help__ico { color: var(--accent-dark); line-height: 0; margin-bottom: 12px; }
.p-help__q {
  font-family: var(--lat);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--accent-dark);
}
.p-help__a { margin-top: 11px; font-size: 13px; line-height: 1.95; }

/* ---- questions ---- */

.p-faq { padding: var(--pad-y) 0; border-top: 1px solid var(--line); }
.p-faq__grid { display: grid; gap: 0; margin-top: 26px; }
.p-faq__item { min-width: 0; padding: 20px 0; border-bottom: 1px solid var(--line); }
.p-faq__item:first-child { border-top: 1px solid var(--line); }
.p-faq__q {
  font-family: var(--lat);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent-dark);
}
.p-faq__a { margin-top: 10px; font-size: 13.5px; line-height: 2; }
.p-faq__a a { border-bottom: 1px solid var(--line); }

/* ---- price list. no photographs and nothing here is a link ---- */

.p-price { background-color: var(--bg-alt); padding: var(--pad-y) 0; }
.p-price__lead { margin-top: 16px; max-width: 48em; font-size: 13.5px; line-height: 2; }
.p-price__rows { margin-top: 28px; border-top: 2px solid var(--accent-dark); }
.p-price__row {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.p-price__amt {
  font-family: var(--lat);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--accent-dark);
}
.p-price__what { min-width: 0; }
.p-price__what h3 {
  font-family: var(--lat);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent-dark);
}
.p-price__what p { margin-top: 8px; font-size: 13px; line-height: 1.95; }
.p-price__out { margin-top: 24px; padding: 16px 18px; background-color: var(--surface); }
.p-price__outk {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.p-price__outv { margin-top: 8px; font-size: 12.5px; line-height: 1.9; }

/* timescales. plain grid rather than a table, because a table that has to
   change display mode between breakpoints breaks the first time somebody
   adds a rule with one more class in the selector */
.f-time__head { display: none; }
.f-time__rows { margin-top: 22px; border-top: 2px solid var(--accent-dark); }
.f-time__row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.f-time__stage {
  font-family: var(--lat);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent-dark);
}
.f-time__who, .f-time__span { margin-top: 8px; font-size: 13px; line-height: 1.7; }
.f-time__who span, .f-time__span span {
  display: block;
  font-family: var(--lat);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ---- consent bar and third party gates ---- */

.c-cookiebar__text p { font-size: 12.5px; line-height: 1.85; color: rgba(248, 245, 244, 0.84); }
.c-cookiebar__h {
  font-family: var(--lat);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--bg-base);
  margin-bottom: 6px;
}
.c-cookiebar__acts { display: flex; flex-wrap: wrap; gap: 10px; }
.c-cookiebar__btn {
  flex: 1 1 auto;
  background-color: transparent;
  color: var(--bg-base);
  font-family: var(--lat);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(248, 245, 244, 0.55);
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
}
.c-cookiebar__btn.is--yes {
  background-color: var(--bg-base);
  border-color: var(--bg-base);
  color: var(--accent-dark);
  font-weight: 700;
}

.c-gate { position: relative; background-color: var(--bg-alt); }
.c-gate iframe[data-src] { display: none; }
.c-gate__ask {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 320px;
  padding: 30px var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.c-gate.is--open .c-gate__ask { display: none; }
.c-gate__ask p { max-width: 40em; font-size: 12.5px; line-height: 1.85; color: var(--text-muted); }
.c-gate__btn {
  background-color: var(--accent-dark);
  color: var(--surface);
  font-family: var(--lat);
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 0;
  padding: 12px 26px;
  cursor: pointer;
}
.c-gate__alt { font-family: var(--lat); letter-spacing: 0.04em; color: var(--text) !important; }


/* ---- error page ---- */

.e-page { padding: 44px 0 var(--pad-y); }
.e-page__in { display: grid; gap: 34px; }
.e-page__main { min-width: 0; }
.e-page__code {
  font-family: var(--lat);
  font-size: 66px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--line);
}
.e-page__h {
  margin-top: 6px;
  font-family: var(--lat);
  font-size: clamp(26px, 6.6vw, 36px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--accent-dark);
}
.e-page__lead { margin-top: 15px; max-width: 46em; font-size: 13.5px; line-height: 2; }
.e-page__lead a { border-bottom: 1px solid var(--line); }
.e-page__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 26px; }
.e-page__btn {
  background-color: var(--accent-dark);
  color: var(--surface);
  font-family: var(--lat);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 28px;
}
.e-page__alt {
  font-family: var(--lat);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.e-page__nav { min-width: 0; background-color: var(--bg-alt); padding: 22px 20px 24px; }
.e-page__navk {
  font-family: var(--lat);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 20px;
}
.e-page__navk:first-child { margin-top: 0; }
.e-page__list { margin-top: 8px; }
.e-page__list li { border-bottom: 1px solid var(--line); }
.e-page__list li:last-child { border-bottom: 0; }
.e-page__list a { display: block; padding: 9px 0; font-size: 13px; line-height: 1.6; color: var(--accent-dark); }

.e-help { background-color: var(--accent-dark); color: var(--bg-base); padding: 34px 0 38px; }
.e-help__in { display: grid; gap: 16px; }
.e-help__h { font-family: var(--lat); font-size: 21px; font-weight: 700; line-height: 1.35; }
.e-help__p { margin-top: 10px; font-size: 13px; line-height: 1.9; color: rgba(248, 245, 244, 0.8); max-width: 42em; }
.e-help__tel {
  justify-self: start;
  font-family: var(--lat);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bg-base);
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  :root { --gutter: 40px; --pad-y: 120px; }

  body { font-size: 14px; }

  .is_pc { display: block; }
  .is_sp { display: none; }
  .g-nav.is_pc { display: flex; }

  .l-header__in { padding: 0 0 0 var(--gutter); }
  .l-header__logo { padding: 14px 0; }
  .l-header__cta { display: block; align-self: stretch; display: flex; align-items: center; padding: 0 26px; }
  .overlay-nav { display: none; }

  .p-hero__img { height: 62vh; max-height: 620px; }

  .p-hero__lead { font-size: 14.5px; margin-top: 20px; }

  .p-feature__in { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .p-feature.is--rev .p-feature__media { order: -1; }
  .p-feature__media img { aspect-ratio: 9 / 11; }
  .decbox { right: -40px; bottom: -30px; }
  .p-feature.is--rev .decbox { left: -40px; }

  .p-panel__in { grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
  .p-panel__card { padding: 54px 46px 60px; }

  .p-info__map iframe { height: 420px; }
  .p-info__map .c-gate__ask { min-height: 420px; }
  .p-info__row { grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: -70px; }
  .p-info__col { padding: 34px 30px 36px; }

  .l-footer { padding: 46px 0 34px; }
  .l-footer__links { display: flex; gap: 30px; }
  .l-footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }
  .l-footer__base { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
  .l-footer__nap { margin-top: 0; text-align: right; }
  .c-pagetop { right: 26px; bottom: 26px; }
}

@media screen and (min-width: 1200px) {
  .p-panel__card { padding: 66px 60px 72px; }
}

@media screen and (min-width: 768px) {
  .l-header__logo-mark { height: 22px; }
  .l-footer__mark { height: 26px; }

  .p-timeline__step { grid-template-columns: 170px 1fr; gap: 0 30px; padding: 26px 0; }
}

@media screen and (min-width: 768px) {
  .p-legal { padding: 52px 0 46px; }
  .p-legal__title { font-size: 42px; }
  .p-legal__wrap { padding: 48px 0 16px; }
  .p-legal__h { font-size: 21px; }
  .p-legal__p { font-size: 14px; }
  .p-legal__p + .p-legal__h { margin-top: 44px; }
  .p-legal__p.is--note { padding: 22px 26px; }
}

@media screen and (min-width: 768px) {
  .c-cookiebar__in { grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 18px var(--gutter); }
  .c-pagetop { bottom: 96px; }
}

@media screen and (min-width: 768px) {
  .p-cases__grid { grid-template-columns: 1fr 1fr; gap: 26px 30px; }
  .p-cases__item { padding: 28px 28px 30px; }
  .p-cases__h { font-size: 21px; }
  .p-cases__foot { margin-top: 40px; }
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 768px) {

  .w-cta { padding: 52px 0 56px; }
  .w-cta__in { grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
  .w-cta__h { font-size: 27px; }
  .w-cta__btn { justify-self: end; }

  .w-open { padding: 56px 0 58px; }
  .w-open__in { grid-template-columns: 1.65fr 1fr; gap: 46px; align-items: start; }
  .w-steps { padding-top: 62px; }
  .w-step { grid-template-columns: 130px 1fr; gap: 0 34px; padding: 34px 0; }
  .w-step__num { font-size: 56px; }
  .w-band__img { height: 400px; }
  .w-band__cap { position: absolute; right: 0; bottom: 0; max-width: 430px; padding: 16px 24px 18px; }
  .w-need__cols { grid-template-columns: 1fr 1fr; gap: 50px; }

  .v-top { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .v-top__media img { height: 100%; min-height: 440px; }
  .v-top__panel { display: flex; flex-direction: column; justify-content: center; padding: 54px 46px 58px; }
  .v-sit__grid { grid-template-columns: repeat(3, 1fr); gap: 34px 36px; }
  .v-split__in { grid-template-columns: 1fr 1.35fr; gap: 46px; align-items: start; }
  .v-fees__row { grid-template-columns: 1.1fr 2fr auto; gap: 26px; align-items: baseline; padding: 22px 0; }
  .v-fees__price { text-align: right; }
  .v-cant__list li { padding: 18px 0; }

  .k-head { padding: 56px 0 46px; }
  .k-row__in { grid-template-columns: 1fr 1.25fr; gap: 44px; align-items: center; }
  .k-row.is--flip .k-row__media { order: 2; }
  .k-row__media img { height: 380px; }
  .k-more__grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .k-more__item { padding: 24px 24px 26px; }
  .k-lines__list { grid-template-columns: 1fr 1fr; gap: 0 40px; }

  .f-head { padding: 56px 0 52px; }
  .f-head__in { grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: end; }
  .f-price__item { grid-template-columns: 150px 1fr; gap: 0 40px; padding: 34px 0; }
  .f-price__amt { font-size: 46px; }
  .f-terms__grid { grid-template-columns: repeat(3, 1fr); gap: 34px 36px; }

  .a-top__media img { height: 460px; }
  .a-top__cap { padding-bottom: 40px; }
  .a-story__in { grid-template-columns: 1.75fr 1fr; gap: 56px; align-items: start; }
  .a-story__drop { font-size: 16.5px; }
  .a-story__side { padding: 26px 26px 10px; }
  .a-shots__grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .a-shots__fig img { height: 260px; }
  .a-people__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .a-people__card { padding: 28px 28px 30px; }
  .a-stand__list li { padding: 24px 0 24px 56px; }

  .c-top { padding: 52px 0 46px; }
  .c-main__in { grid-template-columns: 1.55fr 1fr; gap: 46px; align-items: start; }
  .c-form__box { padding: 32px 32px 36px; }
  .c-form__pair { grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .c-form__done { padding: 32px 32px 34px; }
  .c-aside__block { padding: 22px 22px 24px; }
  .c-map iframe { height: 440px; }
  .c-before__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media screen and (min-width: 768px) {
  .p-help__grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .p-help__item { padding: 26px 26px 28px; }
  .p-faq__grid { grid-template-columns: 1fr 1fr; gap: 0 46px; }
  .p-faq__item:nth-child(2) { border-top: 1px solid var(--line); }
  .p-faq__item { padding: 24px 0; }
}

@media screen and (min-width: 768px) {
  .p-price__row { grid-template-columns: 150px 1fr; gap: 0 36px; align-items: baseline; padding: 26px 0; }
  .p-price__amt { font-size: 32px; }
  .p-price__what h3 { font-size: 19px; }
  .p-price__out { margin-top: 34px; padding: 22px 26px; }
}

@media screen and (min-width: 768px) {
  .f-time__head {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.3fr;
    gap: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-dark);
  }
  .f-time__head span {
    font-family: var(--lat);
    font-size: 11.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .f-time__rows { margin-top: 26px; border-top: 0; }
  .f-time__row {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.3fr;
    gap: 30px;
    align-items: baseline;
    padding: 15px 0;
  }
  .f-time__row > * { min-width: 0; }
  .f-time__stage { font-size: 14.5px; }
  .f-time__who, .f-time__span { margin-top: 0; font-size: 13.5px; }
  .f-time__who span, .f-time__span span { display: none; }
}

@media screen and (min-width: 768px) {
  .c-cookiebar__acts { flex-wrap: nowrap; }
  .c-cookiebar__btn { flex: 0 0 auto; }
  .c-gate__ask { min-height: 440px; gap: 16px; }
}

@media screen and (min-width: 768px) {
  .e-page { padding: 70px 0 var(--pad-y); }
  .e-page__in { grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
  .e-page__code { font-size: 96px; }
  .e-page__nav { padding: 28px 28px 30px; }
  .e-help__in { grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
  .e-help__tel { justify-self: end; font-size: 30px; }
}
