:root {
  --paper: #f8faf5;
  --white: #fffefb;
  --mist: #edf7ec;
  --meadow: #dcefd9;
  --meadow-deep: #cbe7cf;
  --ink: #183029;
  --ink-soft: #52665d;
  --forest: #124b37;
  --forest-deep: #0a3528;
  --leaf: #4cad68;
  --leaf-dark: #2d8051;
  --sun: #f4d35e;
  --line: rgb(18 75 55 / 14%);
  --gutter: clamp(1.4rem, 5vw, 5.8rem);
  --display:
    "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --text: "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --shadow: 0 30px 80px rgb(21 74 52 / 17%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #e4ece4;
  font-family: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site {
  width: min(100%, 1600px);
  min-height: 100vh;
  margin-inline: auto;
  overflow: clip;
  background: var(--paper);
  box-shadow: 0 0 80px rgb(17 61 44 / 10%);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 0.65rem;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand:focus-visible,
.button:focus-visible,
.footer-brand:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 5px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  background:
    linear-gradient(90deg, rgb(248 250 245 / 96%), rgb(237 247 236 / 84%)),
    var(--paper);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.82rem;
  text-decoration: none;
}

.brand__mark {
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: var(--paper);
  border-radius: 50%;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.62);
  mix-blend-mode: multiply;
}

.brand__name {
  display: grid;
  line-height: 1;
}

.brand__name strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 780;
  letter-spacing: -0.048em;
}

