@font-face {
  font-family: Bricolage;
  src: url("/assets/fonts/bricolage-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Bricolage;
  src: url("/assets/fonts/bricolage-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("/assets/fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url("/assets/fonts/dm-sans-600.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --yellow: #ffdf35;
  --blue: #1646c8;
  --ink: #17191b;
  --paper: #fff;
  --light-blue: #eef2ff;
  --line: #d8d9dd;
  --heading: Bricolage, Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
button,
input,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button,
fieldset {
  margin: 0;
}
button svg,
a svg {
  flex-shrink: 0;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
button svg,
a svg {
  width: 22px;
  height: 22px;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p {
  font-weight: 400;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(40px, 4.4vw, 64px);
}
h3 {
  font-size: 30px;
  letter-spacing: -0.035em;
}
::selection {
  background: var(--blue);
  color: white;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
.button-blue:focus-visible,
.contact :focus-visible {
  outline-color: var(--ink);
}
[hidden] {
  display: none !important;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1264px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 110px;
}
.blue-text {
  color: var(--blue);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  background: white;
  border: 2px solid var(--ink);
  padding: 10px 20px;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 56px;
  gap: 30px;
  border-bottom: 1.5px solid var(--ink);
  background: #fff;
  position: relative;
  z-index: 20;
}
.wordmark {
  font-family: var(--heading);
  font-size: 49px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3.5px;
  display: inline-flex;
  align-items: center;
}
.logo-dot {
  color: var(--blue);
}
.logo-letter {
  width: 34px;
  height: 28px;
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 2;
  margin-left: 14px;
  transform: rotate(-12deg);
  margin-top: 8px;
}
.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  margin-left: auto;
  margin-right: 22px;
}
.desktop-nav a {
  position: relative;
  padding-block: 7px;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 17px 25px;
  min-height: 56px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  background: var(--yellow);
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  line-height: 1.4;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.button:active {
  transform: translate(0, 0);
  box-shadow: none;
}
.button-small {
  padding: 11px 20px;
  min-height: 45px;
  gap: 20px;
}
.button-blue {
  background: var(--blue);
  color: white;
}
.button-blue:hover {
  box-shadow: 4px 4px 0 var(--ink);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 12px;
  width: 46px;
  height: 46px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  z-index: 30;
  top: 79px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 2px solid var(--ink);
  padding: 20px 24px;
  box-shadow: 0 15px 20px #17191b12;
}
.mobile-nav a {
  display: block;
  font-size: 22px;
  font-family: var(--heading);
  padding: 12px 0;
}
.hero {
  background: var(--paper);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  min-height: 652px;
  align-items: center;
  gap: 5px;
  padding-top: 26px;
  padding-bottom: 30px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 12px;
}
.hero h1 {
  font-size: clamp(55px, 5.8vw, 86px);
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 0.99;
  letter-spacing: -0.064em;
}
.hero-copy > p {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.hero-copy .hero-description {
  margin-top: 13px;
  font-size: 15px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.hero-actions .button {
  font-size: 14px;
  gap: 18px;
  padding-inline: 20px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  border: 0;
  background: none;
  padding: 7px 0;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link span {
  font-size: 20px;
  line-height: 1;
}
.hero-art {
  height: 540px;
  position: relative;
  isolation: isolate;
}
.mascot {
  position: absolute;
  object-fit: contain;
  width: 105%;
  height: 105%;
  max-width: none;
  left: -2%;
  top: 0%;
  z-index: 1;
  animation: mascot-enter 0.7s ease-out both;
}
.art-spark {
  position: absolute;
  width: 33px;
  height: 33px;
  color: var(--blue);
  stroke-width: 1.7;
  z-index: 2;
}
.spark-one {
  left: -4px;
  top: 50%;
}
.spark-two {
  right: 10px;
  bottom: 21%;
  width: 25px;
  height: 25px;
}
.hero-bottom {
  display: flex;
  justify-content: flex-end;
  padding-block: 19px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.hero-bottom a {
  display: flex;
  gap: 15px;
}
.hero-bottom a span {
  font-size: 16px;
  line-height: 1;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: flex-end;
  margin-bottom: 54px;
}
.section-intro h2 {
  margin-top: 0;
}
.section-intro > p {
  max-width: 365px;
  font-size: 15px;
  line-height: 1.85;
  padding-bottom: 2px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  min-width: 0;
}
.service-illustration {
  height: 250px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  margin-bottom: 30px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card:nth-child(2) .service-illustration {
  background: var(--yellow);
}
.service-card:nth-child(3) .service-illustration {
  background: var(--blue);
}
.service-card h3 {
  margin-top: 0;
  line-height: 1.13;
  font-size: 29px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 17px;
  max-width: 355px;
}
.service-footer {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.mini-paper {
  height: 197px;
  width: 165px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 5px;
  padding: 15px;
  transform: rotate(-8deg);
  box-shadow: 6px 6px 0 var(--blue);
}
.mini-paper-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 800;
}
.mini-paper-top span + span {
  font-size: 21px;
}
.mini-paper-picture {
  height: 70px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  margin-bottom: 14px;
}
.mini-paper-picture svg {
  width: 43px;
  height: 43px;
  fill: var(--blue);
  stroke-width: 2;
}
.mini-paper i {
  display: block;
  height: 4px;
  width: 92%;
  margin-top: 6px;
  background: var(--ink);
  border-radius: 4px;
}
.mini-paper i + i {
  width: 70%;
}
.mini-paper b {
  display: block;
  height: 15px;
  width: 65px;
  background: var(--blue);
  margin-top: 10px;
  border-radius: 3px;
  border: 1px solid var(--ink);
}
.mini-spark {
  position: absolute;
  right: 19%;
  top: 34px;
  font-size: 41px;
  color: var(--blue);
  transform: rotate(9deg);
}
.mini-flow {
  flex-direction: column;
}
.flow-node {
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  z-index: 1;
  position: relative;
  min-width: 195px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}
.flow-start {
  transform: rotate(-5deg);
  margin-left: -38px;
  font-size: 24px;
}
.flow-start span:first-child {
  font-size: 15px;
}
.flow-start span:last-child {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}
.flow-end {
  transform: rotate(5deg);
  margin-left: 42px;
  margin-top: 35px;
  gap: 22px;
  background: var(--blue);
  color: white;
}
.flow-end svg {
  width: 26px;
  height: 26px;
  fill: var(--yellow);
  stroke: var(--ink);
}
.flow-path {
  height: 60px;
  width: 70px;
  position: absolute;
  top: 105px;
  left: 37%;
  border-bottom: 2px dashed var(--ink);
  border-left: 2px dashed var(--ink);
  border-radius: 0 0 0 20px;
  transform: rotate(5deg);
}
.flow-dot {
  position: absolute;
  bottom: 41px;
  left: 32px;
  width: 11px;
  height: 11px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.receipt-paper {
  background: white;
  width: 184px;
  min-height: 195px;
  padding: 18px 18px 14px;
  transform: rotate(7deg);
  position: relative;
  box-shadow: 6px 5px 0 #0e267b;
  border: 1.5px solid var(--ink);
  border-bottom: none;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.receipt-paper:after {
  content: "";
  height: 9px;
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -7px;
  background:
    linear-gradient(135deg, #fff 25%, transparent 25%) -9px 0/18px 18px,
    linear-gradient(225deg, #fff 25%, transparent 25%) -9px 0/18px 18px;
}
.receipt-check {
  width: 35px;
  height: 35px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  margin-bottom: 9px;
}
.receipt-paper strong {
  font-size: 14px;
}
.receipt-paper i {
  display: block;
  height: 4px;
  width: 94%;
  background: #d5d8df;
  margin-top: 12px;
}
.receipt-paper i + i {
  width: 65%;
  margin-top: 6px;
}
.receipt-line {
  width: 100%;
  height: 1px;
  background: #b4b8c3;
  margin-top: 15px;
  margin-bottom: 10px;
}
.receipt-paper > span:last-child {
  font-size: 14px;
}
.receipt-heart {
  position: absolute;
  left: 19%;
  bottom: 21px;
  font-size: 63px;
  color: var(--yellow);
  transform: rotate(-19deg);
  line-height: 1;
}
.services-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 57px;
  padding-block: 27px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.services-note > svg {
  height: 43px;
  width: 43px;
  color: var(--blue);
  transform: rotate(-10deg);
}
.services-note p {
  font-size: 14px;
  line-height: 1.8;
}
.services-note strong {
  font-weight: 600;
}
.handwritten {
  margin-left: auto;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  transform: rotate(-4deg);
  color: var(--blue);
}
.starter {
  background: var(--blue);
  color: white;
}
.starter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 54px;
}
.starter h2 {
  margin-top: 0;
  font-size: clamp(52px, 5.2vw, 76px);
}
.starter-top p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 22px;
  color: #f0f3ff;
}
.starter-stamp {
  color: var(--ink);
  background: var(--yellow);
  padding: 24px;
  width: 216px;
  height: 228px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(9deg);
  margin-right: 48px;
  border: 8px dotted var(--blue);
  outline: 6px solid var(--yellow);
  position: relative;
  gap: 11px;
}
.starter-stamp:after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--ink);
}
.starter-stamp svg {
  width: 66px;
  height: 52px;
  flex-shrink: 0;
}
.starter-stamp span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.starter-stamp strong {
  font-family: var(--heading);
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}
.starter-content {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 74px;
  align-items: start;
}
.audit-list {
  border-top: 1px solid #ffffff70;
}
.audit-list details {
  border-bottom: 1px solid #ffffff70;
}
.audit-list summary {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 25px 0;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.3;
}
.audit-number {
  font-family: var(--body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  color: #dbe4ff;
  min-width: 20px;
}
.details-toggle {
  margin-left: auto;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
}
.details-toggle:before,
.details-toggle:after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1.5px;
}
.details-toggle:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .details-toggle:after {
  transform: rotate(0);
}
summary::-webkit-details-marker {
  display: none;
}
.audit-detail {
  padding: 0 35px 25px 40px;
}
.audit-detail p {
  font-size: 14px;
  line-height: 1.85;
  color: #eef2ff;
  max-width: 465px;
}
.delivery-card {
  background: #fff;
  color: var(--ink);
  padding: 35px;
  border: 1.5px solid var(--ink);
  border-radius: 9px;
  box-shadow: 7px 7px 0 #0d2d89;
}
.delivery-label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.delivery-label svg {
  width: 23px;
  height: 23px;
  color: var(--blue);
  fill: var(--yellow);
}
.delivery-card h3 {
  font-size: 35px;
  line-height: 1.08;
  margin-top: 24px;
}
.delivery-card ul {
  list-style: none;
  margin: 27px 0;
  padding: 0;
  display: grid;
  gap: 15px;
}
.delivery-card li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
}
.delivery-card li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 3px;
  stroke-width: 2.2;
}
.delivery-price {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.delivery-price strong {
  font-size: 14px;
}
.delivery-price p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 7px;
}
.delivery-card .button {
  margin-top: 23px;
  width: 100%;
  font-size: 14px;
  justify-content: space-between;
}
.delivery-footnote {
  display: block;
  text-align: center;
  font-size: 14px;
  margin-top: 13px;
}
.working-tabs {
  display: flex;
  border: 1.5px solid var(--ink);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.working-tabs button {
  padding: 22px 25px;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  background: white;
  border: 0;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.working-tabs button + button {
  border-left: 1.5px solid var(--ink);
}
.working-tabs button[aria-selected="true"] {
  background: var(--yellow);
}
.working-tabs button:hover:not([aria-selected="true"]) {
  background: var(--light-blue);
}
.working-tabs button:focus-visible {
  outline-offset: -6px;
}
.working-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  border: 1.5px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 60px 70px;
  align-items: center;
  background: #f7f8fc;
  min-height: 420px;
}
.working-letter {
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  max-width: 330px;
  width: 100%;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: rotate(-6deg);
  box-shadow: 6px 6px 0 var(--ink);
  margin-left: 8px;
}
.working-letter > span:first-child {
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.working-letter strong {
  font-family: var(--heading);
  font-size: 47px;
  letter-spacing: -0.05em;
  line-height: 1;
}
.working-letter svg {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 24px;
  bottom: 20px;
  transform: rotate(12deg);
}
.working-letter > span:last-child {
  font-family: var(--heading);
  font-size: 14px;
  margin-top: 32px;
}
.letter-blue {
  background: var(--blue);
  color: white;
}
.letter-white {
  background: #fff;
}
.working-panel-copy h3 {
  font-size: 37px;
  margin-top: 0;
  line-height: 1.08;
}
.working-panel-copy > p {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 18px;
}
.responsibility {
  display: flex;
  gap: 30px;
  border-top: 1px solid #cdd0d9;
  padding-top: 18px;
  margin-top: 21px;
  font-size: 14px;
}
.responsibility b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.working-panel-copy .text-link {
  color: var(--blue);
  margin-top: 21px;
  font-size: 14px;
}
.personal-note {
  background: var(--yellow);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-block: 48px;
}
.personal-note-inner {
  display: flex;
  align-items: center;
  gap: 45px;
}
.note-stamp {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 67px;
  color: var(--blue);
  letter-spacing: -0.07em;
  transform: rotate(-10deg);
}
.personal-note h2 {
  font-size: 30px;
  letter-spacing: -0.035em;
}
.personal-note p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 700px;
  margin-top: 12px;
}
.personal-note-inner > svg {
  margin-left: auto;
  width: 61px;
  height: 61px;
  min-width: 61px;
  color: var(--blue);
  stroke-width: 1.5;
  transform: rotate(11deg);
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.faq h2 {
  margin-top: 0;
  font-size: 47px;
}
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid #bbbfc6;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  padding: 23px 0;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.faq details > p {
  font-size: 14px;
  line-height: 1.85;
  padding: 0 30px 24px 0;
}
.contact {
  background: var(--yellow);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  align-items: center;
}
.contact h2 {
  font-size: clamp(64px, 6.2vw, 88px);
  margin-top: 0;
  line-height: 1;
}
.contact-copy > p {
  font-size: 17px;
  line-height: 1.8;
  margin-top: 25px;
}
.contact-signoff {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  line-height: 1.9;
}
.contact-signoff svg {
  width: 46px;
  height: 46px;
  color: var(--blue);
  transform: rotate(-10deg);
}
.contact-card {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(1deg);
}
.postcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
}
.postcard-top > span:first-child {
  font-size: 14px;
  letter-spacing: 0.13em;
  font-weight: 600;
}
.postcard-stamp {
  border: 5px dotted #fff;
  outline: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  width: 52px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--heading);
  font-weight: 800;
  font-size: 31px;
  line-height: 1;
  transform: rotate(5deg);
}
.postcard-stamp span {
  font-size: 15px;
  color: var(--yellow);
  position: absolute;
  right: 0;
  bottom: 0;
}
.contact-card fieldset {
  border: 0;
  padding: 0;
  margin-bottom: 25px;
}
.contact-card legend,
.contact-card label {
  font-size: 14px;
  font-weight: 600;
}
.contact-card legend {
  margin-bottom: 9px;
}
.interest-options {
  display: flex;
  gap: 8px;
}
.interest-options label {
  position: relative;
  flex: 1;
}
.interest-options input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.interest-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px 7px;
  border: 1px solid #a9afb9;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  transition: background 0.15s;
}
.interest-options input:checked + span {
  background: var(--yellow);
  border-color: var(--ink);
  font-weight: 700;
}
.interest-options input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-bottom: 20px;
}
.contact-card label {
  display: block;
}
.contact-card input:not([type="radio"]),
.contact-card textarea {
  width: 100%;
  display: block;
  border: 1px solid #b4b8c0;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  padding: 11px;
  margin-top: 7px;
  min-height: 43px;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #747980;
  opacity: 1;
}
.contact-card textarea {
  resize: vertical;
  min-height: 95px;
  max-height: 400px;
}
.optional {
  font-weight: 400;
  color: #686c73;
}
.contact-submit {
  width: 100%;
  margin-top: 25px;
  justify-content: space-between;
  font-size: 14px;
}
.form-note {
  font-size: 14px;
  text-align: center;
  line-height: 1.7;
  margin-top: 12px;
  color: #545962;
}
.form-status {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
  color: var(--blue);
}
.form-status:empty {
  display: none;
}
.draft-result {
  border-top: 1px solid var(--line);
  margin-top: 17px;
  padding-top: 17px;
}
.draft-result textarea {
  font-size: 14px;
  min-height: 180px;
}
.draft-result .text-link {
  font-size: 14px;
}
.site-footer {
  padding-block: 37px 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-top .wordmark {
  font-size: 50px;
}
.footer-top p {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.025em;
}
.footer-top > a:last-child {
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 21px;
  font-size: 14px;
  color: #535961;
}
.privacy-button {
  font-size: 14px;
  border: 0;
  background: none;
  padding: 7px 0;
  color: #535961;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-button:hover {
  color: var(--blue);
}
dialog {
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  width: min(560px, calc(100% - 32px));
  max-height: 85dvh;
  box-shadow: 8px 8px 0 var(--ink);
}
dialog::backdrop {
  background: #17191b88;
  backdrop-filter: blur(3px);
}
.dialog-content {
  padding: 42px;
}
.dialog-close {
  position: absolute;
  right: 17px;
  top: 9px;
  border: 0;
  background: none;
  font-size: 30px;
}
.dialog-content h2 {
  font-size: 36px;
  margin: 20px 0;
}
.dialog-content p {
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.8;
}
@keyframes mascot-enter {
  from {
    opacity: 0;
    transform: translateY(14px) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 720px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .hero-art {
    height: 590px;
  }
  .hero-copy > p {
    font-size: 18px;
  }
  .hero-copy .hero-description {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .site-header {
    padding-inline: 36px;
  }
  .desktop-nav {
    gap: 24px;
    margin-right: 0;
  }
  .hero-inner {
    min-height: 610px;
    grid-template-columns: 1.13fr 1fr;
  }
  .hero h1 {
    font-size: 67px;
  }
  .hero-art {
    height: 470px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-description {
    font-size: 14px !important;
  }
  .hero-actions .button {
    font-size: 14px;
    padding-inline: 17px;
    gap: 14px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .section-space {
    padding-block: 85px;
  }
  .section-intro {
    gap: 45px;
  }
  .section-intro > p {
    max-width: 310px;
    font-size: 14px;
  }
  .services-grid {
    gap: 22px;
  }
  .service-illustration {
    height: 224px;
  }
  .service-card h3 {
    font-size: 26px;
  }
  .service-card p {
    font-size: 14px;
  }
  .mini-spark {
    right: 10%;
  }
  .starter-content {
    gap: 38px;
    grid-template-columns: 1.08fr 1fr;
  }
  .audit-list summary {
    font-size: 20px;
  }
  .delivery-card {
    padding: 28px;
  }
  .delivery-card h3 {
    font-size: 31px;
  }
  .working-panel {
    padding: 50px 40px;
    gap: 55px;
  }
  .working-letter strong {
    font-size: 42px;
  }
  .working-panel-copy h3 {
    font-size: 33px;
  }
  .faq {
    gap: 45px;
  }
  .contact-grid {
    gap: 48px;
  }
  .contact-card {
    padding: 27px;
  }
  .contact h2 {
    font-size: 75px;
  }
}
@media (max-width: 860px) {
  html {
    scroll-padding-top: 24px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 79px;
    padding-inline: 24px;
    gap: 18px;
  }
  .wordmark {
    font-size: 43px;
  }
  .logo-letter {
    width: 29px;
    margin-left: 12px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    font-size: 14px;
    min-height: 41px;
    padding: 9px 14px;
    gap: 11px;
  }
  .header-cta svg {
    width: 18px;
  }
  .menu-toggle {
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1.08fr 1fr;
    min-height: 545px;
    gap: 0;
    padding-top: 25px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-description {
    font-size: 14px !important;
  }
  .hero-art {
    height: 390px;
    margin-left: -15px;
    margin-right: -20px;
  }
  .hero-actions {
    gap: 9px;
    margin-top: 22px;
  }
  .hero-actions .button {
    padding: 14px;
    min-height: 48px;
    gap: 12px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .hero-bottom {
    font-size: 14px;
  }
  .section-space {
    padding-block: 70px;
  }
  .section-intro {
    gap: 30px;
  }
  .section-intro h2 {
    font-size: 44px;
  }
  .section-intro > p {
    max-width: 270px;
    font-size: 14px;
  }
  .services-grid {
    gap: 17px;
  }
  .service-illustration {
    height: 205px;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .service-card p {
    font-size: 14px;
  }
  .service-footer {
    font-size: 14px;
  }
  .mini-paper {
    transform: rotate(-8deg) scale(0.84);
  }
  .mini-spark {
    right: 9%;
    top: 20px;
    font-size: 30px;
  }
  .flow-node {
    min-width: 150px;
    padding: 9px;
    gap: 8px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .flow-start {
    margin-left: -8px;
  }
  .flow-start span:first-child {
    font-size: 14px;
  }
  .flow-end {
    margin-left: 7px;
    font-size: 14px;
  }
  .receipt-paper {
    transform: rotate(7deg) scale(0.83);
  }
  .receipt-heart {
    font-size: 48px;
    left: 4%;
    bottom: 15px;
  }
  .handwritten {
    font-size: 15px;
    max-width: 210px;
    text-align: right;
  }
  .services-note {
    gap: 16px;
  }
  .services-note p {
    font-size: 14px;
  }
  .starter-content {
    gap: 25px;
  }
  .starter-stamp {
    margin-right: 18px;
    transform: rotate(9deg) scale(0.85);
  }
  .starter h2 {
    font-size: 60px;
  }
  .starter-top p {
    font-size: 14px;
  }
  .audit-list summary {
    font-size: 17px;
    gap: 10px;
    padding-block: 23px;
  }
  .audit-detail {
    padding-left: 30px;
    padding-right: 8px;
  }
  .audit-detail p {
    font-size: 14px;
  }
  .delivery-card {
    padding: 23px;
  }
  .delivery-card h3 {
    font-size: 28px;
  }
  .delivery-label {
    font-size: 14px;
    gap: 7px;
  }
  .delivery-card li {
    font-size: 14px;
  }
  .delivery-price p {
    font-size: 14px;
  }
  .delivery-card .button {
    font-size: 14px;
    padding: 14px;
  }
  .delivery-footnote {
    font-size: 14px;
  }
  .working-tabs button {
    font-size: 14px;
    padding: 19px 18px;
  }
  .working-panel {
    padding: 42px 30px;
    gap: 35px;
    min-height: 400px;
  }
  .working-letter {
    padding: 25px 20px;
    margin-left: 0;
  }
  .working-letter strong {
    font-size: 37px;
  }
  .working-letter > span:first-child {
    font-size: 14px;
  }
  .working-panel-copy h3 {
    font-size: 29px;
  }
  .working-panel-copy > p {
    font-size: 14px;
  }
  .responsibility {
    gap: 18px;
    font-size: 14px;
  }
  .personal-note-inner {
    gap: 26px;
  }
  .note-stamp {
    font-size: 53px;
  }
  .personal-note h2 {
    font-size: 27px;
  }
  .personal-note p {
    font-size: 14px;
  }
  .personal-note-inner > svg {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
  .faq {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
  }
  .faq h2 {
    font-size: 39px;
  }
  .faq summary {
    font-size: 14px;
  }
  .faq details > p {
    font-size: 14px;
  }
  .contact-grid {
    gap: 30px;
  }
  .contact h2 {
    font-size: 62px;
  }
  .contact-copy > p {
    font-size: 14px;
  }
  .contact-card {
    padding: 22px;
  }
  .form-row {
    gap: 12px;
  }
  .contact-card input:not([type="radio"]),
  .contact-card textarea {
    font-size: 14px;
  }
  .interest-options {
    gap: 5px;
  }
  .interest-options span {
    font-size: 14px;
    padding: 9px 5px;
  }
  .footer-top p {
    font-size: 17px;
  }
  .footer-bottom {
    font-size: 14px;
  }
  .privacy-button {
    font-size: 14px;
  }
}
@media (max-width: 620px) {
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-inline: 20px;
  }
  .logo-letter {
    display: none;
  }
  .header-cta {
    font-size: 14px;
    padding: 9px 12px;
    gap: 8px;
  }
  .menu-toggle {
    width: 35px;
    padding: 5px;
  }
  .site-header {
    gap: 15px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 36px;
    padding-bottom: 4px;
    min-height: 0;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero h1 {
    font-size: clamp(48px, 12vw, 73px);
    letter-spacing: -0.06em;
    margin-top: 0;
    margin-bottom: 22px;
    line-height: 1.01;
  }
  .hero-copy > p {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: -0.015em;
  }
  .hero-description {
    font-size: 14px !important;
    max-width: 345px;
    margin-top: 10px !important;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 14px;
    padding: 14px 16px;
    min-height: 49px;
    gap: 13px;
  }
  .hero-actions .text-link {
    font-size: 14px;
    gap: 9px;
  }
  .hero-art {
    height: 355px;
    max-width: 430px;
    width: 100%;
    margin: 15px auto 0;
  }
  .mascot {
    width: 102%;
    height: 108%;
    left: -1%;
    top: -1%;
  }
  .spark-one {
    left: 5px;
    top: 49%;
    width: 25px;
    height: 25px;
  }
  .spark-two {
    right: 4px;
    bottom: 25%;
    width: 20px;
    height: 20px;
  }
  .hero-bottom {
    font-size: 14px;
    padding-block: 15px;
    line-height: 1.6;
  }
  .hero-bottom a {
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
  }
  .section-space {
    padding-block: 63px;
  }
  .section-intro {
    display: block;
    margin-bottom: 32px;
  }
  .section-intro h2 {
    font-size: 43px;
    margin-top: 0;
    letter-spacing: -0.048em;
  }
  .section-intro > p {
    max-width: 370px;
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.8;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-illustration {
    height: 245px;
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 31px;
    margin-top: 0;
    line-height: 1.09;
  }
  .service-card p {
    font-size: 14px;
    max-width: 100%;
    margin-top: 15px;
  }
  .service-footer {
    font-size: 14px;
    margin-top: 21px;
    padding-top: 15px;
  }
  .mini-paper {
    transform: rotate(-8deg) scale(1.04);
  }
  .mini-spark {
    right: 19%;
    top: 29px;
    font-size: 40px;
  }
  .flow-node {
    min-width: 200px;
    padding: 12px 14px;
    gap: 14px;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .flow-start {
    margin-left: -35px;
  }
  .flow-start span:first-child {
    font-size: 15px;
  }
  .flow-end {
    margin-left: 35px;
    font-size: 14px;
  }
  .flow-path {
    top: 102px;
    left: 40%;
  }
  .receipt-paper {
    transform: rotate(7deg) scale(1);
  }
  .receipt-heart {
    font-size: 60px;
    left: 19%;
    bottom: 20px;
  }
  .services-note {
    margin-top: 37px;
    padding-block: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .services-note > svg {
    width: 37px;
    height: 37px;
  }
  .services-note p {
    font-size: 14px;
  }
  .handwritten {
    font-size: 16px;
    max-width: none;
    text-align: left;
    margin-left: 51px;
    width: 100%;
    margin-top: 0;
    transform: rotate(-3deg);
  }
  .starter-top {
    position: relative;
    margin-bottom: 33px;
  }
  .starter h2 {
    font-size: 56px;
    margin-top: 0;
  }
  .starter-top p {
    font-size: 14px;
    margin-top: 20px;
    max-width: 270px;
  }
  .starter-stamp {
    width: 120px;
    height: 140px;
    padding: 15px;
    position: absolute;
    right: -10px;
    top: 39px;
    transform: rotate(12deg) scale(0.8);
    margin: 0;
    transform-origin: top right;
    gap: 6px;
    border-width: 6px;
    outline-width: 4px;
  }
  .starter-stamp svg {
    height: 39px;
    width: 45px;
  }
  .starter-stamp span {
    font-size: 14px;
  }
  .starter-stamp strong {
    font-size: 18px;
  }
  .starter-stamp:after {
    inset: 5px;
  }
  .starter-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .audit-list summary {
    font-size: 19px;
    gap: 12px;
    padding-block: 23px;
  }
  .audit-detail {
    padding-left: 32px;
    padding-right: 23px;
  }
  .audit-detail p {
    font-size: 14px;
  }
  .delivery-card {
    padding: 27px;
    box-shadow: 5px 5px 0 #0d2d89;
  }
  .delivery-label {
    font-size: 14px;
    gap: 9px;
  }
  .delivery-card h3 {
    font-size: 33px;
    margin-top: 21px;
  }
  .delivery-card li {
    font-size: 14px;
  }
  .delivery-price p {
    font-size: 14px;
  }
  .delivery-price strong {
    font-size: 14px;
  }
  .delivery-card .button {
    font-size: 14px;
    min-height: 51px;
  }
  .delivery-footnote {
    font-size: 14px;
  }
  .working-tabs {
    border-radius: 7px 7px 0 0;
  }
  .working-tabs button {
    padding: 16px 10px;
    font-size: 14px;
    line-height: 1.4;
    min-height: 67px;
    gap: 5px;
    text-align: left;
    align-items: flex-start;
  }
  .working-tabs button span {
    font-size: 14px;
  }
  .working-panel {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 34px 24px 29px;
  }
  .working-letter {
    max-width: 255px;
    margin: 0 auto;
    padding: 25px;
    transform: rotate(-5deg);
  }
  .working-letter strong {
    font-size: 39px;
  }
  .working-letter > span:first-child {
    font-size: 14px;
    margin-bottom: 17px;
  }
  .working-letter > span:last-child {
    font-size: 14px;
    margin-top: 24px;
  }
  .working-letter svg {
    width: 32px;
    height: 32px;
  }
  .working-panel-copy h3 {
    font-size: 31px;
  }
  .working-panel-copy > p {
    font-size: 14px;
  }
  .responsibility {
    font-size: 14px;
    gap: 28px;
  }
  .working-panel-copy .text-link {
    font-size: 14px;
  }
  .personal-note {
    padding-block: 34px;
  }
  .personal-note-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .note-stamp {
    font-size: 48px;
  }
  .personal-note-inner > div {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .personal-note-inner > svg {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 39px;
    height: 39px;
    min-width: 39px;
  }
  .personal-note h2 {
    font-size: 28px;
    line-height: 1.1;
  }
  .personal-note p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq h2 {
    font-size: 43px;
    margin-top: 0;
  }
  .faq summary {
    font-size: 14px;
    padding-block: 21px;
  }
  .faq details > p {
    font-size: 14px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact h2 {
    font-size: 68px;
    margin-top: 0;
  }
  .contact-copy > p {
    font-size: 15px;
    margin-top: 20px;
  }
  .contact-signoff {
    margin-top: 23px;
    gap: 14px;
    font-size: 14px;
  }
  .contact-signoff svg {
    width: 37px;
    height: 37px;
  }
  .contact-card {
    padding: 24px 21px;
    transform: rotate(0.7deg);
    box-shadow: 5px 5px 0 var(--ink);
  }
  .contact-card legend,
  .contact-card label {
    font-size: 14px;
  }
  .interest-options span {
    font-size: 14px;
    padding: 10px 5px;
  }
  .interest-options {
    gap: 6px;
  }
  .contact-card input:not([type="radio"]),
  .contact-card textarea {
    font-size: 16px;
    padding: 10px;
  }
  .contact-card input::placeholder,
  .contact-card textarea::placeholder {
    font-size: 14px;
  }
  .form-row {
    gap: 12px;
  }
  .contact-submit {
    font-size: 14px;
  }
  .form-note {
    font-size: 14px;
  }
  .form-status {
    font-size: 14px;
  }
  .footer-top {
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer-top .wordmark {
    font-size: 45px;
  }
  .footer-top p {
    font-size: 16px;
  }
  .footer-top > a:last-child {
    font-size: 14px;
    width: 100%;
    margin-top: 5px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    row-gap: 5px;
    font-size: 14px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
    margin-top: 7px;
  }
  .privacy-button {
    font-size: 14px;
  }
  .dialog-content {
    padding: 30px 24px;
  }
  .dialog-content h2 {
    font-size: 31px;
  }
}
@media (max-width: 370px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    padding-inline: 16px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-description {
    font-size: 14px !important;
  }
  .hero-actions {
    gap: 11px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding-inline: 13px;
    gap: 8px;
  }
  .hero-actions .text-link {
    font-size: 14px;
  }
  .hero-art {
    height: 320px;
  }
  .section-intro h2 {
    font-size: 39px;
  }
  .starter-stamp {
    transform: rotate(12deg) scale(0.65);
    right: -8px;
  }
  .starter h2 {
    font-size: 51px;
  }
  .starter-top p {
    font-size: 14px;
  }
  .audit-list summary {
    font-size: 17px;
  }
  .delivery-card {
    padding: 23px;
  }
  .working-tabs button {
    font-size: 14px;
    padding-inline: 8px;
  }
  .contact-card {
    padding: 22px 18px;
  }
  .interest-options span {
    font-size: 14px;
  }
  .contact h2 {
    font-size: 61px;
  }
}
.mascot {
  width: 100%;
  height: 88%;
  left: 0;
  top: 10%;
}
.contact-email {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 620px) {
  .starter-stamp {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
