:root {
  --ink: #20231f;
  --paper: #ffffff;
  --orange: #e95735;
  --apple-blue: #007aff;
  --display: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(1390px, calc(100% - 64px));
  height: 106px;
  margin-inline: auto;
  background: transparent;
  transform: translateX(-50%);
}

.brand {
  justify-self: start;
  white-space: nowrap;
}

.brand-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1;
}

.brand-highlight { color: var(--orange); }

.desktop-nav {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-self: center;
  gap: 0;
  margin: 0;
  padding: 6px 8px;
  border-radius: 14px;
  background: transparent;
}

.desktop-nav::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(32, 35, 31, .035);
  border-radius: inherit;
  background: rgba(244, 242, 236, .12);
  content: '';
  pointer-events: none;
  transform: scale(1);
  transition: transform .32s cubic-bezier(.22, .61, .36, 1), background-color .25s ease;
}

.desktop-nav:hover::before { 
  background: rgba(244, 242, 236, .22);
  transform: scale(1.02);
}

.desktop-nav a {
  padding: 13px 21px;
  color: #343730;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="location"] { color: var(--apple-blue); }

.site-header.on-dark .brand-name { color: #ffffff; }
.site-header.on-dark .desktop-nav::before {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .1);
}
.site-header.on-dark .desktop-nav:hover::before { background: rgba(255, 255, 255, .17); }
.site-header.on-dark .desktop-nav a { color: rgba(255, 255, 255, .82); }
.site-header.on-dark .desktop-nav a:hover,
.site-header.on-dark .desktop-nav a:focus-visible,
.site-header.on-dark .desktop-nav a[aria-current="location"] { color: var(--apple-blue); }
.site-header.on-dark .menu-toggle span { background: #ffffff; }

.desktop-nav a:focus-visible,
.nav-cta:focus-visible,
.service-cta:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--apple-blue);
  outline-offset: 4px;
}

.nav-cta {
  display: inline-flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding: 15px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #0878f9;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card {
  display: flex;
  min-height: clamp(500px, 58vh, 600px);
  flex-direction: column;
  align-items: stretch;
}

.service-cta {
  position: absolute;
  right: var(--service-card-inset);
  bottom: var(--service-card-inset);
  left: var(--service-card-inset);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-height: 44px;
  margin-top: 0;
  padding: 13px 17px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #0878f9;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.service-cta:hover {
  border-color: var(--apple-blue);
  border-radius: 14px;
  background: transparent;
  color: var(--apple-blue);
}

.service-cta-arrow {
  display: inline-flex;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.service-cta:hover .service-cta-arrow { transform: translateX(4px); }

.nav-cta:hover {
  border-color: var(--apple-blue);
  border-radius: 14px;
  background: transparent;
  color: var(--apple-blue);
  box-shadow: none;
}

.nav-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

.nav-cta svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.page-block {
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--paper);
}

.hero-block {
  overflow: hidden;
  padding: 64px clamp(28px, 8vw, 150px);
}

.hero-content {
  width: min(1540px, 100%);
  margin: 0 auto;
  text-align: center;
  transform: translateY(-47px);
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4rem, 8.1vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.36;
  text-wrap: balance;
}

.hero-location {
  max-width: 52ch;
  margin: 24px auto 0;
  color: #656862;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 500;
  line-height: 1.6;
}

.hero-line { display: block; }

.hero-line-reveal {
  opacity: 0;
  transform: translateY(.16em);
  animation: hero-line-appear .32s cubic-bezier(.2, .7, .2, 1) .5s forwards;
}

