:root {
  --bg: rgb(255, 247, 237);
  --ink: #242321;
  --muted: #6d6258;
  --soft: #efe2d2;
  --line: rgba(72, 58, 45, 0.18);
  --accent: #8f6448;
  --accent-dark: #5e3f2d;
  --white: #fffaf3;
  --shadow: 0 24px 70px rgba(71, 49, 28, 0.11);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter Tight", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--ink);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.preloader::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 7vw, 72px);
  width: min(180px, 42vw);
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.preloader img {
  width: clamp(46px, 6vw, 64px);
  height: auto;
  animation: preloader-mark 1200ms ease-in-out infinite;
}

.preloader span {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(46px, 6vw, 64px));
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes preloader-mark {
  0%,
  100% {
    opacity: 0.62;
    transform: translateY(0) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 16px;
  background: rgba(255, 247, 237, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 58px;
}

.brand img {
  display: block;
  width: clamp(168px, 16vw, 214px);
  height: auto;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
  border-color: var(--accent);
}

.hero,
.intro-band,
.method,
.goals,
.credentials,
.blog-preview,
.contact,
.page-hero,
.blog-list {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(20px, 3vw, 42px);
  min-height: clamp(680px, calc(100vh - 98px), 860px);
  align-items: center;
  padding: 46px 0 88px;
}

.hero__content {
  max-width: 680px;
  padding: clamp(42px, 7vw, 92px) 0 clamp(34px, 5vw, 68px);
}

.overline,
.section-kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  margin-bottom: 30px;
  font-size: clamp(56px, 6.4vw, 82px);
  font-weight: 400;
  line-height: 1;
}

h1 span {
  display: block;
}

.mobile-line {
  display: none;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.05;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #3f3d39;
  font-size: clamp(22px, 2.25vw, 29px);
  font-weight: 400;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--accent-dark);
  border-radius: 0;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  padding: 16px 24px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  background: var(--accent-dark);
  color: var(--bg);
  transform: translateY(-1px);
}

.hero__panel {
  align-self: stretch;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  padding-left: clamp(12px, 2vw, 22px);
}

.hero__panel div {
  display: flex;
  flex-direction: column;
  min-height: 136px;
  border-bottom: 1px solid var(--line);
  border-right: 0;
  padding: 24px clamp(20px, 3vw, 30px);
}

.hero__panel div:last-child {
  border-bottom: 0;
}

.hero__panel span,
.method-grid span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.method-grid span {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.hero__panel p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 34ch;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(68px, 9vw, 120px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.split p,
.text-block p,
.method-lead,
.contact__copy p,
.section-lead {
  color: #45413d;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.85;
}

.text-block {
  max-width: 760px;
}

.text-block p,
.method-lead {
  margin-bottom: 0;
}

.method-lead {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-lead {
  max-width: 520px;
  margin: 24px 0 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.method,
.goals,
.credentials,
.blog-preview,
.contact {
  padding: clamp(76px, 10vw, 136px) 0 0;
}

.section-flow__item:nth-child(even) .section-heading {
  margin-left: auto;
  text-align: right;
}

.section-flow__item:nth-child(even) .split h2 {
  order: 2;
}

.section-flow__item:nth-child(even) .split p {
  order: 1;
}

.section-flow__item:nth-child(even).goals .section-heading,
.section-flow__item:nth-child(even).contact .contact__copy {
  order: 2;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-grid article {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.method-grid article:hover,
.method-grid article:focus-within {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(71, 49, 28, 0.09);
  transform: translateY(-6px);
}

.method-grid h3 {
  min-height: 72px;
}

.method-grid p,
.credential-list p,
.article-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.goal-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.goal-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: rgba(255, 247, 237, 0.94);
  padding: clamp(24px, 3vw, 34px);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.goal-card:hover,
.goal-card:focus-within {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(71, 49, 28, 0.09);
  transform: translateY(-6px);
}

.goal-card span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  margin-bottom: clamp(26px, 3vw, 42px);
}

.goal-card h3 {
  min-height: 70px;
}

.goal-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  min-height: 82px;
}

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

.goal-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  padding: 8px 0 0;
}

.credentials {
  margin-top: clamp(16px, 5vw, 54px);
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential-list article {
  display: flex;
  flex-direction: column;
  background: rgba(255, 247, 237, 0.92);
  min-height: 185px;
  padding: 30px;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.credential-list article:last-child {
  align-items: center;
  grid-column: 1 / -1;
  justify-content: center;
  text-align: center;
}

.credential-list article:hover,
.credential-list article:focus-within {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(71, 49, 28, 0.09);
  transform: translateY(-6px);
}

.credential-list h3 {
  min-height: 68px;
}

.blog-preview {
  display: block;
}

.section-link {
  margin-top: 28px;
}

.article-row,
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: rgba(255, 247, 237, 0.96);
  padding: clamp(24px, 3vw, 34px);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.article-card:hover,
.article-card:focus-within {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(71, 49, 28, 0.09);
  transform: translateY(-6px);
}

.article-card p {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-card h3,
.article-card h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.08;
}

.article-card a {
  z-index: 1;
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero {
  padding: clamp(70px, 10vw, 132px) 0 clamp(54px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 980px;
}

.status-hero {
  padding-bottom: clamp(28px, 5vw, 56px);
}

.status-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto clamp(72px, 10vw, 132px);
}

.status-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 6vw, 68px) 0;
}

.status-card p {
  max-width: 740px;
  margin: 0;
  color: #45413d;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.8;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(28px, 5vw, 44px);
}

.blog-articles {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto clamp(72px, 10vw, 132px);
}

.blog-list {
  position: relative;
  margin-bottom: clamp(72px, 10vw, 132px);
}

.blog-list::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: 1px;
  background: var(--line);
  pointer-events: none;
  transform: translateX(-0.5px);
}

.article-card--large {
  min-height: 360px;
}

.article-detail {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto clamp(72px, 10vw, 132px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.article-body {
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 62px);
}

.article-body h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: clamp(42px, 6vw, 64px) 0 18px;
}

.article-body p,
.article-body li {
  color: #45413d;
  font-size: 19px;
  line-height: 1.85;
}

.article-body ul {
  margin: 0 0 34px;
  padding-left: 22px;
}

.source-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: 22px;
}

.contact {
  padding-bottom: clamp(72px, 10vw, 132px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  background: rgba(255, 247, 237, 0.92);
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contact-card:hover,
.contact-card:focus-within {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(71, 49, 28, 0.09);
  transform: translateY(-6px);
}

.contact__copy .notice {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 500 17px/1.5 var(--sans);
  margin-top: 9px;
  outline: none;
  padding: 12px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-dark);
}

.turnstile-field {
  margin: 4px 0 22px;
}

.contact-form .button {
  width: 100%;
  margin-top: 10px;
}

.form-status {
  min-height: 26px;
  margin: 18px 0 0;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 48px));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: 0 auto;
  padding: 28px 0 38px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  min-width: 0;
  padding-right: 70px;
  text-align: right;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  min-width: 0;
  padding-bottom: 4px;
  transition: color 180ms ease, border-color 180ms ease;
  overflow-wrap: anywhere;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  border-color: var(--accent);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent-dark);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--accent-dark);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.section-reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1100ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1100ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 1100ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--section-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.reveal-enabled [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

body.section-reveal-enabled .section-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(72px);
  filter: blur(6px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

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

  [data-reveal],
  .section-reveal,
  .preloader img,
  body.reveal-enabled [data-reveal]:not(.is-visible),
  body.section-reveal-enabled .section-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px 0 14px;
  }

  .site-nav {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .hero,
  .split,
  .goals,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero__content {
    padding-top: clamp(24px, 5vw, 52px);
  }

  .hero__panel {
    align-self: stretch;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 18px;
  }

  .hero__panel div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 112px;
    padding: 20px 18px 16px;
  }

  .hero__panel div:last-child {
    border-bottom: 0;
  }

  .method-grid,
  .goal-system,
  .credential-list,
  .contact-grid,
  .article-row,
  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-flow__item:nth-child(even) .section-heading {
    margin-left: 0;
    text-align: left;
  }

  .section-flow__item:nth-child(even) .split h2,
  .section-flow__item:nth-child(even) .split p,
  .section-flow__item:nth-child(even).goals .section-heading,
  .section-flow__item:nth-child(even).contact .contact__copy {
    order: initial;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    padding-right: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  [id] {
    scroll-margin-top: 128px;
  }

  .site-header,
  .hero,
  .intro-band,
  .method,
    .goals,
    .credentials,
    .blog-preview,
    .contact,
    .page-hero,
    .article-detail,
    .status-page,
    .blog-articles,
    .blog-list,
    .site-footer {
    width: calc(100vw - 32px);
    max-width: none;
    margin-left: 16px;
    margin-right: auto;
  }

  .site-nav {
    width: 100%;
    gap: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .brand {
    min-height: 46px;
  }

  .brand img {
    width: 154px;
  }

  h1 {
    font-size: clamp(38px, 10.4vw, 46px);
    line-height: 1.02;
  }

  .desktop-line {
    display: none;
  }

  .mobile-line {
    display: block;
  }

  h2 {
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.06;
  }

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

  .hero {
    padding: 18px 0 58px;
  }

  .hero__content {
    padding: 28px 0 22px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    max-width: 100%;
  }

  .button {
    max-width: 100%;
    width: 100%;
  }

  .text-link {
    white-space: normal;
  }

  .hero__panel,
  .method-grid,
  .goal-system,
  .credential-list,
  .contact-grid,
  .article-row,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-list::before {
    display: none;
  }

  .hero__panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__panel div:last-child {
    border-bottom: 0;
  }

  .method-grid article {
    min-height: auto;
  }

  .method-grid h3,
  .credential-list h3 {
    min-height: 0;
  }

  .goal-card {
    min-height: auto;
  }

  .goal-card p {
    min-height: 0;
  }

  .goal-card h3 {
    min-height: 0;
  }

  .contact-form {
    box-shadow: 0 18px 52px rgba(71, 49, 28, 0.1);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
