:root {
  --es-ivory: #fafaf8;
  --es-pearl: #f3f5f6;
  --es-mist: #e9edf0;
  --es-line: #e2e7eb;
  --es-plat: #c7d0d8;
  --es-slate: #5b6672;
  --es-steel: #2e4a5e;
  --es-steel-2: #3d5f7a;
  --es-ink: #12161c;
  --es-ink-2: #1c232c;
  --es-dark: #0c0f13;
  --es-dark-2: #131a21;
  --es-white: #ffffff;
  --es-danger: #b3402f;
  --es-font-display: "Playfair Display", Georgia, serif;
  --es-font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --es-font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --es-radius: 22px;
  --es-radius-lg: 30px;
  --es-shadow: 0 24px 60px -24px rgba(12, 15, 19, 0.22);
  --es-shadow-sm: 0 12px 30px -14px rgba(12, 15, 19, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--es-ivory);
  color: var(--es-ink);
}

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

.es-container {
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.es-section {
  position: relative;
  padding-block: clamp(64px, 9vw, 128px);
}

.es-section--tight {
  padding-block: clamp(44px, 6vw, 84px);
}

.es-dark {
  background: var(--es-dark);
  color: #eef1f4;
}

.es-dark .es-kicker,
.es-dark .es-lead,
.es-dark p {
  color: #aeb9c2;
}

.es-dark .es-h1,
.es-dark .es-h2,
.es-dark .es-h3,
.es-dark h1,
.es-dark h2,
.es-dark h3 {
  color: #f4f6f8;
}

.es-pearl-bg {
  background: var(--es-pearl);
}

.bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.es-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--es-font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--es-steel);
  font-weight: 500;
}

.es-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.es-kicker--bare::before {
  display: none;
}

.es-h1 {
  font-family: var(--es-font-display);
  font-size: clamp(34px, 7vw, 44px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}

.es-h2 {
  font-family: var(--es-font-display);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.es-h3 {
  font-family: var(--es-font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  font-weight: 500;
  margin: 0;
}

.es-h4 {
  font-family: var(--es-font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  margin: 0;
}

.es-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--es-slate);
  margin: 0;
}

.es-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--es-slate);
}

.es-mono {
  font-family: var(--es-font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--es-slate);
}

.es-serif-i {
  font-family: var(--es-font-display);
  font-style: italic;
  font-weight: 400;
}

.es-num {
  font-family: var(--es-font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--es-ink);
}

.es-dark .es-num {
  color: #f4f6f8;
}

.es-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 30px;
  border-radius: 999px;
  border: 1px solid var(--es-ink);
  background: transparent;
  color: var(--es-ink);
  font-family: var(--es-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  white-space: nowrap;
}

.es-btn:hover {
  transform: translateY(-2px);
}

.es-btn i {
  font-size: 12px;
}

.es-btn--solid {
  background: var(--es-ink);
  color: var(--es-white);
}

.es-btn--solid:hover {
  background: var(--es-steel);
  border-color: var(--es-steel);
}

.es-btn--line:hover {
  background: var(--es-ink);
  color: var(--es-white);
}

.es-btn--light {
  background: var(--es-white);
  border-color: var(--es-white);
  color: var(--es-ink);
}

.es-btn--light:hover {
  background: var(--es-plat);
  border-color: var(--es-plat);
}

.es-btn--ghostlight {
  border-color: rgba(255, 255, 255, 0.4);
  color: #eef1f4;
}

.es-btn--ghostlight:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

.es-btn--sm {
  padding: 12px 20px;
  font-size: 10.5px;
}

.es-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--es-line);
  border-radius: 999px;
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--es-slate);
  background: var(--es-white);
  white-space: nowrap;
}

.es-chip i {
  color: var(--es-steel);
  font-size: 11px;
}

.es-chip--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #d5dce2;
}