.hero-typewriter {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.hero-typewriter-visual {
  display: block;
  white-space: nowrap;
}

.hero-typewriter-visual em {
  color: var(--orange);
  font-style: normal;
}

.typing-character {
  display: inline-block;
  opacity: 0;
  transform: translateY(.13em);
  animation: type-character .24s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes hero-line-appear {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes type-character {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 800px) {
  .site-header {
    width: calc(100% - 48px);
    height: 90px;
  }

  .brand-name { font-size: 17px; }

  .desktop-nav { padding: 6px 5px; }

  .desktop-nav a {
    padding: 11px 13px;
    font-size: 14px;
  }

  .nav-cta {
    gap: 9px;
    padding: 13px 12px;
    font-size: 12px;
  }

  .page-block {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content { transform: translateY(-19px); }

  .hero-title {
    font-size: clamp(3.4rem, 9vw, 6rem);
    line-height: 1.24;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 9px;
    width: calc(100% - 42px);
    height: 77px;
  }

  .brand { grid-column: 1; }
  .nav-cta { grid-column: 2; }

  .brand-name { font-size: 16px; }

  .desktop-nav {
    position: absolute;
    z-index: 5;
    top: 100%;
    right: -21px;
    left: -21px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 20px 22px;
    border-bottom: 1px solid #e9e9e6;
    border-radius: 0;
    background: #ffffff;
  }

  .desktop-nav.open { display: flex; }
  .desktop-nav::before { display: none; }

  .desktop-nav a {
    padding: 0;
    font-size: 14px;
  }

  .nav-cta {
    gap: 8px;
    padding: 11px 10px;
    font-size: 10px;
  }

  .menu-toggle { display: block; grid-column: 3; }

  .page-block {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-block { padding: 44px 22px; }

  .hero-content { transform: translateY(7px); }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.75rem);
    line-height: 1.16;
  }

  .hero-location { max-width: 34ch; margin-top: 17px; font-size: 14px; }
}

/* Full-screen, scroll-snapped page blocks. */
html {
  scroll-snap-type: y mandatory;
}
.page-block {
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: #777a74;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity .18s ease, visibility .18s ease;
}
.scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.scroll-cue-arrow {
  color: var(--apple-blue);
  font-size: 20px;
  line-height: 1;
  animation: scroll-cue-bob 1.5s ease-in-out infinite;
}
@keyframes scroll-cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.services-block,
.faq-block {
  align-items: stretch;
  padding-block: 22px;
  background: #f4f5f7;
}
.block-content {
  display: flex;
  width: min(1760px, 100%);
  margin-inline: auto;
  padding: 22px clamp(30px, 4vw, 68px);
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.4vh, 30px);
}
.block-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block-eyebrow,
.service-type {
  margin: 0;
  color: #777a74;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.block-eyebrow span { padding-inline: 5px; color: var(--orange); }
.block-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.block-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1.05;
}
.card-scroll-note {
  display: none;
  margin: 0 0 3px;
  color: #777a74;
  font-size: 12px;
  white-space: nowrap;
}
.card-scroll-note span { padding-left: 5px; color: var(--apple-blue); }

.service-grid {
  display: grid;
  width: min(1270px, 100%);
  margin-inline: auto;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}
.services-block .block-heading {
  width: min(1270px, 100%);
  margin-inline: auto;
}
.service-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(32, 35, 31, .035);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(22, 26, 32, .045);
}
.service-card {
  --service-card-inset: 30px;
  position: relative;
  justify-content: flex-start;
  padding-bottom: calc(var(--service-card-inset) + 60px);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.service-type { font-size: 12px; }
.service-card h3 {
  margin: 19px 0 18px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.15;
}
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  row-gap: 2px;
  margin-bottom: 22px;
  color: #656862;
  font-size: 13px;
}
.price-row-quote { min-height: 37px; align-items: center; }
.price-row.price-row-quote strong { font-size: 21px; letter-spacing: -.04em; }
.service-includes-label {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.price-row strong {
  color: var(--ink);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.extra-price {
  margin-left: auto;
  color: #51554e;
  font-size: 11px;
  font-weight: 700;
}
.service-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  position: relative;
  padding-left: 15px;
  color: #5f625c;
  font-size: 13px;
  line-height: 1.5;
}
.service-card li::before {
  position: absolute;
  top: .48em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  content: '';
}
.service-description {
  max-width: 36ch;
  margin: 0 0 24px;
  color: #5f625c;
  font-size: 16px;
  line-height: 1.6;
}
.faq-grid {
  display: grid;
  width: min(1080px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}
.faq-block .block-heading {
  width: min(1080px, 100%);
  margin-inline: auto;
}
.faq-item {
  align-self: start;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(22, 26, 32, .035);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--apple-blue);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  content: '+';
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] {
  border-color: #e5e7eb;
  box-shadow: 0 12px 30px rgba(22, 26, 32, .07);
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .36s cubic-bezier(.22, .61, .36, 1);
}
.faq-answer-inner {
  padding-inline: 24px;
  border-top: 0 solid transparent;
  transition: padding-bottom .32s cubic-bezier(.22, .61, .36, 1), border-top-width .32s ease, border-top-color .32s ease;
}
.faq-item[open] .faq-answer-inner {
  padding-bottom: 24px;
  border-top-width: 1px;
  border-top-color: rgba(32, 35, 31, .07);
}
.faq-answer p {
  max-width: 68ch;
  margin: 16px 0 0;
  color: #4f534e;
  font-size: 16px;
  line-height: 1.75;
}
.faq-item summary:focus-visible { outline: 2px solid var(--apple-blue); outline-offset: -4px; border-radius: 16px; }

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-answer-inner,
  .faq-item summary::after { transition: none; }
}

@media (max-width: 800px) {
  .service-card { padding: 21px 20px; }
  .service-card {
    --service-card-inset: 20px;
    padding-bottom: calc(var(--service-card-inset) + 60px);
  }
  .service-card h3 { font-size: 21px; }
  .service-card li { font-size: 12px; }
}

@media (max-width: 700px) {
  .services-block,
  .faq-block { padding-block: 12px; }
  .block-content { padding: 20px 21px; gap: 18px; }
  .block-heading-row { align-items: end; gap: 8px; }
  .block-heading h2 { font-size: clamp(30px, 8vw, 42px); }
  .card-scroll-note { display: block; font-size: 10px; }
  .service-grid {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    gap: 11px;
    padding: 1px 1px 8px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: #d6d8d3 transparent;
  }
  .service-card {
    display: flex;
    padding: 24px;
    --service-card-inset: 24px;
    padding-bottom: calc(var(--service-card-inset) + 60px);
    flex: 0 0 88%;
    flex-direction: column;
    scroll-snap-align: start;
  }
  .service-card h3 { font-size: 23px; }
  .service-card li { font-size: 13px; }
  .price-row { font-size: 13px; }
  .price-row strong { font-size: 28px; }
  .service-description { font-size: 16px; }
  .faq-grid { gap: 10px; }
  .faq-item summary { min-height: 60px; padding: 17px 18px; font-size: 15px; }
  .faq-answer-inner { padding-inline: 18px; }
  .faq-item[open] .faq-answer-inner { padding-bottom: 20px; }
  .faq-answer p { font-size: 15px; line-height: 1.7; }
}

@media (max-height: 760px) and (min-width: 701px) {
  .services-block,
  .faq-block { padding-block: 8px; }
  .block-content { padding-block: 10px; gap: 11px; }
  .service-card {
    --service-card-inset: 12px;
    padding-block: 12px;
    padding-bottom: calc(var(--service-card-inset) + 60px);
  }
  .service-card h3 { margin-block: 5px; }
  .price-row { margin-bottom: 6px; }
  .service-card ul { gap: 3px; }
  .faq-grid { gap: 8px; }
  .faq-item summary { padding-block: 13px; }
  .faq-item[open] .faq-answer-inner { padding-bottom: 13px; }
}

@media (max-width: 900px) {
  .card-scroll-note { display: block; }
  .service-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 1px 1px 8px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: #d6d8d3 transparent;
  }
  .service-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .service-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 1000px) and (min-width: 801px) {
  .brand-name { font-size: 18px; }
  .desktop-nav a { padding-inline: 11px; font-size: 14px; }
  .nav-cta { gap: 9px; padding: 13px 12px; font-size: 12px; }
}

