:root {
  --paper: #f8f4ec;
  --paper-deep: #eee7db;
  --ink: #20211e;
  --muted: #5e625b;
  --orange: #f7902b;
  --sage: #cbd1bd;
  --sage-dark: #66705d;
  --white: #fffdf8;
  --line: rgba(32, 33, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 12px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid rgba(32, 33, 30, 0.09);
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand img {
  width: 29px;
  height: 43px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 5px;
  font-size: 0.58rem;
  letter-spacing: 0.19em;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #41443e;
  font-size: 0.9rem;
}

nav a,
.footer-links a {
  transition: color 180ms ease;
}

nav a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.header-cta {
  justify-self: end;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.8fr);
  align-items: stretch;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 130px) clamp(28px, 6vw, 100px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--sage-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 6.6vw, 7.5rem);
  line-height: 0.95;
}

h1 em {
  display: block;
  color: var(--orange);
  font-weight: 400;
}

.lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #21170d;
}

.button-primary:hover {
  background: #ff9f3f;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span {
  margin-left: 6px;
  color: var(--orange);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 54px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.trust-line span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 700px;
  padding: 46px 46px 0 0;
  background: var(--sage);
}

.hero-visual::before {
  position: absolute;
  inset: 52px 0 auto 0;
  color: rgba(255, 253, 248, 0.34);
  content: "YMMÄRRYS";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 9rem);
  letter-spacing: -0.05em;
  transform: translateX(-2%);
}

.portrait-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  border-radius: 190px 190px 0 0;
  background: #36414a;
}

.portrait {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: 50% 20%;
}

.portrait-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  min-width: 235px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 40px rgba(32, 33, 30, 0.16);
  backdrop-filter: blur(8px);
}

.portrait-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.portrait-note span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.warm-mark {
  position: absolute;
  z-index: 3;
  top: 33%;
  left: -31px;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(32, 33, 30, 0.14);
}

.warm-mark img {
  width: 30px;
  height: 46px;
  object-fit: contain;
}

.section {
  padding: clamp(80px, 10vw, 150px) clamp(26px, 7vw, 120px);
}

.recognition {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(50px, 9vw, 150px);
  background: var(--white);
}

.section-intro {
  max-width: 650px;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 4.7vw, 5.7rem);
  line-height: 1;
}

.section-intro > p:last-child,
.section-heading-row > p,
.process-copy > p:last-child,
.about-copy > p,
.contact-copy > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.situation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.situation-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.28;
}

.situation-list span {
  padding-top: 4px;
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.statement {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.statement img {
  position: absolute;
  width: min(42vw, 430px);
  opacity: 0.09;
  filter: grayscale(1) brightness(5);
}

.statement blockquote {
  position: relative;
  z-index: 1;
  max-width: 1150px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 6rem);
  line-height: 1.06;
}

.help {
  background: var(--paper-deep);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  margin-bottom: 6px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.help-grid article {
  min-height: 390px;
  padding: 34px;
  border: 1px solid rgba(32, 33, 30, 0.1);
  border-radius: 4px 72px 4px 4px;
  background: var(--white);
}

.help-grid article:nth-child(2) {
  background: #e2e6d6;
}

.help-grid article:nth-child(3) {
  background: #f4b778;
}

.card-number {
  display: block;
  margin-bottom: 105px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.help-grid h3,
.steps h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.help-grid p,
.steps p {
  margin-bottom: 0;
  color: #52564f;
  line-height: 1.7;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 170px);
  background: var(--white);
}

.process-copy {
  position: sticky;
  top: 140px;
  align-self: start;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  border-top: 1px solid var(--line);
}

.steps > li > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-weight: 800;
}

.pricing {
  background: var(--paper-deep);
}

.pricing-header {
  max-width: 850px;
  margin-bottom: 64px;
}

.pricing-header > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 4px 72px 4px 4px;
  background: var(--white);
}

.price-card-primary {
  background: #f4b778;
}

.price-label {
  width: max-content;
  margin-bottom: 72px;
  padding: 7px 11px;
  border: 1px solid rgba(32, 33, 30, 0.3);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 19px;
}

.price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.price-card > p {
  max-width: 490px;
  margin-bottom: 30px;
  color: #52564f;
  line-height: 1.7;
}