.es-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.es-card {
  background: var(--es-white);
  border: 1px solid var(--es-line);
  border-radius: var(--es-radius);
  padding: clamp(24px, 3vw, 40px);
}

.es-card--dark {
  background: var(--es-dark-2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8ecf0;
}

.es-card--shadow {
  box-shadow: var(--es-shadow-sm);
}

.es-imgcard {
  border-radius: var(--es-radius);
  overflow: hidden;
  position: relative;
}

.es-hero--page {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(120px, 16vh, 200px) clamp(56px, 8vh, 96px);
}

@media (max-width: 768px) {
  .es-hero--page {
    min-height: 56vh;
    padding-block: 100px 48px;
  }
}

.quote-xl {
  font-family: var(--es-font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: inherit;
}

.es-imgcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.es-frame {
  border-radius: var(--es-radius-lg);
  overflow: hidden;
}

.es-tag {
  font-family: var(--es-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--es-steel);
  border: 1px solid rgba(46, 74, 94, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.es-hr {
  border: 0;
  border-top: 1px solid var(--es-line);
}

.topbar {
  background: var(--es-dark);
  color: #aeb9c2;
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 9px;
}

.topbar a {
  color: #d5dce2;
  text-decoration: none;
  transition: color 0.25s;
}

.topbar a:hover {
  color: #ffffff;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  font-size: 10px;
  color: var(--es-plat);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar {
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--es-line);
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled .navbar {
  box-shadow: 0 10px 40px -18px rgba(12, 15, 19, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--es-ink);
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-name {
  font-family: var(--es-font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-sub {
  font-family: var(--es-font-mono);
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--es-slate);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--es-ink-2);
  text-decoration: none;
  padding-block: 6px;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--es-steel);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--es-steel);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--es-line);
  border-radius: 12px;
  background: var(--es-white);
  color: var(--es-ink);
  font-size: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.burger--static {
  display: inline-flex;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(16px);
  padding: 28px 24px 40px;
  transform: translateY(-102%);
  transition: transform 0.45s cubic-bezier(0.22, 0.9, 0.28, 1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid var(--es-line);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--es-font-display);
  font-size: clamp(22px, 5.6vw, 30px);
  color: var(--es-ink);
  text-decoration: none;
}

.mobile-nav a i {
  font-size: 13px;
  color: var(--es-steel);
}

.mobile-contacts {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  font-family: var(--es-font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--es-slate);
}

.mobile-contacts a {
  color: var(--es-ink);
  text-decoration: none;
}

.hero-split {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
  padding-top: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(110px, 12vw, 150px);
}

.hero-media {
  position: relative;
  border-radius: var(--es-radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.hero-media .float-chip {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--es-ink);
  box-shadow: var(--es-shadow-sm);
}

.float-chip img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: cover;
}

.booking-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(24px, 4vw, 48px);
  width: min(1120px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid var(--es-line);
  border-radius: 20px;
  box-shadow: var(--es-shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  z-index: 20;
}

.booking-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--es-line);
}

.booking-cell label {
  display: block;
  font-family: var(--es-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--es-slate);
  margin-bottom: 6px;
}

.booking-cell .val {
  font-family: var(--es-font-display);
  font-size: 18px;
  color: var(--es-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-cell .val i {
  font-size: 12px;
  color: var(--es-steel);
}

.booking-go {
  display: flex;
  align-items: center;
  padding: 12px;
}

.xslide {
  position: absolute;
  inset: 0;
}

.xslide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center;
}

.xslide-item.is-active {
  opacity: 1;
}

.xslide-dots {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
}

.xslide-dots button {
  width: 26px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.xslide-dots button.is-active {
  background: #ffffff;
}

.hero-frame {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-frame-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(40px, 6vw, 90px) clamp(20px, 4vw, 60px);
}

.hero-frame-border {
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--es-radius-lg);
  z-index: 1;
  pointer-events: none;
}

.hero-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-height: 74vh;
}

.hero-col {
  position: relative;
  border-radius: var(--es-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(22px, 3vw, 40px);
  color: #f4f6f8;
  transition: transform 0.5s ease;
  text-decoration: none;
}

.hero-col:hover {
  transform: translateY(-6px);
}

.hero-col-body {
  position: relative;
  z-index: 2;
}

.season-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.season-tabs button {
  border: 0;
  background: transparent;
  color: #dfe5ea;
  font-family: var(--es-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.3s,
    color 0.3s;
}

.season-tabs button.is-active {
  background: #ffffff;
  color: var(--es-ink);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 14px;
}

.bento-cell {
  border-radius: var(--es-radius-lg);
  padding: clamp(22px, 2.6vw, 36px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  border: 1px solid var(--es-line);
  background: var(--es-white);
}

.bento-cell--wide {
  grid-column: span 2;
}

.bento-cell--tall {
  grid-row: span 2;
}

.bento-cell--dark {
  background: var(--es-dark-2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8ecf0;
}

.bento-cell--photo {
  color: #f4f6f8;
  border: 0;
}

.car-wrap {
  position: relative;
}

.car-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.car-track::-webkit-scrollbar {
  display: none;
}

.car-card {
  flex: 0 0 clamp(280px, 34vw, 460px);
  scroll-snap-align: center;
  border-radius: var(--es-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: #f4f6f8;
}

.car-card--sm {
  flex-basis: clamp(260px, 28vw, 360px);
  min-height: 400px;
}

.car-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 2.6vw, 36px);
  width: 100%;
}

.car-progress {
  height: 2px;
  background: var(--es-line);
  margin-top: 26px;
  position: relative;
  overflow: hidden;
}

.car-progress span {
  position: absolute;
  inset: 0;
  width: 20%;
  background: var(--es-steel);
  transition:
    transform 0.25s ease,
    width 0.25s ease;
  transform-origin: left;
}

.car-nav {
  display: flex;
  gap: 10px;
}

.car-nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--es-line);
  background: var(--es-white);
  color: var(--es-ink);
  cursor: pointer;
  font-size: 13px;
  transition:
    background 0.3s,
    color 0.3s;
}

.car-nav button:hover {
  background: var(--es-ink);
  color: #fff;
}

.accordion-item {
  border-bottom: 1px solid var(--es-line);
}

.accordion-item:first-child {
  border-top: 1px solid var(--es-line);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 26px 6px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--es-font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--es-ink);
  min-height: 48px;
}

.accordion-button .acc-ic {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--es-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--es-steel);
  transition:
    transform 0.35s,
    background 0.35s,
    color 0.35s;
}

.accordion-item.is-open .accordion-button .acc-ic {
  transform: rotate(180deg);
  background: var(--es-ink);
  color: #fff;
  border-color: var(--es-ink);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.accordion-body-inner {
  padding: 0 6px 30px;
  max-width: 760px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--es-line);
  padding-block: 20px;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: clamp(40px, 6vw, 90px);
  width: max-content;
  animation: es-marquee 34s linear infinite;
  align-items: center;
}

.marquee-track span {
  font-family: var(--es-font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--es-ink-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.marquee-track span i {
  font-size: 11px;
  color: var(--es-steel);
}

@keyframes es-marquee {
  to {
    transform: translateX(-50%);
  }
}

.compare {
  position: relative;
  border-radius: var(--es-radius-lg);
  overflow: hidden;
  min-height: 460px;
  --split: 50%;
}

.compare-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.compare-layer--top {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: #fff;
  z-index: 3;
  transform: translateX(-1px);
  pointer-events: none;
}

.compare-handle::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--es-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--es-shadow-sm);
}

.compare-tag {
  position: absolute;
  top: 20px;
  z-index: 3;
  font-family: var(--es-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(12, 15, 19, 0.65);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.stat-card {
  border: 1px solid var(--es-line);
  border-radius: var(--es-radius);
  padding: clamp(20px, 2.4vw, 32px);
  background: var(--es-white);
}

.stat-card--dark {
  background: var(--es-dark-2);
  border-color: rgba(255, 255, 255, 0.1);
}

.tariff {
  width: 100%;
  border-collapse: collapse;
}

.tariff th {
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--es-slate);
  font-weight: 500;
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--es-ink);
}

.tariff td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--es-line);
  font-size: 15px;
  vertical-align: middle;
}

