:root {
  color-scheme: dark;
  --bg: #0d1822;
  --bg-elevated: #142330;
  --bg-soft: #1a2b39;
  --surface: #172734;
  --surface-strong: #223643;
  --text: #f1f4f5;
  --text-muted: #aebac2;
  --silver: #b9c6cf;
  --accent: #d9e1e6;
  --line: #334653;
  --line-soft: #263947;
  --button-bg: #e7ecef;
  --button-text: #0d1822;
  --focus: #9fc9e0;
  --danger: #e4b9b9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  --font-display: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, serif;
  --font-ui: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-right: env(safe-area-inset-right, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-left: env(safe-area-inset-left, 0px);
  --shell-max-width: 1180px;
  --shell-gutter: 24px;
  --legal-shell-gutter: 24px;
  --header-base-height: 86px;
  --theme-x: 50vw;
  --theme-y: 40px;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #eef1f3;
  --bg-elevated: #e4e9ec;
  --bg-soft: #dbe2e6;
  --surface: #f7f8f9;
  --surface-strong: #d6dfe4;
  --text: #14222c;
  --text-muted: #52636f;
  --silver: #526a79;
  --accent: #223b4b;
  --line: #bdc9d0;
  --line-soft: #d2dbe0;
  --button-bg: #18303f;
  --button-text: #f5f7f8;
  --focus: #1e668e;
  --danger: #8c3e3e;
  --shadow: 0 24px 70px rgba(36, 55, 67, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html:not(.enhancements-ready) :is(
  #theme-toggle,
  [data-copy-email]
) {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(96px + var(--safe-area-top));
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  transition: background-color 260ms ease, color 260ms ease;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports (view-transition-name: root) {
  html.theme-changing *,
  html.theme-changing *::before,
  html.theme-changing *::after {
    transition-delay: 0s !important;
    transition-duration: 0s !important;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
  }

  ::view-transition-old(root) {
    z-index: 1;
  }

  ::view-transition-new(root) {
    z-index: 2;
  }

  html.theme-changing::view-transition-new(root) {
    clip-path: circle(0 at var(--theme-x) var(--theme-y));
  }

  html.theme-changing::view-transition-old(theme-toggle-control) {
    animation: theme-icon-out 300ms cubic-bezier(0.4, 0, 1, 1) both;
  }

  html.theme-changing::view-transition-new(theme-toggle-control) {
    animation: theme-icon-in 520ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes theme-icon-out {
  to { opacity: 0; transform: rotate(-35deg) scale(0.72); }
}

@keyframes theme-icon-in {
  from { opacity: 0; transform: rotate(35deg) scale(0.72); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes gentle-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7vw, 7.3rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.2vw, 5.1rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
}

.shell {
  width: auto;
  max-width: var(--shell-max-width);
  margin-inline-start: max(var(--shell-gutter), var(--safe-area-left), calc((100% - var(--shell-max-width)) / 2));
  margin-inline-end: max(var(--shell-gutter), var(--safe-area-right), calc((100% - var(--shell-max-width)) / 2));
}

.section {
  padding-block: clamp(96px, 11vw, 164px);
}

.skip-link {
  position: fixed;
  top: max(12px, var(--safe-area-top));
  left: max(12px, var(--safe-area-left));
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 700;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: calc(var(--header-base-height) + var(--safe-area-top));
  min-height: calc(var(--header-base-height) + var(--safe-area-top));
  padding-block-start: var(--safe-area-top);
  padding-inline-start: max(24px, var(--safe-area-left), calc((100vw - 1180px) / 2));
  padding-inline-end: max(24px, var(--safe-area-right), calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: var(--bg);
  transition: min-height 220ms ease, background-color 260ms ease, border-color 220ms ease;
}

.wordmark {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.site-header-compact {
  grid-template-columns: minmax(0, 1fr) auto;
}

.wordmark-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
}

.wordmark-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: filter 260ms ease;
}

html[data-theme="dark"] .wordmark-logo {
  filter: invert(1);
}

.wordmark-copy {
  display: grid;
  line-height: 1.05;
}

.wordmark-copy strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
}

.wordmark-copy small {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex: 0 0 48px;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  transition: border-color 220ms ease, background-color 260ms ease, color 260ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--silver);
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-toggle-icons {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  view-transition-name: theme-toggle-control;
}

.theme-toggle-icon {
  position: absolute;
  inset: 0;
  display: block;
  color: currentColor;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle-sun {
  opacity: 0;
  transform: rotate(-65deg) scale(0.62);
}

.theme-toggle-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

html[data-theme="light"] .theme-toggle-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

html[data-theme="light"] .theme-toggle-moon {
  opacity: 0;
  transform: rotate(65deg) scale(0.62);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid var(--button-bg);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, background-color 260ms ease, color 260ms ease;
}

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

.button-small {
  min-height: 48px;
  padding-inline: 20px;
}

.button-inverse {
  border-color: var(--bg);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link::after {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 30px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--silver);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-block: 70px 110px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

.hero h1 {
  font-size: clamp(3.7rem, 5.2vw, 7rem);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

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

.hero-price {
  display: grid;
  width: fit-content;
  margin: 54px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-price span,
.hero-price small {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-price strong {
  margin-block: 9px 7px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.hero-gallery {
  position: relative;
  min-width: 0;
  min-height: 660px;
}

.photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

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

.photo img {
  object-fit: cover;
}

.photo-primary {
  inset: 0 50px 60px 0;
  border-radius: 18px 18px 18px 80px;
}

.photo-primary img {
  object-position: 51% 58%;
}

.photo-secondary {
  right: -20px;
  bottom: 0;
  width: 42%;
  height: 47%;
  border: 8px solid var(--bg);
  border-radius: 16px;
}

.photo-secondary img {
  object-position: 50% 55%;
}

.gallery-caption {
  position: absolute;
  bottom: 4px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-caption span {
  color: var(--silver);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 70px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.specs-section {
  border-block: 1px solid var(--line-soft);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.specs-grid > div {
  min-width: 0;
  padding: 28px 24px;
  background: var(--bg-elevated);
}

.specs-grid > div + div {
  border-left: 1px solid var(--line);
}

.specs-grid > div:nth-child(4) {
  border-left: 0;
}

.specs-grid > div:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.specs-grid dt {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specs-grid dd {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.specs-note {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.closing {
  --closing-max-width: 900px;
  max-width: var(--closing-max-width);
  margin-inline-start: max(var(--shell-gutter), var(--safe-area-left), calc((100% - var(--closing-max-width)) / 2));
  margin-inline-end: max(var(--shell-gutter), var(--safe-area-right), calc((100% - var(--closing-max-width)) / 2));
  padding-block: clamp(110px, 14vw, 190px);
  text-align: center;
}

.closing h2 {
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.closing > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 35px;
  color: var(--text-muted);
}

.closing-actions {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.inquiry-legal-note {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.email-contact {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.email-address {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 650;
  overflow-wrap: anywhere;
  text-underline-offset: 5px;
}

.copy-email-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 180ms ease;
}

.copy-email-button:hover {
  border-color: var(--silver);
  background: var(--bg-soft);
}

.copy-email-button:active {
  transform: scale(0.97);
}

.copy-email-button:disabled {
  cursor: default;
}

.copy-email-icons {
  position: relative;
  width: 18px;
  height: 18px;
}

.copy-email-icon {
  position: absolute;
  inset: 0;
  display: block;
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.copy-email-check {
  opacity: 0;
  transform: rotate(-25deg) scale(0.65);
}

.copy-email-button.is-copied {
  border-color: var(--silver);
  background: var(--bg-soft);
}

.copy-email-button.is-copied .copy-email-copy {
  opacity: 0;
  transform: rotate(25deg) scale(0.65);
}

.copy-email-button.is-copied .copy-email-check {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.copy-email-button.is-copy-error {
  border-color: var(--danger);
  color: var(--danger);
}

.legal-email-contact {
  justify-content: flex-start;
  margin-bottom: 8px;
}

.site-footer {
  padding: 58px 0 calc(32px + var(--safe-area-bottom));
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 50px;
}

.footer-main > p {
  max-width: 430px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-main nav {
  display: grid;
  gap: 10px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.69rem;
}

.footer-meta div {
  display: flex;
  gap: 22px;
}

.footer-meta a {
  font-size: 0.68rem;
}

.mobile-action {
  display: none;
}

.enhancements-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.enhancements-ready .hero .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 759px), (pointer: coarse) {
  .theme-toggle-icons {
    view-transition-name: none;
  }

  .enhancements-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.subpage-page {
  padding-bottom: 0;
}

.subpage-main {
  min-height: 65vh;
  padding-block: 48px 120px;
}

.legal-shell {
  width: auto;
  max-width: 780px;
  margin-inline-start: max(var(--legal-shell-gutter), var(--safe-area-left), calc((100% - 780px) / 2));
  margin-inline-end: max(var(--legal-shell-gutter), var(--safe-area-right), calc((100% - 780px) / 2));
}

.legal-back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-underline-offset: 5px;
}

.legal-page h1 {
  max-width: 100%;
  margin-bottom: 38px;
  font-size: clamp(3.5rem, 7vw, 96px);
}

.legal-page h2 {
  margin: 54px 0 18px;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.4;
}

.legal-page h3 {
  margin-top: 34px;
}

.legal-page p,
.legal-page li,
.legal-page address {
  color: var(--text-muted);
}

.legal-page address {
  font-style: normal;
}

.legal-page a {
  text-underline-offset: 4px;
}

.error-content {
  text-align: center;
}

.error-content h1 {
  max-width: 100%;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 15vw, 160px);
}

@media (min-width: 1001px) {
  .hero h1 {
    box-sizing: content-box;
    width: 100%;
    padding-inline-end: calc(clamp(48px, 7vw, 104px) - 12px);
  }
}

.error-content p {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--text-muted);
}

@media (max-width: 1000px) {
  :root {
    --shell-max-width: 820px;
    --shell-gutter: 20px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
  }

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

  .hero-gallery {
    min-height: 680px;
  }

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

  .footer-main nav {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

  @media (max-width: 759px) {
    :root {
      --shell-max-width: 100%;
      --shell-gutter: 16px;
      --legal-shell-gutter: 16px;
      --header-base-height: 72px;
  }

  html {
    scroll-padding-top: calc(74px + var(--safe-area-top));
  }

  body {
    padding-bottom: calc(78px + var(--safe-area-bottom));
    font-size: 15px;
  }

  .site-header {
    padding-inline-start: max(16px, var(--safe-area-left));
    padding-inline-end: max(16px, var(--safe-area-right));
  }

  .wordmark-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .wordmark-logo {
    width: 32px;
    height: 32px;
  }

  .wordmark-copy strong {
    font-size: 0.98rem;
  }

  .wordmark-copy small {
    font-size: 0.56rem;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding-block: 92px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-block: 64px 80px;
  }

    .hero h1 {
      max-width: 100%;
      font-size: clamp(2rem, 11vw, 3.35rem);
      line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

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

  .hero-price {
    margin-top: 42px;
  }

    .hero-gallery {
      width: 100%;
      max-width: 100%;
      min-height: 520px;
  }

  .photo-primary {
    inset: 0 0 58px;
    border-radius: 14px 14px 14px 58px;
  }

  .photo-primary img {
    object-position: 51% 55%;
  }

    .photo-secondary {
      right: 0;
    bottom: 12px;
    width: 43%;
    height: 44%;
    border-width: 6px;
  }

  .gallery-caption {
    bottom: 9px;
  }

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

  .specs-grid > div + div,
  .specs-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specs-grid > div {
    padding: 24px 20px;
  }

    .closing {
      padding-block: 110px;
    }

    .closing-actions {
      width: 100%;
    }

  .closing .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: calc(42px + var(--safe-area-bottom));
  }

  body:not(.subpage-page) .site-footer {
    padding-bottom: 42px;
  }

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

  .footer-main nav {
    grid-column: auto;
    grid-row: auto;
    margin-top: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .footer-meta,
  .footer-meta div {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta div {
    gap: 8px;
  }

  .mobile-action {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    width: auto;
    max-width: none;
    min-height: calc(70px + var(--safe-area-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 10px calc(10px + var(--safe-area-bottom));
    padding-inline: max(16px, var(--safe-area-left)) max(16px, var(--safe-area-right));
    border-top: 1px solid var(--line);
    background: var(--bg);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.18);
  }

  html {
    scroll-behavior: auto;
    scroll-padding-bottom: calc(78px + var(--safe-area-bottom));
  }

  .mobile-action span {
    min-width: 0;
    font-family: var(--font-display);
    font-size: 1.08rem;
    white-space: nowrap;
  }

  .mobile-action .button {
    flex: 0 0 auto;
  }

  .subpage-main {
    padding-block: 32px 88px;
  }

  .legal-page h1 {
    font-size: clamp(1.75rem, 11vw, 3.5rem);
  }

  @media (max-width: 359px) {
    .email-contact {
      align-items: stretch;
      flex-direction: column;
    }

    .copy-email-button {
      width: 100%;
    }
  }

}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .enhancements-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
