:root {
  --bg: #0f090d;
  --surface: #f7f0eb;
  --surface-strong: #fffaf6;
  --ink: #211418;
  --muted: #6f6064;
  --line: #e7d8cf;
  --accent: #a0163d;
  --accent-dark: #7f1231;
  --gold: #c2a066;
  --sage: #657369;
  --green: #211218;
  --green-soft: #f1e6e2;
  --blue: #9f7944;
  --shadow: 0 24px 64px rgba(21, 13, 17, 0.14);
  --radius: 8px;
  --header-height: 76px;
  --display-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-family: Manrope, "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(223, 209, 202, 0.82);
  background: rgba(251, 247, 244, 0.92);
  box-shadow: 0 12px 32px rgba(20, 12, 17, 0.06);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  font-weight: 850;
  color: var(--green);
}

.brand span:last-child {
  font-family: var(--display-font);
  font-size: 19px;
  line-height: 1;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(194, 160, 102, 0.42);
  background: #211218;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #4a3e42;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a,
.site-footer a {
  position: relative;
}

.site-nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-footer a:hover::after,
.site-nav a:focus-visible::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(160, 22, 61, 0.24);
}

.nav-toggle {
  position: fixed;
  z-index: 40;
  top: 16px;
  right: 20px;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (min-width: 1021px) {
  .nav-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100svh - 18px));
  overflow: clip;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-escort-agency.png") center 28% / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 7, 10, 0.96) 0%, rgba(20, 9, 15, 0.82) 43%, rgba(31, 11, 20, 0.32) 74%, rgba(31, 11, 20, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 7, 10, 0.54), rgba(12, 7, 10, 0.08) 46%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(94px, 14vh, 156px) 0 clamp(58px, 8vh, 92px);
  align-self: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: #e7c383;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-family: var(--display-font);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 700;
}

