/* ============================================
   JARDIN DE BOUQUETS — Premium Landing Styles
   ============================================ */

:root {
  /* Палитра: глубокое какао + малиновый + золотой */
  --cocoa-bg: #300600;           /* Основной фон — тёмный какао */
  --cocoa-deep: #1f0400;         /* Ещё темнее для контраста */
  --cocoa-warm: #3a1208;         /* Тёплый какао для модалок */
  --raspberry: #c44569;          /* Малиновый акцент */
  --raspberry-deep: #9e2b4a;     /* Тёмный малиновый */
  --gold: #d4af37;               /* Золотой — основной */
  --gold-soft: #b8953e;          /* Приглушённый золотой */
  --gold-bright: #e8c96a;        /* Яркий золотой для hover */
  --ink: #f5e9d0;                /* Кремовый текст на тёмном фоне */
  --ink-muted: #c4a880;          /* Приглушённый кремовый */
  --ink-faint: #8a7256;          /* Ещё более приглушённый */
  --hairline: rgba(212, 175, 55, 0.2);
  --hairline-soft: rgba(212, 175, 55, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cocoa-bg);
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

/* ============================================
   СЛАЙДЕР-ФОН (parallax, fixed)
   ============================================ */

.slider-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slideFade 32s infinite;
}

.slide-1 {
  animation-delay: 0s;
  /* Плейсхолдер: градиент из какао с текстурой */
  background: url('/images/slide-1.jpg') center/cover no-repeat;
}

.slide-2 {
  animation-delay: 8s;
  background: url('/images/slide-2.jpg') center/cover no-repeat;
}

.slide-3 {
  animation-delay: 16s;
  background: url('/images/slide-3.jpg') center/cover no-repeat;
}

.slide-4 {
  animation-delay: 24s;
  background:
    url('/images/slide-4.jpg') center/cover no-repeat;
}

@keyframes slideFade {
  0%, 20%, 100% { opacity: 0; }
  3%, 17% { opacity: 1; }
}

/* Оверлей для читаемости текста поверх слайдера */
.slider-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(31, 4, 0, 0.89) 0%, rgba(15, 2, 0, 0.98) 100%);
}

.slider-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(212, 175, 55, 0.015) 2px,
      rgba(212, 175, 55, 0.015) 4px
    );
  pointer-events: none;
}

/* Контейнер всего контента — выше слайдера */
.top-bar, .main-grid, .orbits, .site-footer, .modal {
  position: relative;
  z-index: 1;
}

/* ============================================
   ШАПКА: лого + счётчик
   ============================================ */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 56px;
  border-bottom: 1px solid var(--hairline-soft);
  backdrop-filter: blur(4px);
  background: linear-gradient(180deg, rgba(31, 4, 0, 0.6) 0%, transparent 100%);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.logo-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.counter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.04);
}

.counter strong {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  padding: 0 2px;
}

.counter-divider {
  color: var(--gold);
  opacity: 0.5;
}

/* ============================================
   ГЛАВНАЯ СЕТКА: симметричная композиция 2×2
   Форма слева (span 2 rows) · Hero top-right · Orbits bottom-right
   ============================================ */

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 60px;
  padding: 60px 80px 80px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

/* ============================================
   ФОРМА (слева, span 2 rows — растягивается до низа)
   ============================================ */

.form-section {
  grid-column: 1;
  grid-row: 1 / span 2;
  max-width: 520px;
  width: 100%;
  margin-left: auto; /* прижимаем к правому краю своей колонки = симметрия с hero */
  animation: fadeUp 1s ease-out 0.2s both;
}

.form-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.form-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.form-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 40px;
  font-style: italic;
  max-width: 440px;
}

.form-intro strong {
  color: var(--raspberry);
  font-weight: 500;
  font-style: normal;
}

/* Форма */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.field label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.field .opt {
  color: var(--ink-faint);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.field input,
.field select {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 23px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.4s ease;
  width: 100%;
  color-scheme: dark; /* белые нативные иконки (календарь, select arrow) */
}

/* Белая иконка календаря для type="date" */
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.4);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.field input::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--gold);
}

.field input:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23d4af37' stroke-width='1.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 24px;
}