.tariff tr:hover td {
  background: var(--es-pearl);
}

.tariff .price-cell {
  font-family: var(--es-font-display);
  font-size: 20px;
  white-space: nowrap;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--es-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--es-slate);
}

.input,
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--es-white);
  border: 1px solid var(--es-line);
  border-radius: 14px;
  padding: 15px 18px;
  font-size: 15px;
  font-family: var(--es-font-sans);
  color: var(--es-ink);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  appearance: none;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field select {
  background-image: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.input:focus {
  border-color: var(--es-steel);
  box-shadow: 0 0 0 4px rgba(46, 74, 94, 0.12);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--es-danger);
  box-shadow: 0 0 0 4px rgba(179, 64, 47, 0.1);
}

.field .err {
  font-size: 12.5px;
  color: var(--es-danger);
  display: none;
}

.field.has-error .err {
  display: block;
}

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--es-slate);
}

.check-field input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--es-steel);
  flex: none;
}

.check-field a {
  color: var(--es-steel);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: es-spin 0.8s linear infinite;
}

.is-loading .btn-loader {
  display: inline-block;
}

.is-loading .btn-label-i {
  display: none;
}

@keyframes es-spin {
  to {
    transform: rotate(360deg);
  }
}

.es-toast-wrap {
  position: fixed;
  z-index: 9999;
  top: 90px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.es-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--es-ink);
  color: #eef1f4;
  border-radius: 14px;
  padding: 15px 20px;
  font-size: 14px;
  box-shadow: var(--es-shadow);
  transform: translateX(120%);
  transition: transform 0.45s cubic-bezier(0.22, 0.9, 0.28, 1);
  max-width: 340px;
  pointer-events: auto;
}

