:root {
  --paper: #f6f4ef;
  --ink: #272923;
  --muted: #66685f;
  --orange: #df4923;
  --line: #dcdcd2;
  --white: #fffef9;
  --green: #243c32;
  --radius: 5px;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
button svg,
a svg {
  pointer-events: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.13;
  letter-spacing: -2px;
}
h3 {
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.8px;
}
p {
  line-height: 1.7;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 6px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.section-label,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.55px;
  line-height: 1.6;
}
.status-dot {
  height: 6px;
  width: 6px;
  display: inline-block;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-label {
  margin-bottom: 24px;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 244, 239, 0.97);
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.navigation {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  letter-spacing: -1.2px;
  font-weight: 700;
  white-space: nowrap;
}
.brand svg {
  color: var(--orange);
  width: 30px;
  height: 30px;
}
.brand-light {
  font-weight: 450;
}
.brand-period {
  color: var(--orange);
}
.nav-links {
  display: flex;
  gap: 31px;
  margin-left: auto;
  margin-right: 38px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 550;
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: -6px;
  left: 0;
  width: 0;
  background: var(--orange);
  transition: width 0.2s;
}
.nav-links a:hover:after {
  width: 100%;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fffef9;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #404437;
  transform: translateY(-2px);
}
.button svg {
  width: 18px;
  height: 18px;
}
.nav-cta {
  padding: 12px 18px;
  min-width: 124px;
}
.button-orange {
  background: var(--orange);
  border-color: var(--orange);
}
.button-orange:hover {
  background: #bb391a;
  border-color: #bb391a;
}
.nav-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.17fr 1fr;
  gap: 58px;
  padding-block: 68px 79px;
  align-items: center;
}
.hero-copy {
  padding-block: 18px;
}
.hero .eyebrow {
  margin-bottom: 29px;
}
h1 {
  font-size: clamp(50px, 5.4vw, 78px);
  line-height: 1.05;
  letter-spacing: -4.1px;
  white-space: nowrap;
}
h1 .accent-word {
  color: var(--orange);
  position: relative;
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -4px;
}
.accent-word svg {
  position: absolute;
  width: 100%;
  height: 14px;
  bottom: -12px;
  left: 0;
  overflow: visible;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}
.hero-intro {
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.25px;
  margin-top: 36px;
}
.hero-description {
  font-size: 14px;
  color: var(--muted);
  max-width: 405px;
  margin-top: 16px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 29px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}
.text-link:hover {
  color: var(--orange);
}
.text-link svg {
  width: 17px;
  height: 17px;
}
.hero-note {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 36px;
  font-size: 10px;
  color: var(--muted);
}
.note-line {
  width: 24px;
  height: 1px;
  background: #979b90;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  margin-left: 12px;
}
.photo-wrap {
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
  border-radius: 120px 5px 5px 5px;
  overflow: hidden;
  background: #77634c;
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 70%, #171a1260);
}
.image-caption {
  position: absolute;
  bottom: 24px;
  right: 22px;
  color: white;
  letter-spacing: 1.4px;
  font-size: 8px;
}
.visual-tag {
  position: absolute;
  right: -15px;
  top: 37px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffdf4;
  border: 1px solid #e3ded2;
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 10px;
  box-shadow: 0 8px 32px #191b2110;
  transform: rotate(4deg);
}
.visual-tag svg {
  color: var(--orange);
  height: 20px;
  width: 20px;
}
.visual-card {
  position: absolute;
  bottom: 49px;
  left: -43px;
  background: var(--white);
  border: 1px solid #dfded3;
  padding: 23px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 307px;
  box-shadow: 0 12px 36px #22241615;
  border-radius: 5px;
  transform: rotate(-3deg);
}
.visual-card-icon {
  height: 37px;
  width: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f7e8d8;
  color: var(--orange);
  flex-shrink: 0;
}
.visual-card-icon svg {
  width: 20px;
  height: 20px;
}
.visual-card small {
  font-size: 8px;
  letter-spacing: 1.6px;
  display: block;
  margin: 1px 0 10px;
  color: var(--muted);
}
.visual-card strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
.visual-card div > span {
  display: block;
  margin-top: 13px;
  font-size: 9px;
  color: var(--muted);
}
.visual-card-arrow {
  position: absolute;
  right: 14px;
  top: 16px;
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.orbit-stamp {
  position: absolute;
  right: -22px;
  bottom: -25px;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: #df4923;
  display: grid;
  place-items: center;
  border: 8px solid var(--paper);
  transform: rotate(15deg);
}
.orbit-stamp svg {
  width: 41px;
  height: 41px;
  color: #f9efde;
}
.audience {
  border-block: 1px solid var(--line);
}
.audience-inner {
  display: flex;
  align-items: center;
  gap: 55px;
  min-height: 109px;
}
.audience p {
  font-size: 10px;
  line-height: 1.7;
  min-width: 192px;
  color: var(--muted);
}
.audience strong {
  color: var(--ink);
  font-weight: 500;
}
.audience-inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  font-size: 16px;
  letter-spacing: -0.35px;
}
.audience i {
  font-size: 17px;
  color: var(--orange);
  font-style: normal;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
}
.about-grid h2 {
  font-size: clamp(31px, 3.25vw, 47px);
}
.about-grid p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-grid .large-copy {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.about-grid .text-link {
  margin-top: 8px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 23px;
}
.principles p {
  font-size: 12px;
  letter-spacing: -0.1px;
}
.principles span {
  font-size: 10px;
  color: var(--orange);
  margin-right: 14px;
}
.services-section {
  background: #eeeee6;
  border-block: 1px solid #e1e2d8;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 45px;
}
.section-heading > p {
  font-size: 13px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  background: var(--paper);
  padding: 29px 28px 22px;
  border: 1px solid #dfdfd3;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.service-card:hover {
  background: var(--white);
  border-color: #a7ad9c;
  transform: translateY(-4px);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}
.service-icon {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-top .service-icon {
  color: var(--orange);
}
.service-top > span {
  color: #818579;
  font-size: 10px;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -0.7px;
}
.service-card > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 310px;
}
.service-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
  font-size: 9px;
  font-weight: 600;
}
.service-bottom svg {
  height: 17px;
  width: 17px;
}
.possibilities .section-heading {
  margin-bottom: 35px;
}
.possibility-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.possibility-tabs button {
  flex: 1;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: -1px;
  text-align: left;
  color: var(--muted);
  font-size: 12px;
}
.possibility-tabs button + button {
  padding-left: 20px;
}
.possibility-tabs button span {
  margin-right: 20px;
}
.possibility-tabs button[aria-selected="true"] {
  border-color: var(--orange);
  color: var(--ink);
  font-weight: 600;
}
.possibility-tabs button[aria-selected="true"] span {
  color: var(--orange);
}
.possibility-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 435px;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}
.example-art {
  position: relative;
  min-height: 435px;
  background: #e5e7d9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 58px 35px;
  overflow: hidden;
}
.example-label {
  position: absolute;
  top: 27px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 8px;
  letter-spacing: 1.3px;
}
.example-footnote {
  position: absolute;
  bottom: 19px;
  left: 15px;
  right: 15px;
  text-align: center;
  font-size: 9px;
  color: #545d4d;
}
.loyalty-art {
  background: radial-gradient(ellipse at center, #f0f0e1 0%, #dce1cc 90%);
}
.loyalty-card {
  background: #243c32;
  color: #f4eed9;
  width: 310px;
  padding: 24px 25px;
  border-radius: 12px;
  box-shadow: 12px 19px 30px #26382625;
  transform: rotate(-7deg);
  position: relative;
}
.loyalty-card:before {
  content: "";
  position: absolute;
  inset: -10px 12px 10px -12px;
  z-index: -1;
  border-radius: 12px;
  border: 1px solid #243c3250;
  background: #b3bba250;
}
.loyalty-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.loyalty-card strong {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 33px;
  letter-spacing: -2px;
}
.loyalty-card strong span {
  font-family: Arial, sans-serif;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: 0;
}
.loyalty-card > small {
  display: block;
  font-size: 7px;
  letter-spacing: 1.2px;
  margin-top: 4px;
}
.loyalty-stamps {
  display: flex;
  justify-content: space-between;
  margin: 27px 0 21px;
}
.loyalty-stamps > span {
  width: 32px;
  height: 32px;
  background: #d7debe;
  color: #243c32;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
}
.loyalty-stamps > span:last-child {
  background: transparent;
  border: 1px dashed #d7debe;
  color: #d7debe;
  font-size: 12px;
}
.loyalty-card > p {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.loyalty-card em {
  font-family: Georgia, serif;
}
.loyalty-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 0.8px;
  margin-top: 26px;
  border-top: 1px solid #d7debe30;
  padding-top: 14px;
}
.loyalty-card footer > span:last-child {
  font-size: 17px;
}
.possibility-copy {
  padding: 49px 48px;
  background: var(--white);
}
.pill {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--green);
  background: #e9eddf;
  padding: 7px 9px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 22px;
}
.possibility-copy h3 {
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.16;
  margin-bottom: 18px;
}
.possibility-copy > p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
.possibility-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
}
.possibility-copy li {
  font-size: 11px;
  margin-block: 10px;
  padding-left: 23px;
  position: relative;
}
.possibility-copy li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}
.demo-disclaimer {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
}
.workflow-art {
  background: #ede2d1;
}
.workflow {
  width: min(100%, 335px);
  padding: 10px 0;
}
.workflow > div {
  position: relative;
  background: #fffdf5;
  padding: 17px 15px 17px 47px;
  border: 1px solid #ddd1bf;
  border-radius: 6px;
}
.workflow div > span {
  position: absolute;
  left: 13px;
  top: 19px;
  color: var(--orange);
  font-size: 10px;
}
.workflow strong {
  display: block;
  font-size: 12px;
  font-weight: 550;
}
.workflow small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 5px;
}
.workflow i {
  display: block;
  text-align: center;
  font-style: normal;
  color: var(--orange);
  margin: 7px;
}
.insights-art {
  background: #e4e8e1;
}
.insight-board {
  background: var(--white);
  padding: 25px;
  width: min(100%, 330px);
  border: 1px solid #d3dacb;
  border-radius: 6px;
  box-shadow: 8px 12px 24px #243c320c;
}
.insight-board > div:first-child {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.insight-board strong {
  font-size: 19px;
  font-weight: 500;
}
.insight-board > div:first-child > span {
  display: block;
  font-size: 7px;
  letter-spacing: 1px;
  margin-top: 7px;
  color: var(--muted);
}
.insight-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 24px;
}
.insight-row svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}
.insight-row p {
  font-size: 13px;
  line-height: 1.4;
}
.insight-row small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px;
}
.approach-section {
  background: var(--green);
  color: #f7f2e4;
}
.approach-section .status-dot {
  background: #f3a97b;
}
.approach-section .section-label {
  color: #d5dacb;
}
.approach-section .section-heading > p {
  color: #c6d0c3;
}
.approach-section h2 .serif {
  color: #d4debd;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 37px;
  margin-top: 64px;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #b5c0a94a;
  padding-bottom: 25px;
  margin-bottom: 28px;
  font-size: 12px;
  color: #d9c6a1;
}
.step-number svg {
  height: 19px;
  width: 19px;
}
.approach-grid h3 {
  font-size: 21px;
  letter-spacing: -0.5px;
  margin-bottom: 17px;
}
.approach-grid p {
  font-size: 12px;
  color: #c6d0c3;
  line-height: 1.85;
}
.approach-grid small {
  display: block;
  margin-top: 25px;
  font-size: 9px;
  color: #d8e1c4;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 13px;
  font-weight: 550;
  cursor: pointer;
  padding: 23px 0;
  line-height: 1.5;
}
.faq-list details:first-child summary {
  padding-top: 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 23px;
  font-weight: 400;
  color: var(--orange);
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 12px;
  color: var(--muted);
  padding: 0 25px 23px 0;
  line-height: 1.8;
}
.contact-section {
  background: #e9e9dc;
  padding-block: 82px;
  border-block: 1px solid #dfe0d1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}
.contact-copy {
  padding-top: 21px;
  position: relative;
}
.contact-copy h2 {
  font-size: clamp(40px, 4.7vw, 66px);
  letter-spacing: -2.5px;
}
.contact-copy > p:not(.section-label) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 25px;
}
.contact-symbol {
  color: var(--orange);
  width: 122px;
  height: 122px;
  margin-top: 63px;
  transform: rotate(12deg);
}
.project-form {
  background: var(--white);
  padding: 32px;
  border: 1px solid #dbddce;
  border-radius: 6px;
}
.project-form > h3 {
  font-size: 24px;
}
.project-form > p:first-of-type {
  font-size: 11px;
  color: var(--muted);
  margin: 10px 0 25px;
}
.project-form label {
  font-size: 10px;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.project-form input,
.project-form select,
.project-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d8dacd;
  border-radius: 3px;
  background: #fafaf5;
  color: var(--ink);
  padding: 11px 12px;
  font-size: 11px;
  line-height: 1.5;
  min-height: 42px;
}
.project-form input::placeholder,
.project-form textarea::placeholder {
  color: #7d8075;
  opacity: 1;
}
.project-form textarea {
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.project-form select {
  padding-right: 26px;
}
.project-form .button {
  width: 100%;
  justify-content: space-between;
  margin-top: 4px;
}
.project-form .form-note {
  font-size: 9px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 12px;
}
.form-status {
  font-size: 11px;
  line-height: 1.7;
  margin-top: 12px;
  padding: 12px;
  background: #e9eddf;
  border: 1px solid #c7d3ba;
}
.site-footer {
  padding-block: 45px 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-bottom: 37px;
}
.footer-top > p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
}
.footer-top > .text-link {
  margin-left: auto;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--ink);
}
@media (min-width: 1600px) {
  .hero {
    gap: 80px;
    padding-block: 78px 90px;
  }
  .hero-visual {
    min-height: 565px;
  }
  h1 {
    font-size: 81px;
  }
  .hero-intro {
    font-size: 22px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .navigation {
    gap: 20px;
  }
  .nav-links {
    gap: 22px;
    margin-right: 12px;
  }
  .hero {
    gap: 36px;
    grid-template-columns: 1.15fr 1fr;
  }
  h1 {
    font-size: 5.4vw;
    letter-spacing: -3px;
  }
  .hero-visual {
    min-height: 490px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-note {
    font-size: 9px;
    max-width: 300px;
    margin-top: 25px;
  }
  .hero-intro {
    font-size: 18px;
  }
  .hero-description {
    font-size: 12px;
    max-width: 330px;
  }
  .visual-card {
    width: 260px;
    left: -25px;
    padding: 20px;
    gap: 12px;
  }
  .visual-card strong {
    font-size: 20px;
  }
  .visual-card-icon {
    width: 30px;
    height: 30px;
  }
  .audience-inner {
    gap: 26px;
  }
  .audience-inner > div {
    font-size: 13px;
    gap: 13px;
  }
  .audience p {
    min-width: 160px;
  }
  .about-grid {
    gap: 50px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading > p {
    max-width: 280px;
  }
  .service-card {
    padding: 24px 22px 19px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card > p {
    font-size: 11px;
  }
  .service-bottom {
    font-size: 8px;
  }
  .possibility-copy {
    padding: 38px 32px;
  }
  .possibility-copy h3 {
    font-size: 28px;
  }
  .approach-grid {
    gap: 24px;
  }
  .faq-section {
    gap: 60px;
  }
  .contact-grid {
    gap: 55px;
  }
  .contact-copy .section-label {
    max-width: 280px;
  }
  .project-form {
    padding: 26px;
  }
}
@media (max-width: 850px) {
  .container {
    width: calc(100% - 48px);
  }
  .navigation {
    height: 78px;
    gap: 16px;
  }
  .brand {
    font-size: 23px;
  }
  .brand svg {
    width: 27px;
    height: 27px;
  }
  .nav-links {
    gap: 16px;
    margin-right: 0;
  }
  .nav-links a {
    font-size: 10px;
  }
  .nav-cta {
    min-width: auto;
    gap: 12px;
    padding: 11px 14px;
    font-size: 11px;
  }
  .hero {
    padding-block: 45px 60px;
    gap: 23px;
    grid-template-columns: 1.1fr 1fr;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  h1 {
    font-size: 5.5vw;
    letter-spacing: -2.7px;
  }
  h1 .accent-word {
    letter-spacing: -2.7px;
  }
  .hero-visual {
    min-height: 440px;
    margin-left: 0;
  }
  .photo-wrap {
    border-top-left-radius: 85px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero-description {
    font-size: 11px;
  }
  .hero-actions .button {
    padding: 14px;
    gap: 16px;
    font-size: 10px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .visual-tag {
    right: -9px;
    font-size: 8px;
    gap: 6px;
    padding: 10px;
  }
  .visual-card {
    width: 229px;
    padding: 17px;
    left: -15px;
    bottom: 43px;
  }
  .visual-card small {
    font-size: 7px;
  }
  .visual-card strong {
    font-size: 18px;
  }
  .visual-card div > span {
    font-size: 8px;
  }
  .orbit-stamp {
    right: -9px;
    width: 74px;
    height: 74px;
  }
  .orbit-stamp svg {
    height: 33px;
    width: 33px;
  }
  .image-caption {
    font-size: 6px;
    right: 14px;
    bottom: 18px;
  }
  .audience-inner {
    padding-block: 23px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .audience p br {
    display: none;
  }
  .audience p strong {
    margin-left: 5px;
  }
  .audience-inner > div {
    font-size: 14px;
  }
  .section {
    padding-block: 76px;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .about-grid h2 {
    font-size: 32px;
    letter-spacing: -1.6px;
  }
  .about-grid .large-copy {
    font-size: 16px;
  }
  .about-grid p {
    font-size: 12px;
  }
  .principles {
    gap: 20px;
  }
  .principles p {
    font-size: 10px;
  }
  .principles span {
    margin-right: 7px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card h3 {
    font-size: 23px;
  }
  .service-card > p {
    font-size: 12px;
  }
  .service-bottom {
    font-size: 9px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 235px;
    font-size: 12px;
  }
  .section-label {
    font-size: 9px;
    letter-spacing: 1.1px;
  }
  .possibility-tabs button {
    font-size: 10px;
  }
  .possibility-copy {
    padding: 31px 24px;
  }
  .possibility-copy h3 {
    font-size: 25px;
  }
  .possibility-copy > p {
    font-size: 11px;
  }
  .possibility-copy li {
    font-size: 10px;
  }
  .possibility-copy .text-link {
    font-size: 10px;
  }
  .example-art {
    padding: 52px 18px;
    min-height: 400px;
  }
  .example-label {
    font-size: 6px;
  }
  .loyalty-card {
    width: 250px;
    padding: 23px 21px;
  }
  .loyalty-card strong {
    font-size: 28px;
  }
  .loyalty-stamps > span {
    width: 27px;
    height: 27px;
    font-size: 18px;
  }
  .loyalty-card > p {
    font-size: 20px;
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .approach-grid p {
    max-width: 270px;
  }
  .faq-section {
    gap: 35px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .contact-grid {
    gap: 35px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .contact-copy > p:not(.section-label) {
    font-size: 12px;
  }
  .contact-symbol {
    width: 90px;
    height: 90px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-top {
    gap: 40px;
  }
  .footer-bottom {
    font-size: 8px;
  }
}
@media (max-width: 650px) {
  :root {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .navigation {
    height: 73px;
    gap: 14px;
  }
  .brand {
    font-size: 22px;
    gap: 8px;
  }
  .brand svg {
    height: 25px;
    width: 25px;
  }
  .nav-cta {
    margin-left: auto;
    font-size: 10px;
    padding: 10px 12px;
    gap: 10px;
  }
  .nav-cta svg {
    height: 13px;
    width: 13px;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 40px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 3px;
    padding: 8px;
  }
  .nav-toggle > span {
    height: 1px;
    width: 16px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 15px 20px 23px;
    box-shadow: 0 20px 20px #26292312;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    font-size: 14px;
    padding: 14px 0;
  }
  .nav-links a:after {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 42px 54px;
    gap: 39px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 23px;
    letter-spacing: 1.2px;
  }
  h1 {
    font-size: clamp(41px, 9.4vw, 60px);
    letter-spacing: -2.9px;
    line-height: 1.08;
  }
  h1 .accent-word {
    letter-spacing: -2.7px;
  }
  .hero-intro {
    font-size: 18px;
    margin-top: 32px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 390px;
    margin-top: 14px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding: 15px 14px;
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 9px;
  }
  .hero-note {
    font-size: 9px;
    max-width: none;
    margin-top: 25px;
  }
  .hero-visual {
    min-height: 430px;
    width: calc(100% - 15px);
    margin-left: 7px;
  }
  .photo-wrap {
    inset: 0 0 0 0;
    border-top-left-radius: 110px;
  }
  .photo-wrap img {
    object-position: center 47%;
  }
  .visual-tag {
    top: 31px;
    right: -9px;
    font-size: 9px;
    padding: 12px;
  }
  .visual-card {
    bottom: 35px;
    left: -7px;
    width: 268px;
    padding: 20px;
  }
  .visual-card strong {
    font-size: 22px;
  }
  .visual-card small {
    font-size: 8px;
  }
  .visual-card div > span {
    font-size: 9px;
  }
  .visual-card-icon {
    width: 34px;
    height: 34px;
  }
  .image-caption {
    font-size: 6px;
    bottom: 14px;
    left: 17px;
    right: auto;
  }
  .orbit-stamp {
    right: -13px;
    bottom: -20px;
  }
  .audience-inner {
    gap: 18px;
    padding-block: 24px;
  }
  .audience-inner > div {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    font-size: 13px;
  }
  .audience-inner > div i {
    font-size: 13px;
  }
  .audience-inner > div i:nth-of-type(2) {
    display: none;
  }
  .audience-inner > div span {
    width: calc(50% - 32px);
  }
  .audience-inner > div i:nth-of-type(3) {
    order: 1;
  }
  .audience-inner > div span:last-child {
    order: 2;
  }
  .section {
    padding-block: 62px;
  }
  .section-label {
    font-size: 8px;
    letter-spacing: 1.1px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.6px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-grid h2 {
    font-size: 35px;
    letter-spacing: -1.7px;
  }
  .about-grid p {
    font-size: 13px;
  }
  .about-grid .large-copy {
    font-size: 17px;
    max-width: 380px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-top: 22px;
    margin-top: 31px;
  }
  .principles p {
    font-size: 12px;
  }
  .principles span {
    margin-right: 15px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    max-width: 350px;
    font-size: 12px;
    margin-top: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card {
    padding: 25px;
  }
  .service-top {
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-card > p {
    font-size: 13px;
    max-width: none;
    margin-bottom: 25px;
  }
  .service-bottom {
    font-size: 10px;
  }
  .possibility-tabs {
    gap: 12px;
  }
  .possibility-tabs button,
  .possibility-tabs button + button {
    font-size: 10px;
    padding: 12px 0;
    line-height: 1.5;
    align-items: flex-start;
    gap: 5px;
  }
  .possibility-tabs button span {
    margin-right: 0;
  }
  .possibility-panel {
    grid-template-columns: 1fr;
  }
  .example-art {
    min-height: 370px;
  }
  .example-label {
    font-size: 7px;
  }
  .loyalty-card {
    width: 270px;
  }
  .loyalty-card strong {
    font-size: 30px;
  }
  .loyalty-stamps > span {
    height: 29px;
    width: 29px;
  }
  .possibility-copy {
    padding: 30px 26px 35px;
  }
  .possibility-copy h3 {
    font-size: 29px;
  }
  .possibility-copy > p {
    font-size: 13px;
  }
  .possibility-copy li {
    font-size: 12px;
  }
  .possibility-copy .text-link {
    font-size: 12px;
  }
  .pill {
    margin-bottom: 18px;
  }
  .approach-grid {
    gap: 36px 24px;
    margin-top: 35px;
  }
  .step-number {
    padding-bottom: 18px;
    margin-bottom: 21px;
  }
  .approach-grid h3 {
    font-size: 19px;
    letter-spacing: -0.7px;
  }
  .approach-grid p {
    font-size: 11px;
  }
  .approach-grid small {
    font-size: 9px;
    line-height: 1.7;
    margin-top: 16px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .faq-list details:first-child summary {
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .faq-list summary {
    font-size: 13px;
  }
  .faq-list details p {
    font-size: 12px;
  }
  .contact-section {
    padding-block: 58px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .contact-copy {
    padding: 0;
  }
  .contact-copy .section-label {
    max-width: 260px;
  }
  .contact-copy h2 {
    font-size: 44px;
  }
  .contact-copy > p:not(.section-label) {
    font-size: 13px;
    margin-top: 21px;
  }
  .contact-symbol {
    position: absolute;
    right: 0;
    top: 5px;
    width: 44px;
    height: 44px;
    margin: 0;
  }
  .project-form {
    padding: 25px;
  }
  .project-form > p:first-of-type {
    font-size: 12px;
  }
  .project-form label {
    font-size: 11px;
  }
  .project-form input,
  .project-form textarea,
  .project-form select {
    font-size: 16px;
    padding: 10px;
    min-height: 46px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .project-form .form-note {
    font-size: 10px;
  }
  .site-footer {
    padding-top: 32px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 22px;
    padding-bottom: 29px;
    justify-content: space-between;
  }
  .footer-top > p {
    order: 2;
    width: 100%;
    font-size: 11px;
  }
  .footer-top > .text-link {
    font-size: 10px;
    margin: 0;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 14px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
    font-size: 8px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .navigation {
    gap: 9px;
  }
  .brand {
    font-size: 20px;
    gap: 6px;
  }
  .brand svg {
    height: 22px;
    width: 22px;
  }
  .nav-cta {
    padding: 9px;
    font-size: 9px;
    gap: 7px;
  }
  .nav-toggle {
    width: 31px;
  }
  .hero-actions {
    gap: 13px;
    flex-wrap: wrap;
  }
  .hero-visual {
    min-height: 386px;
  }
  .hero-note {
    font-size: 8px;
  }
  .contact-copy .section-label {
    max-width: 215px;
  }
  .project-form {
    padding: 20px;
  }
  .loyalty-card {
    width: 240px;
  }
  .loyalty-stamps > span {
    height: 25px;
    width: 25px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid p {
    font-size: 12px;
  }
  .service-card h3 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
