:root {
  --ink: #171716;
  --ink-soft: #222220;
  --paper: #eee9df;
  --paper-bright: #f6f2ea;
  --stone: #cfc2af;
  --gold: #b99145;
  --gold-light: #d1ad68;
  --line: rgba(185, 145, 69, 0.48);
  --white: #f7f4ed;
  --muted: #aaa297;
  --serif: 'Bodoni 72', Didot, 'Times New Roman', serif;
  --sans: 'Avenir Next', Avenir, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1600px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
blockquote {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6vw, 7rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  background: var(--paper-bright);
  color: var(--ink);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100%, var(--max-width));
  min-height: 96px;
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 3.6vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  width: max-content;
  text-transform: uppercase;
}

.brand__mark {
  position: relative;
  display: inline-grid;
  min-width: 68px;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brand__mark::after {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 24%;
  height: 20%;
  background: var(--ink);
  content: '';
}

.brand__name {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.42em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  padding: 0 1.5rem;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: '';
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.theme-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.theme-switch__label {
  padding-left: 0.6rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-switch button {
  min-width: 52px;
  padding: 0.45rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.theme-switch button[aria-pressed='true'] {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(340px, 38%);
  width: min(100%, var(--max-width));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: relative;
  z-index: 2;
  min-height: 650px;
  overflow: hidden;
  border-right: 1px solid var(--gold);
  border-radius: 0 48% 42% 0 / 0 54% 46% 0;
}

.hero__media img,
.about-hero__image img,
.feature__image img,
.craft__image img {
  position: absolute;
  inset: 0;
}

.hero__media::after,
.about-hero__image::after,
.feature__image::after,
.craft__image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(14, 13, 12, 0.12), transparent 35%, rgba(14, 13, 12, 0.04));
  content: '';
}

.hero__location {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: clamp(1.4rem, 3.5vw, 4.25rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__location i {
  width: 50px;
  height: 1px;
  background: currentColor;
}

.hero__copy {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5.5rem) clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 1.4rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 0.25rem;
}

.hero h1 {
  max-width: 8.6ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.7rem, 6.1vw, 7.6rem);
}

.hero__intro {
  max-width: 28rem;
  margin-bottom: 2rem;
  color: #d0cbc1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero__services {
  width: min(100%, 28rem);
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hero__services li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #e8e4dc;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shape {
  width: 17px;
  height: 17px;
  border: 1px solid var(--gold);
}

.shape--circle {
  border-radius: 50%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button--outline:hover,
.button--outline:focus-visible,
.button--solid {
  background: var(--gold);
  color: var(--ink);
}

.button--solid {
  min-width: 320px;
}

.button[aria-disabled='true'] {
  cursor: default;
}

.hero__niches {
  display: none;
}

.section-pad {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 6.5vw, 7.5rem);
}

.statement {
  background: var(--paper);
  color: var(--ink);
}

.statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.statement__grid h2 {
  max-width: 14ch;
}

.statement__grid > div {
  padding-bottom: 0.6rem;
}

.statement__grid p {
  max-width: 31rem;
  color: #3c3934;
  font-size: 1.1rem;
}

.text-link {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold);
  color: #2d2a25;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services {
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.section-heading h2 {
  max-width: 13ch;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-list li {
  min-height: 290px;
  padding: 2rem clamp(1.5rem, 3vw, 3rem) 2rem 0;
}

.service-list li + li {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.service-list__number,
.values article > span {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.25rem;
}

.service-list p {
  max-width: 24rem;
  color: var(--muted);
}

.feature,
.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: stretch;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--paper-bright);
  color: var(--ink);
}

.feature__image,
.craft__image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
}

.feature__copy,
.craft__copy {
  align-self: center;
}

.feature h2,
.craft h2 {
  max-width: 9ch;
  margin-bottom: 2rem;
}

.feature__copy > p:not(.eyebrow),
.craft__copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: #46413b;
  font-size: 1.08rem;
}

.feature__facts {
  margin-top: 3rem;
  border-top: 1px solid rgba(23, 23, 22, 0.25);
}

.feature__facts div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(23, 23, 22, 0.18);
}

.feature__facts dt {
  color: #756d62;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.feature__facts dd {
  margin: 0;
  font-size: 0.9rem;
}

.process {
  background: #242321;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process__steps li {
  padding: 2.4rem 2.4rem 0 0;
}

