:root {
  --ink: #0a1a22;
  --pine: #1a4645;
  --teal: #276868;
  --sand: #7f7a6f;
  --ember: #f58800;
  --ember-hot: #f48820;
  --gold: #f7bb22;
  --gold-soft: #f8bc24;
  --abyss: #061217;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

button,
a {
  font-family: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: var(--white);
}

.header-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 91px;
  padding: 16px 24px;
}

.logo {
  display: block;
  width: 118px;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.learn-more-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 43px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.08px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.learn-more-header:hover {
  background: var(--pine);
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 43px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: var(--ember);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.08px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.book-btn:hover {
  background: var(--gold-soft);
  box-shadow: 0 4px 5px 0 rgba(248, 188, 36, 0.25);
  transform: translateY(-2px);
}

.hero {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.hero-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 64px 24px;
}

.hero-copy {
  width: 100%;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-lead {
  max-width: 32rem;
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--sand);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.learn-more-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 43px;
  padding: 10px 20px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s;
}

.learn-more-hero:hover {
  background: rgba(39, 104, 104, 0.2);
}

.sectors {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
}

.sector-avatars {
  display: flex;
}

.sector-avatars span {
  display: flex;
  width: 40px;
  height: 40px;
  margin-left: -8px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pine);
  font-size: 16px;
}

.sector-avatars span:first-child {
  margin-left: 0;
}

.sectors p {
  margin: 0;
  font-size: 14px;
  color: var(--sand);
}

.sectors strong {
  color: var(--white);
  font-weight: 500;
}

.hero-art {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1;
}

.hero-art svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 50px rgba(10, 26, 34, 0.5));
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  animation: pulse 2s ease-in-out infinite;
}

.glow-a {
  top: 25%;
  right: 25%;
  width: 64px;
  height: 64px;
  background: rgba(244, 136, 32, 0.1);
}

.glow-b {
  bottom: 33%;
  left: 33%;
  width: 96px;
  height: 96px;
  background: rgba(39, 104, 104, 0.2);
  animation-delay: 1s;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.trusted {
  width: 100%;
  background: var(--white);
}

.trusted-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  --marquee-shift: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.marquee-item {
  display: flex;
  width: 180px;
  height: 80px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.marquee-item img {
  max-width: 156px;
  max-height: 64px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(var(--marquee-shift) * -1), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .promise-card,
  .promise-card:hover,
  .book-btn:hover {
    transform: none;
    animation: none;
  }
}

.services {
  width: 100%;
  background: var(--white);
}

.services-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 8px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: var(--white);
}

.service-icon {
  width: 48px;
  height: 48px;
}

.service-icon img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: none;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--pine);
}

.service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
}

.quote {
  display: flex;
  width: 100%;
  min-height: 168px;
  align-items: center;
  padding: 0 16px;
  background: var(--ember);
  color: var(--white);
  text-align: left;
}

.quote blockquote {
  width: 100%;
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  text-align: left;
}

.quote footer {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
}

.promise {
  width: 100%;
  background: var(--white);
}

.promise-heading {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 65px;
  padding: 12px 16px;
}

.promise-heading h2 {
  width: 100%;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: var(--pine);
}

.promise-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px 16px 40px;
  overflow: visible;
}

.promise-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 184px;
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.22, 1.6, 0.36, 1);
}

.promise-card:hover {
  transform: translateY(-12px);
}

.promise-card h3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 16px;
  gap: 0;
  font-weight: 600;
}

.promise-card h3 span:first-child {
  font-size: 64px;
  font-weight: 700;
  line-height: 0.78;
  color: var(--gold-soft);
}

.promise-card h3 span:last-child {
  position: relative;
  top: 11px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--pine);
}

/* Small gap from the nearest gold ink at this height — per letter. */
.promise-s h3 span:last-child {
  margin-left: -1px;
}

.promise-t h3 span:last-child {
  margin-left: -13px;
}

.promise-a h3 span:last-child {
  margin-left: -7px;
}

.promise-r h3 span:last-child {
  margin-left: -2px;
}

.promise-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  color: var(--ink);
}

.partners {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.partners-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 32px;
  padding: 48px 24px;
}

.partners-photo {
  flex-shrink: 0;
  width: 217px;
}

.partners-photo img {
  display: block;
  width: 217px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.partners-copy {
  width: 100%;
  text-align: right;
}

.partners-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
}

.partners-quote {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}

.cta {
  width: 100%;
  background: var(--white);
}

