:root {
  --white: #fcfcfa;
  --green: #183b35;
  --green-soft: #244b44;
  --ink: #313936;
  --muted: #68736f;
  --sage: #dde8e2;
  --sage-light: #f1f5f2;
  --blush: #efe3e7;
  --berry: #a9566c;
  --berry-dark: #8b4256;
  --line: #d9deda;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 26px 70px rgba(24, 59, 53, 0.1);
  --radius: 14px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

figure,
h1,
h2,
h3,
p,
ul,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(4rem, 5.25vw, 5.25rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(3rem, 4.15vw, 4rem);
  line-height: 1.04;
}

h3 {
  font-size: 2rem;
  line-height: 1.15;
}

::selection {
  color: var(--white);
  background: var(--green);
}

:focus-visible {
  outline: 3px solid rgba(169, 86, 108, 0.46);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 112px), 1424px);
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  background: rgba(252, 252, 250, 0.96);
  border-bottom: 1px solid transparent;
  transition: height 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  height: 76px;
  border-color: rgba(217, 222, 218, 0.9);
  box-shadow: 0 8px 28px rgba(24, 59, 53, 0.045);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 34px;
}

.logo,
.footer-logo {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  line-height: 0;
}

.logo {
  width: 230px;
  height: 58px;
}

.logo img,
.footer-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 127.2%;
  max-width: none;
  height: auto;
  transform: translate(-50.13%, -45.85%);
}

