:root {
  --pink: #cba393;
  --blue: #012a4a;
  --soft-white: #f8f8f8;
  --cream: #f6f1ee;
  --charcoal: #404040;
  --hero-dark: #281a16;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(40, 26, 22, 0.18);
  --header-boundary: 1380px;
  --header-gutter: 24px;
  --header-inset: 1.75rem;
  --font-display: "Lora", Georgia, serif;
  --font-body: "Raleway", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--pink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.request-sheet-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: normal;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.5rem, 5.3vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--soft-white);
  background: var(--blue);
  transform: translateY(-120%);
}

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

.header-shell {
  position: fixed;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 0 var(--header-gutter);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  width: min(100%, var(--header-boundary));
  min-height: 104px;
  margin: 0 auto;
  padding: 1rem 1.3rem 1rem 1.75rem;
  background: var(--cream);
  border: 1px solid rgba(64, 64, 64, 0.08);
  border-radius: 999px;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  min-height: 44px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  justify-content: center;
}

.site-nav a {
  padding: 0.7rem 0;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.header-call {
  gap: 0.65rem;
  min-height: 72px;
  padding: 1.2rem 2.5rem;
  color: var(--soft-white);
  background: var(--blue);
  font-size: 1.5rem;
  box-shadow: none;
  white-space: nowrap;
}

.header-call svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

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

.header-call:hover {
  background: #063b65;
}

.header-call__mobile,
.menu-toggle {
  display: none;
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  min-height: 650px;
  overflow: hidden;
  background: var(--hero-dark);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(calc(100% - (2 * var(--header-gutter))), var(--header-boundary));
  margin: 0 auto;
  padding: 7rem var(--header-inset) 2rem;
  text-align: left;
}

.hero__content {
  width: min(650px, 46vw);
  color: var(--soft-white);
  animation: fade-up 800ms cubic-bezier(0.16, 1, 0.3, 1) both;
  pointer-events: auto;
}

.hero h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(4.5rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero__content > p:not(.credential-line) {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--soft-white);
  font-size: 1.12rem;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

.button {
  padding: 1rem 1.8rem;
  font-size: 0.98rem;
  cursor: pointer;
}

.button--pink {
  color: #26201e;
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(203, 163, 147, 0.22);
}

.button--pink:hover {
  background: #d8b5a8;
}

.button--blue {
  color: var(--soft-white);
  background: var(--blue);
  box-shadow: none;
}

.button--blue:hover {
  background: #063b65;
}

.button--light {
  color: var(--soft-white);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--soft-white);
}

.button--light:hover {
  color: var(--hero-dark);
  background: var(--soft-white);
}

.credential-line {
  margin: 1.4rem 0 0;
  color: var(--soft-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.credential-line span {
  padding: 0 0.35rem;
  color: var(--pink);
}

.hero-spacer {
  height: 100vh;
  min-height: 650px;
}

.page-content {
  position: relative;
  z-index: 1;
  background: var(--pink);
}

.runway {
  position: relative;
}

.services {
  min-height: 260vh;
}

.process {
  min-height: 170vh;
  background: var(--cream);
}

.runway-bypass .services,
.runway-bypass .process {
  min-height: 100vh;
}

.runway__frame {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 7rem max(2rem, 4vw) 4rem;
  overflow: hidden;
}

.section-heading {
  margin: 0 auto clamp(3.2rem, 7vh, 5.5rem);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(4.5rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.95;
}

.section-heading__line {
  display: block;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  width: min(100%, 1360px);
  margin: 0 auto;
}

.service-card {
  position: relative;
  height: 300px;
  min-height: 0;
  background: var(--cream);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(64, 64, 64, 0.12);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.service-card:hover {
  box-shadow: 0 24px 50px rgba(64, 64, 64, 0.18);
}

.service-card summary,
.service-card__detail {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1.5rem 1rem;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  border-radius: 22px;
  backface-visibility: hidden;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.service-card summary {
  justify-content: center;
  list-style: none;
  text-align: center;
  cursor: pointer;
  transform: rotateY(0deg);
}

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

.service-card__icon {
  display: grid;
  width: 116px;
  height: 116px;
  margin-bottom: 1.45rem;
  flex: 0 0 116px;
  place-items: center;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.service-card__icon img {
  width: 82px;
  height: 82px;
}

.service-card__title {
  display: flex;
  min-height: 2.3em;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.22vw, 1.35rem);
  font-weight: 600;
  line-height: 1.15;
}

.service-card__title-line {
  display: block;
  white-space: nowrap;
}

.service-card__detail {
  justify-content: center;
  padding: 1.25rem 1.2rem;
  text-align: left;
  cursor: pointer;
  transform: rotateY(180deg);
}

.service-card__bullets {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  line-height: 1.38;
  list-style: none;
  pointer-events: none;
}

.service-card__bullets li + li {
  margin-top: 0.35rem;
}

.service-card__bullets--dense {
  font-size: 0.74rem;
  line-height: 1.24;
}

.service-card__bullets--dense li + li {
  margin-top: 0.28rem;
}

.service-card__bullets li {
  position: relative;
  padding-left: 1rem;
}

.service-card__bullets li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
}

.service-card__close {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 22px;
  cursor: pointer;
}

.service-card[open] summary {
  transform: rotateY(-180deg);
}

.service-card[open] .service-card__detail {
  transform: rotateY(0deg);
}

@media (hover: hover) and (pointer: fine) {
  .service-card > summary,
  .service-card > .service-card__detail {
    pointer-events: none;
  }

  .service-card:hover > summary,
  .service-card.is-hovered > summary {
    transform: rotateY(-180deg);
  }

  .service-card:hover > .service-card__detail,
  .service-card.is-hovered > .service-card__detail {
    transform: rotateY(0deg);
  }
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3.5rem);
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1.1rem;
  align-items: start;
}

.process-step__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--soft-white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.process-step a,
.process-step__action {
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.process-step__action {
  display: inline;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.prepare {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  min-height: 720px;
  background: var(--soft-white);
}

.prepare__image-wrap {
  min-height: 600px;
  overflow: hidden;
}

.prepare__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prepare__copy {
  display: flex;
  padding: clamp(4rem, 8vw, 8.5rem);
  flex-direction: column;
  justify-content: center;
}

.prepare__copy h2 {
  max-width: 650px;
  margin-bottom: 2rem;
  font-size: clamp(4.5rem, 8vw, 6rem);
  line-height: 0.95;
}

.prepare__copy p {
  max-width: 70ch;
  margin-bottom: 1.15rem;
  font-size: 1.03rem;
}

.prepare__list {
  display: grid;
  gap: 1rem;
  max-width: 70ch;
  margin: 0 0 2rem;
  padding-left: 1.6rem;
}

.prepare__list li {
  padding-left: 0.4rem;
  font-size: 1.03rem;
  line-height: 1.6;
}

.prepare__list li::marker {
  color: var(--blue);
  font-weight: 700;
}

.prepare__disclaimer {
  max-width: 70ch;
  padding: 1.25rem 1.4rem;
  background: var(--cream);
  border: 1px solid rgba(203, 163, 147, 0.62);
  border-radius: 14px;
}

.prepare__disclaimer p {
  margin: 0;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.65;
}

.contact {
  position: relative;
  padding: clamp(6.5rem, 12vw, 10rem) 2rem;
  color: var(--soft-white);
  background: var(--blue);
  text-align: center;
  overflow: hidden;
}

.contact__mark {
  width: 55px;
  height: 55px;
  margin: 0 auto 2rem;
  opacity: 0.92;
}

.contact h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(4.5rem, 8vw, 6rem);
  line-height: 0.95;
}

.contact > p:not(.contact__area) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(248, 248, 248, 0.84);
  font-size: 1.08rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.2rem;
}

.contact__actions .button--pink {
  box-shadow: none;
}

.contact .text-link {
  min-height: 44px;
  padding: 0.6rem 0;
  color: var(--soft-white);
  font-weight: 700;
}

.contact__area {
  margin: 2rem 0 0;
  color: rgba(248, 248, 248, 0.65);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.request-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: end;
}

.request-sheet[hidden] {
  display: none;
}

.request-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 42, 74, 0.58);
  animation: sheet-backdrop-in 320ms ease both;
}

.request-sheet__panel {
  position: relative;
  max-height: 92vh;
  padding: clamp(3rem, 5vw, 5.5rem) max(2rem, 5vw) clamp(2.5rem, 4vw, 4rem);
  overflow-y: auto;
  color: var(--charcoal);
  background: var(--cream);
  border-radius: 34px 34px 0 0;
  animation: sheet-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.request-sheet.is-closing .request-sheet__backdrop {
  animation: sheet-backdrop-out 220ms ease both;
}

.request-sheet.is-closing .request-sheet__panel {
  animation: sheet-lower 300ms ease both;
}

.request-sheet__close {
  position: absolute;
  top: 1.35rem;
  right: max(1.5rem, 3vw);
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--blue);
  background: transparent;
  border: 1px solid rgba(1, 42, 74, 0.24);
  border-radius: 50%;
  cursor: pointer;
}

.request-sheet__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(620px, 1.65fr);
  gap: clamp(3rem, 7vw, 8rem);
  width: min(100%, 1440px);
  margin: 0 auto;
}

.request-sheet__intro {
  align-self: start;
  padding-right: 1rem;
}

.request-sheet__intro > img {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
}

.request-sheet__intro h2 {
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

.request-sheet__intro h2 span {
  display: block;
}

.request-sheet__intro > p:not(.request-sheet__note) {
  max-width: 48ch;
  font-size: 1.04rem;
}

.request-sheet__note {
  width: fit-content;
  margin: 2rem 0 0;
  padding: 0.55rem 0.8rem;
  color: var(--blue);
  background: rgba(203, 163, 147, 0.28);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.request-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.25rem;
}

.request-form label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(64, 64, 64, 0.22);
  border-radius: 12px;
  font: 500 1rem/1.35 var(--font-body);
}

.request-form textarea {
  min-height: 126px;
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(64, 64, 64, 0.58);
}

.request-form__description {
  grid-column: 1 / -1;
}

.request-form__conditional {
  margin: 1.4rem 0 0;
  padding: 1.4rem;
  background: var(--soft-white);
  border: 1px solid rgba(1, 42, 74, 0.14);
  border-radius: 18px;
}

.request-form__conditional legend {
  padding: 0 0.45rem;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.request-form__grid--apostille {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-form__footer {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
}

.request-form__status {
  max-width: 62ch;
  margin: 0;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

@keyframes sheet-rise {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes sheet-lower {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}

@keyframes sheet-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sheet-backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 4.5rem max(2rem, 5vw) 1.6rem;
  color: var(--soft-white);
  background: var(--blue);
  border-top: 1px solid rgba(248, 248, 248, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 3rem;
  width: min(100%, 1240px);
  margin: 0 auto 3.5rem;
}

.footer-brand img {
  width: min(240px, 100%);
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 1.25rem 0 0;
  color: rgba(248, 248, 248, 0.72);
}

.footer-grid h2 {
  margin-bottom: 0.8rem;
  color: var(--pink);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div > p:not(.footer-brand p) {
  display: block;
  width: fit-content;
  margin: 0.25rem 0;
  color: rgba(248, 248, 248, 0.84);
  font-size: 0.88rem;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--soft-white);
}

.footer-bottom {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding-top: 1.5rem;
  color: rgba(248, 248, 248, 0.55);
  border-top: 1px solid rgba(248, 248, 248, 0.14);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.legal-body {
  min-height: 100vh;
  background: var(--soft-white);
}

.legal-header {
  position: relative;
  top: auto;
  padding-top: 1.25rem;
}

.legal-header .site-header {
  position: relative;
}

.legal-home {
  justify-self: end;
  padding: 0.75rem 1.2rem;
  color: var(--soft-white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-page {
  padding: 6rem 1.5rem 8rem;
}

.legal-page article {
  width: min(100%, 760px);
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
  color: var(--blue);
  font-size: clamp(2.7rem, 7vw, 4.8rem);
  line-height: 1;
}

.legal-page h2 {
  margin: 2.5rem 0 0.8rem;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
  max-width: 72ch;
}

.legal-note {
  color: rgba(64, 64, 64, 0.68);
  font-size: 0.9rem;
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--blue);
  font-weight: 700;
}

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

@media (max-width: 1080px) {
  .request-sheet__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .request-sheet__intro {
    padding-right: 4rem;
  }

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

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .brand {
    width: 180px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 880px;
  }

  .services {
    min-height: 220vh;
  }

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

  .footer-grid nav:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 820px) {
  .request-sheet__panel {
    max-height: 94vh;
    padding: 4.5rem 1.25rem 2rem;
    border-radius: 24px 24px 0 0;
  }

  .request-sheet__layout {
    gap: 2rem;
  }

  .request-sheet__intro {
    padding-right: 0;
  }

  .request-sheet__intro h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .request-form__grid,
  .request-form__grid--apostille {
    grid-template-columns: 1fr;
  }

  .request-form__description {
    grid-column: auto;
  }

  .request-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  html {
    scroll-padding-top: 90px;
  }

  .header-shell {
    top: 10px;
    padding: 0 10px;
  }

  .site-header {
    min-height: 68px;
    padding: 0.65rem 0.65rem 0.65rem 1rem;
    grid-template-columns: 1fr auto auto;
    gap: 0.55rem;
    border-radius: 20px;
  }

  .brand {
    width: 145px;
  }

  .brand img {
    width: 100%;
    height: auto;
  }

  .menu-toggle {
    display: inline-grid;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    place-items: center;
    color: var(--charcoal);
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle__lines {
    position: relative;
  }

  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-toggle__lines::before { top: -7px; }
  .menu-toggle__lines::after { top: 7px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { top: 0; transform: rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 10px;
    left: 10px;
    display: none;
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-radius: 18px;
    box-shadow: none;
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(64, 64, 64, 0.09);
    font-size: 0.95rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-call {
    min-width: 58px;
    min-height: 48px;
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
  }

  .header-call__desktop { display: none; }
  .header-call__mobile { display: inline; }

  .hero {
    min-height: 680px;
  }

  .hero__image {
    object-position: 57% center;
  }

  .hero__inner {
    align-items: flex-end;
    width: calc(100% - 20px);
    padding: 0 1rem 1rem;
  }

  .hero__content {
    width: min(100%, 540px);
    margin: 0;
  }

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

  .hero__content > p:not(.credential-line) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .services,
  .process {
    min-height: 0;
  }

  .runway__frame {
    position: relative;
    min-height: 0;
    padding: 6rem 1.25rem;
    overflow: visible;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2 {
    font-size: clamp(3.5rem, 12vw, 5rem);
  }

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

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .service-card {
    height: 280px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    max-width: 580px;
  }

  .prepare {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .prepare__image-wrap {
    min-height: 56vw;
    order: 0;
  }

  .prepare__copy {
    padding: 4.5rem 1.5rem 5.5rem;
    order: 1;
  }

  .prepare__copy h2 {
    font-size: clamp(3.5rem, 12vw, 5rem);
  }

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

  .footer-grid nav:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .credential-line {
    line-height: 1.7;
  }

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

  .service-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .service-card,
  .service-card summary {
    min-height: 0;
  }

  .service-card {
    height: 260px;
  }

  .service-card__icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    box-shadow: none;
  }

  .service-card__icon img {
    width: 52px;
    height: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .legal-page {
    padding-top: 4.5rem;
  }
}

@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;
  }

  .services,
  .process {
    min-height: 0;
  }

  .runway__frame {
    position: relative;
  }
}

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--soft-white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--blue);
}

.site-header :where(a, button):focus-visible {
  outline-color: var(--blue);
  box-shadow: none;
}

.site-header .header-call:focus-visible {
  outline-color: var(--soft-white);
  box-shadow: none;
}