.es-toast.is-in {
  transform: translateX(0);
}

.es-toast i {
  color: var(--es-plat);
}

.es-toast--err i {
  color: #e2a495;
}

.cookie-card {
  position: fixed;
  z-index: 9998;
  left: 20px;
  bottom: 20px;
  width: min(430px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid var(--es-line);
  border-radius: 22px;
  box-shadow: var(--es-shadow);
  padding: 26px;
  display: none;
}

.cookie-card.is-visible {
  display: block;
  animation: es-cookie-in 0.6s cubic-bezier(0.22, 0.9, 0.28, 1);
}

@keyframes es-cookie-in {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-footer {
  background: var(--es-dark);
  color: #aeb9c2;
  position: relative;
  overflow: hidden;
}

.site-footer .brand-name {
  color: #f4f6f8;
}

.site-footer .es-text {
  color: #98a4af;
}

.footer-legal--flat {
  border-top: 0;
  padding-top: 0;
}

.footer-mono {
  font-family: var(--es-font-display);
  font-size: clamp(90px, 16vw, 260px);
  line-height: 0.9;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
}

.footer-col h4 {
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #6f7b87;
  margin: 0 0 20px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: #c3ccd4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 14px;
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact a {
  color: #e8ecf0;
  text-decoration: none;
}

.footer-contact .fc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact .fc-item i {
  color: var(--es-plat);
  margin-top: 4px;
  font-size: 12px;
}

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

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c3ccd4;
  font-size: 14px;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  text-decoration: none;
}

.social-row a:hover {
  background: #fff;
  color: var(--es-ink);
  border-color: #fff;
}

.social-row--light a {
  border-color: var(--es-line-strong);
  color: var(--es-ink-soft);
}

.social-row--light a:hover {
  background: var(--es-ink);
  color: #fff;
  border-color: var(--es-ink);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f7b87;
}

.footer-legal a {
  color: #98a4af;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--es-plat) 0 5px,
    transparent 5px 11px
  );
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--es-steel);
  box-shadow: 0 0 0 5px var(--es-pearl);
}

