/* EarlyLarks home — pixel match to 01_Home_01 mockup (1930×8646) */

.home-body {
  --shell: 1250px;
  --home-navy: #303048;
  --home-teal: #4c9ea1;
  --home-teal-deep: #328080;
  --home-cyan: #35e0ea;
  --home-coral: #ef897c;
  --home-peach: #f4eadd;
  --home-mint: #d7eef1;
  --home-card-teal: #87c5cc;
  --home-input: #f4f8ff;
  --home-muted: #828282;
  --home-soft: #6b6b7a;
  --home-serif: "Cormorant", "Iowan Old Style", Georgia, serif;
  --home-radius: 20px;
  background: #fff;
}

.home-body .shell {
  width: min(var(--shell), calc(100% - 48px));
}

.home-page {
  overflow-x: clip;
  background: #fff;
}

.home-chev {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
}

/* ========== Chrome overrides ========== */
.home-body .topbar {
  background: var(--home-input);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.home-body .topbar__inner {
  min-height: 58px;
}

.home-body .topbar__item svg {
  width: 15px;
  height: 15px;
  color: var(--home-teal);
}

.home-body .site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 124px;
}

.home-body .brand__logo {
  height: 72px;
}

.home-body .nav {
  justify-content: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--home-navy);
}

.home-body .nav a.is-active {
  font-weight: 700;
}

.home-body .nav-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-body .nav__search {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--home-navy);
  cursor: pointer;
}

.home-body .nav__search svg {
  width: 22px;
  height: 22px;
}

.home-body .nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--home-coral);
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.home-body .nav__cta:hover {
  filter: brightness(0.97);
}

.home-body .nav__cta--mobile {
  display: none;
}

/* ========== Shared bits ========== */
.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 16px 6px 6px;
  border: 1px solid #e4e7ee;
  border-radius: 999px;
  background: #fff;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 500;
}

.home-badge__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--home-teal-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.home-badge--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.home-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 48px;
}

.home-section-head--light {
  margin-bottom: 36px;
}

.home-section-head h2,
.home-section-title {
  margin: 18px 0 0;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--home-navy);
}

.home-section-head--light h2,
.home-section-head--light .home-section-title,
.home-section-title--light {
  color: #fff;
}

.home-section-head h2 em,
.home-projects .home-section-head h2 em {
  font-family: var(--home-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--home-teal);
}

.home-features .home-section-head h2 em,
.home-stats .home-section-head h2 em {
  display: block;
  margin-top: 0.08em;
}

.home-section-sub {
  margin: 14px 0 0;
  color: var(--home-teal);
  font-family: var(--home-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.4;
  font-weight: 600;
}

.home-section-sub--ink {
  color: var(--home-navy);
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.home-btn:hover {
  transform: translateY(-1px);
}

.home-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.home-btn--teal {
  color: #fff;
  background: var(--home-teal);
}

.home-btn--cyan {
  color: var(--home-navy);
  background: var(--home-cyan);
  box-shadow: 0 10px 24px rgba(53, 224, 234, 0.28);
}

.home-btn--coral {
  color: #fff;
  background: var(--home-coral);
}

.home-btn--darktext {
  color: var(--home-navy);
}

.home-btn--ghost {
  color: var(--home-navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: #e6e8ee;
}

.home-btn--soft {
  color: var(--home-navy);
  background: var(--home-input);
  border-color: transparent;
}

.home-btn--send {
  color: #fff;
  background: var(--home-teal);
  border-radius: 999px;
  padding-inline: 28px;
}

/* ========== Hero ========== */
.home-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  color: var(--home-navy);
}

.home-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 96px;
}

.home-hero__copy {
  max-width: 34rem;
}

.home-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--home-navy);
}

.home-hero__line {
  display: block;
}

.home-hero__accent {
  display: block;
  margin-top: 0.08em;
  color: var(--home-teal);
  font-family: var(--home-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 0.78em;
}

.home-hero__copy > p {
  margin: 22px 0 0;
  max-width: 36ch;
  color: #5f5f6c;
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ========== Features ========== */
.home-features {
  padding: 88px 0 36px;
}

.home-features__bleed {
  width: 100%;
  padding: 0 clamp(20px, 2.8vw, 40px);
  box-sizing: border-box;
}

.home-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 264px;
  padding: 32px 28px;
  border-radius: var(--home-radius);
}

.home-feature--navy {
  background: var(--home-navy);
  color: #fff;
}

.home-feature--teal {
  background: var(--home-card-teal);
  color: #fff;
}

.home-feature--peach {
  background: var(--home-peach);
  color: var(--home-navy);
}

.home-feature--mint {
  background: var(--home-mint);
  color: var(--home-navy);
}

.home-feature h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 800;
  max-width: 10ch;
}

