/* The World Scales — useful work, in focus. Black, porcelain, and the original gold. */
:root {
  --ink: #080808;
  --paper: #f7f7f4;
  --white: #fff;
  --line: #deded8;
  --muted: #62625e;
  --gold: #e4c58c;
  --page-progress: 0;
  color-scheme: light;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background: var(--ink);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 26px;
}
body {
  margin: 0;
}
body,
button,
input,
select {
  font-family: Manrope, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #a0752b;
  outline-offset: 5px;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
svg.icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.visually-hidden,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: white;
  padding: 12px 18px;
}
.skip-link:focus {
  transform: none;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1360px;
  margin-inline: auto;
}
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(var(--page-progress));
  transform-origin: left;
  z-index: 100;
  pointer-events: none;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1600px;
  padding: 6px 56px;
  margin: auto;
  min-height: 92px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo-frame {
  display: block;
  width: 150px;
  height: 80px;
  position: relative;
}
.brand-logo-frame img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 40px;
}
.site-header nav a {
  font-size: 12px;
  color: #c2c2ba;
  padding: 14px 0;
  transition: color 0.2s;
}
.site-header nav a:hover {
  color: white;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 52px;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 750;
  border: 1px solid transparent;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-header {
  background: #f7f7f4;
  color: #111;
  min-height: 44px;
  padding: 12px 19px;
  font-size: 12px;
}
.button-gold {
  background: var(--gold);
  color: var(--ink);
}
.button-gold:hover {
  background: #f6d99f;
}
.button-dark {
  background: #101010;
  color: white;
}
.button-dark:hover {
  background: #31312c;
}
.button-outline {
  border-color: #555;
  color: white;
}
.button-outline:hover {
  background: #272722;
}
.menu-toggle {
  display: none;
}
.hero {
  --scene-progress: 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 98px;
  padding-bottom: 87px;
  min-height: 650px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-intro {
  font-size: 11px;
  color: #b7b7af;
  margin: 0 0 34px;
  letter-spacing: 0.01em;
}
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(54px, 5.55vw, 84px);
  line-height: 1.01;
  font-weight: 500;
  letter-spacing: -0.072em;
  margin: 0 0 30px;
  white-space: nowrap;
}
.hero h1 span {
  display: block;
}
.hero-description {
  font-size: 15px;
  line-height: 1.95;
  color: #bdbdb7;
  max-width: 380px;
  margin: 0 0 29px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.quiet-link {
  font-size: 12px;
  color: #e2e2da;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #555;
}
.quiet-link:hover {
  text-decoration-color: var(--gold);
}
.hero-note {
  color: #85857e;
  font-size: 10px;
  line-height: 1.6;
  margin: 23px 0 0;
}
.hero-showcase {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  padding-top: 20px;
}
.showcase-scene {
  order: 1;
  position: relative;
  perspective: 1600px;
  padding: 20px 18px 35px 0;
}
.preview-window {
  position: relative;
  width: 100%;
  background: #f1f1eb;
  color: var(--ink);
  border: 1px solid #50504d;
  border-radius: 9px;
  overflow: hidden;
  transform: rotate(-3deg);
  box-shadow: 0 28px 65px #0008;
  z-index: 2;
}
.preview-chrome {
  height: 32px;
  background: #ecece7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  font-size: 8px;
  color: #63635f;
  border-bottom: 1px solid #d8d8d1;
}
.preview-chrome > span:first-child {
  display: flex;
  gap: 4px;
}
.preview-chrome i {
  width: 5px;
  height: 5px;
  border: 1px solid #999;
  border-radius: 50%;
}
.preview-chrome .icon {
  width: 11px;
  height: 11px;
}
.preview-panel {
  height: 345px;
  overflow: hidden;
}
.scene-outline {
  position: absolute;
  inset: 0 0 45px 20px;
  border: 1px solid #373732;
  border-radius: 10px;
  transform: rotate(6deg);
  z-index: 0;
}
.scene-message {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  bottom: 11px;
  left: -26px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #f6f6f1;
  border: 1px solid #c6c6bd;
  color: #141414;
  box-shadow: 0 12px 32px #0005;
  padding: 14px 18px;
  border-radius: 7px;
  transform: rotate(2deg);
}
.scene-message-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e4c58c;
  font-size: 20px;
}
.scene-message strong,
.scene-message span:not(.scene-message-icon) {
  display: block;
  font-size: 10px;
}
.scene-message div > span {
  color: #6e6e67;
  margin-top: 4px;
}
.scene-tag {
  pointer-events: none;
  position: absolute;
  top: -11px;
  right: -7px;
  z-index: 3;
  padding: 16px 20px;
  background: #e4c58c;
  color: #16140e;
  transform: rotate(8deg);
  box-shadow: 0 10px 35px #0003;
}
.scene-tag span {
  display: block;
  font-size: 9px;
}
.scene-tag strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.07em;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  margin-top: 3px;
}
.preview-tabs {
  order: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.hero-showcase:has([data-preview-trigger="video"][aria-selected="true"])
  .scene-message,
.hero-showcase:has([data-preview-trigger="video"][aria-selected="true"])
  .scene-tag {
  visibility: hidden;
}
.preview-tabs button {
  border: 1px solid #383832;
  background: transparent;
  color: #a8a8a0;
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 10px;
  transition:
    color 0.2s,
    background 0.2s;
}
.preview-tabs button[aria-selected="true"] {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.preview-tabs button:hover {
  color: white;
  border-color: #92928a;
}
.preview-tabs button[aria-selected="true"]:hover {
  color: black;
}
.preview-disclosure {
  order: 3;
  text-align: center;
  font-size: 9px;
  color: #929289;
  line-height: 1.6;
  margin: 13px 0 0;
}
.hero-baseline {
  border-top: 1px solid #2b2b27;
  padding-block: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #8d8d84;
}
.hero-baseline a {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #dcdcd1;
}
.hero-baseline .icon {
  width: 14px;
  height: 14px;
}
.concept-site {
  position: relative;
  height: 100%;
  background: #eff0e8;
  overflow: hidden;
  padding: 20px 23px 0;
}
.concept-site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 7px;
  color: #53584e;
}
.concept-site-nav strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  letter-spacing: -0.09em;
  color: #172214;
}
.concept-site-nav strong > span {
  font-size: 7px;
  vertical-align: top;
  margin-left: 3px;
}
.concept-site-copy {
  position: absolute;
  z-index: 1;
  top: 69px;
  left: 23px;
}
.concept-site-copy > span {
  font-size: 7px;
  display: block;
  margin-bottom: 11px;
  color: #556049;
}
.concept-site-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  letter-spacing: -0.06em;
  font-size: 36px;
  line-height: 1.03;
  color: #1d2b19;
}
.concept-site > img {
  position: absolute;
  right: 0;
  bottom: 41px;
  width: 61%;
  height: 220px;
  object-fit: cover;
}
.concept-site-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 23px;
  font-size: 7px;
  line-height: 1.45;
  color: #53584e;
  border-top: 1px solid #d1d4c9;
}
.concept-site-bottom > span:last-child {
  color: #1d2b19;
}
.message-head {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: white;
  border-bottom: 1px solid #ddd;
}
.avatar-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #161616;
  color: white;
  border-radius: 50%;
  font-size: 14px;
}
.message-head strong,
.message-head div > span {
  display: block;
  font-size: 11px;
}
.message-head div > span {
  font-size: 8px;
  color: #777;
  margin-top: 3px;
}
.message-head > .icon {
  margin-left: auto;
}
.message-thread {
  padding: 14px 27px;
  background: #f3f4f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.message-time {
  align-self: center;
  font-size: 8px;
  color: #7c7c73;
  margin-bottom: 3px;
}
.bubble {
  font-size: 10px;
  line-height: 1.65;
  padding: 9px 13px;
  margin: 0;
  max-width: 78%;
  border-radius: 11px;
}
.outgoing {
  background: #1e3828;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.incoming {
  background: #fff;
  color: #20251e;
  border: 1px solid #deded5;
  border-bottom-left-radius: 2px;
}
.message-note {
  font-size: 7px;
  color: #6b7368;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}
.message-note > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #759364;
}
.chat-example {
  padding: 25px 30px;
  background: white;
  height: 100%;
  font-size: 10px;
}
.chat-example-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e1e1dc;
}
.chat-example-top strong,
.chat-example-top div > span {
  display: block;
  font-size: 12px;
}
.chat-example-top div > span {
  font-size: 8px;
  margin-top: 3px;
  color: #888;
}
.chat-question {
  background: #e9e9e5;
  margin: 14px 0 9px auto;
  width: max-content;
  max-width: 90%;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 10px;
}
.chat-answer {
  max-width: 90%;
  line-height: 1.65;
  color: #444;
  font-size: 9px;
}
.answer-source {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 7px;
  color: #818178;
  margin-top: 8px;
}
.answer-source .icon {
  width: 10px;
  height: 10px;
}
.chat-example-bottom {
  padding-top: 16px;
  color: #888;
  font-size: 7px;
}
.video-concept {
  position: relative;
  height: 100%;
  background: #090b0c;
  color: white;
}
.video-concept > img,
.video-concept > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-concept-title {
  pointer-events: none;
  position: absolute;
  top: 23px;
  left: 23px;
  text-shadow: 0 1px 12px #000;
}
.video-concept-title > span {
  font-size: 8px;
}
.video-concept-title strong {
  display: block;
  font-size: 27px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.06em;
  margin-top: 10px;
}
.edit-timeline {
  position: absolute;
  bottom: 31px;
  left: 23px;
  right: 23px;
  height: 27px;
  display: flex;
  gap: 3px;
  background: #16191cc9;
  padding: 4px;
}
.edit-timeline > div {
  height: 100%;
  flex: 1;
  background: #7d8bab88;
  border: 1px solid #9facbe66;
}
.edit-timeline > div:nth-child(2) {
  background: #d5dce7b3;
}
.edit-timeline > span {
  position: absolute;
  left: 36%;
  height: 37px;
  width: 1px;
  background: white;
  top: -5px;
}
.concept-label {
  position: absolute;
  bottom: 11px;
  left: 23px;
  font-size: 7px;
  color: #ddd;
}
.services {
  background: var(--paper);
  padding: 100px 0 70px;
  position: relative;
  z-index: 3;
  border-radius: 24px 24px 0 0;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}