.step-num {
  font-family: var(--es-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--es-steel);
}

.eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.eq-bars span {
  width: 3px;
  background: currentColor;
  border-radius: 2px;
  height: 30%;
}

.eq-bars.is-playing span {
  animation: es-eq 0.9s ease-in-out infinite alternate;
}

.eq-bars.is-playing span:nth-child(2) {
  animation-delay: 0.15s;
}

.eq-bars.is-playing span:nth-child(3) {
  animation-delay: 0.3s;
}

.eq-bars.is-playing span:nth-child(4) {
  animation-delay: 0.45s;
}

.eq-bars.is-playing span:nth-child(5) {
  animation-delay: 0.6s;
}

@keyframes es-eq {
  from {
    height: 22%;
  }
  to {
    height: 100%;
  }
}

.hotspot {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--es-ink);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: es-pulse 2.4s infinite;
  z-index: 3;
}

@keyframes es-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hotspot .hs-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--es-ink);
  color: #eef1f4;
  font-size: 12px;
  font-family: var(--es-font-sans);
  letter-spacing: 0;
  text-transform: none;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.hotspot:hover .hs-tip,
.hotspot:focus .hs-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.month-scale {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}

.month-scale button {
  border: 1px solid var(--es-line);
  background: var(--es-white);
  border-radius: 12px;
  padding: 14px 4px;
  font-family: var(--es-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--es-slate);
  cursor: pointer;
  transition: all 0.25s;
}

.month-scale button:hover {
  border-color: var(--es-steel);
  color: var(--es-steel);
}

.month-scale button.is-active {
  background: var(--es-ink);
  border-color: var(--es-ink);
  color: #fff;
}

.tier-table {
  border: 1px solid var(--es-line);
  border-radius: var(--es-radius-lg);
  overflow: hidden;
  background: var(--es-white);
}

.tier-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: center;
}

.tier-row > div {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--es-line);
}

.tier-row:last-child > div {
  border-bottom: 0;
}

.tier-head > div {
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--es-slate);
  background: var(--es-pearl);
}

.tier-row .fa-check {
  color: var(--es-steel);
}

.tier-row .fa-minus {
  color: var(--es-plat);
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--es-white);
  border: 1px solid var(--es-line);
  border-radius: var(--es-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--es-ink);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--es-shadow-sm);
}

.post-card .post-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.post-card .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-card:hover .post-img img {
  transform: scale(1.05);
}

.post-card .post-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.svc-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--es-white);
  border: 1px solid var(--es-line);
  border-radius: var(--es-radius);
  padding: clamp(24px, 2.6vw, 34px);
  text-decoration: none;
  color: var(--es-ink);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--es-shadow-sm);
  border-color: var(--es-plat);
}

.svc-card .svc-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--es-pearl);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--es-steel);
  font-size: 18px;
}

