@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/CormorantGaramond-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/CormorantGaramond-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/CormorantGaramond-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f7f6;
  --surface: #f7f9f8;
  --surface-strong: #ffffff;
  --surface-warm: #edf2ef;
  --ink: #173d32;
  --ink-soft: #3f6457;
  --ink-muted: #71877b;
  --line: rgba(23, 61, 50, 0.12);
  --line-strong: rgba(23, 61, 50, 0.18);
  --accent: #204d3e;
  --accent-deep: #173d32;
  --accent-hover: #123228;
  --accent-soft: rgba(32, 77, 62, 0.08);
  --warm: #d8e4de;
  --cream: #f7f9f8;
  --shadow-soft: 0 28px 70px rgba(27, 52, 43, 0.08);
  --shadow-card: 0 16px 40px rgba(20, 45, 37, 0.1);
  --shadow-deep: 0 24px 80px rgba(16, 41, 33, 0.18);
  --container: 1220px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(32, 77, 62, 0.05), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(32, 77, 62, 0.03), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f5f7f6 100%);
}

body.legal-body {
  background:
    radial-gradient(circle at top right, rgba(32, 77, 62, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f7f6 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 26%, rgba(32, 77, 62, 0.05), transparent 20%),
    radial-gradient(circle at 88% 68%, rgba(32, 77, 62, 0.03), transparent 18%);
}

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

.site-main {
  padding-top: 98px;
}

.section {
  padding: 46px 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 40;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(23, 61, 50, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(23, 61, 50, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(182px, 18vw, 236px);
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.header-nav a,
.header-link,
.btn,
.footer-links a,
.form-disclaimer a {
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.header-nav a:hover,
.header-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.form-disclaimer a:hover,
.form-disclaimer a:focus-visible {
  color: var(--accent-deep);
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-link:hover,
.header-link:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 61, 50, 0.08);
  background: rgba(247, 249, 248, 0.92);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(32, 77, 62, 0.1);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 150px);
}

.hero-copy {
  max-width: 620px;
}

.hero h1,
.section h2,
.legal-card h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 4.9vw, 4.9rem);
  line-height: 0.92;
  font-weight: 700;
  max-width: 12ch;
}

.hero-lead,
.section-intro,
.why-point p,
.support-point p,
.contact-aside li,
.form-disclaimer,
.legal-card p,
.legal-list,
.legal-copy p,
.legal-copy li,
.back-link {
  color: var(--ink-soft);
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 57ch;
  font-size: 1.12rem;
  line-height: 1.78;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 16px 32px rgba(23, 61, 50, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(23, 61, 50, 0.24);
  background: #fff;
  color: var(--accent-deep);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(32, 77, 62, 0.08);
  border-color: rgba(23, 61, 50, 0.36);
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  width: min(100%, 610px);
  margin-left: auto;
}

.hero-frame,
.why-photo,
.support-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 61, 50, 0.08);
  background: rgba(247, 249, 248, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-frame {
  border-radius: 38px 38px 164px 38px;
}

.hero-frame::after,
.why-photo::after,
.support-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center 18%;
}

.trust-widget {
  position: absolute;
  left: -34px;
  bottom: 34px;
  display: grid;
  gap: 4px;
  min-width: 156px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 61, 50, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.trust-label {
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.45;
}

.trust-widget strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--accent-deep);
  font-size: 2.9rem;
  line-height: 0.9;
  font-weight: 700;
}

.why-shell,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 46px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section h2,
.legal-card h2 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 4vw, 3.65rem);
  line-height: 0.95;
  font-weight: 700;
}

.section-intro {
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.8;
}

.why-list,
.support-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.why-copy h2 {
  margin-top: 0;
}

.support-copy h2,
.contact-copy h2,
.legal-card h2 {
  margin-top: 0;
}

.why-point,
.support-point {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.why-point:last-child,
.support-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-point h3,
.support-point h3,
.contact-aside h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.42;
  font-weight: 700;
}

.why-point p,
.support-point p {
  margin: 8px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.why-visual {
  position: relative;
  min-height: 620px;
}

.why-photo {
  height: 100%;
  border-radius: 36px;
}

.why-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 38px;
  align-items: stretch;
  padding: 24px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.support-image {
  border-radius: 36px;
  background: rgba(247, 249, 248, 0.9);
}

.support-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center;
}

.support-copy {
  color: var(--ink);
}

.support-copy h2 {
  color: var(--ink);
}

.support-copy .section-intro,
.support-point p,
.support-note {
  color: var(--ink-soft);
}

.support-point {
  border-bottom-color: var(--line);
}

.support-point h3 {
  color: var(--ink);
}

.support-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  line-height: 1.7;
}

.section-contact {
  padding-top: 30px;
}

.contact-shell {
  align-items: start;
}

.contact-copy {
  padding-top: 0;
}