.section-heading h2,
.contact-intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin: 0;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0 0 5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #d4d4cd;
  border-radius: 11px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
  scroll-margin-top: 32px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.35s;
}
.service-card:hover {
  border-color: #4c4c43;
  box-shadow: 0 12px 26px #0000000a;
}
.service-card[data-selected="true"] {
  border-color: #9f7a38;
  box-shadow: 0 0 0 2px #d3b16c;
}
.service-art {
  height: 190px;
  background: #e7e9df;
  position: relative;
  overflow: hidden;
  padding: 22px 21px 0;
}
.service-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-copy {
  padding: 23px 23px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.18;
  margin: 0 0 13px;
}
.service-promise {
  font-size: 10px;
  font-weight: 750;
  margin: 0 0 6px;
  color: #242424;
}
.service-description {
  font-size: 11px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 42ch;
}
.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  margin-top: auto;
  border-top: 1px solid #e5e5df;
  padding-top: 15px;
  color: #73736a;
}
.service-select {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #171712;
  font-weight: 750;
  white-space: nowrap;
}
.service-select .icon {
  width: 14px;
  height: 14px;
}
.service-card:hover .service-select .icon {
  transform: translate(2px, -2px);
}
.mini-site {
  border: 1px solid #a5ac9b;
  border-radius: 5px 5px 0 0;
  background: #fafbf5;
  box-shadow: 0 5px 20px #22331922;
  position: relative;
  height: 188px;
  transform: rotate(-5deg);
  overflow: hidden;
}
.mini-site > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-size: 6px;
}
.mini-site > div strong {
  font-size: 12px;
}
.mini-site > img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}
.mini-site > span {
  position: absolute;
  bottom: 40px;
  left: 12px;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-family: "Space Grotesk", sans-serif;
  color: white;
  text-shadow: 0 1px 8px #0009;
}
.service-text .service-art {
  background: #e8e8e5;
  padding-top: 30px;
}
.mini-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: rotate(-5deg);
}
.mini-message {
  font-size: 10px;
  line-height: 1.6;
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 10px;
}
.message-dot {
  margin-left: 7px;
  letter-spacing: 4px;
  color: #74746f;
  font-size: 13px;
}
.service-chat .service-art {
  background: #e6e7ee;
  padding: 20px;
}
.mini-chat {
  background: white;
  border-radius: 9px;
  padding: 15px 14px;
  text-align: center;
  transform: rotate(4deg);
  box-shadow: 0 3px 20px #0001;
}
.chat-symbol {
  font-size: 34px;
  line-height: 1;
  display: block;
}
.mini-chat > span:nth-child(2) {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin: 12px 0 16px;
}
.mini-chat > div {
  display: flex;
  justify-content: space-between;
  background: #f3f3f3;
  padding: 9px 10px;
  font-size: 8px;
  border-radius: 5px;
  color: #777;
}
.service-video .service-art {
  padding: 0;
  background: #101014;
}
.service-video .service-art > img {
  height: calc(100% + 32px);
  margin-top: -16px;
}
.mini-film-label {
  position: absolute;
  left: 19px;
  bottom: 16px;
  color: white;
  font-size: 18px;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 12px #000;
  font-family: "Space Grotesk", sans-serif;
}
.service-custom {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 110px 1fr;
  background: #eaeae3;
  align-items: center;
}
.service-custom .service-art {
  background: transparent;
  height: 130px;
  display: grid;
  place-items: center;
  padding: 0;
}
.custom-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 74px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.5s;
}
.service-custom:hover .custom-mark {
  transform: rotate(90deg);
}
.service-custom .service-card-copy {
  display: grid;
  grid-template-columns: 1fr 1.1fr 230px;
  align-items: center;
  column-gap: 35px;
  padding: 24px 28px 24px 0;
}
.service-custom h3 {
  grid-column: 1;
  margin-bottom: 7px;
}
.service-custom .service-promise {
  grid-column: 1;
  grid-row: 2;
  font-weight: 500;
  color: #5f5f56;
  font-size: 10px;
  margin: 0;
}
.service-custom .service-description {
  grid-column: 2;
  grid-row: 1/3;
  margin: 0;
}
.service-custom .service-card-bottom {
  grid-column: 3;
  grid-row: 1/3;
  border: 0;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}