.svc-card .svc-arrow {
  margin-top: auto;
  font-family: var(--es-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--es-steel);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pkg-card {
  border: 1px solid var(--es-line);
  border-radius: var(--es-radius-lg);
  padding: clamp(28px, 3vw, 44px);
  background: var(--es-white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.pkg-card--feat {
  background: var(--es-dark);
  color: #eef1f4;
  border-color: var(--es-dark);
}

.pkg-card--feat .es-lead,
.pkg-card--feat .pkg-list li {
  color: #aeb9c2;
}

.pkg-price {
  font-family: var(--es-font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1;
}

.pkg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.pkg-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--es-slate);
  align-items: flex-start;
}

.pkg-list li i {
  color: var(--es-steel);
  margin-top: 4px;
  font-size: 11px;
}

.pkg-card--feat .pkg-list li i {
  color: var(--es-plat);
}

.faq-search {
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 19px 24px 19px 58px;
  border-radius: 999px;
  border: 1px solid var(--es-line);
  font-size: 15.5px;
  font-family: var(--es-font-sans);
  background: var(--es-white);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.faq-search input:focus {
  border-color: var(--es-steel);
  box-shadow: 0 0 0 4px rgba(46, 74, 94, 0.12);
}

.faq-search > i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--es-steel);
  font-size: 15px;
}

.faq-empty {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--es-slate);
}

.layer-list {
  display: grid;
  gap: 0;
}

.layer-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--es-line);
}

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

.layer-item .li-depth {
  font-family: var(--es-font-mono);
  font-size: 11px;
  color: var(--es-steel);
  min-width: 64px;
}

.phone-frame {
  width: min(300px, 80%);
  aspect-ratio: 9 / 18.6;
  border-radius: 42px;
  border: 10px solid var(--es-ink);
  overflow: hidden;
  box-shadow: var(--es-shadow);
  transform: rotate(-4deg);
  margin-inline: auto;
  position: relative;
  background: var(--es-pearl);
}

.map-frame {
  border-radius: var(--es-radius-lg);
  overflow: hidden;
  border: 1px solid var(--es-line);
  min-height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.pano-360 {
  position: relative;
  border-radius: var(--es-radius-lg);
  overflow: hidden;
  min-height: clamp(380px, 56vw, 560px);
  cursor: grab;
}

.pano-360:active {
  cursor: grabbing;
}

.pano-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--es-ink);
  font-size: 20px;
  z-index: 3;
  animation: es-pulse 2.4s infinite;
}

.on-photo {
  color: #eef1f4;
}

.on-photo .es-h1,
.on-photo .es-h2,
.on-photo .es-h3,
.on-photo h1,
.on-photo h2,
.on-photo h3 {
  color: #f7f9fb;
}

.on-photo .es-lead,
.on-photo .es-text,
.on-photo p {
  color: #cfd6dd;
}

.on-photo .es-kicker {
  color: #dbe3e9;
}

.on-photo .es-mono {
  color: #aeb9c2;
}

.on-photo .es-tag {
  border-color: rgba(255, 255, 255, 0.35);
  color: #dbe3e9;
}

.car-card .es-text {
  color: #cfd6dd;
}

.es-accent {
  color: var(--es-steel);
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--es-pearl);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--es-steel);
  font-size: 18px;
  flex: none;
}

.es-dark .icon-tile,
.on-photo .icon-tile {
  background: rgba(255, 255, 255, 0.1);
  color: var(--es-plat);
}

.course-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: course;
}

.course-list li {
  counter-increment: course;
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--es-line);
  font-size: 15px;
}

.course-list li::before {
  content: counter(course, decimal-leading-zero);
  font-family: var(--es-font-mono);
  font-size: 11px;
  color: var(--es-steel);
  flex: none;
}

.course-list li:last-child {
  border-bottom: 0;
}

.es-dark .course-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--es-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--es-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.media-badge i {
  color: var(--es-steel);
  font-size: 11px;
}

.quote-mark {
  font-family: var(--es-font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--es-steel);
  display: block;
}

.divide-y-lines > * + * {
  border-top: 1px solid var(--es-line);
}

.anchor-target {
  scroll-margin-top: 140px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--es-slate);
  line-height: 1.6;
}

.check-list li i {
  color: var(--es-steel);
  margin-top: 5px;
  font-size: 12px;
}

.es-dark .check-list li {
  color: #aeb9c2;
}

.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--es-line);
  font-size: 14.5px;
}

.mini-list li:last-child {
  border-bottom: 0;
}

