/* ============================================================
   COLVYRV Valor — CD Heating and Cooling, LLC
   Homepage stylesheet — LIGHT theme, lime accent (#84CC16)
   ============================================================ */

:root {
  --cream: #F8FAF5;
  --cream-2: #F1F4EA;
  --paper: #FFFFFF;
  --ink: #1B2118;
  --ink-soft: #3A4235;
  --ink-muted: #5C6656;
  --lime: #84CC16;
  --lime-dark: #65A30D;
  --lime-deep: #4D7C0F;
  --lime-light: #ECFCCB;
  --lime-pale: #F7FEE7;
  --line: #E4E9DC;
  --line-strong: #D4DBC7;
  --shadow-sm: 0 2px 10px rgba(27, 33, 24, 0.06);
  --shadow-md: 0 12px 34px rgba(27, 33, 24, 0.10);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1B2118;
  background-color: #F8FAF5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: #4D7C0F;
  text-decoration: none;
}

a:hover {
  color: #3F6212;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.15;
  color: #1B2118;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   THERMOMETER NAVIGATION
   ============================================================ */

.thermo-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #F8FAF5;
  border-bottom: 1px solid #E4E9DC;
}

.thermo-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.thermo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.thermo {
  position: relative;
  width: 22px;
  height: 40px;
  flex: none;
}

.thermo-tube {
  position: absolute;
  top: 0;
  left: 7px;
  width: 8px;
  height: 26px;
  background: #84CC16;
  border-radius: 6px 6px 0 0;
}

.thermo-tick {
  position: absolute;
  left: 4px;
  width: 14px;
  height: 3px;
  background: #84CC16;
  border-radius: 2px;
}

.thermo-tick--1 {
  top: 8px;
}

.thermo-tick--2 {
  top: 16px;
}

.thermo-bulb {
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #84CC16;
  border-radius: 50%;
}

.thermo-fill {
  position: absolute;
  bottom: 0;
  left: 7px;
  width: 8px;
  height: 8px;
  background: #ECFCCB;
  border-radius: 4px 4px 0 0;
}

.thermo-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.thermo-brand__word {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #1B2118;
}

.thermo-brand__sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5C6656;
}

.thermo-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.thermo-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #3A4235;
  position: relative;
  padding: 6px 0;
}

.thermo-links a:hover {
  color: #4D7C0F;
}

.thermo-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #84CC16;
  transition: width 0.25s ease;
}

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

.thermo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #84CC16;
  color: #1B2118;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.thermo-cta:hover {
  background: #65A30D;
  color: #1B2118;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B2118;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   SPLIT UNIT HERO
   ============================================================ */

.split-hero {
  position: relative;
  background-color: #F8FAF5;
  overflow: hidden;
  padding: 72px 0 96px;
}

.split-hero__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4D7C0F;
  background: #ECFCCB;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.split-hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #84CC16;
  border-radius: 50%;
}

.split-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.split-hero h1 em {
  font-style: normal;
  color: #65A30D;
}

.split-hero__copy {
  font-size: 1.12rem;
  color: #3A4235;
  max-width: 34em;
  margin-bottom: 32px;
}

.split-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--lime {
  background: #84CC16;
  color: #1B2118;
}

.btn--lime:hover {
  background: #65A30D;
  color: #1B2118;
  transform: translateY(-2px);
}

.btn--ghost {
  background: #FFFFFF;
  color: #1B2118;
  border: 1px solid #D4DBC7;
}

.btn--ghost:hover {
  border-color: #84CC16;
  color: #3F6212;
  transform: translateY(-2px);
}

.split-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #5C6656;
  font-size: 0.9rem;
}

.split-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.split-hero__trust i {
  width: 10px;
  height: 10px;
  background: #84CC16;
  border-radius: 50%;
  flex: none;
}

/* --- Split system scene (CSS drawn) --- */

.unit-scene {
  position: relative;
  min-height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unit-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #ECFCCB 0%, #F7FEE7 55%, transparent 75%);
  z-index: 0;
}

.unit-scene__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 440px;
}

.indoor-unit {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 64px;
  background: #FFFFFF;
  border: 2px solid #D4DBC7;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
}