.price-link {
  width: max-content;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.price-link span {
  margin-left: 5px;
  color: var(--orange);
}

.price-card-primary .price-link span {
  color: var(--ink);
}

.price-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  background: var(--sage);
}

.site-header + .about {
  padding-top: clamp(64px, 6vw, 96px);
  padding-bottom: clamp(72px, 7vw, 110px);
}

.about-image {
  min-height: 660px;
  overflow: hidden;
  border-radius: 220px 220px 8px 8px;
  background: #36414a;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center 18%;
}

.about-copy {
  max-width: 740px;
}

.about-lead {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem) !important;
  line-height: 1.35 !important;
}

.signature {
  margin-top: 36px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-style: italic;
  transform: rotate(-4deg);
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.7fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: center;
  background: #f0e3d1;
}

.contact-copy {
  max-width: 850px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px;
  border-radius: 90px 8px 8px 8px;
  background: var(--orange);
}

.contact-card img {
  width: 50px;
  height: 70px;
  margin-bottom: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.17);
}

.contact-card p {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.25;
}

.contact-email {
  margin: -6px 0 26px;
  border-bottom: 1px solid rgba(32, 33, 30, 0.65);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.contact-email:hover {
  border-bottom-color: transparent;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #363831;
}

.contact-card small {
  margin-top: 22px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.care-note strong {
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.care-note p {
  max-width: 900px;
  margin-bottom: 0;
  line-height: 1.65;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 145px;
  padding: 30px clamp(26px, 7vw, 120px);
  background: var(--ink);
  color: var(--white);
}

footer p {
  margin: 0;
  color: #c8c8c0;
  font-size: 0.75rem;
  text-align: center;
}

.footer-links {
  display: grid;
  justify-self: end;
  gap: 8px;
  font-size: 0.78rem;
  text-align: right;
}

.footer-links a {
  justify-self: end;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.72fr;
  }

  .hero-copy {
    padding-right: 50px;
  }

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

  .hero-visual {
    padding-right: 24px;
  }

  .recognition,
  .about,
  .process,
  .contact {
    gap: 70px;
  }

  .help-grid article {
    padding: 27px;
  }
}

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

  .header-cta {
    padding: 10px 15px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 24px 60px;
  }

  h1 {
    font-size: clamp(3.25rem, 14vw, 5.5rem);
  }

  .trust-line {
    display: grid;
  }

  .trust-line span:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    min-height: 610px;
    padding: 44px 22px 0;
  }

  .portrait-wrap,
  .portrait {
    min-height: 570px;
  }

  .warm-mark {
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
  }

  .recognition,
  .section-heading-row,
  .process,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .recognition {
    gap: 48px;
  }

  .section-heading-row {
    gap: 25px;
  }

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

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

  .help-grid article {
    min-height: 330px;
  }

  .card-number {
    margin-bottom: 70px;
  }

  .process-copy {
    position: static;
  }

  .about-image {
    order: 2;
    min-height: 600px;
  }

  .about-image img {
    min-height: 600px;
  }

  .care-note {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  footer p {
    text-align: left;
  }

  .footer-links {
    justify-self: start;
    text-align: left;
  }

  .footer-links a {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.5rem;
  }

  .header-cta {
    font-size: 0.75rem;
  }

  .section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-note {
    right: 12px;
    bottom: 14px;
    left: 12px;
    min-width: 0;
  }

  .statement {
    min-height: 520px;
  }

  .steps li {
    grid-template-columns: 58px 1fr;
    gap: 13px;
  }

  .contact-card {
    padding: 38px 28px;
    border-radius: 70px 8px 8px 8px;
  }

  .contact-card .button {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.82rem;
  }

  .contact-email {
    font-size: 0.93rem;
  }

  .pricing-header {
    margin-bottom: 44px;
  }

  .price-card {
    min-height: 370px;
    padding: 30px 27px;
    border-radius: 4px 58px 4px 4px;
  }

  .price-label {
    margin-bottom: 58px;
  }

  .price strong {
    font-size: 3.7rem;
  }
}

/* Compact layout */
.site-header {
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  min-height: 520px;
}

.hero-copy {
  padding: clamp(48px, 5vw, 74px) clamp(24px, 5vw, 76px);
}

.eyebrow {
  margin-bottom: 14px;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.8vw, 3.3rem);
  line-height: 1.08;
}