.service-custom .service-card-bottom > span:first-child {
  display: none;
}
.service-custom .service-select {
  border: 1px solid #97978a;
  border-radius: 4px;
  padding: 13px 17px;
  gap: 35px;
  font-size: 11px;
}
.scope-note {
  font-size: 10px;
  color: #76766c;
  margin: 36px 0 0;
  text-align: right;
}
.contact {
  background: var(--paper);
  padding: 45px 0 92px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-top: 65px;
  border-top: 1px solid #cecec6;
  align-items: start;
}
.section-label {
  font-size: 11px;
  color: #74746a;
  display: block;
  margin-bottom: 24px;
}
.contact-intro > p:not(.call-expectation) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 25px;
}
.next-steps {
  list-style: none;
  margin: 35px 0 25px;
  padding: 0;
  display: grid;
  gap: 23px;
}
.next-steps li {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}
.next-steps li > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #c6c6bb;
  border-radius: 50%;
  font-size: 9px;
  color: #78786c;
}
.next-steps strong {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}
.next-steps p {
  font-size: 11px;
  color: #77776c;
  margin: 4px 0 0;
  line-height: 1.5;
}
.call-expectation {
  font-size: 10px;
  line-height: 1.8;
  color: #7b7b71;
}
.inquiry-panel {
  background: white;
  border: 1px solid #d7d7ce;
  border-radius: 12px;
  padding: 36px 35px;
  box-shadow: 0 15px 45px #00000004;
}
.form-opening {
  margin-bottom: 26px;
}
.form-opening h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 9px;
}
.form-opening p {
  font-size: 11px;
  color: #77776d;
  line-height: 1.7;
  margin: 0;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  font-size: 11px;
  display: block;
  font-weight: 650;
  margin-bottom: 9px;
}
.form-field input,
.form-field select {
  width: 100%;
  border: 1px solid #c9c9bf;
  border-radius: 5px;
  background: #fcfcf8;
  color: #1b1b17;
  padding: 13px 12px;
  font-size: 13px;
  min-height: 48px;
}
.form-field input::placeholder {
  color: #8a8a7e;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.package-summary {
  margin: -10px 0 19px;
}
.summary-heading {
  display: flex;
  justify-content: flex-end;
}
.summary-heading > span,
#selected-package-name,
#selected-package-price,
#selected-package-description {
  display: none;
}
.summary-heading a {
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #686858;
  padding: 4px 0;
}
#inquiry-submit {
  width: 100%;
  margin-top: 1px;
}
#inquiry-submit:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}
.form-privacy {
  font-size: 9px;
  line-height: 1.9;
  color: #858579;
  text-align: center;
  margin: 14px auto 0;
  max-width: 345px;
}
.form-privacy a,
.form-fallback a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-fallback {
  font-size: 10px;
  color: #77776c;
  text-align: center;
  margin: 19px 0 0;
}
.form-status {
  font-size: 12px;
  line-height: 1.7;
  color: #a03d23;
}
.form-status:empty {
  display: none;
}
.form-success {
  padding: 30px 0;
}
.success-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: #e8ede1;
  border-radius: 50%;
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.form-success p {
  font-size: 13px;
  color: #656559;
  line-height: 1.8;
  margin-bottom: 30px;
}
.nojs-package-label {
  font-size: 12px;
  color: #656559;
}
.faq {
  background: white;
  padding: 70px 0 85px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
}
.faq h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin: 0;
}
.faq-list details {
  border-bottom: 1px solid #d8d8d0;
}
.faq-list details:first-child {
  border-top: 1px solid #d8d8d0;
}
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  padding: 23px 0;
  font-size: 13px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 12px;
  line-height: 1.9;
  color: #6c6c62;
  margin: 0 30px 24px 0;
  max-width: 70ch;
}
.footer {
  background: var(--ink);
  color: #eee;
  padding: 42px 0 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #292923;
}
.footer-top > p {
  font-size: 15px;
  line-height: 1.65;
  color: #c7c7bc;
  letter-spacing: -0.01em;
}
.footer-top > .button {
  margin-left: auto;
  font-size: 11px;
}
.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 30px 0 18px;
}
.footer-contact > a {
  font-size: 14px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
}
.phone-link .icon {
  width: 14px;
  height: 14px;
}
#sms-call-consent > span {
  display: block;
  font-size: 9px;
  color: #929288;
  margin-top: 6px;
}
.sms-consent-note {
  font-size: 9px;
  line-height: 1.85;
  color: #97978c;
  max-width: 1030px;
  margin: 0 0 35px;
}
.sms-consent-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid #292923;
  color: #8f8f85;
  font-size: 9px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.footer a:hover {
  color: var(--gold);
}
/* Scroll follows the reader: the preview deck gently opens, images drift inside their frames. */
html[data-scroll-enhanced] .preview-window {
  transform: translate3d(
      calc(var(--scene-progress) * -15px),
      calc(var(--scene-progress) * -25px),
      0
    )
    rotate(calc(-3deg + var(--scene-progress) * 5deg));
}
html[data-scroll-enhanced] .scene-outline {
  transform: translate3d(
      calc(var(--scene-progress) * 25px),
      calc(var(--scene-progress) * 18px),
      0
    )
    rotate(calc(6deg + var(--scene-progress) * 6deg));
}
html[data-scroll-enhanced] .scene-message {
  transform: translate3d(
      calc(var(--scene-progress) * -22px),
      calc(var(--scene-progress) * 25px),
      0
    )
    rotate(calc(2deg - var(--scene-progress) * 5deg));
}
html[data-scroll-enhanced] .scene-tag {
  transform: translate3d(
      calc(var(--scene-progress) * 20px),
      calc(var(--scene-progress) * -27px),
      0
    )
    rotate(calc(8deg + var(--scene-progress) * 9deg));
}
html[data-scroll-enhanced] [data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
}
html[data-scroll-enhanced] [data-reveal] {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(28px);
}
html[data-scroll-enhanced] [data-reveal][data-in-view="true"] {
  transform: translateY(0);
}
@media (min-width: 1600px) {
  .hero-grid {
    gap: 95px;
    padding-block: 110px;
  }
  .hero h1 {
    font-size: 88px;
  }
  .preview-panel {
    height: 385px;
  }
  .concept-site > img {
    height: 250px;
  }
  .concept-site-copy strong {
    font-size: 44px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    padding-inline: 32px;
  }
  .hero-grid {
    gap: 35px;
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 5.5vw;
  }
  .hero-description {
    font-size: 13px;
  }
  .preview-panel {
    height: 300px;
  }
  .concept-site-copy strong {
    font-size: 29px;
  }
  .concept-site > img {
    width: 59%;
    height: 191px;
  }
  .scene-tag {
    padding: 12px 14px;
  }
  .scene-tag strong {
    font-size: 19px;
  }
  .scene-message {
    padding: 12px;
    left: -14px;
  }
  .service-grid {
    gap: 12px;
  }
  .service-card-copy {
    padding: 20px 17px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-art {
    height: 170px;
    padding-inline: 14px;
  }
  .service-custom .service-card-copy {
    grid-template-columns: 1fr 1.2fr 130px;
    column-gap: 20px;
  }
  .service-custom .service-select {
    gap: 16px;
  }
  .contact-grid {
    gap: 50px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .chat-example {
    padding: 20px;
  }
  .chat-question {
    margin-block: 10px 7px;
  }
  .chat-example-bottom {
    padding-top: 10px;
  }
  .message-thread {
    gap: 7px;
    padding: 12px 20px;
  }
  .message-head {
    padding: 14px 20px;
  }
  .bubble {
    font-size: 9px;
    padding: 8px 11px;
  }
  .message-note {
    font-size: 6px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    gap: 26px;
  }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 690px;
    padding-top: 55px;
    gap: 40px;
    padding-bottom: 42px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-intro {
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(52px, 9.5vw, 82px);
  }
  .hero-description {
    max-width: 430px;
    margin-inline: auto;
    font-size: 14px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-showcase {
    width: 90%;
    max-width: 530px;
    margin: 0 auto;
  }
  .preview-panel {
    height: 330px;
  }
  .concept-site > img {
    height: 215px;
  }
  .concept-site-copy strong {
    font-size: 35px;
  }
  .hero-baseline {
    font-size: 9px;
  }
  .site-header nav {
    gap: 20px;
    margin-right: 15px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .service-art {
    height: 205px;
    padding: 24px 25px 0;
  }
  .service-card-copy {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-custom {
    grid-template-columns: 80px 1fr;
  }
  .service-custom .service-art {
    height: 160px;
    padding: 0;
  }
  .service-custom .service-card-copy {
    grid-template-columns: 1fr 120px;
    padding: 23px 23px 23px 0;
  }
  .service-custom .service-description {
    grid-column: 1;
    grid-row: 3;
    margin-top: 10px;
  }
  .service-custom .service-card-bottom {
    grid-column: 2;
    grid-row: 1/4;
  }
  .section-heading > p {
    font-size: 11px;
  }
  .contact-grid {
    gap: 30px;
  }
  .inquiry-panel {
    padding: 30px 25px;
  }
  .contact-intro h2 {
    font-size: 46px;
  }
  .faq-grid {
    gap: 35px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq h2 {
    font-size: 36px;
  }
  .footer-top {
    gap: 25px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 18px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 79px;
    padding: 3px 20px;
    gap: 13px;
  }
  .brand-logo-frame {
    width: 118px;
    height: 73px;
  }
  .button-header {
    font-size: 10px;
    padding: 11px 12px;
    gap: 16px;
    min-height: 39px;
    margin-left: auto;
  }
  .button-header .icon {
    width: 15px;
    height: 15px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 36px;
    background: none;
    border: 0;
    padding: 5px;
    order: 3;
  }
  .menu-toggle > span {
    display: block;
    height: 1px;
    width: 20px;
    background: #ddd;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #121210;
    border-bottom: 1px solid #39392f;
    margin: 0;
    padding: 15px 25px;
    gap: 22px;
    z-index: 30;
  }
  .site-header[data-open="true"] nav {
    display: flex;
  }
  .site-header nav a {
    font-size: 11px;
  }
  .hero-grid {
    padding-top: 39px;
    gap: 26px;
    min-height: 0;
    padding-bottom: 31px;
  }
  .hero-intro {
    font-size: 9px;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(42px, 10.8vw, 64px);
    letter-spacing: -0.07em;
    margin-bottom: 21px;
  }
  .hero-description {
    font-size: 12px;
    max-width: 320px;
    line-height: 1.9;
    margin-bottom: 24px;
  }
  .hero-actions {
    gap: 23px;
  }
  .button-gold {
    min-height: 48px;
    padding: 14px 18px;
    font-size: 12px;
    gap: 26px;
  }
  .quiet-link {
    font-size: 11px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 20px;
  }
  .hero-showcase {
    width: 100%;
    padding-top: 16px;
  }
  .showcase-scene {
    padding: 12px 9px 27px;
  }
  .preview-window {
    border-radius: 6px;
    transform: rotate(-2deg);
  }
  .preview-chrome {
    height: 27px;
    font-size: 7px;
    padding-inline: 10px;
  }
  .preview-panel {
    height: 270px;
  }
  .concept-site {
    padding: 16px 17px 0;
  }
  .concept-site-nav {
    font-size: 6px;
  }
  .concept-site-nav strong {
    font-size: 17px;
  }
  .concept-site-copy {
    left: 17px;
    top: 58px;
  }
  .concept-site-copy strong {
    font-size: 24px;
  }
  .concept-site-copy > span {
    font-size: 6px;
    max-width: 100px;
    line-height: 1.5;
  }
  .concept-site > img {
    height: 170px;
    bottom: 36px;
    width: 52%;
  }
  .concept-site-bottom {
    padding: 9px 16px;
    font-size: 6px;
  }
  .scene-tag {
    top: 0;
    right: 0;
    padding: 10px 12px;
  }
  .scene-tag span {
    font-size: 7px;
  }
  .scene-tag strong {
    font-size: 17px;
  }
  .scene-message {
    left: 0;
    bottom: 10px;
    padding: 10px 12px;
    gap: 9px;
  }
  .scene-message strong,
  .scene-message div > span {
    font-size: 8px;
  }
  .scene-message-icon {
    width: 25px;
    height: 25px;
    font-size: 18px;
  }
  .preview-tabs {
    gap: 6px;
    margin-top: 8px;
  }
  .preview-tabs button {
    padding: 8px 13px;
    font-size: 9px;
  }
  .preview-disclosure {
    font-size: 8px;
    max-width: 300px;
    margin: 12px auto 0;
  }
  .hero-baseline {
    padding: 18px 0;
    gap: 20px;
    font-size: 8px;
  }
  .hero-baseline > span {
    max-width: 140px;
    line-height: 1.7;
  }
  .hero-baseline a {
    font-size: 9px;
    gap: 9px;
  }
  .hero-baseline .icon {
    width: 12px;
    height: 12px;
  }
  .message-head {
    padding: 12px 17px;
  }
  .message-head strong {
    font-size: 10px;
  }
  .message-thread {
    gap: 6px;
    padding: 10px 17px;
  }
  .bubble {
    font-size: 8px;
    line-height: 1.5;
    padding: 8px 10px;
  }
  .message-time {
    font-size: 7px;
  }
  .message-note {
    font-size: 6px;
  }
  .chat-example {
    padding: 18px;
  }
  .chat-example-top {
    padding-bottom: 11px;
  }
  .chat-example-top strong {
    font-size: 11px;
  }
  .chat-question {
    font-size: 8px;
    padding: 8px 10px;
    margin-block: 10px 6px;
  }
  .chat-answer {
    font-size: 8px;
  }
  .answer-source {
    font-size: 6px;
    margin-top: 5px;
  }
  .chat-example-bottom {
    font-size: 6px;
    padding-top: 10px;
  }
  .video-concept-title {
    top: 20px;
    left: 18px;
  }
  .video-concept-title strong {
    font-size: 26px;
  }
  .video-concept-title > span {
    font-size: 7px;
  }
  .edit-timeline {
    left: 18px;
    right: 18px;
  }
  .concept-label {
    left: 18px;
    font-size: 6px;
  }
  .services {
    padding: 55px 0 34px;
    border-radius: 17px 17px 0 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 42px;
    letter-spacing: -0.065em;
  }
  .section-heading > p {
    font-size: 12px;
    margin-top: 18px;
  }
  .service-grid {
    gap: 12px;
  }
  .service-art {
    height: 141px;
    padding: 17px 13px 0;
  }
  .service-card-copy {
    padding: 19px 14px 16px;
  }
  .service-card h3 {
    font-size: 19px;
    letter-spacing: -0.06em;
    margin-bottom: 10px;
    min-height: 44px;
  }
  .service-promise {
    font-size: 9px;
    line-height: 1.6;
  }
  .service-description {
    font-size: 10px;
    line-height: 1.8;
    margin-bottom: 19px;
  }
  .service-card-bottom {
    font-size: 9px;
    padding-top: 12px;
    display: block;
  }
  .service-select {
    margin-top: 10px;
    justify-content: space-between;
    font-size: 10px;
  }
  .service-select .icon {
    width: 13px;
    height: 13px;
  }
  .mini-site {
    height: 140px;
  }
  .mini-site > div {
    padding: 9px;
    font-size: 4px;
  }
  .mini-site > div strong {
    font-size: 9px;
  }
  .mini-site > img {
    height: 105px;
  }
  .mini-site > span {
    font-size: 15px;
    bottom: 22px;
    left: 9px;
    max-width: 95px;
    line-height: 1.15;
  }
  .mini-message {
    font-size: 7px;
    padding: 8px 9px;
  }
  .mini-messages {
    gap: 8px;
  }
  .service-text .service-art {
    padding-top: 23px;
  }
  .message-dot {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .service-chat .service-art {
    padding: 14px 13px;
  }
  .mini-chat {
    padding: 11px 9px;
  }
  .chat-symbol {
    font-size: 26px;
  }
  .mini-chat > span:nth-child(2) {
    font-size: 7px;
    margin: 9px 0 12px;
  }
  .mini-chat > div {
    padding: 8px 7px;
    font-size: 6px;
  }
  .mini-film-label {
    font-size: 16px;
    left: 13px;
    bottom: 13px;
    max-width: 100px;
    line-height: 1.05;
  }
  .service-custom {
    grid-template-columns: 55px 1fr;
  }
  .service-custom .service-art {
    height: 100%;
    min-height: 160px;
  }
  .custom-mark {
    font-size: 42px;
  }
  .service-custom .service-card-copy {
    display: flex;
    padding: 22px 18px 20px 0;
    align-items: stretch;
  }
  .service-custom h3 {
    min-height: 0;
    font-size: 21px;
  }
  .service-custom .service-promise {
    font-size: 9px;
  }
  .service-custom .service-description {
    font-size: 10px;
    margin-top: 9px;
    max-width: 32ch;
  }
  .service-custom .service-card-bottom {
    display: block;
    margin-top: 15px;
  }
  .service-custom .service-select {
    width: max-content;
    margin: 0;
    gap: 50px;
    font-size: 10px;
    padding: 10px 14px;
  }
  .scope-note {
    text-align: left;
    font-size: 9px;
    line-height: 1.7;
    margin-top: 20px;
  }
  .contact {
    padding: 25px 0 50px;
  }
  .contact-grid {
    display: block;
    padding-top: 40px;
  }
  .contact-intro h2 {
    font-size: 46px;
  }
  .section-label {
    font-size: 10px;
    margin-bottom: 16px;
  }
  .contact-intro > p:not(.call-expectation) {
    font-size: 12px;
    margin-top: 20px;
  }
  .next-steps {
    gap: 16px;
    margin: 25px 0 20px;
  }
  .next-steps strong {
    font-size: 11px;
  }
  .next-steps p {
    font-size: 10px;
  }
  .call-expectation {
    font-size: 9px;
    margin-bottom: 28px;
  }
  .inquiry-panel {
    padding: 26px 23px;
  }
  .form-opening h3 {
    font-size: 22px;
  }
  .form-opening p {
    font-size: 10px;
  }
  .form-field input,
  .form-field select {
    font-size: 16px;
  }
  .form-field label {
    font-size: 11px;
  }
  .form-row {
    gap: 0;
  }
  .form-privacy {
    font-size: 9px;
  }
  .faq {
    padding: 45px 0 50px;
  }
  .faq-grid {
    display: block;
  }
  .faq h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .faq-list summary {
    font-size: 12px;
    padding: 21px 0;
    line-height: 1.6;
  }
  .faq-list details > p {
    font-size: 11px;
    margin-right: 15px;
  }
  .footer {
    padding: 27px 0 20px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-bottom: 25px;
  }
  .footer-top > p {
    font-size: 12px;
    margin-left: auto;
    line-height: 1.6;
  }
  .footer-top > .button {
    width: 100%;
    margin: 10px 0 0;
    min-height: 44px;
  }
  .footer-contact {
    display: block;
    padding: 25px 0 20px;
  }
  .footer-contact > a {
    font-size: 13px;
  }
  #sms-call-consent {
    margin-top: 20px;
  }
  .phone-link {
    font-size: 12px;
  }
  .sms-consent-note {
    font-size: 9px;
    line-height: 1.9;
    margin-bottom: 25px;
  }
  .footer-bottom {
    display: block;
    font-size: 8px;
    padding-top: 20px;
  }
  .footer-bottom > div {
    margin-top: 19px;
    gap: 18px;
    flex-wrap: wrap;
  }
  .service-card:focus-visible {
    outline-offset: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .preview-window,
  .scene-outline,
  .scene-message,
  .scene-tag,
  [data-parallax],
  [data-reveal] {
    transform: none !important;
  }
  .reading-progress {
    display: none;
  }
}