h2 {
  max-width: 760px;
  color: var(--green);
  font-family: var(--display-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
}

h3 {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 23px;
  font-weight: 700;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(160, 22, 61, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button-outline {
  border-color: rgba(166, 25, 66, 0.24);
  background: #ffffff;
  color: var(--green);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--green);
  background: var(--green-soft);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.section {
  padding: clamp(66px, 9vw, 112px) 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(246, 238, 232, 0.98)),
    var(--surface);
}

.section-split {
  background:
    linear-gradient(180deg, #fffdfb 0%, #f8f1ec 100%);
}

.section-accent {
  background:
    linear-gradient(135deg, #f5e7ea 0%, #fbf5f0 52%, #eef2ee 100%);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 7, 12, 0.96) 0%, rgba(25, 10, 17, 0.9) 46%, rgba(16, 20, 16, 0.74) 100%),
    linear-gradient(180deg, rgba(15, 7, 12, 0.18) 0%, rgba(15, 7, 12, 0.44) 100%),
    url("assets/privacy-confidential-photo.jpg") 78% center / cover no-repeat;
  color: #eef7f3;
  isolation: isolate;
}

.hero::after,
.section-dark::before,
.section-form::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::after {
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(231, 195, 131, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 72%, rgba(231, 195, 131, 0.18) 0 1px, transparent 2px);
  background-size: 180px 180px, 260px 260px, 340px 340px;
  opacity: 0.52;
  animation: star-drift 24s linear infinite;
}

.section-dark::before,
.section-form::before {
  z-index: 0;
  background:
    radial-gradient(circle at 15% 22%, rgba(231, 195, 131, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 34%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 82%, rgba(160, 22, 61, 0.2) 0 1px, transparent 2px);
  background-size: 180px 180px, 240px 240px, 320px 320px;
  opacity: 0.7;
  animation: star-drift 28s linear infinite;
}

.section-dark > .container,
.section-form > .container {
  position: relative;
  z-index: 1;
}

@keyframes star-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 180px 120px, -240px 160px, 320px -180px;
  }
}

.section-dark h2 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.section-form {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 6, 10, 0.96) 0%, rgba(26, 8, 17, 0.9) 44%, rgba(16, 20, 16, 0.72) 100%),
    linear-gradient(180deg, rgba(18, 7, 13, 0.26) 0%, rgba(18, 7, 13, 0.58) 100%),
    url("assets/application-sensual-photo.jpg") 18% 48% / cover no-repeat;
  color: #ffffff;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 34px;
}

.section-lead {
  max-width: 840px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.section-heading::after {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 16px;
  background: var(--gold);
  content: "";
}

.benefit-grid,
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.direction-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.direction-card {
  display: grid;
  min-height: 268px;
  align-content: start;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background:
    radial-gradient(260px 130px at 100% 0%, rgba(194, 160, 102, 0.13), transparent 70%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(251, 246, 242, 0.98)),
    var(--surface-strong);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.direction-card:hover,
.direction-card:focus-within {
  border-color: rgba(160, 22, 61, 0.32);
  box-shadow: 0 30px 72px rgba(21, 13, 17, 0.17);
  transform: translateY(-2px);
}

.direction-card h3 {
  font-size: 28px;
  line-height: 1.08;
}

.direction-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.direction-card strong {
  display: block;
  color: var(--green);
  font-size: 14px;
  line-height: 1.45;
}

.card-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.text-link::after {
  content: " →";
}

.benefit-card,
.city-card,
.application-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(251, 246, 242, 0.98)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.benefit-card {
  min-height: 230px;
  padding: 28px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--accent);
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.benefit-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.split-layout,
.accent-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.section-intro,
.application-copy {
  display: grid;
  align-content: start;
  justify-items: start;
}

.section-intro {
  gap: 20px;
}

.application-copy {
  gap: 18px;
}

.privacy-layout {
  align-items: center;
}

.text-flow p {
  margin: 0 0 18px;
  color: #504448;
  font-size: 18px;
  line-height: 1.76;
}

.text-flow p:last-child {
  margin-bottom: 0;
}

.notice {
  display: inline-block;
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green);
  font-weight: 800;
}

.city-card {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.city-card:hover,
.city-card:focus-visible {
  border-color: rgba(158, 47, 54, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.city-card strong {
  color: var(--green);
  font-family: var(--display-font);
  font-size: 28px;
  line-height: 1.15;
}

.city-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  min-height: min(680px, calc(100svh - 18px));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 18px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a::after {
  margin-left: 9px;
  color: var(--muted);
  content: "/";
}

.text-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(250, 244, 239, 0.98)),
    #fffaf6;
  box-shadow: var(--shadow);
}

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

.checked-list li,
.link-list li {
  position: relative;
  border: 1px solid rgba(194, 160, 102, 0.22);
  border-radius: var(--radius);
  padding: 15px 16px 15px 44px;
  background: rgba(255, 250, 246, 0.78);
  color: #3d3035;
  font-weight: 750;
}

.checked-list li::before,
.link-list li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  color: var(--accent);
  content: "•";
  font-weight: 900;
}

.link-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-list a {
  color: var(--green);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(160, 22, 61, 0.22);
  border-radius: var(--radius);
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.related-links a:hover,
.related-links a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.landing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-main {
  position: relative;
  display: grid;
  min-height: 360px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(194, 160, 102, 0.3);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(520px 300px at 90% 8%, rgba(194, 160, 102, 0.2), transparent 66%),
    linear-gradient(135deg, #1f1118 0%, #3a1524 48%, #111713 100%);
  box-shadow: 0 30px 80px rgba(21, 13, 17, 0.22);
  color: #ffffff;
}

.showcase-main::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(231, 195, 131, 0.22);
  border-radius: 50%;
  content: "";
}

.showcase-main h3 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
}

.showcase-main p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.72;
}

.showcase-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.small-fact {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 172px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    radial-gradient(220px 110px at 100% 0%, rgba(194, 160, 102, 0.14), transparent 72%),
    #fffaf6;
  box-shadow: 0 16px 44px rgba(21, 13, 17, 0.08);
}

.small-fact strong {
  color: var(--green);
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1.1;
}

.small-fact span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(250, 244, 239, 0.98)),
    #fffaf6;
  box-shadow: var(--shadow);
}

.content-panel h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

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

.soft-list li {
  position: relative;
  border-bottom: 1px solid rgba(231, 216, 207, 0.86);
  padding: 0 0 12px 24px;
  color: #483a3f;
  font-weight: 700;
}

.soft-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "✦";
  font-size: 13px;
}

.dark-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dark-points span {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.region-benefits .benefit-card {
  position: relative;
  overflow: hidden;
}

.region-benefits .benefit-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(194, 160, 102, 0.2);
  border-radius: 50%;
  content: "";
}

.related-band {
  padding-top: clamp(52px, 7vw, 82px);
  padding-bottom: clamp(52px, 7vw, 82px);
}