.cta-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px;
}

.cta-copy {
  width: 100%;
}

.cta-title {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
  color: var(--ink);
}

.cta-sub {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

.contact {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  padding: 64px 16px;
}

.contact-inner {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
}

.contact-intro {
  margin-bottom: 48px;
  text-align: center;
}

.contact-intro h2 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 700;
}

.contact-intro p {
  margin: 0;
  font-size: 18px;
  color: var(--sand);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(39, 104, 104, 0.3);
  border-radius: 12px;
  background: var(--abyss);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(39, 104, 104, 0.5);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(127, 122, 111, 0.5);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember-hot);
}

.form-error {
  padding: 16px;
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 8px;
  background: rgba(127, 29, 29, 0.3);
  color: #fecaca;
  font-size: 14px;
}

.form-error[hidden],
.form-success[hidden],
.contact-form[hidden] {
  display: none;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  background: var(--ember-hot);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}

.submit-btn:hover:not(:disabled) {
  background: var(--gold);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-success {
  padding: 32px;
  border: 1px solid var(--teal);
  border-radius: 12px;
  background: rgba(39, 104, 104, 0.3);
  text-align: center;
}

.form-success h3 {
  margin: 8px 0;
  color: var(--gold);
}

.form-success p {
  color: var(--sand);
}

.reset-btn {
  margin-top: 16px;
  padding: 8px 24px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.site-footer {
  width: 100%;
  background: var(--white);
}

.footer-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 40px;
  padding: 40px 24px;
}

.footer-logo {
  display: block;
  width: 200px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--pine);
}

.footer-social a {
  display: flex;
  color: inherit;
}

.footer-col p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a,
.footer-col .cal-link {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  color: var(--pine);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}

.copyright {
  margin: 0;
  padding: 0 24px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--pine);
}

@media (min-width: 800px) {
  .header-inner {
    height: 96px;
    padding: 24px 32px;
  }

  .logo {
    width: 191px;
  }

  .hero-inner {
    flex-direction: row;
    gap: 64px;
    padding: 96px 32px;
  }

  .hero-copy,
  .hero-art-wrap {
    width: 50%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 24px;
    padding: 12px;
  }

  .service-card {
    gap: 12px;
    padding: 12px;
  }

  .quote blockquote {
    font-size: 26px;
  }

  .promise-heading h2 {
    font-size: 32px;
    color: var(--pine);
  }

  .promise-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
    padding: 24px 32px 48px;
  }

  .partners-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 64px 32px;
  }

  .partners-copy {
    max-width: 903px;
  }

  .partners-title {
    font-size: 36px;
  }

  .partners-quote {
    font-size: 20px;
  }

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 116px;
    padding: 10px 32px;
  }

  .cta-copy {
    max-width: 1000px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-sub {
    font-size: 18px;
  }

  .contact {
    padding: 96px 32px;
  }

  .contact-intro h2 {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding: 40px 32px;
  }
}

@media (min-width: 1280px) {
  .header-inner {
    height: 113px;
    padding: 24px 64px;
  }

  .logo {
    width: 256px;
  }

  .hero-inner {
    padding: 96px 64px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 24px;
  }

  .service-card {
    gap: 16px;
    padding: 24px;
  }

  .quote blockquote {
    font-size: 32px;
  }

  .promise-heading {
    padding: 12px 0;
  }

  .promise-heading h2 {
    font-size: 28px;
    color: var(--pine);
  }

  .promise-grid {
    padding: 24px 40px 48px;
  }

  .partners-inner {
    padding: 80px 40px;
  }

  .partners-title {
    font-size: 40px;
  }

  .cta-inner {
    padding: 10px 40px;
  }

  .cta-title {
    font-size: 40px;
  }

  .cta-sub {
    font-size: 20px;
  }

  .footer-inner {
    gap: 120px;
    padding: 40px;
  }

  .footer-logo {
    width: 279px;
  }
}

.holding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 280px);
  padding: 80px 24px 120px;
  text-align: center;
}

.holding h1 {
  margin: 0;
  max-width: 720px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--pine);
}

.holding p {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.holding .wet-paint-btn {
  margin-top: 48px;
}

.privacy {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.privacy h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--pine);
}

.privacy .privacy-updated {
  margin: 0 0 32px;
  font-size: 14px;
  color: var(--sand);
}

.privacy h2 {
  margin: 40px 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--pine);
}