@media (max-width: 800px) {
  .desktop-nav a { padding-inline: 11px; }
}

.site-footer {
  align-items: stretch;
  background: var(--ink);
  color: #ffffff;
}
.footer-inner {
  display: flex;
  width: min(1760px, 100%);
  margin-inline: auto;
  padding: clamp(32px, 4vw, 68px);
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--apple-blue); }
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  width: min(1480px, 100%);
  margin-block: auto;
  margin-inline: auto;
}
.footer-intro { min-width: 0; }
.footer-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-main h2 {
  margin: 0;
  font-size: clamp(52px, 6.3vw, 88px);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1.02;
}
.footer-description {
  max-width: 48ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}
.contact-form { display: grid; gap: 17px; min-width: 0; }
.contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-form-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-field-wide { grid-column: 1 / -1; }
.contact-field { display: grid; gap: 8px; color: rgba(255, 255, 255, .8); font-size: 13px; font-weight: 600; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, .055);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.contact-field textarea { min-height: 124px; resize: vertical; line-height: 1.5; }
.contact-field select {
  appearance: none;
  padding-right: 46px;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%23a9ada7' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  cursor: pointer;
}
.contact-field select:invalid { color: rgba(255, 255, 255, .5); }
.contact-field select option { background: #20231f; color: #ffffff; }
.contact-field select:hover {
  border-color: rgba(255, 255, 255, .3);
  background-color: rgba(255, 255, 255, .09);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255, 255, 255, .42); }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--apple-blue);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, .18);
}
.contact-field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%23007aff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.contact-form-note { margin: -3px 0 0; color: rgba(255, 255, 255, .48); font-size: 12px; line-height: 1.5; }
.contact-form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-cta {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 19px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #0878f9;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, opacity .2s ease;
}
.footer-cta:hover {
  border-color: var(--apple-blue);
  background: transparent;
  color: var(--apple-blue);
}
.footer-cta:disabled { opacity: .65; cursor: wait; }
.contact-submit-arrow { display: inline-block; transition: transform .25s ease; }
.footer-cta:hover .contact-submit-arrow { transform: translateX(4px); }
.contact-form-status { min-height: 20px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 13px; line-height: 1.5; }
.contact-form-status[data-state="success"] { color: #a7e8bd; }
.contact-form-status[data-state="error"] { color: #ffb3a8; }
.contact-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }

@media (max-width: 700px) {
  .site-header.on-dark .desktop-nav {
    border-bottom-color: rgba(255, 255, 255, .14);
    background: var(--ink);
  }

  .footer-inner { padding: 118px 22px 32px; gap: 40px; }
  .footer-main { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .footer-main h2 { font-size: clamp(44px, 12vw, 68px); }
  .contact-form { gap: 15px; }
  .contact-form-fields { grid-template-columns: minmax(0, 1fr); gap: 15px; }
  .contact-form-choices { grid-template-columns: minmax(0, 1fr); gap: 15px; }
  .contact-field-wide { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer-links { gap: 18px; }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .footer-main { grid-template-columns: minmax(0, .9fr) minmax(300px, 1fr); gap: 38px; }
  .footer-main h2 { font-size: clamp(48px, 6vw, 68px); }
}

@media (max-width: 900px) {
  .footer-inner { padding: 118px clamp(22px, 4vw, 32px) 32px; gap: 40px; }
  .footer-main { grid-template-columns: minmax(0, 1fr); gap: 34px; max-width: 700px; }
}
