:root {
  --seacorp-coral: #e9554b;
  --seacorp-ink: #191919;
  --seacorp-paper: #ffffff;
  --seacorp-line: #ececec;
  --coral: #e9554b;
  --ink: #191919;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--seacorp-paper);
}

body.nav-open {
  overflow: hidden;
}

.current-opportunity {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  min-height: 330px;
  overflow: hidden;
  border-bottom: 1px solid #302f2c;
  background: #161513;
  color: #fff;
}

.current-opportunity:hover {
  color: #fff;
}

.current-opportunity__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.current-opportunity:hover .current-opportunity__image {
  transform: scale(1.025);
}

.current-opportunity__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 56px;
}

.current-opportunity__eyebrow {
  margin-bottom: 16px;
  color: #e9554b;
  font: 500 10px "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
}

.current-opportunity__copy strong {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.12;
}

.current-opportunity__copy > span:not(.current-opportunity__eyebrow):not(.current-opportunity__link) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.current-opportunity__link {
  margin-top: 24px;
  border-bottom: 1px solid #e9554b;
  padding-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .current-opportunity {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .current-opportunity__image {
    height: 250px;
  }

  .current-opportunity__copy {
    padding: 34px 24px 38px;
  }

  .current-opportunity__copy strong {
    font-size: 27px;
  }
}

[data-screen-label] {
  --page-gutter: clamp(20px, 3.34vw, 48px);
  --wide-gutter: clamp(20px, 3.9vw, 56px);
  width: 100%;
  max-width: none !important;
  min-width: 0;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

[data-screen-label] h1,
[data-screen-label] h2 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

[data-screen-label] p {
  text-wrap: pretty;
}

[data-screen-label] a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

[data-screen-label] [style*="grid-template-columns"] > * {
  min-width: 0;
}

[data-screen-label] > div:first-child,
.sp-nav,
[data-screen-label] [style*="padding:72px 48px"],
[data-screen-label] [style*="padding:64px 48px"],
[data-screen-label] [style*="padding:56px 48px"],
[data-screen-label] [style*="padding:48px"] {
  padding-right: var(--page-gutter) !important;
  padding-left: var(--page-gutter) !important;
}

[data-screen-label] [style*="padding:72px 56px 72px 48px"] {
  padding-right: var(--wide-gutter) !important;
  padding-left: var(--page-gutter) !important;
}

[data-screen-label] [style*="padding:64px 56px"] {
  padding-right: var(--wide-gutter) !important;
  padding-left: var(--wide-gutter) !important;
}

.slot-img,
progressive-img2.slot-img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.profile-slot {
  position: relative;
  overflow: hidden;
}

.ph.profile-slot::before {
  color: var(--seacorp-coral);
  content: "KS";
  font-size: clamp(84px, 12vw, 150px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.ph.profile-slot span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  padding-top: 8px;
  border-top: 1px solid rgba(25, 25, 25, 0.18);
  background: transparent !important;
  color: #666 !important;
  text-align: left;
}

.sp-nav {
  position: relative;
  z-index: 100;
}

.sp-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 3px;
  background: #fff;
  color: var(--seacorp-ink);
  cursor: pointer;
}

.sp-nav-toggle span,
.sp-nav-toggle span::before,
.sp-nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.sp-nav-toggle span {
  position: relative;
}

.sp-nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.sp-nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.sp-nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.sp-nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.sp-nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

input,
select,
textarea,
button {
  max-width: 100%;
  font: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(233, 85, 75, 0.45);
  outline-offset: 3px;
}

#enquiry {
  scroll-margin-top: 90px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.field-error {
  color: #b42318;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.4;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #b42318 !important;
  background: #fff8f7 !important;
}

input.is-invalid:focus-visible,
select.is-invalid:focus-visible,
textarea.is-invalid:focus-visible {
  outline-color: rgba(180, 35, 24, 0.4);
}

.home-kate {
  height: clamp(440px, 36vw, 500px) !important;
}

.credit-footer {
  position: relative;
  padding-bottom: 82px !important;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.46) !important;
  font: 500 10.5px/1.4 "IBM Plex Mono", monospace;
  letter-spacing: 0.035em;
  text-transform: lowercase;
  transition: color 160ms ease;
}

.credit-footer > .footer-credit {
  position: absolute;
  bottom: 26px;
  left: var(--page-gutter, 48px);
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #fff !important;
}

.thank-you-shell {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  flex-direction: column;
  margin: 0 auto;
  background: #fff;
}

.thank-you {
  display: grid;
  min-height: clamp(560px, calc(100vh - 216px), 760px);
  flex: 1;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  background: var(--seacorp-coral);
  color: #fff;
}

.thank-you__copy {
  display: flex;
  max-width: 820px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 112px) var(--wide-gutter, 72px) clamp(60px, 7vw, 104px) var(--page-gutter, 48px);
  animation: thank-copy-in 500ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.thank-you__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font: 500 12px/1.3 "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thank-you__eyebrow span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #fff;
  font: 600 13px/1 "Archivo", sans-serif;
}