.contact-aside,
.form-shell,
.legal-card {
  border: 1px solid rgba(23, 61, 50, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.contact-aside {
  margin-top: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-aside ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.contact-aside li {
  margin-bottom: 12px;
  line-height: 1.66;
}

.form-shell {
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field span {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 60px;
  padding: 0 20px;
  border: 1px solid rgba(23, 61, 50, 0.15);
  border-radius: 18px;
  background: #f7f9f8;
  color: var(--ink);
  font-size: 1rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.field input::placeholder {
  color: rgba(113, 135, 123, 0.9);
}

.field input:hover {
  border-color: rgba(23, 61, 50, 0.24);
}

.field input:focus-visible,
.btn:focus-visible,
.header-link:focus-visible,
.header-nav a:focus-visible,
.footer-links a:focus-visible,
.form-disclaimer a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(32, 77, 62, 0.14);
}

.field input:focus-visible {
  border-color: var(--accent);
  background: #ffffff;
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.form-disclaimer {
  margin: 2px 0 0;
  font-size: 0.92rem;
  line-height: 1.68;
}

.form-disclaimer a {
  color: var(--accent-deep);
  font-weight: 700;
}

.legal-section {
  padding-top: 18px;
  padding-bottom: 26px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
}

.legal-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-card-emphasis {
  background: transparent;
}

.legal-list {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.site-footer {
  padding: 0 0 42px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-brand p,
.footer-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-page {
  padding-top: 110px;
  padding-bottom: 72px;
}

.legal-shell {
  display: grid;
  gap: 28px;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--accent-deep);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.94;
  font-weight: 700;
}

.legal-copy {
  padding-top: 28px;
}

.legal-copy h2 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
}

.legal-copy p,
.legal-copy li {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-copy ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.thanks-page .legal-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thanks-page .header-shell {
  background: rgba(255, 255, 255, 0.96);
}

.thanks-header-link {
  background: transparent;
  color: var(--accent-deep);
  border: 1px solid rgba(23, 61, 50, 0.14);
  box-shadow: none;
}

.thanks-header-link:hover,
.thanks-header-link:focus-visible {
  background: rgba(32, 77, 62, 0.06);
  color: var(--accent-deep);
}

.thanks-main {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 40px);
  padding: 128px 0 64px;
}

.thanks-shell {
  display: flex;
  justify-content: center;
}

.thanks-copy {
  width: min(100%, 760px);
  text-align: center;
}

.thanks-kicker {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.thanks-page h1 {
  margin: 16px auto 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.thanks-text {
  margin: 24px auto 0;
  max-width: 40ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.75;
}

.thanks-line {
  display: inline-block;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

#why-europe,
#support,
#contact {
  scroll-margin-top: 120px;
}

@media (max-width: 1100px) {
  .hero-shell,
  .why-shell,
  .support-shell,
  .contact-shell,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    gap: 34px;
  }

  .thanks-main {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media,
  .why-visual {
    width: 100%;
    margin-left: 0;
  }

  .why-shell,
  .contact-shell {
    gap: 34px;
  }

  .support-copy {
    order: 2;
  }

  .support-image {
    order: 1;
  }
}

@media (max-width: 860px) {
  .site-main {
    padding-top: 94px;
  }

  .site-header {
    top: 12px;
  }

  .header-shell {
    padding: 12px 14px;
  }

  .header-nav {
    display: none;
  }

  .why-shell,
  .support-shell,
  .contact-shell,
  .form-shell {
    padding: 28px;
  }

  .why-visual {
    min-height: auto;
  }

  .why-photo img {
    min-height: 520px;
  }

  .trust-widget {
    left: 20px;
    bottom: 20px;
  }

  .footer-shell,
  .legal-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .thanks-main {
    padding-top: 116px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .section {
    padding: 34px 0;
  }

  .header-shell {
    gap: 12px;
    border-radius: 24px;
  }

  .brand-logo {
    width: 176px;
  }

  .header-link {
    min-height: 44px;
    padding: 11px 15px;
    font-size: 0.9rem;
  }

  .hero h1,
  .section h2,
  .legal-card h1 {
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .hero-lead,
  .section-intro {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-actions,
  .thanks-actions {
    flex-direction: column;
  }

  .btn,
  .btn-submit {
    width: 100%;
  }

  .hero-frame {
    border-radius: 30px 30px 104px 30px;
  }

  .hero-frame::after,
  .why-photo::after,
  .support-image::after {
    inset: 10px;
  }

  .trust-widget {
    position: static;
    width: fit-content;
    margin-top: 14px;
  }

  .why-shell,
  .support-shell,
  .contact-shell,
  .form-shell {
    padding: 22px;
    border-radius: 30px;
  }

  .why-point,
  .support-point {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-photo,
  .support-image {
    border-radius: 28px;
  }

  .why-photo img {
    min-height: 400px;
  }

  .contact-aside,
  .legal-card {
    padding: 20px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .thanks-page h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