.process__steps li + li {
  padding-left: 2.4rem;
  border-left: 1px solid var(--line);
}

.process__steps span {
  display: block;
  margin-bottom: 4rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.process__steps strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.process__steps p {
  max-width: 22rem;
  color: var(--muted);
}

.enquire {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  text-align: center;
}

.enquire::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vw, 850px);
  aspect-ratio: 2 / 1;
  transform: translate(-50%, -5%);
  border: 1px solid rgba(185, 145, 69, 0.28);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: '';
}

.enquire > * {
  position: relative;
  z-index: 1;
}

.enquire h2 {
  margin-bottom: 1.5rem;
}

.enquire > p:not(.eyebrow) {
  max-width: 42rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 2rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #111110;
}

.brand--footer .brand__mark {
  min-width: 55px;
  min-height: 46px;
  font-size: 1.55rem;
}

.site-footer p {
  margin: 0;
  color: #8f887e;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer p span {
  color: var(--gold);
  padding: 0 0.3rem;
}

.site-footer__status {
  text-align: right;
}

/* About page */
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  width: min(100%, var(--max-width));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  background: var(--paper-bright);
  color: var(--ink);
}

.about-hero__image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-right: 1px solid var(--gold);
  border-radius: 0 46% 42% 0 / 0 58% 42% 0;
}

.about-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 9vw, 9rem);
}

.about-hero h1 {
  max-width: 9ch;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 7vw, 8rem);
}

.about-hero .lead {
  max-width: 28rem;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.22;
}

.about-hero__copy > p:last-child {
  max-width: 36rem;
  color: #4d4841;
}

.belief {
  display: grid;
  grid-template-columns: 0.45fr 1.05fr 0.7fr;
  gap: clamp(2rem, 6vw, 7rem);
  background: var(--ink);
}

.belief blockquote {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
}

.belief__copy {
  align-self: end;
  color: var(--muted);
}

.craft {
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
}

.craft__image {
  min-height: 680px;
}

.values {
  background: #242321;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.values article {
  padding: 2.2rem 2.5rem 1rem 0;
}

.values article + article {
  padding-left: 2.5rem;
  border-left: 1px solid var(--line);
}

.values article > span {
  margin-bottom: 3rem;
  font-size: 1.5rem;
}

.values article p {
  max-width: 24rem;
  color: var(--muted);
}

/* Alternate central-arch direction */
html[data-theme='arch'] .hero {
  grid-template-columns: minmax(330px, 42%) minmax(0, 46%) minmax(120px, 12%);
  gap: 0;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3.5rem) 0;
}

html[data-theme='arch'] .hero__copy {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4.5rem) 5rem 0;
}

html[data-theme='arch'] .hero h1 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 4.7vw, 6.2rem);
}

html[data-theme='arch'] .hero__media {
  grid-column: 2;
  grid-row: 1;
  min-height: 680px;
  border: 1px solid var(--gold);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}

html[data-theme='arch'] .hero__location {
  right: 2rem;
  left: auto;
}

html[data-theme='arch'] .hero__niches {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding-left: 1.35rem;
}

html[data-theme='arch'] .hero__niches span {
  display: block;
  height: 18%;
  min-height: 120px;
  border: 1px solid rgba(185, 145, 69, 0.38);
  background: linear-gradient(180deg, #171614 0 10%, #4d4438 11%, #2c2924 28%, #211f1c 100%);
  box-shadow: inset 0 14px 25px rgba(255, 218, 160, 0.15), inset 10px 0 18px rgba(0, 0, 0, 0.28), inset -10px 0 18px rgba(0, 0, 0, 0.2);
}

html[data-theme='arch'] .statement__grid,
html[data-theme='arch'] .section-heading {
  grid-template-columns: 0.7fr 1.3fr;
}

html[data-theme='arch'] .feature__image,
html[data-theme='arch'] .craft__image {
  border: 1px solid rgba(185, 145, 69, 0.6);
  border-radius: 50% 50% 0 0 / 17% 17% 0 0;
}

html[data-theme='arch'] .enquire::before {
  height: 65%;
  border-radius: 50% 50% 0 0 / 45% 45% 0 0;
}

html[data-theme='arch'] .about-hero {
  grid-template-columns: minmax(330px, 42%) minmax(0, 58%);
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 5vw, 6rem) 0;
  background: var(--ink);
  color: var(--white);
}

html[data-theme='arch'] .about-hero__copy {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem) 5rem 0;
}