.logo img {
  transform: translate(-50.13%, -50%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 600;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-booking {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover {
  background: var(--green-soft);
  border-color: var(--green-soft);
}

.button-berry {
  color: var(--white);
  background: var(--berry);
  border-color: var(--berry);
}

.button-berry:hover {
  background: var(--berry-dark);
  border-color: var(--berry-dark);
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 0.91rem;
  font-weight: 600;
}

.text-link svg,
.treatment-list svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.text-link:hover svg,
.treatment-list a:hover svg {
  transform: translateX(5px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  display: flex;
  min-height: calc(100svh - 88px);
  align-items: center;
  padding-block: 54px 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(52px, 6vw, 100px);
}

.hero-copy {
  max-width: 630px;
}

.hero-copy > p:first-of-type {
  max-width: 560px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1.23rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-proof span {
  width: 7px;
  height: 7px;
  background: var(--berry);
  border-radius: 50%;
}

.hero-image {
  overflow: hidden;
  height: min(71vh, 720px);
  min-height: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image img,
.about-intro figure img,
.contact-card > figure img {
  height: 100%;
  object-fit: cover;
}

.hero-image img {
  object-position: 53% center;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image:hover img {
  transform: scale(1.015);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2 {
  max-width: 790px;
}

.section-heading p {
  max-width: 410px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 1.03rem;
}

.treatments {
  background: #f8faf8;
}

.treatment-tabs {
  margin-top: 62px;
}

.tab-list {
  display: flex;
  gap: 35px;
  border-bottom: 1px solid var(--line);
}

.tab-list button {
  position: relative;
  min-width: 88px;
  padding: 0 0 17px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
}

.tab-list button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.tab-list button[aria-selected="true"] {
  color: var(--green);
}

.tab-list button[aria-selected="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.treatment-layout {
  padding-top: 32px;
}

.treatment-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.treatment-panel[hidden] {
  display: none;
}

.treatment-panel.is-entering {
  animation: panel-in 220ms ease both;
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(120px, auto));
  grid-auto-flow: column;
  column-gap: clamp(38px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.treatment-list li {
  border-bottom: 1px solid var(--line);
  transition: border-color 220ms ease;
}

.treatment-list a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 25px;
  min-height: 120px;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 220ms ease, background-color 220ms ease;
}

.treatment-list a:hover {
  color: var(--berry-dark);
  background: linear-gradient(90deg, rgba(221, 232, 226, 0.38), rgba(221, 232, 226, 0));
}

.treatment-list li:has(a:hover) {
  border-color: rgba(169, 86, 108, 0.56);
}

.treatment-thumb {
  display: block;
  overflow: hidden;
  width: 132px;
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  background: var(--sage-light);
}

.treatment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment-list a:hover .treatment-thumb img {
  transform: scale(1.025);
}

.treatment-name {
  min-width: 0;
}

.treatment-list svg {
  flex: 0 0 25px;
}

.all-treatments {
  margin-top: 36px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(62px, 8vw, 128px);
}

.about-intro figure {
  overflow: hidden;
  height: 590px;
  border-radius: var(--radius);
}

.about-intro figure img {
  object-position: center 42%;
}

.about-intro > div > p {
  max-width: 535px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-intro .text-link {
  margin-top: 31px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  padding: 25px 32px;
  color: var(--green);
  background: var(--sage-light);
  border-radius: 10px;
  text-align: center;
}

.proof-row span {
  padding: 5px 20px;
  font-size: 0.91rem;
  font-weight: 600;
}

.proof-row span + span {
  border-left: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 70px;
}

.profile {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 35px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile figure {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 50%;
}

.profile figure img {
  height: 100%;
  object-fit: cover;
}

.profile .role {
  margin-top: 5px;
  color: var(--berry);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile div > p:last-child {
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.voucher {
  padding-top: 40px;
}

.voucher-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  min-height: 505px;
  overflow: hidden;
  align-items: center;
  background: var(--blush);
  border-radius: var(--radius);
}

.voucher-copy {
  padding: clamp(50px, 7vw, 102px);
}

.voucher-copy h2 {
  max-width: 540px;
}

.voucher-copy p {
  max-width: 420px;
  margin-top: 24px;
  color: #6f5960;
  font-size: 1.02rem;
}

.voucher-copy .button {
  margin-top: 33px;
}

.voucher-card figure {
  height: 100%;
  min-height: 505px;
}

.voucher-card figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(0, 0.92fr);
  min-height: 590px;
  overflow: hidden;
  align-items: stretch;
  background: var(--sage);
  border-radius: var(--radius);
}

.contact-card > figure {
  min-height: 590px;
}

.contact-card > figure img {
  object-position: center;
}

.contact-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 100px);
}

.contact-copy address {
  display: grid;
  gap: 15px;
  margin-top: 30px;
  font-style: normal;
}

.contact-copy address a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 500;
}

.contact-copy address svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contact-copy > .button {
  margin-top: 33px;
}

.hours {
  width: 100%;
  max-width: 390px;
  margin-top: 25px;
  border-top: 1px solid rgba(24, 59, 53, 0.2);
}

.hours summary {
  padding: 17px 0 0;
  cursor: pointer;
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 600;
  list-style: none;
}

.hours summary::-webkit-details-marker {
  display: none;
}

.hours summary::after {
  float: right;
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
}

.hours[open] summary::after {
  content: "–";
}

.hours dl {
  display: grid;
  gap: 5px;
  padding-top: 15px;
  font-size: 0.84rem;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours dd {
  color: var(--green);
}

.site-footer {
  padding-block: 50px 45px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.75fr 0.95fr auto;
  align-items: end;
  gap: 40px;
}

.footer-logo {
  width: 210px;
  height: 52px;
}

.site-footer p,
.site-footer nav,
.site-footer > div > span {
  font-size: 0.82rem;
  line-height: 1.7;
}

.site-footer nav {
  display: grid;
  width: max-content;
  gap: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js [data-hero-copy] > * {
  transform: translateY(12px);
}

.js .is-ready [data-hero-copy] > * {
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .is-ready [data-hero-copy] > *:nth-child(2) {
  transition-delay: 80ms;
}

.js .is-ready [data-hero-copy] > *:nth-child(3) {
  transition-delay: 145ms;
}

.js .is-ready [data-hero-copy] > *:nth-child(4) {
  transition-delay: 205ms;
}

.js [data-hero-image] {
  clip-path: inset(0 0 5% 0 round var(--radius));
  transform: translateY(10px);
}

.js .is-ready [data-hero-image] {
  clip-path: inset(0 round var(--radius));
  transform: translateY(0);
  transition: clip-path 700ms cubic-bezier(0.22, 1, 0.36, 1) 80ms, transform 620ms ease 80ms;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 64px), 1424px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
    gap: 52px;
  }

  h1 {
    font-size: clamp(3.65rem, 5.8vw, 4.55rem);
  }

  .about-intro,
  .contact-card {
    grid-template-columns: minmax(440px, 1fr) minmax(0, 1fr);
    gap: 58px;
  }

  .contact-card {
    gap: 0;
  }

  .profile {
    grid-template-columns: 145px 1fr;
    gap: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 0.8fr 1fr;
  }

  .site-footer > .footer-grid > span {
    grid-column: 4;
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .logo {
    width: 205px;
    height: 52px;
  }

  .desktop-nav,
  .header-booking {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    grid-template-columns: auto 22px;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .menu-button i {
    grid-column: 2;
    display: block;
    width: 22px;
    height: 1px;
    background: var(--green);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-button i:first-of-type {
    grid-row: 1;
    transform: translateY(-4px);
  }

  .menu-button i:last-of-type {
    grid-row: 1;
    transform: translateY(4px);
  }

  .menu-button[aria-expanded="true"] i:first-of-type {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-of-type {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 76px 0 0;
    z-index: 99;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    padding: 52px 32px 32px;
    opacity: 0;
    background: var(--white);
    transition: visibility 240ms, opacity 240ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu nav {
    display: grid;
    width: 100%;
  }

  .mobile-menu nav a {
    padding: 13px 0;
    color: var(--green);
    font-family: var(--serif);
    font-size: 2.5rem;
    line-height: 1.1;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu .button {
    margin-top: 36px;
  }

  .mobile-menu > p {
    margin-top: auto;
    color: var(--muted);
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding-block: 72px 82px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .hero-image {
    height: 62vw;
    min-height: 520px;
    max-height: 700px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading p {
    max-width: 520px;
  }

  .treatment-list {
    column-gap: 32px;
  }

  .treatment-list a {
    grid-template-columns: 112px minmax(0, 1fr) 22px;
    gap: 16px;
  }

  .treatment-thumb {
    width: 112px;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro figure {
    height: min(70vw, 640px);
  }

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

  .profile {
    grid-template-columns: 175px 1fr;
  }

  .voucher-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .voucher-card figure {
    min-height: 470px;
  }

  .contact-card > figure {
    height: 560px;
    min-height: 0;
  }

  .contact-copy {
    padding-block: 70px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .site-footer > .footer-grid > span {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 80px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .logo {
    width: 180px;
    height: 47px;
  }

  .mobile-menu {
    inset: 72px 0 0;
    padding: 40px 20px 25px;
  }

  .mobile-menu nav a {
    font-size: 2.15rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.15rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.35rem, 10.5vw, 2.8rem);
    line-height: 1.05;
  }

  h3 {
    font-size: 1.8rem;
  }

  .hero {
    padding-block: 48px 66px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-copy > p:first-of-type {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 30px;
    font-size: 0.81rem;
  }

  .hero-image {
    height: min(110vw, 460px);
    min-height: 390px;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading p {
    font-size: 0.94rem;
  }

  .treatment-tabs {
    margin-top: 42px;
  }

  .tab-list {
    gap: 28px;
  }

  .tab-list button {
    min-width: 70px;
    padding-bottom: 13px;
    font-size: 0.96rem;
  }

  .treatment-layout {
    padding-top: 30px;
  }

  .treatment-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    column-gap: 0;
  }

  .treatment-list a {
    grid-template-columns: 96px minmax(0, 1fr) 20px;
    min-height: 88px;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.98rem;
  }

  .treatment-thumb {
    width: 96px;
    border-radius: 5px;
  }

  .all-treatments {
    margin-top: 27px;
  }

  .about-intro {
    gap: 42px;
  }

  .about-intro figure {
    height: auto;
    max-height: none;
    aspect-ratio: 3 / 2;
  }

  .about-intro > div > p {
    margin-top: 21px;
    font-size: 0.98rem;
  }

  .about-intro .text-link {
    margin-top: 25px;
  }

  .proof-row {
    grid-template-columns: 1fr;
    margin-top: 50px;
    padding: 15px 22px;
    text-align: left;
  }

  .proof-row span {
    padding: 13px 4px;
  }

  .proof-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .team-grid {
    gap: 18px;
    margin-top: 50px;
  }

  .profile {
    grid-template-columns: 96px 1fr;
    align-items: start;
    gap: 18px;
    padding: 20px;
  }

  .profile div > p:last-child {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .voucher {
    padding-top: 16px;
  }

  .voucher-card {
    min-height: 0;
  }

  .voucher-copy {
    padding: 48px 28px;
  }

  .voucher-copy p {
    margin-top: 20px;
    font-size: 0.94rem;
  }

  .voucher-copy .button {
    width: 100%;
    margin-top: 28px;
  }

  .voucher-card figure {
    min-height: 330px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-card > figure {
    height: 100vw;
    max-height: 430px;
  }

  .contact-copy {
    padding: 48px 28px;
  }

  .contact-copy address {
    margin-top: 24px;
  }

  .contact-copy > .button {
    width: 100%;
    margin-top: 29px;
  }

  .site-footer {
    padding-block: 38px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    width: 190px;
    height: 48px;
  }

  .site-footer nav {
    width: auto;
  }
}

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

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

  .js .reveal,
  .js [data-hero-copy] > *,
  .js [data-hero-image] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
