@font-face {
  font-family: Poppins;
  src: url("/assets/fonts/poppins-black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #17152e;
  --coral: #ff5b55;
  --cream: #fff8f2;
  --text-muted: #5f5a66;
  --light-muted: #c7c0cd;
  --rule: #d7d0cc;
  --dark-rule: #484456;
  --page-width: 1320px;
  --gutter: clamp(22px, 5vw, 80px);
  color-scheme: light;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
}
::selection {
  background: var(--coral);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 6px;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
p {
  line-height: 1.7;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1,
h2 {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
}
h3 {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.25;
}
h2 {
  font-size: clamp(38px, 4.65vw, 66px);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(var(--page-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tiny-corner {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 4px solid var(--coral);
  border-right: 4px solid var(--coral);
  flex-shrink: 0;
}
.dark {
  color: var(--cream);
  background: var(--ink);
}
.coral-text {
  color: var(--coral);
}
.arrow {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  transition: transform 0.2s;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:hover .arrow,
.text-link:hover .arrow,
.header-contact:hover .arrow {
  transform: translate(2px, -2px);
}
.button-coral {
  background: var(--coral);
  color: var(--ink);
}
.button-coral:hover {
  background: #ff7870;
}
.button-ink {
  background: var(--ink);
  color: var(--cream);
}
.button-ink:hover {
  background: #302b47;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 650;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.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;
}
.skip-link {
  position: fixed;
  z-index: 20;
  left: 12px;
  top: 12px;
  padding: 12px 20px;
  background: var(--cream);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
}
.brand img {
  width: 150px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 12px;
  font-weight: 550;
  margin-left: auto;
  margin-right: 50px;
}
.desktop-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.2s;
}
.desktop-nav a:hover::after {
  width: 100%;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  min-height: 44px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px 0;
  align-items: center;
  gap: 14px;
  min-width: 72px;
  min-height: 44px;
  font-size: 12px;
}
.menu-lines {
  width: 20px;
  height: 12px;
  border-top: 1.5px solid;
  border-bottom: 1.5px solid;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] .menu-lines {
  transform: rotate(-45deg);
}
.mobile-nav {
  padding: 8px var(--gutter) 24px;
  border-top: 1px solid var(--rule);
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 17px;
  border-bottom: 1px solid var(--rule);
}
.hero {
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding-block: 52px 36px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-block: 24px;
}
.hero-copy > .eyebrow {
  font-size: 10px;
  color: var(--light-muted);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(70px, 8.2vw, 118px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.hero h1 span {
  display: block;
}
.hero-description {
  font-size: 15px;
  color: var(--light-muted);
  margin-top: 30px;
  line-height: 1.75;
}
.hero-copy > .button {
  margin-top: 28px;
}
.hero-footnote {
  font-size: 10px;
  color: var(--light-muted);
  margin-top: 17px;
  letter-spacing: 0.01em;
}
.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 590px;
  max-height: 700px;
  background: #201e32;
}
.hero-art > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(23, 21, 46, 0.65));
  pointer-events: none;
}
.hero-art figcaption {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.11em;
  font-weight: 600;
}
.hero-art figcaption > span:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-art figcaption .arrow {
  width: 13px;
  height: 13px;
}
.art-corner {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-color: var(--coral);
  border-style: solid;
}
.art-corner-top {
  top: -8px;
  right: -8px;
  border-width: 7px 7px 0 0;
}
.art-corner-bottom {
  bottom: -8px;
  left: -8px;
  border-width: 0 0 7px 7px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px 26px;
  border-top: 1px solid var(--dark-rule);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--light-muted);
}
.hero-bottom a {
  display: flex;
  gap: 30px;
  align-items: center;
  min-height: 24px;
}
.hero-bottom a span {
  font-size: 18px;
}
.service-strip {
  border-bottom: 1px solid var(--rule);
}
.service-strip > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 77px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.strip-plus {
  color: #9b3a35;
  font-size: 24px;
  font-weight: 400;
}
.section-heading > .eyebrow {
  margin-bottom: 28px;
}
.heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 44px;
}
.heading-row > p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 390px;
  padding-bottom: 5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.service-card {
  padding: 32px 30px 27px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.service-card + .service-card {
  border-left: 1px solid var(--rule);
  padding-left: 30px;
}
.service-card:last-child {
  padding-right: 0;
}
.service-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}
.service-top .eyebrow {
  font-size: 9px;
  color: var(--text-muted);
}
.service-symbol {
  width: 63px;
  height: 63px;
  stroke: var(--ink);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 22px;
  line-height: 1.35;
  min-height: 30px;
}
.service-card > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}
.service-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 28px;
}
.service-tags li {
  font-size: 9px;
  border: 1px solid var(--rule);
  padding: 6px 8px;
  border-radius: 2px;
}
.service-card > .text-link {
  margin-top: auto;
  font-size: 11px;
  width: 100%;
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
}
.process-intro h2 {
  margin-top: 32px;
}
.process-intro h2 > span {
  display: inline-block;
  font-family: Inter, Arial, sans-serif;
  line-height: 1;
  margin-left: 9px;
  font-weight: 400;
  vertical-align: top;
}
.process-intro > p:last-of-type {
  font-size: 13px;
  color: var(--light-muted);
  margin-top: 26px;
}
.ascent {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 105px;
  margin-top: 50px;
}
.ascent i {
  background: var(--coral);
  width: 36px;
  height: 25%;
}
.ascent i:nth-child(2) {
  height: 50%;
}
.ascent i:nth-child(3) {
  height: 75%;
}
.ascent i:nth-child(4) {
  height: 100%;
}
.process-steps article {
  display: grid;
  grid-template-columns: 27px 1fr 18px;
  gap: 22px;
  padding-block: 30px;
  border-top: 1px solid var(--dark-rule);
}
.process-steps article:last-child {
  border-bottom: 1px solid var(--dark-rule);
}
.step-number {
  font-size: 10px;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 33px;
}
.process-steps h3 {
  font-size: 32px;
  font-weight: 650;
  line-height: 1;
}
.process-steps p {
  font-size: 13px;
  color: var(--light-muted);
  margin-top: 16px;
}
.step-arrow {
  font-size: 25px;
  font-weight: 300;
  color: var(--light-muted);
}
.care {
  background: var(--coral);
  color: var(--ink);
  overflow: hidden;
}
.care-inner {
  position: relative;
}
.care h2 {
  font-size: clamp(52px, 7.3vw, 105px);
  line-height: 1.03;
  margin-top: 42px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.05em;
}
.care-bottom {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: flex-end;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}
.care-bottom > p {
  font-size: 17px;
  line-height: 1.65;
}
.care-corner {
  position: absolute;
  width: 185px;
  height: 185px;
  right: 0;
  top: 55px;
  border: 28px solid var(--ink);
  border-left: 0;
  border-bottom: 0;
  opacity: 0.12;
}
.about {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 80px;
}
.about-art {
  background: #e8dccc;
  position: relative;
}
.about-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.about-copy h2 {
  font-size: clamp(34px, 3.2vw, 45px);
  margin-top: 26px;
}
.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 22px;
}
.about-copy > .text-link {
  margin-top: 20px;
  font-size: 12px;
}
.faq {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 90px;
  padding-top: 80px;
}
.faq h2 {
  font-size: clamp(36px, 3.9vw, 54px);
  margin-top: 26px;
}
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq details {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 550;
  min-height: 72px;
  padding: 18px 0;
  cursor: pointer;
  line-height: 1.55;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  font-size: 23px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details > p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 30px 24px 0;
  max-width: 570px;
}
.contact .eyebrow {
  color: var(--light-muted);
}
.contact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 48px;
}
.contact h2 {
  font-size: clamp(66px, 9vw, 128px);
  line-height: 1.01;
}
.contact-orbit {
  width: 140px;
  height: 140px;
  border: 1px solid var(--dark-rule);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    background 0.25s,
    color 0.25s;
  flex-shrink: 0;
}
.contact-orbit svg {
  width: 60px;
  height: 60px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 1;
  transition: transform 0.25s;
}
.contact-orbit:hover {
  background: var(--coral);
}
.contact-orbit:hover svg {
  stroke: var(--ink);
  transform: translate(5px, -5px);
}
.contact-bottom {
  border-top: 1px solid var(--dark-rule);
  padding-top: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.contact-bottom p {
  font-size: 17px;
  margin-bottom: 9px;
}
.email-link {
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.03em;
  display: inline-block;
  min-height: 44px;
}
.email-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.instagram-link {
  font-size: 11px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--light-muted);
}
.instagram-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer {
  background: var(--cream);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 48px;
}
.footer-top p {
  font-size: 12px;
  color: var(--text-muted);
}
.back-top {
  font-size: 11px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 23px;
  border-top: 1px solid var(--rule);
  font-size: 10px;
  color: var(--text-muted);
}
.footer-bottom a {
  padding: 8px;
  margin: -8px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.enquiry-dialog {
  color: var(--ink);
  background: var(--cream);
  width: min(580px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  padding: 32px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 24px 100px #0003;
}
.enquiry-dialog::backdrop {
  background: #17152ebf;
  backdrop-filter: blur(5px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dialog-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 300;
}
.enquiry-dialog h2 {
  font-size: 38px;
}
.enquiry-dialog fieldset {
  border: 0;
  padding: 0;
  margin: 26px 0 22px;
}
.enquiry-dialog legend,
.field {
  font-size: 12px;
  font-weight: 600;
}
.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.interest-options label {
  position: relative;
  cursor: pointer;
}
.interest-options input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.interest-options span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 14px;
  font-size: 11px;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.interest-options input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.interest-options input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.field input,
.field textarea {
  border: 1px solid #89828b;
  border-radius: 2px;
  padding: 13px 14px;
  background: transparent;
  width: 100%;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}
.field textarea {
  resize: vertical;
  min-height: 102px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}
.form-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-block: 20px;
}
.enquiry-dialog .button {
  width: 100%;
}
.email-fallback {
  font-size: 12px;
  margin-top: 18px;
}
.email-fallback a,
.email-fallback button {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.email-fallback button {
  border: 0;
  background: none;
  padding: 8px 0;
  min-height: 44px;
}
.legal {
  min-height: 65vh;
  max-width: 760px;
}
.legal h1 {
  font-size: clamp(40px, 6vw, 65px);
  margin-bottom: 30px;
}
.legal h2 {
  font-family: Inter, Arial, sans-serif;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 14px;
}
.legal p {
  margin-block: 16px;
  font-size: 15px;
  color: var(--text-muted);
}
.legal a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal .eyebrow {
  font-size: 11px;
  margin-bottom: 25px;
}
@media (min-width: 1500px) {
  .hero-inner {
    padding-block: 64px 44px;
  }
  .hero-art {
    min-height: 640px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 24px;
    margin-right: 20px;
  }
  .hero-inner {
    gap: 24px;
  }
  .hero h1 {
    font-size: 8.4vw;
  }
  .hero-art {
    min-height: 550px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
  }
  .hero-description {
    font-size: 13px;
  }
  .process-inner {
    gap: 55px;
  }
  .service-card {
    padding-right: 22px;
  }
  .service-card + .service-card {
    padding-left: 22px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-tags {
    gap: 5px;
  }
  .service-tags li {
    font-size: 8px;
  }
  .about {
    gap: 45px;
  }
  .faq {
    gap: 55px;
  }
  .section {
    padding-block: 88px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 90px;
  }
  .header-inner {
    height: 76px;
    gap: 22px;
  }
  .brand img {
    width: 128px;
  }
  .desktop-nav {
    display: none;
  }
  .header-contact {
    margin-left: auto;
    gap: 10px;
    font-size: 11px;
  }
  .header-contact .arrow {
    width: 15px;
    height: 15px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 34px 34px;
    gap: 32px;
  }
  .hero-copy {
    padding-block: 10px 0;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: clamp(65px, 14.7vw, 105px);
    line-height: 1;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 25px;
  }
  .hero-copy > .button {
    margin-top: 24px;
  }
  .hero-footnote {
    font-size: 10px;
  }
  .hero-art {
    min-height: 0;
    height: auto;
    aspect-ratio: 1.18/1;
    max-height: none;
    margin-top: 7px;
  }
  .hero-art > img {
    object-position: center 57%;
  }
  .hero-art figcaption {
    font-size: 8px;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .hero-bottom {
    font-size: 9px;
    align-items: center;
    padding-block: 18px 23px;
    gap: 18px;
  }
  .hero-bottom > span {
    max-width: 175px;
    line-height: 1.65;
  }
  .hero-bottom a {
    gap: 12px;
    min-height: 44px;
    flex-shrink: 0;
  }
  .service-strip > .wrap {
    min-height: 66px;
    gap: 9px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }
  .strip-plus {
    font-size: 16px;
  }
  .section {
    padding-block: 70px;
  }
  .heading-row {
    display: block;
  }
  .heading-row > p {
    margin-top: 24px;
    font-size: 13px;
    max-width: 340px;
  }
  .section-heading > .eyebrow {
    margin-bottom: 22px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }
  .service-card,
  .service-card + .service-card,
  .service-card:last-child {
    border-left: 0;
    padding: 28px 0;
  }
  .service-card + .service-card {
    border-top: 1px solid var(--rule);
  }
  .service-top {
    margin-bottom: 14px;
    align-items: center;
  }
  .service-symbol {
    width: 55px;
    height: 55px;
  }
  .service-top .eyebrow {
    font-size: 9px;
  }
  .service-card h3 {
    font-size: 25px;
  }
  .service-card > p {
    margin-top: 12px;
    max-width: 470px;
    font-size: 14px;
  }
  .service-tags {
    margin: 20px 0 16px;
    gap: 8px;
  }
  .service-tags li {
    font-size: 10px;
    padding: 6px 9px;
  }
  .service-card > .text-link {
    font-size: 12px;
  }
  .process-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .process-intro h2 {
    margin-top: 26px;
    font-size: 48px;
  }
  .process-intro > p:last-of-type {
    font-size: 13px;
    margin-top: 22px;
  }
  .ascent {
    height: 58px;
    gap: 8px;
    margin-top: 26px;
  }
  .ascent i {
    width: 25px;
  }
  .process-steps article {
    padding-block: 25px;
    gap: 18px;
    grid-template-columns: 22px 1fr 18px;
  }
  .process-steps h3 {
    font-size: 29px;
  }
  .process-steps p {
    font-size: 13px;
    margin-top: 12px;
  }
  .care h2 {
    font-size: clamp(39px, 8.9vw, 65px);
    margin-top: 30px;
  }
  .care-bottom {
    display: block;
    margin-top: 26px;
  }
  .care-bottom > p {
    font-size: 15px;
  }
  .care-bottom > .button {
    margin-top: 26px;
  }
  .care-corner {
    width: 100px;
    height: 100px;
    top: 40px;
    border-width: 16px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-art img {
    aspect-ratio: 1.3/1;
  }
  .about-copy h2 {
    font-size: 39px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 480px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq h2 {
    font-size: 43px;
  }
  .faq summary {
    font-size: 13px;
    gap: 20px;
  }
  .contact-heading {
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 35px;
  }
  .contact h2 {
    font-size: clamp(48px, 11.8vw, 85px);
  }
  .contact-orbit {
    width: 58px;
    height: 58px;
  }
  .contact-orbit svg {
    width: 27px;
    height: 27px;
  }
  .contact .eyebrow {
    font-size: 9px;
  }
  .contact-bottom {
    flex-direction: column;
    gap: 28px;
    padding-top: 28px;
  }
  .contact-bottom p {
    font-size: 15px;
  }
  .email-link {
    font-size: 25px;
  }
  .contact-actions {
    align-items: flex-start;
    gap: 10px;
  }
  .contact .section {
    padding-bottom: 52px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
    padding-block: 32px;
  }
  .footer-top p {
    order: 3;
    flex-basis: 100%;
    font-size: 11px;
  }
  .footer-top .back-top {
    margin-left: auto;
  }
  .footer-bottom {
    font-size: 9px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .enquiry-dialog {
    padding: 24px;
  }
  .enquiry-dialog h2 {
    font-size: 32px;
  }
  .dialog-heading .eyebrow {
    font-size: 9px;
  }
}
@media (max-width: 370px) {
  :root {
    --gutter: 20px;
  }
  .header-inner {
    gap: 14px;
  }
  .brand img {
    width: 112px;
  }
  .header-contact {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 0.07em;
  }
  .hero h1 {
    font-size: 14.5vw;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-art figcaption {
    font-size: 7px;
  }
  .service-strip > .wrap {
    font-size: 7px;
    gap: 5px;
  }
  .contact h2 {
    font-size: 11vw;
  }
  .contact-orbit {
    width: 46px;
    height: 46px;
  }
  .care h2 {
    font-size: 8.6vw;
  }
  .enquiry-dialog h2 {
    font-size: 28px;
  }
}
.mobile-nav {
  position: absolute;
  inset: 100% 0 auto;
  background: var(--cream);
  box-shadow: 0 16px 28px #17152e12;
}
@media (max-width: 760px) {
  html:not(.js) .menu-toggle {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}

/* Service artwork and the supporting service/legal pages. */
.service-grid {
  column-gap: 60px;
}
.service-card,
.service-card + .service-card,
.service-card:last-child {
  position: relative;
  padding: 30px 0 26px;
  border-left: 0;
}
.service-card + .service-card::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--rule);
}
.service-symbol {
  width: 30px;
  height: 30px;
}
.service-top {
  margin-bottom: 20px;
}
.service-art {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #e8dccc;
  margin-bottom: 26px;
}
.service-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-art:hover img {
  transform: scale(1.025);
}
.contact-number {
  display: block;
  font-size: 15px;
  min-height: 44px;
  padding-top: 12px;
  color: var(--light-muted);
}
.contact-secondary {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-actions {
  gap: 4px;
}
.contact-actions > .button {
  width: 100%;
}
.footer-social,
.footer-services,
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
}
.footer-social {
  font-size: 12px;
}
.footer-social a,
.footer-services a,
.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-services {
  padding-bottom: 24px;
  font-size: 11px;
  color: var(--text-muted);
}
.footer-legal {
  gap: 12px 24px;
}
.footer-bottom {
  align-items: center;
}
.footer-bottom a {
  margin: 0;
  padding: 0;
}
.footer-social a:hover,
.footer-services a:hover,
.contact-number:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 60px;
}
.detail-hero h1 {
  font-size: clamp(40px, 4.3vw, 62px);
  margin: 24px 0;
}
.detail-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
}
.detail-hero .button {
  margin-top: 30px;
}
.detail-art {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.detail-content {
  max-width: 880px;
  padding-bottom: 100px;
}
.detail-content article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding-block: 36px;
  border-top: 1px solid var(--rule);
}
.detail-content article > .eyebrow {
  align-items: flex-start;
  padding-top: 6px;
}
.detail-content h2 {
  font-family: Inter, Arial, sans-serif;
  font-weight: 650;
  font-size: 27px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.detail-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 18px;
}
.detail-contact h2 {
  margin-block: 24px;
}
.detail-contact p:not(.eyebrow) {
  color: var(--light-muted);
}
.detail-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.draft-notice {
  border: 1px solid var(--rule);
  border-left: 4px solid var(--coral);
  padding: 22px 24px;
  margin: 30px 0;
}
.draft-notice strong {
  font-size: 14px;
}
.draft-notice p {
  font-size: 13px;
  margin-bottom: 0;
}
.legal-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 36px;
}
.legal-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
}
@media (max-width: 760px) {
  .service-grid {
    column-gap: 0;
  }
  .service-card + .service-card::before {
    display: none;
  }
  .service-art {
    margin-bottom: 22px;
  }
  .footer-social {
    margin-left: auto;
    font-size: 11px;
    gap: 18px;
  }
  .footer-services {
    gap: 4px 18px;
    padding-bottom: 20px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal {
    gap: 8px 18px;
  }
  .detail-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .detail-hero h1 {
    font-size: clamp(37px, 8.5vw, 57px);
  }
  .detail-lead {
    font-size: 15px;
  }
  .detail-content {
    padding-bottom: 66px;
  }
  .detail-content article {
    grid-template-columns: 26px 1fr;
    gap: 12px;
    padding-block: 28px;
  }
  .detail-content h2 {
    font-size: 23px;
  }
  .detail-content p {
    font-size: 14px;
  }
  .subpage-home {
    font-size: 11px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .legal h1 {
    font-size: clamp(35px, 8vw, 54px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-art:hover img {
    transform: none;
  }
}