.field select option {
  background: var(--cocoa-warm);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.consent label {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.consent a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.consent a:hover {
  color: var(--gold-bright);
}

/* Кнопка submit */
.submit {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--cocoa-deep);
  background: var(--gold);
  border: none;
  padding: 20px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.submit span, .submit svg {
  position: relative;
  z-index: 1;
}

.submit:hover::before {
  transform: scaleX(1);
}

.submit:hover svg {
  transform: translateX(5px);
}

.submit svg {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-message {
  margin-top: 12px;
  font-size: 13px;
  min-height: 18px;
  font-family: 'Inter', sans-serif;
}

.form-message.error {
  color: var(--raspberry);
}

.form-message.success {
  color: var(--gold);
}

/* ============================================
   HERO (справа top — row 1)
   ============================================ */

.hero-section {
  grid-column: 2;
  grid-row: 1;
  max-width: 560px;
  animation: fadeUp 1s ease-out 0.5s both;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 88px;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 40px;
  letter-spacing: -0.015em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  display: inline-block;
}

.hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 56px;
  max-width: 520px;
  font-weight: 300;
}

.hero-sub .accent {
  color: var(--raspberry);
  font-style: italic;
  font-weight: 400;
}

.hero-signature {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  max-width: 280px;
}

.hero-signature .italic {
  font-style: italic;
  color: var(--gold);
  font-size: 32px;
}

/* ============================================
   ОРБИТЫ: три круглые кнопки-модалки
   Размещены в grid: column 2, row 2 — под hero
   ============================================ */

.orbits {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  padding: 0;
  position: relative;
  align-self: start;
}

.orbit {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--hairline);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0;
  color: var(--gold);
  position: relative;
  backdrop-filter: blur(2px);
}

.orbit::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--hairline-soft);
  transform: scale(1);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.orbit svg {
  width: 36px;
  height: 36px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.orbit:hover {
  background: rgba(196, 69, 105, 0.1);
  border-color: var(--raspberry);
  color: var(--gold-bright);
  transform: translateY(-4px);
}

.orbit:hover::before {
  transform: scale(1.1);
  opacity: 1;
  border-color: var(--raspberry);
}

.orbit:hover svg {
  transform: scale(1.1);
}

.orbit:active {
  transform: translateY(-2px) scale(0.98);
}

/* Анимация появления орбит */
.orbit {
  animation: orbitEnter 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.orbit:nth-child(1) { animation-delay: 1.2s; }
.orbit:nth-child(2) { animation-delay: 1.4s; }
.orbit:nth-child(3) { animation-delay: 1.6s; }

@keyframes orbitEnter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 40px 56px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.15em;
}

.footer-nav, .footer-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-nav a, .footer-meta a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.15em;
}

.footer-nav a:hover, .footer-meta a:hover {
  color: var(--gold-bright);
}

.footer-nav span, .footer-meta span {
  opacity: 0.4;
  color: var(--gold);
}

.footer-meta {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
}

/* ============================================
   МОДАЛКИ
   ============================================ */

.modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 720px;
  width: 92vw;
  max-height: 88vh;
  margin: auto;
  color: var(--ink);
}

.modal::backdrop {
  background: rgba(15, 2, 0, 0.82);
  backdrop-filter: blur(8px);
  animation: backdropFade 0.3s ease-out;
}

.modal[open] {
  animation: modalEnter 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-inner {
  background: linear-gradient(180deg, var(--cocoa-warm) 0%, var(--cocoa-deep) 100%);
  padding: 56px;
  position: relative;
  overflow-y: auto;
  max-height: 88vh;
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--gold);
  font-size: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  line-height: 1;
}

.modal-close:hover {
  background: var(--raspberry);
  border-color: var(--raspberry);
  color: var(--ink);
  transform: rotate(90deg);
}

.modal-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.modal-subtitle {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 300;
}

.modal-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  margin: 0 0 36px;
  border: 1px solid var(--hairline);
  position: relative;
  background-color: var(--cocoa-deep);
}

.modal-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(48, 6, 0, 0.5);
}