.thank-you h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5vw, 76px) !important;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

.thank-you__lead {
  max-width: 58ch;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.68;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.thank-you__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.thank-you__button--dark {
  background: var(--seacorp-ink);
  color: #fff !important;
}

.thank-you__button--dark:hover {
  background: #303030;
}

.thank-you__button--light {
  border-color: rgba(255, 255, 255, 0.54);
  color: #fff !important;
}

.thank-you__button--light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--seacorp-ink) !important;
}

.thank-you__response {
  display: grid;
  max-width: 420px;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin-top: 46px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
}

.thank-you__response strong {
  color: #fff;
  font-weight: 600;
}

.thank-you__visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(233, 85, 75, 0.11), transparent 28%),
    linear-gradient(145deg, #f8f4ee 0%, #eee7de 100%);
  color: var(--seacorp-ink);
}

.thank-you__visual::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(25, 25, 25, 0.16) 0.75px, transparent 0.75px);
  background-size: 12px 12px;
  content: "";
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(135deg, transparent 12%, #000 58%, transparent 94%);
  mask-image: linear-gradient(135deg, transparent 12%, #000 58%, transparent 94%);
}

.stamp {
  position: absolute;
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;
  margin: 0;
  color: rgba(25, 25, 25, 0.52);
  font: 500 10.5px/1.55 Menlo, Consolas, monospace;
  letter-spacing: 0.12em;
  text-align: right;
}

.stage { position: relative; z-index: 2; width: min(82%, 560px); aspect-ratio: 560/420; }
.doc { position: absolute; left: 50%; top: 50%; width: min(60%, 300px); background: #fff; border-radius: 4px; box-shadow: 0 30px 60px rgba(25,25,25,0.16), 0 2px 8px rgba(25,25,25,0.08); padding: 30px 28px 26px; opacity: 0; transform: translate(-50%,-46%) translateY(40px) rotate(2.5deg); animation: doc-in .55s .15s cubic-bezier(.2,.85,.25,1) forwards, doc-out .65s 3.0s cubic-bezier(.55,-.05,.75,.45) forwards; }
.doc__head { font: 700 10.5px Menlo, monospace; letter-spacing: .16em; color: var(--coral); margin: 0 0 16px; }
.doc__line { height: 7px; border-radius: 2px; background: rgba(25,25,25,0.09); margin-bottom: 9px; transform-origin: left; transform: scaleX(0); animation: line-in .4s cubic-bezier(.3,.7,.3,1) forwards; }
.doc__sig { margin-top: 18px; border-top: 1px solid rgba(25,25,25,0.12); padding-top: 12px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.doc__sig svg { width: 110px; overflow: visible; }
.doc__sig path { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 220; stroke-dashoffset: 220; animation: sig-draw .85s 1.0s cubic-bezier(.4,0,.3,1) forwards; }
.doc__sig small { font: 500 9px Menlo, monospace; letter-spacing: .1em; color: rgba(25,25,25,0.4); }
.doc__stamp { position: absolute; right: -22px; bottom: 28px; width: 96px; height: 96px; border: 3px solid var(--coral); border-radius: 50%; display: grid; place-items: center; text-align: center; color: var(--coral); font: 800 11px/1.45 "Avenir Next","Century Gothic",sans-serif; letter-spacing: .14em; background: rgba(255,255,255,0.85); transform: scale(2.2) rotate(14deg); opacity: 0; animation: stamp-slam .35s 1.8s cubic-bezier(.3,1.3,.4,1) forwards; }
.doc__stamp::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(233,85,75,0.55); border-radius: 50%; }
.doc__shock { position: absolute; right: -22px; bottom: 28px; width: 96px; height: 96px; border-radius: 50%; border: 2px solid rgba(233,85,75,0.5); opacity: 0; animation: shock 0.7s 2.05s ease-out forwards; }
.clip { position: absolute; top: -13px; left: 30px; width: 15px; height: 34px; border: 3px solid rgba(25,25,25,0.6); border-radius: 8px; border-bottom: none; }
.sent-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.sent-trail { fill: none; stroke: rgba(233,85,75,0.7); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 8 8; opacity: 0; animation: trail-go 1.15s 3.02s linear both; }
.sent-label { position: absolute; right: 4%; top: 6%; font: 700 12px Menlo, monospace; letter-spacing: .2em; color: var(--coral); opacity: 0; animation: sent-flash 1.3s 3.15s ease both; }
.bp { position: absolute; left: 50%; top: 50%; width: 100%; opacity: 0; transform: translate(-50%,-50%) scale(.95); animation: bp-in .6s 3.85s cubic-bezier(.2,.8,.25,1) forwards; }
.bp svg { display: block; width: 100%; overflow: visible; }
.bp .grid-line { stroke: rgba(25,25,25,0.07); stroke-width: 1; }
.bp .draw { fill: none; stroke: rgba(25,25,25,0.55); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 900; animation: bp-draw 1.3s cubic-bezier(.4,0,.2,1) forwards; }
.bp .road { stroke: rgba(25,25,25,0.8); stroke-width: 2.4; animation-delay: 4.0s; }
.bp .road2 { animation-delay: 4.15s; }
.bp .l1 { animation-delay: 4.4s; } .bp .l2 { animation-delay: 4.6s; } .bp .l3 { animation-delay: 4.8s; }
.bp .l4 { animation-delay: 5.0s; } .bp .l5 { animation-delay: 5.2s; }
.bp .dim { stroke: rgba(233,85,75,0.7); stroke-width: 1; stroke-dasharray: 200; stroke-dashoffset: 200; animation: bp-draw .8s 5.75s forwards; fill: none; }
.bp .lot-num { font: 600 11px Menlo, monospace; fill: rgba(25,25,25,0.5); opacity: 0; animation: bp-fade .5s forwards; }
.bp .n1{animation-delay:4.95s}.bp .n2{animation-delay:5.15s}.bp .n3{animation-delay:5.35s}.bp .n4{animation-delay:5.55s}.bp .n5{animation-delay:5.75s}
.bp .sold-fill { fill: rgba(233,85,75,0.14); opacity: 0; animation: bp-fade .6s 6.1s forwards; }
.bp .sold-tag { opacity: 0; transform: scale(.6) rotate(-8deg); transform-origin: 254px 128px; animation: bp-stamp .45s 6.35s cubic-bezier(.2,1.4,.3,1) forwards; }
.bp .sold-tag rect { fill: var(--coral); }
.bp .sold-tag text { font: 800 13px "Avenir Next","Century Gothic",sans-serif; fill: #fff; letter-spacing: .12em; }
.bp .north { opacity: 0; animation: bp-fade .6s 5.9s forwards; }
.scan { position: absolute; inset: 0; opacity: 0; background: linear-gradient(105deg, transparent 42%, rgba(233,85,75,0.05) 50%, transparent 58%); animation: bp-fade .8s 6.9s forwards, bp-scan 5s 7s ease-in-out infinite; }
@keyframes doc-in { to { opacity: 1; transform: translate(-50%,-46%) rotate(-1.2deg); } }
@keyframes doc-out { from { opacity: 1; transform: translate(-50%,-46%) rotate(-1.2deg); } to { opacity: 0; transform: translate(60%,-320%) rotate(22deg) scale(.3); } }
@keyframes line-in { to { transform: scaleX(1); } }
@keyframes sig-draw { to { stroke-dashoffset: 0; } }
@keyframes stamp-slam { 0% { transform: scale(2.2) rotate(14deg); opacity: 0; } 60% { opacity: 1; } 100% { transform: scale(1) rotate(-11deg); opacity: 1; } }
@keyframes shock { 0% { opacity: .9; transform: scale(.6);} 100% { opacity: 0; transform: scale(1.6);} }
@keyframes trail-go { 0% { stroke-dashoffset: 300; opacity: 0; } 12% { opacity: 1; } 72% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes sent-flash { 0% { opacity: 0; transform: translateY(8px); } 22% { opacity: 1; transform: none; } 72% { opacity: 1; } 100% { opacity: 0; } }
@keyframes bp-in { to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes bp-draw { to { stroke-dashoffset: 0; } }
@keyframes bp-fade { to { opacity: 1; } }
@keyframes bp-stamp { 0% { opacity: 0; transform: scale(.6) rotate(-8deg); } 100% { opacity: 1; transform: scale(1) rotate(-4deg); } }
@keyframes bp-scan { 0%,100% { transform: translateX(-30%); } 50% { transform: translateX(30%); } }
@media (prefers-reduced-motion: reduce) {
  .doc, .sent-svg, .sent-label, .scan { display: none !important; }
  .bp { animation: none !important; opacity: 1; transform: translate(-50%,-50%); }
  .bp .draw, .bp .dim { animation: none !important; stroke-dashoffset: 0; }
  .bp .lot-num, .bp .sold-fill, .bp .north { animation: none !important; opacity: 1; }
  .bp .sold-tag { animation: none !important; opacity: 1; transform: rotate(-4deg); }
}

.thank-you__orbit {
  position: absolute;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 50%;
}

.thank-you__orbit--outer {
  width: min(42vw, 610px);
  aspect-ratio: 1;
  animation: thank-orbit-outer 24s linear infinite;
}

.thank-you__orbiter {
  --signal-color: 233, 85, 75;
  position: absolute;
  top: -0.5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--seacorp-coral);
  box-shadow: 0 0 0 0 rgba(233, 85, 75, 0.28);
  transform: translate(-50%, -50%);
  animation: thank-signal 2.8s ease-in-out infinite;
}

.thank-you__orbit--inner {
  width: min(30vw, 420px);
  aspect-ratio: 1;
  border-color: rgba(233, 85, 75, 0.24);
  animation: thank-orbit-inner 17s linear infinite;
}

.thank-you__orbit--inner .thank-you__orbiter {
  --signal-color: 25, 25, 25;
  width: 7px;
  height: 7px;
  background: var(--seacorp-ink);
  box-shadow: 0 0 0 0 rgba(25, 25, 25, 0.2);
  animation-delay: -1.2s;
}

.thank-you__mark {
  position: relative;
  z-index: 2;
  width: clamp(150px, 17vw, 230px);
  filter: drop-shadow(0 22px 40px rgba(25, 25, 25, 0.12));
  animation: thank-mark-in 560ms 80ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.thank-you__mark::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(233, 85, 75, 0.46);
  border-radius: 50%;
  content: "";
  opacity: 0;
  animation: thank-receipt-pulse 900ms 820ms ease-out both;
}

.thank-you__mark svg {
  display: block;
  overflow: visible;
}

.thank-you__mark circle,
.thank-you__mark path {
  fill: none;
  stroke: var(--seacorp-coral);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you__mark circle {
  stroke-width: 2.5;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: thank-circle 680ms 110ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.thank-you__mark path {
  stroke-width: 6;
  stroke-dasharray: 62;
  stroke-dashoffset: 62;
  animation: thank-check 520ms 460ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.thank-you__stamp {
  position: absolute;
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;
  margin: 0;
  color: rgba(25, 25, 25, 0.52);
  font: 500 10.5px/1.55 "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-align: right;
}

.thank-you-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px var(--page-gutter, 48px);
  background: var(--seacorp-ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11.5px;
}

.thank-you-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-credit--flow {
  flex: none;
}

.home-blueprint {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  border-top: 1px solid var(--seacorp-line);
  border-bottom: 1px solid var(--seacorp-line);
  background: #faf9f7;
}

.home-blueprint__copy {
  display: flex;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--wide-gutter, 56px) 72px var(--page-gutter, 48px);
}

.home-blueprint__eyebrow {
  margin-bottom: 18px;
  color: var(--seacorp-coral);
  font: 500 12px/1.3 "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
}

.home-blueprint h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--seacorp-ink);
  font-size: clamp(32px, 3.1vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.home-blueprint p {
  max-width: 50ch;
  margin: 24px 0 0;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.7;
}

.home-blueprint__copy > a {
  align-self: flex-start;
  margin-top: 28px;
  color: var(--seacorp-coral);
  font-size: 14px;
  font-weight: 700;
}

.home-blueprint__visual {
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
}

.home-blueprint__embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  background: linear-gradient(145deg, #f8f4ee, #eee7de);
}

/* Compact utility layout used by the standalone 404 page. */
.site-footer {
  background: var(--seacorp-ink);
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  padding: 24px clamp(20px, 3.34vw, 48px);
  color: rgba(255, 255, 255, 0.62);
  font: 400 11.5px/1.5 "Archivo", sans-serif;
}

.not-found {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 72px clamp(20px, 5vw, 72px);
  background: linear-gradient(145deg, #f8f4ee, #eee7de);
  color: var(--seacorp-ink);
  font-family: "Archivo", sans-serif;
  text-align: center;
}

.not-found > div {
  max-width: 780px;
}

.not-found__code {
  margin: 0 0 20px;
  color: var(--seacorp-coral);
  font: 500 12px/1.4 "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.not-found .lead {
  margin: 24px auto 0;
  color: #555;
  font-size: 17px;
  line-height: 1.65;
}

.not-found .hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.not-found .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--seacorp-ink);
  border-radius: 3px;
  color: var(--seacorp-ink);
  font-weight: 700;
  text-decoration: none;
}

.not-found .button--coral {
  border-color: var(--seacorp-coral);
  background: var(--seacorp-coral);
  color: #fff;
}

@keyframes thank-copy-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes thank-check {
  to { stroke-dashoffset: 0; }
}

@keyframes thank-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes thank-mark-in {
  from { opacity: 0; transform: scale(0.86); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes thank-receipt-pulse {
  0% { opacity: 0; transform: scale(0.76); }
  24% { opacity: 0.48; }
  100% { opacity: 0; transform: scale(1.48); }
}

@keyframes thank-signal {
  0%, 58%, 100% { box-shadow: 0 0 0 0 rgba(var(--signal-color), 0); }
  72% { box-shadow: 0 0 0 8px rgba(var(--signal-color), 0.12); }
}

@keyframes thank-orbit-outer {
  from { transform: rotate(18deg); }
  to { transform: rotate(378deg); }
}

@keyframes thank-orbit-inner {
  from { transform: rotate(205deg); }
  to { transform: rotate(-155deg); }
}

@media (min-width: 1441px) {
  body {
    background: var(--seacorp-paper);
  }

  [data-screen-label] {
    --page-gutter: clamp(56px, 4vw, 80px);
    --wide-gutter: clamp(64px, 4.8vw, 96px);
    max-width: none !important;
    background: var(--seacorp-paper);
  }

  .sp-nav-links {
    gap: clamp(28px, 2vw, 38px) !important;
    font-size: 15px !important;
  }

  [data-screen-label="Home"] h1 {
    /* Keep the wrap width stable while Archivo is still downloading. */
    max-width: clamp(506px, 32vw, 612px);
    font-size: clamp(48px, 3vw, 58px) !important;
  }

  [data-screen-label]:not([data-screen-label="Home"]) h1 {
    font-size: clamp(44px, 2.7vw, 52px) !important;
  }

  [data-screen-label] h2[style*="font-size:30px"] {
    font-size: clamp(31px, 2vw, 36px) !important;
  }

  [data-screen-label] [style*="padding:72px 48px"],
  [data-screen-label] [style*="padding:72px 56px 72px 48px"] {
    padding-top: clamp(78px, 4.8vw, 94px) !important;
    padding-bottom: clamp(78px, 4.8vw, 94px) !important;
  }

  [data-screen-label] [style*="padding:64px 48px"],
  [data-screen-label] [style*="padding:64px 56px"] {
    padding-top: clamp(68px, 4.2vw, 82px) !important;
    padding-bottom: clamp(68px, 4.2vw, 82px) !important;
  }

  [data-screen-label] [style*="padding:56px 48px"] {
    padding-top: clamp(58px, 3.8vw, 72px) !important;
    padding-bottom: clamp(58px, 3.8vw, 72px) !important;
  }

  [data-screen-label] [style*="grid-template-columns:440px 1fr"] {
    grid-template-columns: clamp(440px, 27vw, 520px) minmax(0, 1fr) !important;
  }

  [data-screen-label] [style*="grid-template-columns:380px 1fr"] {
    grid-template-columns: clamp(380px, 24vw, 460px) minmax(0, 1fr) !important;
    gap: clamp(56px, 4vw, 76px) !important;
  }

  [data-screen-label] [style*="grid-template-columns:1fr 420px"] {
    grid-template-columns: minmax(0, 1fr) clamp(420px, 26vw, 500px) !important;
    gap: clamp(56px, 4vw, 76px) !important;
  }

  [data-screen-label] [style*="grid-template-columns:repeat(3,1fr)"],
  [data-screen-label] [style*="grid-template-columns:repeat(4,1fr)"],
  [data-screen-label] [style*="grid-template-columns:repeat(5,1fr)"] {
    gap: clamp(24px, 1.6vw, 32px) !important;
  }

  [data-screen-label] [style*="min-height:460px"] {
    min-height: clamp(520px, 32vw, 620px) !important;
  }

  [data-screen-label] [style*="min-height:380px"] {
    min-height: clamp(440px, 27vw, 520px) !important;
  }

  [data-screen-label] progressive-img2[style*="height:180px"] {
    height: clamp(200px, 12vw, 230px) !important;
  }

  [data-screen-label] progressive-img2[style*="height:200px"] {
    height: clamp(220px, 13vw, 250px) !important;
  }

  [data-screen-label] progressive-img2[style*="height:260px"] {
    height: clamp(280px, 17vw, 330px) !important;
  }

  [data-screen-label] progressive-img2[style*="height:320px"] {
    height: clamp(330px, 20vw, 390px) !important;
  }

  [data-screen-label] .profile-slot[style*="height:400px"] {
    height: clamp(430px, 27vw, 500px) !important;
  }

  [data-screen-label] > div[style*="background:#E9554B"][style*="display:flex"] > div:first-child {
    font-size: clamp(28px, 2vw, 34px) !important;
  }
}

@media (max-width: 1100px) {
  .sp-nav-links {
    gap: 18px !important;
    font-size: 13px !important;
  }

  .sp-nav-links > a:last-child {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  [data-screen-label] [style*="grid-template-columns:440px 1fr"] {
    grid-template-columns: 380px minmax(0, 1fr) !important;
  }

  [data-screen-label] [style*="grid-template-columns:380px 1fr"] {
    grid-template-columns: 320px minmax(0, 1fr) !important;
    gap: 40px !important;
  }

  [data-screen-label] [style*="grid-template-columns:1fr 420px"] {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 40px !important;
  }

  [data-screen-label] [style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 960px) {
  [data-screen-label] > div:first-child {
    gap: 24px;
  }

  [data-screen-label] > div:first-child > div {
    flex: 0 0 auto;
  }

  [data-screen-label] h1 {
    font-size: 40px !important;
  }

  [data-screen-label] [style*="grid-template-columns:repeat(3,1fr)"],
  [data-screen-label] [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  [data-screen-label] > div:last-child {
    gap: 36px !important;
  }

  [data-screen-label] > div:last-child > div:last-child {
    gap: 36px !important;
  }
}

@media (max-width: 860px) {
  .sp-nav {
    position: sticky !important;
    top: 0;
    min-height: 72px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    background: #fff !important;
  }

  .sp-nav-toggle {
    display: inline-flex;
  }

  .sp-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none !important;
    max-height: calc(100dvh - 72px);
    flex-direction: column;
    align-items: stretch !important;
    gap: 0 !important;
    overflow-y: auto;
    padding: 10px var(--page-gutter) 24px;
    border-top: 1px solid var(--seacorp-line);
    background: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  }

  .sp-nav-links.is-open {
    display: flex !important;
  }

  .sp-nav-links a {
    min-height: 48px;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--seacorp-line);
    font-size: 16px;
  }

  .sp-nav-links a:last-child {
    margin-top: 12px;
    border-bottom: 0;
    text-align: center;
  }
}

@media (max-width: 840px) {
  .home-kate {
    height: clamp(430px, 112vw, 560px) !important;
  }

  .thank-you {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .thank-you__copy {
    max-width: none;
    padding: 64px var(--page-gutter) 58px;
  }

  .thank-you__visual {
    min-height: 320px;
  }

  .thank-you__orbit--outer {
    width: min(76vw, 470px);
  }

  .thank-you__orbit--inner {
    width: min(54vw, 330px);
  }

  .thank-you__mark {
    width: clamp(135px, 29vw, 190px);
  }

  .thank-you-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-blueprint {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-blueprint__copy {
    max-width: none;
    padding: 60px var(--page-gutter) 52px;
  }

  .home-blueprint h2 {
    max-width: 16ch;
  }

  .home-blueprint__visual,
  .home-blueprint__embed {
    min-height: clamp(320px, 76vw, 480px);
  }

  [data-screen-label] > div[style*="display:grid"][style*="grid-template-columns"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  [data-screen-label] > div[style*="display:grid"][style*="grid-template-columns"] > * {
    width: 100%;
  }

  [data-screen-label] [style*="min-height:460px"] {
    min-height: clamp(340px, 54vw, 420px) !important;
  }

  [data-screen-label] [style*="min-height:380px"] {
    min-height: clamp(300px, 48vw, 360px) !important;
  }

  [data-screen-label] > div[style*="background:#E9554B"][style*="display:flex"][style*="justify-content:space-between"] {
    align-items: flex-start !important;
    flex-direction: column;
  }

  [data-screen-label] > div[style*="background:#E9554B"][style*="display:flex"] > div:last-child {
    flex-wrap: wrap;
  }

  [data-screen-label] > div:last-child {
    align-items: flex-start !important;
    flex-direction: column;
  }

  [data-screen-label] > div:last-child > div:last-child {
    display: grid !important;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  [data-screen-label="Contact"] form {
    padding: 30px 26px !important;
  }
}

@media (max-width: 720px) {
  [data-screen-label] > div:first-child {
    min-height: 38px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  [data-screen-label] > div:first-child > span {
    display: none;
  }

  [data-screen-label] > div:first-child > div {
    width: 100%;
    justify-content: space-between;
  }

  [data-screen-label] h1 {
    font-size: 36px !important;
    line-height: 1.08 !important;
  }

  [data-screen-label] h2 {
    font-size: 28px !important;
  }

  [data-screen-label] [style*="justify-content:space-between"] {
    flex-wrap: wrap;
  }

  [data-screen-label] [style*="display:flex"][style*="gap:14px"] {
    flex-wrap: wrap;
  }

  [data-screen-label] [style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  [data-screen-label] [style*="grid-column"][style*="span"] {
    grid-column: auto !important;
  }

  [data-screen-label] > div[style*="display:flex"][style*="justify-content:space-between"]:not(:first-child):not(.sp-nav) {
    align-items: flex-start !important;
    flex-direction: column;
  }

  [data-screen-label] > div:last-child > div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-screen-label] section,
  [data-screen-label] div {
    scroll-margin-top: 78px;
  }
}

@media (max-width: 640px) {
  [data-screen-label] [style*="grid-template-columns"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  [data-screen-label] [style*="grid-column"][style*="span"] {
    grid-column: auto !important;
  }

  [data-screen-label] [style*="height:180px"] {
    height: 220px !important;
  }

  [data-screen-label] [style*="height:200px"] {
    height: 230px !important;
  }

  [data-screen-label] [style*="height:260px"],
  [data-screen-label] [style*="height:320px"] {
    height: 260px !important;
  }

  [data-screen-label] [style*="min-height:460px"] {
    min-height: 320px !important;
  }

  [data-screen-label] [style*="min-height:380px"] {
    min-height: 280px !important;
  }

  [data-screen-label] [style*="padding:26px 28px"],
  [data-screen-label] [style*="padding:28px"] {
    padding: 24px !important;
  }

  [data-screen-label="Contact"] form [style*="grid-template-columns"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  [data-screen-label="Contact"] form button {
    min-height: 48px;
  }
}

@media (max-width: 520px) {
  .home-kate {
    height: 430px !important;
  }

  .credit-footer {
    padding-bottom: 72px !important;
  }

  .credit-footer > .footer-credit {
    bottom: 22px;
  }

  .thank-you__copy {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .thank-you h1 {
    font-size: clamp(41px, 12vw, 52px) !important;
  }

  .thank-you__lead {
    margin-top: 24px;
  }

  .thank-you__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .thank-you__button {
    width: 100%;
  }

  .thank-you__response {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    margin-top: 36px;
  }

  .thank-you__visual {
    min-height: 280px;
  }

  .thank-you__stamp {
    bottom: 20px;
  }

  [data-screen-label] {
    --page-gutter: 18px;
    --wide-gutter: 18px;
  }

  [data-screen-label] > div:first-child > div a:last-child {
    display: none;
  }

  [data-screen-label] h1 {
    font-size: 32px !important;
  }

  [data-screen-label] h2 {
    font-size: 26px !important;
  }

  [data-screen-label] [style*="padding:72px 48px"],
  [data-screen-label] [style*="padding:64px 48px"],
  [data-screen-label] [style*="padding:56px 48px"],
  [data-screen-label] [style*="padding:72px 56px 72px 48px"],
  [data-screen-label] [style*="padding:64px 56px"] {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  [data-screen-label] a[style*="padding:14px 2"],
  [data-screen-label] a[style*="padding:13px 2"],
  [data-screen-label] a[style*="padding:12px 2"] {
    width: 100%;
    text-align: center;
  }

  [data-screen-label] > div[style*="background:#E9554B"][style*="display:flex"] > div:last-child,
  [data-screen-label] > div[style*="display:grid"] [style*="display:flex"][style*="gap:14px"] {
    width: 100%;
  }

  [data-screen-label] > div:last-child > div:last-child {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-screen-label="Contact"] form {
    padding: 26px 20px !important;
  }
}

@media (max-width: 360px) {
  [data-screen-label] {
    --page-gutter: 16px;
    --wide-gutter: 16px;
  }

  [data-screen-label] h1 {
    font-size: 30px !important;
  }
}

@media (max-width: 720px) {
  .thank-you-shell .thank-you h1 {
    font-size: clamp(42px, 11.5vw, 54px) !important;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .thank-you__copy,
  .thank-you__mark,
  .thank-you__mark::before,
  .thank-you__orbit,
  .thank-you__orbiter {
    animation: none !important;
  }

  .thank-you__mark circle,
  .thank-you__mark path {
    animation: none !important;
    stroke-dashoffset: 0;
  }
}