.home-feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.92;
}

/* ========== Projects ========== */
.home-projects {
  padding: 72px 0 48px;
}

.home-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.home-project-card {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #eceef3;
  box-shadow: 0 10px 30px rgba(48, 48, 72, 0.05);
}

.home-project-card--featured {
  border-color: rgba(53, 224, 234, 0.55);
  box-shadow:
    0 0 0 4px rgba(53, 224, 234, 0.12),
    0 18px 44px rgba(80, 90, 180, 0.12);
}

.home-project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f4f6;
}

.home-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-project-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--home-teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-project-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 16px 8px 0;
}

.home-project-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--home-teal);
  font-size: 13px;
  font-weight: 600;
}

.home-project-card__status svg {
  width: 14px;
  height: 14px;
}

.home-project-card__body h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--home-navy);
}

.home-project-card__desc {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-project-card__progress {
  --home-pct: 0%;
  margin-top: auto;
  padding-top: 8px;
}

.home-project-card__raised-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--home-navy);
  font-size: 14px;
}

.home-project-card__bar {
  height: 7px;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}

.home-project-card__bar::after {
  content: "";
  display: block;
  width: var(--home-pct);
  height: 100%;
  border-radius: inherit;
  background: var(--home-cyan);
}

.home-project-card__progress.is-prototype .home-project-card__bar::after {
  width: 100%;
  background: #c9c6e6;
}

.home-project-card__stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--home-muted);
  font-size: 13px;
}

.home-project-card__stats span {
  display: grid;
  gap: 2px;
}

.home-project-card__stats strong {
  color: var(--home-navy);
  font-size: 15px;
}

.home-project-card .home-btn {
  width: 100%;
  margin-top: 16px;
}

.home-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

.home-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-teal);
}

.home-dots span.is-active {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid var(--home-teal);
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 7px var(--home-teal);
}

/* ========== Launch ========== */
.home-launch {
  padding: 72px 0 96px;
}

.home-launch__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.home-launch__media {
  border-radius: 36px;
  overflow: hidden;
  min-height: 560px;
  background: #eef1f4;
}

.home-launch__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.home-launch__copy .home-badge {
  margin-bottom: 18px;
}

.home-launch__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--home-navy);
}

.home-launch__copy h2 span,
.home-launch__copy h2 em {
  display: block;
}

.home-launch__copy h2 em {
  margin-top: 0.08em;
  font-family: var(--home-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--home-teal);
}

.home-launch__copy > p {
  margin: 0 0 28px;
  color: var(--home-soft);
  max-width: 48ch;
  line-height: 1.7;
}

.home-launch__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 22px;
}

.home-launch__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.home-launch__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--home-teal);
}

.home-launch__icon svg {
  width: 32px;
  height: 32px;
}

.home-launch__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--home-navy);
}

.home-launch__list p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.95rem;
}

.home-launch__bottom {
  display: flex;
  align-items: flex-end;
  gap: 22px;
}

.home-quote {
  margin: 0;
  padding: 26px 26px 20px;
  border-radius: 18px;
  background: var(--home-teal);
  color: #fff;
  max-width: 28rem;
}

.home-quote p {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.35;
  font-weight: 700;
}

.home-quote footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.home-quote footer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

/* ========== Journey ========== */
.home-journey {
  position: relative;
  padding: 80px 0 96px;
  background: var(--home-navy);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.home-journey > .shell {
  position: relative;
  z-index: 1;
}

.home-journey__map {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-journey__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.home-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 36px;
}

.home-tabs__btn {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 92px;
  padding: 16px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: left;
}

.home-tabs__num {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

.home-tabs__label {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-tabs__btn.is-active {
  color: var(--home-navy);
  background: var(--home-cyan);
  border-color: transparent;
}

.home-journey__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.home-journey__copy [hidden] {
  display: none;
}

.home-journey__copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: -0.03em;
  color: #fff;
}

.home-journey__lead {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--home-serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
}

.home-journey__copy p:not(.home-journey__lead) {
  margin: 0 0 22px;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
}

.home-journey__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.home-journey__copy li {
  position: relative;
  padding-left: 18px;
  color: #fff;
  font-weight: 500;
}

.home-journey__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-cyan);
}

.home-journey__media {
  position: relative;
  padding-bottom: 36px;
}

.home-journey__media > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.home-quote--overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 22rem;
  color: var(--home-navy);
}

.home-quote--overlay p {
  color: var(--home-navy);
  font-weight: 700;
  font-size: 0.98rem;
}

.home-quote--overlay footer {
  color: var(--home-navy);
}