.indoor-unit__vents {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.indoor-unit__vents i {
  display: block;
  height: 3px;
  background: #E4E9DC;
  border-radius: 2px;
}

.indoor-unit__dot {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 9px;
  height: 9px;
  background: #84CC16;
  border-radius: 50%;
}

.outdoor-unit {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 176px;
  height: 240px;
  background: #FFFFFF;
  border: 2px solid #D4DBC7;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}

.outdoor-unit__fan {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #ECFCCB;
  border: 2px solid rgba(132, 204, 22, 0.55);
  position: relative;
}

.outdoor-unit__fan::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #84CC16;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.outdoor-unit__fan::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 3px;
  background: #84CC16;
  transform: translateX(-50%);
}

.outdoor-unit__grille {
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 10px;
  background: repeating-linear-gradient(180deg, #E4E9DC 0 4px, #FFFFFF 4px 8px);
  border-radius: 5px;
}

.outdoor-unit__grille--left {
  left: 14px;
}

.outdoor-unit__grille--right {
  right: 14px;
}

.airflow {
  position: absolute;
  border: 2px solid rgba(132, 204, 22, 0.55);
  border-radius: 50%;
}

.airflow--1 {
  top: 118px;
  left: 26%;
  width: 120px;
  height: 60px;
  border-left-color: transparent;
  border-right-color: transparent;
}

.airflow--2 {
  top: 150px;
  right: 24%;
  width: 120px;
  height: 60px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.heat-arc {
  position: absolute;
  top: 92px;
  right: 12%;
  width: 46px;
  height: 46px;
  border: 3px solid #84CC16;
  border-radius: 50%;
}

.cool-arc {
  position: absolute;
  bottom: 40px;
  left: 12%;
  width: 40px;
  height: 40px;
  border: 3px solid #65A30D;
  border-radius: 50%;
}

/* ============================================================
   FULL-WIDTH STATEMENT ROW
   ============================================================ */

.statement {
  background-color: #1B2118;
  color: #F8FAF5;
  padding: 90px 0;
}

.statement__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.statement__kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #84CC16;
  margin-bottom: 18px;
}

.statement h2 {
  color: #F8FAF5;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 22px;
}

.statement p {
  color: #ECFCCB;
  font-size: 1.1rem;
  max-width: 40em;
  margin: 0 auto 30px;
}

.statement__sig {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #F8FAF5;
  font-size: 0.9rem;
}

.statement__sig b {
  color: #84CC16;
}

/* ============================================================
   NUMBERED SERVICE PROCESS
   ============================================================ */

.process {
  background-color: #F8FAF5;
  padding: 96px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #65A30D;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}

.section-head p {
  color: #5C6656;
  font-size: 1.05rem;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process__item {
  position: relative;
  padding: 0 22px 0 0;
}

.process__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ECFCCB;
  -webkit-text-stroke: 2px #84CC16;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.process__item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process__item p {
  font-size: 0.92rem;
  color: #5C6656;
}

.process__item::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 8px;
  width: 30px;
  height: 2px;
  background: #84CC16;
}

.process__item:last-child::after {
  display: none;
}

/* ============================================================
   BENTO GRID
   ============================================================ */

.bento {
  background-color: #F1F4EA;
  padding: 96px 0;
}

.bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}

.bento__cell {
  background: #FFFFFF;
  border: 1px solid #E4E9DC;
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento__cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento__cell--tall {
  grid-row: span 2;
}

.bento__cell--wide {
  grid-column: span 2;
}

.bento__cell--lime {
  background: #84CC16;
  border-color: #84CC16;
}

.bento__cell--lime .bento__title,
.bento__cell--lime .bento__text {
  color: #1B2118;
}

.bento__cell--deep {
  background: #1B2118;
  border-color: #1B2118;
}

.bento__cell--deep .bento__title {
  color: #F8FAF5;
}

.bento__cell--deep .bento__text {
  color: #ECFCCB;
}

.bento__icon {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ECFCCB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.bento__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #1B2118;
  margin-bottom: 6px;
}

.bento__text {
  font-size: 0.92rem;
  color: #5C6656;
}

.bento__cell--lime .bento__icon {
  background: #F7FEE7;
}

/* ============================================================
   BIG NUMERAL STATS
   ============================================================ */

.stats {
  background-color: #F8FAF5;
  padding: 96px 0;
}

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

.stats__item {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #E4E9DC;
  border-radius: var(--radius-md);
  background: #FFFFFF;
}

.stats__value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #65A30D;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stats__value span {
  font-size: 1.6rem;
  color: #84CC16;
}

.stats__label {
  font-size: 0.95rem;
  color: #5C6656;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.compare {
  background-color: #F1F4EA;
  padding: 96px 0;
}

.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border: 1px solid #E4E9DC;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare__table th,
.compare__table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid #E4E9DC;
  font-size: 0.95rem;
}

