/* FTLOF Umbraco site styles. Keep this file framework-free and editable. */
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(
      --default-font-family,
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

:root {
  --ink: #00030b;
  --paper: #ffffff;
  --sand: #dfe9ed;
  --clay: #588a9e;
  --gold: #588a9e;
  --line: rgba(0, 3, 11, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
:where(a, button, input, textarea, select, summary, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}
:where(input, textarea, select):focus-visible {
  outline-width: 1px;
  outline-offset: 2px;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}
em {
  font-weight: 400;
  color: var(--clay);
}
.site-header {
  height: 106px;
  padding: 18px 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--paper);
  position: relative;
  z-index: 5;
}
.mark {
  display: flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.mark img {
  width: 178px;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 38px;
  font-size: 13px;
}
.site-header nav a:hover {
  color: var(--clay);
}
.site-header nav a,
.header-cta,
.button,
.section-head > a,
.quiet-cta a,
.text-link {
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
.nav-toggle {
  display: none;
}
.header-cta {
  justify-self: end;
  border-bottom: 1px solid;
  padding-bottom: 4px;
  font-size: 13px;
}
.hero {
  height: calc(100vh - 106px);
  min-height: 610px;
  position: relative;
  color: white;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 15, 12, 0.58),
    rgba(17, 15, 12, 0.06) 65%
  );
}
.hero > img {
  height: 100%;
  filter: saturate(0.76) contrast(0.95);
}
.hero-copy {
  position: absolute;
  left: 7vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 680px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: bold;
}
.hero h1 {
  font-size: clamp(66px, 8vw, 122px);
  margin: 26px 0;
}
.hero-copy > p:not(.eyebrow) {
  font:
    20px/1.5 Georgia,
    serif;
  max-width: 470px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  gap: 48px;
  min-width: 230px;
  padding: 17px 0;
  margin-top: 24px;
  border-bottom: 1px solid;
  font-size: 13px;
}
.button span,
.submit > span:last-child {
  transition: transform 180ms ease;
}
.hero-note {
  position: absolute;
  right: 4vw;
  bottom: 28px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.intro {
  padding: 145px 7vw;
  text-align: center;
}
.intro h2 {
  font-size: clamp(52px, 6.5vw, 94px);
  margin: 32px 0;
}
.intro-body {
  max-width: 590px;
  margin: 0 auto;
  font:
    19px/1.7 Georgia,
    serif;
}
.featured {
  padding: 80px 4vw 140px;
  background: #fff;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.section-head h2 {
  font-size: 55px;
  margin: 15px 0 0;
}
.section-head > a {
  font-size: 13px;
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
.home-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1fr;
  gap: 20px;
  align-items: start;
}
.story img {
  aspect-ratio: 4 / 5;
  height: auto;
}
.story-2 img {
  aspect-ratio: 1 / 1;
}
.story-3 img {
  aspect-ratio: 3 / 4;
}
.story span,
.album span {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
}
.story small,
.album small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.story b,
.album b {
  font:
    20px Georgia,
    serif;
  font-weight: 400;
}
.testimonials {
  background: var(--clay);
  color: white;
  padding: 70px 7vw 100px;
}
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}
.testimonial-controls { display: flex; gap: 8px; }
.testimonial-controls button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55); background: transparent;
  color: white; cursor: pointer; font-size: 18px;
}
.testimonial-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track article {
  min-width: 100%; scroll-snap-align: start; text-align: center; padding: 0 8vw;
}
.testimonial-track blockquote {
  font:
    italic clamp(24px, 3.15vw, 47px)/1.18 Georgia,
    serif;
  margin: 0;
}
.testimonial-track p {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 35px 0 0;
}
.experience {
  padding: 130px 7vw;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 9vw;
}
.experience > :only-child {
  grid-column: 1 / -1;
}
.experience h2 {
  font-size: 58px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  display: grid;
  grid-template-columns: 45px 1fr 1.2fr;
  gap: 20px;
}
.steps b {
  color: var(--clay);
  font-size: 11px;
}
.steps h3 {
  font:
    23px Georgia,
    serif;
}
.steps p {
  color: #666;
  line-height: 1.6;
}
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
}
.split-cta > :only-child {
  grid-column: 1 / -1;
}
.split-cta > div {
  padding: 10vw 7vw;
}
.split-cta h2 {
  font-size: 65px;
  margin: 24px 0;
}
.split-cta img {
  height: 620px;
}
.page-title {
  padding: 105px 7vw 90px;
}
.page-title h1 {
  font-size: clamp(58px, 7vw, 104px);
  margin: 25px 0;
}
.page-title > p:last-child {
  font:
    20px Georgia,
    serif;
}
.album-grid {
  padding: 0 4vw 130px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 22px;
}
.album img {
  aspect-ratio: 1 / 1;
  height: auto;
}
.album-2 {
  grid-column: 1/-1;
  width: 66%;
  margin: 0 auto;
}
.album-2 img {
  aspect-ratio: 7 / 6;
}
.quiet-cta {
  text-align: center;
  padding: 120px 5vw;
  background: white;
}
.quiet-cta h2 {
  font-size: 55px;
}
.quiet-cta a,
.text-link {
  font-size: 13px;
  border-bottom: 1px solid;
  padding-bottom: 6px;
}
.album-hero {
  height: calc(100vh - 106px);
  position: relative;
  color: white;
}
.album-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 55%);
}
.album-hero img {
  height: 100%;
}
.album-hero > div {
  position: absolute;
  z-index: 2;
  bottom: 7vw;
  left: 7vw;
}
.album-hero h1 {
  font-size: clamp(65px, 9vw, 130px);
  margin: 20px 0;
}
.story-copy {
  padding: 120px 10vw;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10vw;
}
.story-copy > div:only-child {
  grid-column: 1 / -1;
}
.story-copy h2 {
  font-size: 56px;
}
.story-copy > div:last-child {
  font:
    18px/1.8 Georgia,
    serif;
}
.story-copy h3 {
  font:
    32px Georgia,
    serif;
  margin-top: 50px;
}
.mosaic {
  padding: 0 4vw 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mosaic img {
  aspect-ratio: 1 / 1;
  height: auto;
}
.mosaic img:nth-child(3) {
  grid-column: 1/-1;
  aspect-ratio: 13 / 8;
}
.mosaic img:nth-child(4) {
  aspect-ratio: 5 / 4;
}
.mosaic img:nth-child(5) {
  aspect-ratio: 10 / 11;
}
.mosaic img.is-full-width {
  grid-column: 1 / -1;
}
.about-hero {
  padding: 70px 7vw 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}
.about-hero > :only-child {
  grid-column: 1 / -1;
}
.about-hero h1 {
  font-size: clamp(64px, 7vw, 100px);
  margin: 28px 0;
}
.about-hero > div > p:last-child {
  font:
    20px/1.6 Georgia,
    serif;
  max-width: 480px;
}
.about-portrait {
  height: 690px;
  overflow: hidden;
}
.about-portrait img {
  height: calc(100% + 14px);
  object-position: center top;
}
.about-copy {
  background: white;
  padding: 120px 12vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10vw;
}
.about-copy > :only-child {
  grid-column: 1 / -1;
}
.about-copy h2 {
  font-size: 54px;
}
.about-copy > div {
  font:
    18px/1.75 Georgia,
    serif;
}
.about-copy .text-link {
  display: inline-block;
  font: 13px Arial;
  margin-top: 25px;
}
.form-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 800px;
}
.form-intro {
  padding: 90px 7vw;
  background: var(--clay);
  color: white;
}
.form-intro h1 {
  font-size: clamp(58px, 6vw, 90px);
  margin: 25px 0;
}
.form-intro > p:not(.eyebrow) {
  font:
    19px/1.65 Georgia,
    serif;
  max-width: 460px;
}
.form-intro aside {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 75px;
  padding-top: 24px;
  max-width: 460px;
}
.form-intro aside b {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
}
.form-intro aside p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
}
.form-page form {
  padding: 80px 7vw;
  background: white;
}
.form-page > form:only-child {
  grid-column: 1 / -1;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label,
legend {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
input,
textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa;
  padding: 13px 0;
  background: transparent;
  font:
    16px Georgia,
    serif;
  border-radius: 0;
}
input:focus,
textarea:focus {
  border-color: var(--clay);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 15px 0 28px;
}
legend {
  font-weight: bold;
  text-transform: uppercase;
}
.package {
  border: 1px solid #ddd;
  padding: 22px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.package input {
  width: auto;
  accent-color: var(--clay);
}
.package:has(input:checked) {
  border-color: var(--clay);
  background: rgba(88, 138, 158, 0.08);
}
.package span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.package b {
  font:
    19px Georgia,
    serif;
}
.package small {
  color: #777;
}
.package strong {
  font:
    22px Georgia,
    serif;
}
.submit {
  border: 0;
  background: var(--ink);
  color: white;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 180ms ease, opacity 180ms ease;
}
.submit:disabled,
.submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.55;
}
.success-message,
.error-message,
.form-feedback {
  margin: 0 0 1rem;
}
.success-message {
  color: #2f6b3c;
}
.error-message {
  color: #a12622;
}
.form-feedback {
  margin-top: 1rem;
}
.form-feedback:empty {
  display: none;
}
@media (hover: hover) {
  .header-cta:hover,
  .button:hover,
  .section-head > a:hover,
  .quiet-cta a:hover,
  .text-link:hover {
    color: var(--clay);
    border-color: var(--clay);
  }
  .button:hover span,
  .submit:hover > span:last-child {
    transform: translate(3px, -3px);
  }
  .package:hover {
    border-color: var(--clay);
  }
  .submit:hover {
    background: var(--clay);
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header nav a,
  .header-cta,
  .button,
  .button span,
  .section-head > a,
  .quiet-cta a,
  .text-link,
  .package,
  .submit,
  .submit > span:last-child {
    transition: none;
  }
}
.form-note {
  text-align: center;
  font-size: 11px;
  color: #777;
  margin-top: 14px;
}
.success {
  grid-column: 1/-1;
  text-align: center;
  padding: 180px 10vw;
}
.success h1 {
  font-size: 75px;
}
.success p:last-child {
  font:
    19px Georgia,
    serif;
  max-width: 600px;
  margin: auto;
}
footer {
  padding: 70px 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: end;
  background: var(--ink);
  color: white;
  font-size: 12px;
  line-height: 1.8;
}
footer .mark {
  align-items: flex-start;
}
footer .mark img { width: 190px; }
footer > div:last-child {
  text-align: right;
}
footer span {
  color: #aaa;
}
@media (min-width: 801px) {
  .home-grid .story {
    margin-top: var(--story-offset, 0);
  }
  .home-grid .story-2 {
    margin-top: var(--story-offset, 120px);
  }
  .home-grid .story img {
    height: var(--story-height, auto);
  }
  .album-grid .album {
    margin-top: var(--album-offset, 0);
  }
  .album-grid .album-1 {
    margin-top: var(--album-offset, 150px);
  }
  .album-grid .album.full-width {
    grid-column: 1 / -1;
    margin: 0 auto;
  }
  .album-grid .album.custom-width {
    width: var(--album-width, auto);
  }
  .album-grid .album img {
    height: var(--album-height, auto);
  }
  .mosaic img {
    height: var(--mosaic-height, auto);
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 84px;
    padding: 12px 20px;
    grid-template-columns: 1fr auto auto;
    column-gap: 14px;
  }
  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 22px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px rgba(0, 3, 11, 0.12);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .site-header nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav a:last-child {
    border-bottom: 0;
  }
  .site-header.is-nav-open nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .nav-toggle-lines {
    position: relative;
  }
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .nav-toggle-lines::before {
    transform: translateY(-5px);
  }
  .nav-toggle-lines::after {
    transform: translateY(5px);
  }
  .site-header.is-nav-open .nav-toggle-lines {
    background: transparent;
  }
  .site-header.is-nav-open .nav-toggle-lines::before {
    transform: rotate(45deg);
  }
  .site-header.is-nav-open .nav-toggle-lines::after {
    transform: rotate(-45deg);
  }
  .header-cta {
    font-size: 11px;
  }
  .hero {
    height: 76vh;
    min-height: 580px;
  }
  .hero-copy {
    left: 24px;
    right: 24px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-note {
    display: none;
  }
  .intro {
    padding: 52px 24px;
  }
  .intro h2 {
    font-size: 49px;
    margin: 20px 0;
  }
  .featured {
    padding: 44px 20px;
  }
  .section-head {
    margin-bottom: 30px;
  }
  .section-head h2 {
    font-size: 42px;
  }
  .section-head > a {
    display: none;
  }
  .home-grid,
  .album-grid {
    display: block;
  }
  .story,
  .album {
    display: block;
    margin: 0 0 28px;
    width: 100%;
  }
  .story img,
  .story-2 img,
  .story-3 img,
  .album img,
  .album-2 img {
    aspect-ratio: auto;
    height: clamp(400px, 124vw, 480px);
  }
  .testimonials {
    padding: 52px 25px;
  }
  .testimonial-top {
    margin-bottom: 28px;
  }
  .testimonial-track article { padding: 0; }
  .experience,
  .story-copy,
  .about-copy {
    grid-template-columns: 1fr;
    padding: 52px 25px;
    gap: 28px;
  }
  .experience h2,
  .story-copy h2,
  .about-copy h2 {
    font-size: 45px;
  }
  .steps article {
    grid-template-columns: 35px 1fr;
  }
  .steps p {
    grid-column: 2;
  }
  .split-cta,
  .about-hero,
  .form-page {
    grid-template-columns: 1fr;
  }
  .split-cta > div {
    padding: 52px 25px;
  }
  .split-cta h2 {
    font-size: 52px;
  }
  .split-cta img {
    height: 480px;
  }
  .page-title {
    padding: 48px 24px;
  }
  .page-title h1 {
    font-size: 55px;
  }
  .album-grid {
    padding: 0 20px 32px;
  }
  .album-hero {
    height: 70vh;
  }
  .story-copy {
    display: block;
  }
  .story-copy > div:last-child {
    margin-top: 20px;
  }
  .mosaic {
    grid-template-columns: 1fr;
    padding: 0 14px 40px;
  }
  .mosaic img,
  .mosaic img:nth-child(3),
  .mosaic img:nth-child(4),
  .mosaic img:nth-child(5) {
    grid-column: auto;
    aspect-ratio: auto;
    height: clamp(400px, 124vw, 480px);
  }
  .about-hero {
    padding: 40px 24px;
  }
  .about-hero h1 {
    font-size: 58px;
  }
  .about-portrait {
    height: 520px;
  }
  .form-intro,
  .form-page form {
    padding: 48px 24px;
  }
  .form-intro aside {
    margin-top: 40px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .package {
    grid-template-columns: 20px 1fr;
  }
  .package strong {
    grid-column: 2;
  }
  .success {
    padding: 60px 24px;
  }
  .success h1 {
    font-size: 55px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 24px;
  }
  footer > div:last-child {
    text-align: left;
  }
  .quiet-cta {
    padding: 60px 24px;
  }
}
@media (max-width: 420px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
    column-gap: 8px;
  }
  .mark img {
    width: 145px;
  }
  .header-cta {
    font-size: 10px;
  }
  .nav-toggle {
    gap: 6px;
  }
}