/* ========== Stats ========== */
.home-stats {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

.home-stats__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-stats__orb--left {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 220px;
  background: rgba(215, 238, 241, 0.7);
}

.home-stats__orb--right {
  width: 340px;
  height: 340px;
  right: -110px;
  top: 80px;
  background: rgba(76, 158, 161, 0.22);
}

.home-stats .home-section-head {
  margin-bottom: 48px;
}

.home-stats__number {
  margin: 28px 0 0;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--home-navy);
}

.home-stats__reach {
  margin: 16px 0 0;
  color: var(--home-teal);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.45;
}

.home-stats__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 36px;
  align-items: center;
}

.home-stats__copy {
  position: relative;
  padding-left: 22px;
}

.home-stats__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 92px;
  width: 3px;
  border-radius: 2px;
  background: var(--home-coral);
}

.home-stats__copy p {
  margin: 0 0 18px;
  max-width: none;
  color: var(--home-navy);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.55;
  font-weight: 600;
}

.home-stats__founder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #eceef3;
}

.home-stats__founder img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

.home-stats__founder strong {
  display: block;
  color: var(--home-navy);
}

.home-stats__founder span {
  color: var(--home-muted);
  font-size: 0.92rem;
}

.home-stats__visual {
  border-radius: 22px;
  overflow: hidden;
  background: #2b3441;
  box-shadow: 0 24px 50px rgba(48, 48, 72, 0.16);
}

.home-stats__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== Contact ========== */
.home-contact {
  padding: 56px 0 48px;
}

.home-contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.home-contact__aside h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--home-navy);
}

.home-contact__aside h2 em {
  display: block;
  margin-top: 0.1em;
  font-family: var(--home-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--home-teal);
  font-size: 0.72em;
}

.home-contact__aside > p {
  margin: 0 0 22px;
  color: var(--home-muted);
  max-width: 42ch;
}

.home-contact__meta {
  margin-bottom: 28px;
}

.home-contact__meta span {
  display: block;
  color: var(--home-muted);
  font-size: 14px;
  margin-bottom: 4px;
}

.home-contact__meta a {
  color: var(--home-navy);
  font-weight: 800;
  font-size: 1.05rem;
}

.home-contact__photo {
  border-radius: 22px;
  overflow: hidden;
  background: #eef1f4;
}

.home-contact__photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.home-contact__form {
  display: grid;
  gap: 16px;
}

.home-field {
  display: grid;
  gap: 8px;
}

.home-field span {
  font-size: 14px;
  font-weight: 800;
  color: var(--home-navy);
}

.home-field input,
.home-field textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--home-input);
  color: var(--home-navy);
  resize: vertical;
}

.home-field input:focus,
.home-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 158, 161, 0.22);
}

.home-remember {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.45;
}

.home-remember input {
  margin-top: 3px;
  accent-color: var(--home-teal);
}

.home-contact__form .home-btn {
  justify-self: start;
  margin-top: 4px;
}

.home-form-note {
  margin: 0;
  font-size: 0.92rem;
}

.home-form-note--ok {
  color: #1a7a4c;
}

.home-form-note--err {
  color: #c0392b;
}

/* Footer overlap uses shared .funding-cta in bbday.css */

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .home-features__grid,
  .home-projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-launch__grid,
  .home-journey__panel,
  .home-contact__grid {
    grid-template-columns: 1fr;
  }

  .home-launch__media,
  .home-launch__media img {
    min-height: 420px;
  }

  .home-hero {
    min-height: 640px;
  }
}

@media (max-width: 900px) {
  .home-stats__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-body .site-header__inner {
    display: flex;
    min-height: 60px;
  }

  .home-body .nav-tools {
    display: none;
  }

  .home-body .nav__cta--mobile {
    display: inline-flex;
    margin: 12px 16px;
    width: calc(100% - 32px);
  }

  .home-hero {
    min-height: 560px;
    align-items: end;
  }

  .home-hero__inner {
    padding: 36px 0 56px;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-features,
  .home-projects,
  .home-launch,
  .home-journey,
  .home-stats,
  .home-contact {
    padding-left: 0;
    padding-right: 0;
  }

  .home-features {
    padding-top: 56px;
  }

  .home-features__grid,
  .home-projects__grid,
  .home-tabs {
    grid-template-columns: 1fr;
  }

  .home-feature {
    min-height: 200px;
  }

  .home-launch__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .home-quote,
  .home-quote--overlay {
    max-width: none;
  }

  .home-quote--overlay {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -24px;
  }

  .home-journey__media > img {
    height: 280px;
  }

  .home-stats__number {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .home-contact__form .home-btn {
    width: 100%;
  }
}