.compare__table thead th {
  background: #1B2118;
  color: #F8FAF5;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: none;
}

.compare__table thead th:first-child {
  color: #84CC16;
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__table tbody td:first-child {
  font-weight: 600;
  color: #3A4235;
}

.compare__table tbody tr:nth-child(even) td {
  background: #F7FEE7;
}

.compare__tag {
  display: inline-block;
  background: #ECFCCB;
  color: #4D7C0F;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.compare__note {
  margin-top: 22px;
  font-size: 1rem;
  color: #3A4235;
  background: #FFFFFF;
  border-left: 4px solid #84CC16;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
}

/* ============================================================
   SPLIT CTA BAND + CONTACT FORM
   ============================================================ */

.cta-band {
  background-color: #F8FAF5;
  padding: 96px 0;
}

.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #1B2118;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 56px;
  color: #F8FAF5;
}

.cta-band__left h2 {
  color: #F8FAF5;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-band__left p {
  color: #ECFCCB;
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.cta-band__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.cta-band__contacts a {
  color: #84CC16;
  font-weight: 600;
  font-size: 1.05rem;
}

.cta-band__contacts a:hover {
  color: #ECFCCB;
}

.cta-band__right {
  background: #F8FAF5;
  border-radius: var(--radius-md);
  padding: 32px;
  color: #1B2118;
}

.cta-band__right h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.cta-band__right .form-note {
  font-size: 0.88rem;
  color: #5C6656;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: #3A4235;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: #1B2118;
  background: #FFFFFF;
  border: 1px solid #D4DBC7;
  border-radius: 10px;
  padding: 12px 14px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid #84CC16;
  border-color: #84CC16;
}

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

.form-status {
  display: none;
  margin-top: 14px;
  font-size: 0.9rem;
  color: #3F6212;
  background: #ECFCCB;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-status.show {
  display: block;
}

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

.site-footer {
  background-color: #1B2118;
  color: #F8FAF5;
  border-top: 4px solid #84CC16;
  padding: 60px 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 44px;
}

.site-footer h4 {
  color: #F8FAF5;
  font-size: 1rem;
  margin-bottom: 18px;
}

.site-footer p {
  color: #C9D2BE;
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul a {
  color: #C9D2BE;
  font-size: 0.92rem;
}

.site-footer ul a:hover {
  color: #84CC16;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.site-footer__brand .thermo-word {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #F8FAF5;
}

.site-footer__contact li {
  color: #C9D2BE;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.site-footer__contact a {
  color: #84CC16;
}

.site-footer__bottom {
  border-top: 1px solid #3A4235;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: #9AA88A;
  font-size: 0.85rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .split-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .unit-scene {
    min-height: 420px;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .process__item::after {
    display: none;
  }

  .bento__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band__grid {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .thermo-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #F8FAF5;
    border-bottom: 1px solid #E4E9DC;
    padding: 12px 24px 20px;
    display: none;
  }

  .thermo-nav.open .thermo-links {
    display: flex;
  }

  .thermo-links li {
    padding: 10px 0;
    border-bottom: 1px solid #E4E9DC;
  }

  .thermo-links li:last-child {
    border-bottom: none;
  }

  .thermo-cta {
    margin-top: 12px;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .process__grid {
    grid-template-columns: 1fr;
  }

  .bento__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    min-height: 0;
  }

  .bento__cell {
    min-height: 200px;
  }

  .bento__cell--tall {
    grid-row: auto;
  }

  .bento__cell--wide {
    grid-column: auto;
  }

  .compare__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .unit-scene {
    min-height: 400px;
  }
}