.lead {
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
}

.trust-line {
  margin-top: 32px;
}

.hero-visual {
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 32px;
}

.hero-visual::before {
  inset: 32px 0 auto 0;
  font-size: clamp(3rem, 5vw, 6rem);
}

.portrait-wrap {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 135px 135px 0 0;
}

.portrait {
  height: 470px;
  min-height: 0;
}

.portrait-note {
  right: 18px;
  bottom: 18px;
  min-width: 195px;
  padding: 13px 17px;
}

.warm-mark {
  left: -25px;
  width: 64px;
  height: 64px;
}

.warm-mark img {
  width: 24px;
  height: 37px;
}

.section {
  padding: clamp(54px, 6vw, 88px) clamp(26px, 7vw, 120px);
}

.recognition {
  gap: clamp(40px, 6vw, 90px);
}

.statement {
  min-height: 360px;
}

.statement img {
  width: min(30vw, 300px);
}

.statement blockquote {
  max-width: 920px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.12;
}

.section-heading-row {
  gap: 55px;
  margin-bottom: 42px;
}

.help-grid article {
  min-height: 280px;
  padding: 27px;
  border-radius: 4px 50px 4px 4px;
}

.card-number {
  margin-bottom: 48px;
}

.help-grid h3,
.steps h3,
.price-card h3 {
  font-size: 1.55rem;
}

.process {
  gap: clamp(50px, 7vw, 105px);
}

.steps li {
  padding: 25px 0;
}

.pricing-header {
  margin-bottom: 42px;
}

.price-card {
  min-height: 320px;
  padding: 30px;
  border-radius: 4px 50px 4px 4px;
}

.price-label {
  margin-bottom: 36px;
}

.price strong {
  font-size: clamp(3rem, 4vw, 4.2rem);
}

.about {
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 85px);
}

.site-header + .about {
  padding-top: clamp(42px, 4vw, 64px);
  padding-bottom: clamp(48px, 5vw, 72px);
}

.about-image {
  width: 100%;
  max-width: 340px;
  min-height: 420px;
  justify-self: center;
  border-radius: 140px 140px 8px 8px;
}

.about-image img {
  min-height: 420px;
}

.about-lead {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem) !important;
  line-height: 1.42 !important;
}

.signature {
  margin-top: 22px;
  font-size: 2rem;
}

.contact {
  gap: clamp(50px, 7vw, 105px);
}

.contact-card {
  padding: 36px;
  border-radius: 64px 8px 8px 8px;
}

.contact-card img {
  width: 40px;
  height: 56px;
  margin-bottom: 26px;
}

.contact-card p {
  margin-bottom: 22px;
  font-size: 1.45rem;
}

@media (max-width: 820px) {
  .hero-copy {
    padding: 48px 22px 42px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .hero-visual {
    min-height: 410px;
    padding: 24px 20px;
  }

  .portrait-wrap {
    max-width: 340px;
    min-height: 0;
    margin: 0 auto;
    border-radius: 115px 115px 0 0;
  }

  .portrait {
    height: 360px;
    min-height: 0;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about {
    gap: 34px;
  }

  .about-image {
    max-width: 320px;
    min-height: 380px;
    border-radius: 125px 125px 8px 8px;
  }

  .about-image img {
    min-height: 380px;
  }

  .statement {
    min-height: 320px;
  }

  .statement blockquote {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .help-grid article {
    min-height: 240px;
  }

  .card-number {
    margin-bottom: 32px;
  }

  .price-card {
    min-height: 290px;
  }
}

/* Single-image layout: the introductory message spans the page. */
.hero {
  display: block;
  min-height: 0;
}

.hero-copy {
  width: 100%;
  padding: clamp(54px, 6vw, 86px) clamp(26px, 7vw, 120px);
}

.hero h1 {
  max-width: 1100px;
}

.hero .lead {
  max-width: 860px;
}

.hero-visual {
  display: none;
}

@media (max-width: 820px) {
  .hero-copy {
    padding: 48px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