.privacy h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.privacy p,
.privacy li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.privacy p {
  margin: 0 0 16px;
}

.privacy ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.privacy li + li {
  margin-top: 8px;
}

.privacy a {
  color: var(--teal);
}

.privacy address {
  margin: 0 0 16px;
  font-style: normal;
  line-height: 1.65;
}

.wet-paint-btn {
  --paint: var(--ember);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 48px;
  padding: 0 28px;
  margin-bottom: 110px;
  overflow: visible;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.08px;
  text-decoration: none;
  isolation: isolate;
}

.wet-paint-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 170px;
  overflow: visible;
  filter: url("#wet-paint-goo");
  pointer-events: none;
}

.wet-paint-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  background: var(--paint);
  border-radius: 6px;
}

.wet-paint-drips {
  position: absolute;
  left: 0;
  right: 0;
  top: 36px;
  height: 134px;
  overflow: visible;
}

.wet-paint-drips i {
  position: absolute;
  top: 0;
  display: block;
  width: var(--w, 13px);
  height: 134px;
  background: none;
}

.wet-paint-drips i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--paint);
  border-radius: 0 0 999px 999px;
  transform-origin: top center;
  animation: wet-paint-stem var(--dur, 10s) infinite;
  animation-delay: var(--delay, 0s);
}

.wet-paint-drips i em {
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(var(--w, 13px) + 6px);
  height: calc(var(--w, 13px) + 6px);
  margin-left: calc((var(--w, 13px) + 6px) / -2);
  background: var(--paint);
  border-radius: 0 70% 70% 70%;
  transform-origin: center;
  opacity: 0;
  animation: wet-paint-drop var(--dur, 10s) infinite;
  animation-delay: var(--delay, 0s);
}

.wet-paint-drips i:nth-child(1) {
  left: 14%;
  --w: 12px;
  --dur: 9.2s;
  --delay: 0s;
}

.wet-paint-drips i:nth-child(2) {
  left: 31%;
  --w: 18px;
  --dur: 11.4s;
  --delay: 3.2s;
}

.wet-paint-drips i:nth-child(3) {
  left: 49%;
  --w: 14px;
  --dur: 10s;
  --delay: 6.4s;
}

.wet-paint-drips i:nth-child(4) {
  left: 67%;
  --w: 17px;
  --dur: 10.8s;
  --delay: 1.6s;
}

.wet-paint-drips i:nth-child(5) {
  left: 82%;
  --w: 11px;
  --dur: 8.8s;
  --delay: 4.8s;
}

.wet-paint-label {
  position: relative;
  z-index: 1;
}

.wet-paint-btn:hover {
  --paint: var(--gold-soft);
}

@keyframes wet-paint-stem {
  0%,
  22% {
    height: 0;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.4, 0, 0.55, 1);
  }

  48% {
    height: 56px;
    opacity: 1;
    animation-timing-function: ease-out;
  }

  54% {
    height: 66px;
    opacity: 1;
    animation-timing-function: ease-in;
  }

  66%,
  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes wet-paint-drop {
  0%,
  22% {
    transform: translateY(0) rotate(45deg) scale(0.4);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.4, 0, 0.55, 1);
  }

  36% {
    transform: translateY(8px) rotate(45deg) scale(0.88);
    opacity: 1;
    animation-timing-function: cubic-bezier(0.4, 0, 0.55, 1);
  }

  48% {
    transform: translateY(40px) rotate(45deg) scale(1);
    opacity: 1;
    animation-timing-function: ease-out;
  }

  54% {
    transform: translateY(52px) rotate(45deg) scale(1.08);
    opacity: 1;
    animation-timing-function: cubic-bezier(0.22, 0.18, 0.78, 0.22);
  }

  68% {
    transform: translateY(118px) rotate(45deg) scale(0.86);
    opacity: 0;
    animation-timing-function: linear;
  }

  69%,
  100% {
    transform: translateY(0) rotate(45deg) scale(0.4);
    opacity: 0;
  }
}

.wet-paint-filter {
  position: absolute;
  width: 0;
  height: 0;
}

@media (min-width: 800px) {
  .holding h1,
  .privacy h1 {
    font-size: 40px;
  }

  .holding p {
    font-size: 20px;
  }

  .privacy {
    padding: 64px 32px 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wet-paint-drips i::before,
  .wet-paint-drips i em {
    animation: none;
  }

  .wet-paint-drips i::before {
    height: 18px;
    opacity: 1;
  }
}