/* Плейсхолдеры для модальных картинок — градиенты под замену */
.modal-image-1 {
  background-image: url('/images/img-1.png');
}
.modal-image-2 {
  background-image: url('/images/img-2.jpg');
}
.modal-image-3 {
  background-image: url('/images/img-3.svg');
}

.modal-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-muted);
}

.modal-body p {
  margin-bottom: 18px;
}

.modal-body p strong {
  color: var(--gold);
  font-weight: 500;
}

.modal-body .accent {
  color: var(--raspberry);
  font-style: italic;
  font-weight: 400;
}

.modal-body .step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline-soft);
}

.modal-body .value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline-soft);
}

.modal-body .value .value-num {
  flex: 0 0 70px;
}

.modal-body .value h3,
.modal-body .value p {
  flex: 1 1 calc(100% - 94px);
  min-width: 0;
  margin-left: 0;
}

.modal-body .value h3 {
  margin-bottom: 6px;
}

.modal-body .step:last-child,
.modal-body .value:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-num, .value-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}

.modal-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.modal-body h3 + p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Скроллбар в модалках */
.modal-inner::-webkit-scrollbar {
  width: 6px;
}

.modal-inner::-webkit-scrollbar-track {
  background: transparent;
}

.modal-inner::-webkit-scrollbar-thumb {
  background: var(--gold-soft);
  border-radius: 3px;
  opacity: 0.4;
}

.modal-inner::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============================================
   АНИМАЦИИ ПОЯВЛЕНИЯ
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-bar {
  animation: fadeDown 0.8s ease-out both;
}

.site-footer {
  animation: fadeUp 1s ease-out 2s both;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   РЕСПОНСИВ — мобильный: агрессивная форма сверху
   ============================================ */

@media (max-width: 1100px) {
  .main-grid {
    padding: 40px 32px;
    column-gap: 48px;
    row-gap: 48px;
  }

  .form-section {
    max-width: 460px;
  }

  .form-title {
    font-size: 60px;
  }

  .hero-title {
    font-size: 72px;
  }
}

@media (max-width: 860px) {
  .top-bar {
    padding: 20px 24px;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .logo-name {
    font-size: 11px;
  }

  .logo-mark {
    font-size: 24px;
  }

  .counter {
    font-size: 11px;
    padding: 6px 14px;
  }

  .counter strong {
    font-size: 14px;
  }

  /* Ключевое: на мобильном — форма первая (агрессия), потом hero, потом orbits */
  .main-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 32px 24px 40px;
    column-gap: 0;
    row-gap: 48px;
  }

  .form-section {
    grid-column: 1;
    grid-row: auto;
    order: 1;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-section {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    max-width: 100%;
    border-top: 1px solid var(--hairline-soft);
    padding-top: 40px;
  }

  .orbits {
    grid-column: 1;
    grid-row: auto;
    order: 3;
    justify-content: center;
    gap: 36px;
    padding: 0;
  }

  .form-title {
    font-size: 52px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-sub {
    font-size: 20px;
    max-width: 100%;
  }

  .hero-signature {
    font-size: 24px;
  }

  .hero-signature .italic {
    font-size: 27px;
  }

  .orbit {
    width: 80px;
    height: 80px;
  }

  .orbit svg {
    width: 30px;
    height: 30px;
  }

  .modal-inner {
    padding: 36px 24px;
  }

  .modal-title {
    font-size: 42px;
  }

  .modal-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .modal-image {
    height: 200px;
    margin-bottom: 28px;
  }

  .modal-body {
    font-size: 16px;
  }

  .modal-body .step,
  .modal-body .value {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .step-num, .value-num {
    font-size: 30px;
  }

  .modal-body h3 {
    font-size: 20px;
  }

  .site-footer {
    padding: 32px 24px;
  }

  .footer-nav, .footer-meta {
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav span, .footer-meta span {
    display: none;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 44px;
  }

  .hero-title {
    font-size: 48px;
  }

  .orbit {
    width: 68px;
    height: 68px;
  }

  .orbit svg {
    width: 26px;
    height: 26px;
  }

  .orbits {
    gap: 24px;
  }

  .field input,
  .field select {
    font-size: 18px;
  }
}