.brand__name small {
  margin-top: 0.36rem;
  color: var(--leaf-dark);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-status {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  margin: 0;
  padding: 0.6rem 0.9rem;
  color: var(--forest);
  background: rgb(255 254 251 / 76%);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-status span {
  width: 8px;
  height: 8px;
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(76 173 104 / 14%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(3.8rem, 6vw, 6.8rem) var(--gutter)
    clamp(6rem, 9vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgb(244 211 94 / 25%), transparent 14rem),
    radial-gradient(circle at 92% 70%, rgb(76 173 104 / 17%), transparent 25rem),
    linear-gradient(105deg, var(--paper) 0 49%, var(--mist) 100%);
  border-radius: 0 0 clamp(3rem, 7vw, 7rem) clamp(3rem, 7vw, 7rem);
}

.hero__glow {
  position: absolute;
  top: 10%;
  left: -9rem;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgb(76 173 104 / 16%);
  border-radius: 50%;
}

.hero__glow::after {
  position: absolute;
  inset: 3.6rem;
  border: 1px solid rgb(76 173 104 / 11%);
  border-radius: inherit;
  content: "";
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
  animation: lift 660ms both ease-out;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  color: var(--leaf-dark);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.35rem;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.eyebrow--light {
  color: #9ad8a8;
}

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

h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6.4vw, 7rem);
  font-weight: 720;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

h1 em {
  position: relative;
  z-index: 0;
  display: inline;
  color: var(--forest);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: -0.01em;
  left: -0.03em;
  height: 0.19em;
  background: var(--sun);
  border-radius: 999px 35% 999px 40%;
  content: "";
  transform: rotate(-1deg);
}

.hero__lead {
  max-width: 660px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  letter-spacing: -0.018em;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  margin-top: 2.4rem;
}

.hero__actions > p {
  max-width: 255px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 650;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.78rem;
  padding: 0.9rem 1.18rem 0.9rem 1.32rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgb(18 75 55 / 20%);
  font-size: 0.87rem;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.button:hover {
  background: var(--leaf-dark);
  box-shadow: 0 20px 42px rgb(45 128 81 / 25%);
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.hero__visual {
  position: relative;
  width: min(100%, 610px);
  min-height: 650px;
  justify-self: end;
  animation: lift 760ms 80ms both ease-out;
}

.hero__shape {
  position: absolute;
  z-index: 1;
  inset: 2.7rem -1.7rem -1.4rem 3rem;
  background: linear-gradient(145deg, var(--meadow), #82cf8b);
  border-radius: 48% 48% 41% 16% / 41% 43% 43% 53%;
  transform: rotate(4deg);
}

.hero__shape::after {
  position: absolute;
  right: -2.2rem;
  bottom: 4.6rem;
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 50%;
  content: "";
}

.hero__sun {
  position: absolute;
  z-index: 0;
  top: -0.7rem;
  right: -0.2rem;
  width: clamp(7rem, 11vw, 10rem);
  height: clamp(7rem, 11vw, 10rem);
  background: var(--sun);
  border-radius: 50%;
}

.hero__photo {
  position: absolute;
  z-index: 2;
  inset: 0.8rem 1.2rem 1.3rem 0;
  margin: 0;
  overflow: hidden;
  background: var(--meadow);
  border: 10px solid var(--white);
  border-radius: 48% 48% 39% 15% / 40% 42% 42% 54%;
  box-shadow: var(--shadow);
}

.hero__photo picture,
.hero__photo img {
  width: 100%;
  height: 100%;
}

.hero__photo img {
  object-fit: cover;
  object-position: 52% 55%;
}

.hero__rhythm {
  position: absolute;
  z-index: 4;
  right: -0.4rem;
  bottom: 2.8rem;
  display: flex;
  margin: 0;
  padding: 1rem 1.2rem;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgb(18 75 55 / 8%);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgb(18 75 55 / 18%);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero__rhythm span {
  display: inline-flex;
  align-items: center;
}

.hero__rhythm span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin-inline: 0.62rem;
  background: var(--sun);
  border-radius: 50%;
  content: "";
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(3.5rem, 9vw, 10rem);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  background: var(--white);
}

.origin__heading {
  max-width: 620px;
}

.origin h2,
.way h2,
.visibility h2,
.status-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.35vw, 5.9rem);
  font-weight: 700;
  letter-spacing: -0.062em;
  line-height: 0.97;
}

.origin__lead {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.022em;
  line-height: 1.58;
}

.origin__questions {
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
}

.origin__questions p {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.origin__questions span {
  color: var(--leaf-dark);
  font-family: var(--text);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.way {
  position: relative;
  margin-inline: clamp(1rem, 2.5vw, 2.5rem);
  padding: clamp(5.5rem, 9vw, 9rem) var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgb(255 255 255 / 50%), transparent 16rem),
    radial-gradient(circle at 92% 84%, rgb(76 173 104 / 20%), transparent 20rem),
    var(--meadow);
  border-radius: clamp(2.5rem, 5vw, 5rem);
}

.way::after {
  position: absolute;
  top: -7rem;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgb(18 75 55 / 12%);
  border-radius: 50%;
  content: "";
}

.way__heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.way__heading .eyebrow {
  justify-content: center;
}

.way__heading > p:last-child {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: #425a4e;
  font-size: 1.05rem;
  line-height: 1.7;
}

.way__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  margin: clamp(4rem, 7vw, 6.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.way__steps::before {
  position: absolute;
  z-index: -1;
  top: 31px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: rgb(18 75 55 / 22%);
  content: "";
}

.way__steps li {
  text-align: center;
}

.way__number {
  display: grid;
  width: 62px;
  height: 62px;
  margin-inline: auto;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border: 7px solid var(--meadow);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgb(18 75 55 / 15%);
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.way__steps h3 {
  max-width: 270px;
  margin: 1.75rem auto 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.way__steps p {
  max-width: 330px;
  margin: 1rem auto 0;
  color: #425a4e;
  font-size: 0.95rem;
  line-height: 1.65;
}

.visibility {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
  padding: clamp(6.5rem, 11vw, 11rem) var(--gutter);
}

.visibility__mark {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 20%, var(--sun) 0 9%, transparent 9.4%),
    linear-gradient(145deg, #eef8ec, #d5ecd7);
  border-radius: 48% 52% 43% 57% / 52% 43% 57% 48%;
  box-shadow: 0 30px 70px rgb(18 75 55 / 13%);
  transform: rotate(-2deg);
}

.visibility__mark img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4) rotate(2deg);
  mix-blend-mode: multiply;
}

.visibility__orbit {
  position: absolute;
  right: -21%;
  bottom: -20%;
  width: 72%;
  height: 72%;
  border: 2px solid rgb(76 173 104 / 30%);
  border-radius: 50%;
}

.visibility__copy {
  max-width: 780px;
}

.visibility__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.55vw, 1.22rem);
  line-height: 1.72;
}

.visibility__copy strong {
  display: block;
  margin-top: 1.7rem;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.status-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  margin: 0 clamp(1rem, 2.5vw, 2.5rem) clamp(1rem, 2.5vw, 2.5rem);
  padding: clamp(4.5rem, 8vw, 8rem) var(--gutter);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgb(76 173 104 / 22%), transparent 18rem),
    linear-gradient(135deg, var(--forest-deep), #124a35);
  border-radius: clamp(2.5rem, 5vw, 5rem);
}

.status-panel__copy {
  max-width: 820px;
}

.status-panel__copy > p:last-child {
  max-width: 680px;
  margin: 1.8rem 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: 1.02rem;
  line-height: 1.74;
}

.emergency-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--ink);
  background: var(--sun);
  border-radius: 1.7rem 1.7rem 1.7rem 0.45rem;
  box-shadow: 15px 15px 0 rgb(255 255 255 / 7%);
}

.emergency-note__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
}

.emergency-note h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.emergency-note p {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem var(--gutter);
  background: var(--paper);
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 790;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.footer-brand span {
  color: var(--leaf-dark);
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 650;
}

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 3.5rem;
  }

  h1 {
    font-size: clamp(3.8rem, 6.8vw, 5.8rem);
  }

  .hero__visual {
    min-height: 610px;
  }

  .origin {
    gap: 4rem;
  }

  .visibility {
    gap: 4.5rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 92px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4.5rem;
    padding-top: 4.2rem;
  }

  .hero__copy {
    max-width: 760px;
  }

  h1 {
    max-width: 800px;
    font-size: clamp(4rem, 11.5vw, 6.2rem);
  }

  .hero__visual {
    width: min(92%, 620px);
    min-height: 700px;
    justify-self: center;
  }

  .origin {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .origin__heading {
    max-width: 740px;
  }

  .origin__content {
    max-width: 720px;
  }

  .way__steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 660px;
    margin-inline: auto;
  }

  .way__steps::before {
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 1px;
    height: auto;
  }

  .way__steps li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 0.3rem 1.4rem;
    padding-block: 1.5rem;
    text-align: left;
  }

  .way__number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .way__steps h3,
  .way__steps p {
    max-width: none;
    margin-inline: 0;
  }

  .way__steps h3 {
    margin-top: 0.3rem;
  }

  .way__steps p {
    grid-column: 2;
    margin-top: 0.55rem;
  }

  .visibility {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .visibility__mark {
    width: min(68vw, 480px);
    justify-self: start;
  }

  .status-panel {
    grid-template-columns: 1fr;
  }

  .emergency-note {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1.25rem;
  }

  .site-header {
    min-height: 82px;
  }

  .brand {
    gap: 0.62rem;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .brand__name strong {
    font-size: 0.94rem;
  }

  .brand__name small {
    font-size: 0.52rem;
  }

  .site-status {
    width: 10px;
    height: 10px;
    padding: 0;
    overflow: hidden;
    background: var(--leaf);
    border: 0;
    box-shadow: 0 0 0 5px rgb(76 173 104 / 14%);
    font-size: 0;
  }

  .site-status span {
    display: none;
  }

  .hero {
    gap: 3.5rem;
    padding-block: 3.4rem 5.5rem;
    border-radius: 0 0 2.8rem 2.8rem;
  }

  .eyebrow {
    gap: 0.52rem;
    margin-bottom: 1.15rem;
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }

  .eyebrow::before {
    width: 1.7rem;
  }

  h1 {
    font-size: clamp(3.05rem, 14.8vw, 4.35rem);
    letter-spacing: -0.063em;
    line-height: 0.95;
  }

  .hero__lead {
    margin-top: 1.5rem;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2rem;
  }

  .hero__actions > p {
    max-width: 320px;
    padding-left: 0.15rem;
  }

  .hero__visual {
    width: 94%;
    min-height: 535px;
  }

  .hero__shape {
    inset: 2rem -1rem -1rem 2rem;
  }

  .hero__sun {
    top: -0.25rem;
    right: -0.5rem;
    width: 7rem;
    height: 7rem;
  }

  .hero__photo {
    inset: 0.7rem 0.7rem 1rem 0;
    border-width: 6px;
  }

  .hero__rhythm {
    right: -0.65rem;
    bottom: 1.7rem;
    padding: 0.82rem 0.9rem;
    font-size: 0.52rem;
    letter-spacing: 0.09em;
  }

  .hero__rhythm span:not(:last-child)::after {
    margin-inline: 0.45rem;
  }

  .origin,
  .visibility {
    padding-block: 5.2rem;
  }

  .origin h2,
  .way h2,
  .visibility h2,
  .status-panel h2 {
    font-size: clamp(2.85rem, 12.5vw, 4.05rem);
  }

  .origin__lead {
    font-size: 1.08rem;
  }

  .origin__questions {
    margin-top: 2.1rem;
  }

  .origin__questions p {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.7rem;
    padding: 1.15rem 0;
    font-size: 1.2rem;
  }

  .way {
    margin-inline: 0.75rem;
    padding: 4.8rem var(--gutter);
    border-radius: 2.4rem;
  }

  .way__heading {
    text-align: left;
  }

  .way__heading .eyebrow {
    justify-content: flex-start;
  }

  .way__heading > p:last-child {
    margin-inline: 0;
    font-size: 0.98rem;
  }

  .way__steps {
    margin-top: 3rem;
  }

  .way__steps li {
    grid-template-columns: 52px 1fr;
    gap: 0.2rem 1rem;
    padding-block: 1.25rem;
  }

  .way__steps::before {
    top: 26px;
    bottom: 26px;
    left: 26px;
  }

  .way__number {
    width: 52px;
    height: 52px;
    border-width: 5px;
    font-size: 0.56rem;
  }

  .way__steps h3 {
    font-size: 1.55rem;
  }

  .way__steps p {
    font-size: 0.91rem;
  }

  .visibility {
    gap: 3.7rem;
  }

  .visibility__mark {
    width: min(88vw, 390px);
  }

  .visibility__copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .visibility__copy strong {
    font-size: 1.5rem;
  }

  .status-panel {
    gap: 2.8rem;
    margin: 0 0.75rem 0.75rem;
    padding: 4.4rem var(--gutter);
    border-radius: 2.4rem;
  }

  .status-panel__copy > p:last-child {
    font-size: 0.97rem;
  }

  .emergency-note {
    grid-template-columns: 1fr;
    border-radius: 1.5rem 1.5rem 1.5rem 0.4rem;
    box-shadow: 10px 10px 0 rgb(255 255 255 / 7%);
  }

  .site-footer {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 2.77rem;
  }

  .hero__visual {
    min-height: 475px;
  }

  .hero__rhythm {
    right: -0.4rem;
    font-size: 0.47rem;
  }
}

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

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