.accent-layout .text-flow {
  display: grid;
  justify-items: start;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  min-height: 178px;
  border-top: 3px solid var(--gold);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  background: #fffaf6;
  color: #3d3035;
  font-weight: 750;
  box-shadow: 0 12px 34px rgba(21, 13, 17, 0.06);
}

.step-list span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 62px;
  padding: 18px 34px 18px 0;
  color: var(--green);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  position: relative;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "+";
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.form-layout > div > p {
  max-width: 510px;
  margin: 18px 0 0;
  color: #5b5054;
  font-size: 18px;
}

.section-form h2 {
  color: #ffffff;
}

.section-form .eyebrow {
  color: #e7c383;
}

.section-form .form-layout > div > p {
  color: rgba(255, 255, 255, 0.82);
}

.section-form .form-layout {
  align-items: center;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(249, 241, 236, 0.98)),
    #fffaf6;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.application-form label {
  display: grid;
  gap: 8px;
}

.application-form label > span {
  color: #3d3035;
  font-size: 13px;
  font-weight: 850;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d8c8bf;
  border-radius: var(--radius);
  background: #fffdfb;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.application-form textarea {
  min-height: 126px;
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(160, 22, 61, 0.12);
}

.application-form .full {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  color: #55484c;
}

.checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 4px 0 0;
  accent-color: var(--accent);
}

.form-status {
  min-height: 24px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.form-status.is-error {
  color: var(--accent-dark);
}

.application-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  background: #10090c;
  color: rgba(255, 255, 255, 0.78);
  padding: 30px 0;
}

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

.footer-layout p {
  margin: 0;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(158, 47, 54, 0.36);
  outline-offset: 3px;
}

.section-dark .text-flow {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(22px, 4vw, 32px);
}

.section-dark .text-flow p {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1020px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-right: 80px;
  }

  .nav-toggle {
    display: inline-grid;
    flex: 0 0 44px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    padding: 14px 20px 20px;
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(222, 214, 200, 0.72);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .benefit-grid,
  .city-grid,
  .direction-card-grid,
  .link-list,
  .landing-showcase,
  .content-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-showcase {
    grid-template-columns: 1fr;
  }

  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .container,
  .hero-inner {
    width: calc(100% - 28px);
    max-width: 1160px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 72px 10px 14px;
  }

  .nav-toggle {
    top: 11px;
    right: 14px;
    border-color: rgba(33, 18, 24, 0.2);
    background: var(--green);
    box-shadow: 0 10px 24px rgba(33, 18, 24, 0.14);
  }

  .nav-toggle span {
    background: #ffffff;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    background-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 7, 10, 0.94) 0%, rgba(20, 9, 15, 0.74) 62%, rgba(31, 11, 20, 0.36) 100%),
      linear-gradient(0deg, rgba(12, 7, 10, 0.52), rgba(12, 7, 10, 0.1) 48%);
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 42px;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(31px, 8.2vw, 36px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-lead,
  .text-flow p,
  .form-layout > div > p {
    font-size: 16px;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .benefit-grid,
  .city-grid,
    .direction-card-grid,
    .link-list,
    .landing-showcase,
    .showcase-side,
    .content-columns,
    .split-layout,
    .accent-layout,
    .form-layout,
  .application-form,
  .step-list {
    grid-template-columns: 1fr;
  }

  .section-dark {
    background:
      linear-gradient(90deg, rgba(15, 7, 12, 0.96) 0%, rgba(24, 8, 16, 0.9) 58%, rgba(16, 18, 15, 0.74) 100%),
      linear-gradient(180deg, rgba(15, 7, 12, 0.3) 0%, rgba(15, 7, 12, 0.56) 100%),
      url("assets/privacy-confidential-photo.jpg") 56% center / cover no-repeat;
  }

  .section-form {
    background:
      linear-gradient(90deg, rgba(13, 6, 10, 0.97) 0%, rgba(26, 8, 17, 0.92) 62%, rgba(16, 20, 16, 0.74) 100%),
      linear-gradient(180deg, rgba(18, 7, 13, 0.36) 0%, rgba(18, 7, 13, 0.64) 100%),
      url("assets/application-sensual-photo.jpg") 52% center / cover no-repeat;
  }

  .benefit-card {
    min-height: 0;
  }

  .step-list li {
    min-height: 132px;
  }

  .step-list span {
    margin-bottom: 18px;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

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