.mini-list li span:last-child {
  font-family: var(--es-font-mono);
  font-size: 12px;
  color: var(--es-steel);
  white-space: nowrap;
}

.es-dark .mini-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.es-dark .mini-list li span:last-child {
  color: var(--es-plat);
}

.wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wc-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--es-radius);
  padding: 22px;
}

.wc-item .wc-time {
  font-family: var(--es-font-display);
  font-size: clamp(26px, 2.8vw, 36px);
  color: #f4f6f8;
}

[data-aos] {
  pointer-events: auto;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: clamp(120px, 16vw, 140px);
  }
  .hero-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .hero-cols {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-col {
    min-height: 240px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tier-row {
    grid-template-columns: 1.1fr repeat(3, 0.9fr);
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .topbar .topbar-hide {
    display: none;
  }
  .booking-bar {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }
  .booking-cell:nth-child(3) {
    display: none;
  }
  .booking-cell {
    padding: 12px 16px;
  }
  .booking-cell .val {
    font-size: 15px;
  }
  .booking-go {
    grid-column: span 2;
    padding: 0 12px 12px;
  }
  .booking-go .es-btn {
    width: 100%;
    padding-block: 14px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-cell--wide,
  .bento-cell--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .month-scale {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .month-scale button {
    flex: 0 0 70px;
    scroll-snap-align: center;
  }
  .wc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .car-card {
    flex-basis: 82vw;
    min-height: 420px;
  }
  .tariff-wrap {
    overflow-x: auto;
  }
  .tariff {
    min-width: 640px;
  }
  .hero-frame-border {
    inset: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .compare {
    min-height: 320px;
  }
  .phone-frame {
    transform: none;
  }
  .season-tabs {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
  }
  .es-toast-wrap {
    top: auto;
    bottom: 96px;
    left: 16px;
    right: 16px;
    align-items: stretch;
  }
  .es-toast {
    max-width: none;
    transform: translateY(140%);
  }
  .es-toast.is-in {
    transform: translateY(0);
  }html,body{max-width:100%; overflow-x:hidden}
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .eq-bars.is-playing span,
  .hotspot,
  .pano-hint {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

.es-prose {
  max-width: 760px;
}

.es-prose h2 {
  font-family: var(--es-font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--es-ink);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}

.es-prose h2:first-child {
  margin-top: 0;
}

.es-prose h3 {
  font-family: var(--es-font-display);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 500;
  color: var(--es-ink);
  margin: 30px 0 10px;
}

.es-prose p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--es-ink-soft);
  margin-bottom: 16px;
}

.es-prose ul,
.es-prose ol {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.es-prose li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--es-ink-soft);
  padding-left: 24px;
  position: relative;
}

.es-prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--es-plat);
}

.es-prose ol {
  counter-reset: esprose;
}

.es-prose ol li {
  counter-increment: esprose;
}

.es-prose ol li::before {
  content: counter(esprose) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--es-font-mono);
  font-size: 12px;
  color: var(--es-plat-deep);
}

.es-prose a {
  color: var(--es-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--es-plat);
}

.es-prose a:hover {
  text-decoration-color: var(--es-ink);
}

.es-prose blockquote {
  border-left: 2px solid var(--es-plat);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
  font-family: var(--es-font-display);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  color: var(--es-ink);
  font-style: italic;
}

.es-prose strong {
  color: var(--es-ink);
  font-weight: 600;
}

.es-prose .byline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  padding-block: 18px;
  border-top: 1px solid var(--es-line);
  border-bottom: 1px solid var(--es-line);
  margin: 30px 0;
  font-family: var(--es-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--es-mute);
}

.es-prose figure {
  margin: 34px 0;
}

.es-prose figure img {
  width: 100%;
  border-radius: var(--es-radius);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.es-prose figcaption {
  font-family: var(--es-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--es-mute);
  margin-top: 12px;
}