html[data-theme='arch'] .about-hero__copy > p:last-child {
  color: var(--muted);
}

html[data-theme='arch'] .about-hero__image {
  grid-column: 2;
  grid-row: 1;
  border: 1px solid var(--gold);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 19% 19% 0 0;
}

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

  .site-nav {
    justify-content: flex-end;
  }

  .theme-switch {
    position: fixed;
    z-index: 25;
    right: 1rem;
    bottom: 1rem;
    background: rgba(23, 23, 22, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
  }

  .hero {
    grid-template-columns: minmax(0, 56%) minmax(330px, 44%);
  }

  .hero__copy {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  html[data-theme='arch'] .hero {
    grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
  }

  html[data-theme='arch'] .hero__media {
    grid-column: 2;
  }

  html[data-theme='arch'] .hero__niches {
    display: none;
  }

  .belief {
    grid-template-columns: 0.35fr 1fr;
  }

  .belief__copy {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 78px;
    padding: 0.8rem 1.25rem;
  }

  .brand__mark {
    min-width: 56px;
    min-height: 48px;
    font-size: 1.6rem;
  }

  .brand__name {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    padding: 0.65rem 0;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0;
  }

  .hero,
  html[data-theme='arch'] .hero {
    display: flex;
    min-height: auto;
    padding: 0;
    flex-direction: column;
  }

  .hero__media,
  html[data-theme='arch'] .hero__media {
    order: 1;
    width: calc(100% - 1.25rem);
    min-height: 58svh;
    max-height: 650px;
    border: 0;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    border-radius: 0 45% 45% 0 / 0 35% 35% 0;
  }

  html[data-theme='arch'] .hero__media {
    width: calc(100% - 3rem);
    margin: 1.5rem auto 0;
    border: 1px solid var(--gold);
    border-bottom: 0;
    border-radius: 50% 50% 0 0 / 18% 18% 0 0;
  }

  .hero__copy,
  html[data-theme='arch'] .hero__copy {
    order: 2;
    padding: 4rem 1.25rem 5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
  }

  .hero__niches {
    display: none !important;
  }

  .statement__grid,
  html[data-theme='arch'] .statement__grid,
  .section-heading,
  html[data-theme='arch'] .section-heading,
  .feature,
  .craft,
  .belief {
    grid-template-columns: 1fr;
  }

  .statement__grid {
    gap: 2.5rem;
  }

  .service-list,
  .process__steps,
  .values__grid {
    grid-template-columns: 1fr;
  }

  .service-list li,
  .process__steps li,
  .values article {
    min-height: auto;
    padding: 2rem 0;
  }

  .service-list li + li,
  .process__steps li + li,
  .values article + article {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .service-list__number,
  .process__steps span,
  .values article > span {
    margin-bottom: 1.5rem;
  }

  .feature__image,
  .craft__image {
    min-height: 70svh;
  }

  .feature__copy,
  .craft__copy {
    order: 2;
  }

  .craft__image {
    order: 1;
  }

  .about-hero,
  html[data-theme='arch'] .about-hero {
    display: flex;
    min-height: auto;
    padding: 0;
    flex-direction: column;
  }

  .about-hero__image,
  html[data-theme='arch'] .about-hero__image {
    order: 1;
    width: calc(100% - 1.25rem);
    min-height: 62svh;
    border: 0;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    border-radius: 0 45% 45% 0 / 0 34% 34% 0;
  }

  html[data-theme='arch'] .about-hero__image {
    width: calc(100% - 3rem);
    margin: 1.5rem auto 0;
    border: 1px solid var(--gold);
    border-bottom: 0;
    border-radius: 50% 50% 0 0 / 18% 18% 0 0;
  }

  .about-hero__copy,
  html[data-theme='arch'] .about-hero__copy {
    order: 2;
    padding: 4rem 1.25rem 5rem;
  }

  .about-hero h1 {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .belief__copy {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__status {
    text-align: left;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .theme-switch__label {
    display: none;
  }

  .theme-switch button {
    min-width: 48px;
  }

  .hero__media,
  html[data-theme='arch'] .hero__media {
    min-height: 53svh;
  }

  .hero__location {
    bottom: 1.25rem;
    left: 1.25rem;
    right: 3.5rem;
    gap: 0.4rem;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .hero__location i {
    width: 24px;
  }

  .button,
  .button--solid {
    width: 100%;
    min-width: 0;
  }
}

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

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