:root {
  --ink: #121712;
  --ink-soft: #243028;
  --forest: #173d2a;
  --forest-deep: #0c2418;
  --gold: #efbb3f;
  --gold-dark: #bd8920;
  --paper: #f8f7f2;
  --white: #ffffff;
  --mist: #e9eeeb;
  --line: #cdd5cf;
  --muted: #536159;
  --danger: #a12d24;
  --success: #1d6b3d;
  --shadow: 0 22px 60px rgba(12, 36, 24, .14);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  visibility: hidden;
}

.skip-link:focus {
  transform: translateY(0);
  visibility: visible;
}

.shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 242, .94);
  border-bottom: 1px solid rgba(18, 23, 18, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: block;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-navigation > a:not(.button) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.main-navigation > a:not(.button):hover {
  color: var(--forest);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button > span:not(.visually-hidden) {
  width: 19px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
  background: var(--forest);
  color: var(--white);
}

.button-dark {
  background: var(--forest);
  color: var(--white);
}

.button-dark:hover {
  background: var(--forest-deep);
}

.button-gold {
  background: var(--gold);
  color: #132015;
  border-color: var(--gold);
}

.button-gold:hover {
  background: #f4c95f;
}

.button-light {
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .94);
}

.button[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 850;
  text-underline-offset: 5px;
}

.light-link {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  object-position: 54% center;
  transition: opacity 900ms ease;
}

.hero-video.is-ready.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 17, 11, .92) 0%, rgba(5, 17, 11, .76) 50%, rgba(5, 17, 11, .24) 100%),
    linear-gradient(0deg, rgba(5, 17, 11, .76) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 68px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 64px;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.trust-band {
  background: var(--gold);
  color: #142018;
  border-bottom: 1px solid var(--gold-dark);
}

.trust-list {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.trust-list span {
  padding: 10px 14px;
  border-left: 1px solid rgba(18, 23, 18, .22);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.trust-list span:last-child {
  border-right: 1px solid rgba(18, 23, 18, .22);
}

.section {
  padding: 92px 0;
}

.section[id] {
  scroll-margin-top: 88px;
}

.section-paper {
  background: var(--paper);
}

.section-mist {
  background: var(--mist);
}

.section-dark,
.section-ink {
  background: var(--forest-deep);
  color: var(--white);
}

.section-ink {
  background: #18211b;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading h2,
.demo-copy h2,
.transparency-layout h2,
.order-cta h2 {
  margin-bottom: 22px;
  font-size: 54px;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading > p:last-child,
.split-heading > p,
.demo-copy > p,
.transparency-layout p,
.order-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-dark .demo-copy > p,
.section-ink .transparency-layout p,
.order-cta p {
  color: rgba(255, 255, 255, .74);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .65fr);
  gap: 80px;
  align-items: end;
}

.split-heading h2 {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  min-height: 520px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(18, 23, 18, .06);
}

.accent-card {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.product-kicker,
.example-label,
.pricing-label {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.accent-card .product-kicker {
  color: var(--gold);
}

.product-card h3 {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.product-card > p:not(.product-price):not(.product-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.accent-card > p:not(.product-price):not(.product-kicker) {
  color: rgba(255, 255, 255, .74);
}

.product-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-price strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
}

.accent-card .product-price strong {
  color: var(--gold);
}

.product-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.accent-card .product-price span {
  color: rgba(255, 255, 255, .68);
}

.plain-list {
  margin: 8px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.plain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.section-dark .plain-list li {
  color: rgba(255, 255, 255, .88);
}

.section-dark .plain-list li::before {
  color: var(--gold);
}

.accent-card .plain-list li,
.boundary-list .plain-list li {
  color: rgba(255, 255, 255, .84);
}

.accent-card .plain-list li::before,
.boundary-list .plain-list li::before {
  color: var(--gold);
}

.product-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 80px;
  align-items: center;
}

.demo-copy {
  min-width: 0;
}

.transparency-note {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-size: 14px !important;
}

.video-stage {
  min-width: 0;
  width: min(100%, 420px);
  justify-self: center;
}

.video-stage video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  background: #050a07;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.video-stage p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  line-height: 1.5;
}

.video-process-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #101710;
}

.property-slideshow-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  overflow: hidden;
  background: #101710;
  isolation: isolate;
}

.property-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity .7s ease, transform 4.8s ease, visibility 0s linear .7s;
}

.property-slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.property-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 13, 8, .48), transparent 24%, transparent 66%, rgba(5, 13, 8, .62));
  pointer-events: none;
}

.property-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.property-slide-topline {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-slide-topline > span:first-child {
  padding: 8px 10px;
  border-left: 3px solid var(--gold);
  background: rgba(5, 13, 8, .72);
}

.property-slide-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: rgba(5, 13, 8, .82);
  color: #fff;
  font: 700 23px/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.property-slide-control:hover,
.property-slide-control:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: #111811;
  transform: translateY(-50%) scale(1.06);
}

.property-slide-control.previous {
  left: 16px;
}

.property-slide-control.next {
  right: 16px;
}

.property-slide-dots {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.property-slide-dot {
  position: relative;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.property-slide-dot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
  background: rgba(255, 255, 255, .46);
}

.property-slide-dot.active::before {
  height: 3px;
  background: var(--gold);
}

.video-process-visual figcaption {
  padding: 16px 18px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  line-height: 1.5;
}

.video-process-visual figcaption strong,
.video-process-visual figcaption span {
  display: block;
}

.video-process-visual figcaption strong {
  margin-bottom: 3px;
  color: #fff;
}

.video-share-layout {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.share-video-card {
  padding: 14px;
  background: var(--forest-deep);
  border: 1px solid rgba(18, 23, 18, .14);
  box-shadow: var(--shadow);
}

.share-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  background: #050a07;
}

.video-share-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.video-share-copy h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: .96;
}

.video-share-copy .plain-list {
  margin: 28px 0;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.example-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.example-media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: var(--forest-deep);
}

.example-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 12, 8, .58), transparent 54%);
}

.example-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}

.example-media:hover img {
  transform: scale(1.025);
}

.media-action {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.example-body {
  padding: 30px;
}

.example-body h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.1;
}

.example-body > p:not(.example-label) {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  min-height: 250px;
  padding: 32px;
  border: 1px solid #bac5bd;
  border-right: 0;
  background: rgba(255, 255, 255, .38);
}

.process-list li:last-child {
  border-right: 1px solid #bac5bd;
}

.process-list li > span {
  display: block;
  margin-bottom: 48px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.source-value-note {
  margin: 24px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--muted);
  line-height: 1.65;
}

.source-value-note strong {
  color: var(--forest);
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(500px, 1.25fr);
  gap: 80px;
  align-items: start;
}

.included-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.included-columns > div {
  padding: 30px 30px 10px 0;
  border-bottom: 1px solid var(--line);
}

.included-columns > div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.included-columns h3 {
  font-size: 24px;
}

.large-list {
  gap: 15px;
  margin-bottom: 20px;
}

.transparency-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .7fr);
  gap: 90px;
  align-items: start;
}

.boundary-list {
  padding: 34px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.boundary-list h3 {
  margin-bottom: 24px;
  font-size: 27px;
}

.pricing-arena {
  background: #101a14;
  color: var(--white);
}

.pricing-arena .pricing-heading > p:last-child {
  color: rgba(255, 255, 255, .76);
}

.pricing-game {
  padding: 34px;
  border: 1px solid rgba(239, 187, 63, .38);
  border-radius: 6px;
  background: #17261d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.reward-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.reward-header > div {
  display: grid;
  gap: 6px;
}

.reward-level,
.result-label,
.pricing-choice-kicker,
.proof-status {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reward-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.reward-score {
  min-width: 116px;
  display: grid;
  justify-items: end;
  gap: 3px;
}

.reward-score-label {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reward-percent {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.reward-journey {
  position: relative;
  margin: 30px 0 34px;
  padding: 0 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reward-journey-line {
  position: absolute;
  z-index: 0;
  top: 24px;
  left: calc(16.666% + 7px);
  right: calc(16.666% + 7px);
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.reward-journey-line > span {
  width: 50%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #d69b1e, var(--gold));
  transition: width .32s ease;
}

.reward-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

.reward-step-marker {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: #101a14;
  color: rgba(255, 255, 255, .56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 0 6px #17261d;
  transition: background .24s ease, border-color .24s ease, color .24s ease, transform .24s ease;
}

.reward-step strong {
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.reward-step small {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 1.35;
}

.reward-step.complete .reward-step-marker,
.reward-step.active .reward-step-marker {
  border-color: #3d8a5b;
  background: #275f40;
  color: var(--white);
}

.reward-step.current .reward-step-marker {
  border-color: var(--gold);
  background: var(--gold);
  color: #111811;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px #17261d, 0 0 0 8px rgba(239, 187, 63, .2);
}

.reward-step.current strong {
  color: var(--gold);
}

.bundle-callout {
  margin: 0 0 22px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
  border-left: 4px solid var(--gold);
  background: #0c1710;
  transition: background .24s ease, box-shadow .24s ease;
}

.bundle-callout > div:last-child {
  display: grid;
  gap: 4px;
}

.bundle-callout > div:last-child > strong {
  color: var(--white);
  font-size: 16px;
}

.bundle-callout small {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.45;
}

.bundle-equation {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bundle-equation span {
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(255, 255, 255, .34);
}

.bundle-equation b {
  color: var(--gold);
  font-size: 17px;
}

.bundle-equation strong {
  color: var(--gold);
  font-size: 14px;
}

.bundle-callout.almost {
  background: #112119;
  box-shadow: inset 0 0 0 1px rgba(239, 187, 63, .18);
}

.bundle-callout.unlocked {
  background: #1c3a29;
  box-shadow: inset 0 0 0 1px rgba(239, 187, 63, .48), 0 12px 28px rgba(0, 0, 0, .18);
}

.bundle-callout.unlocked .bundle-equation strong {
  color: #111811;
  background: var(--gold);
  padding: 6px 8px;
}

.pricing-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-choice {
  position: relative;
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: #1c2d22;
  color: var(--white);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.pricing-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 187, 63, .6);
}

.pricing-choice.selected {
  border-color: var(--gold);
  background: #233a2b;
  box-shadow: inset 0 0 0 1px var(--gold);
}

.pricing-choice input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.pricing-choice-check {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: transparent;
  font-weight: 900;
}

.pricing-choice.selected .pricing-choice-check {
  border-color: var(--gold);
  background: var(--gold);
  color: #142018;
}

.pricing-choice > strong {
  max-width: 370px;
  margin: 14px 48px 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.08;
}

.pricing-choice-copy {
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
}

.price-stack {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 14px;
}

.price-stack s {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .52);
  font-size: 18px;
}

.price-stack > strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
}

.price-stack small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.pricing-result {
  margin-top: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(239, 187, 63, .28);
  background: #0d1811;
}

.pricing-result > div {
  display: grid;
  gap: 5px;
}

.pricing-result > div > strong {
  font-size: 20px;
}

.pricing-result > div > span:last-child {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.pricing-note {
  max-width: 920px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.6;
}

.testimonial-layout {
  display: grid;
  gap: 12px;
}

.testimonial-proof-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, .9fr);
  border: 1px solid var(--line);
}

.proof-card {
  min-height: 290px;
  padding: 32px;
  border-left: 1px solid var(--line);
  background: var(--white);
}

.proof-card:first-child {
  border-left: 0;
}

.proof-card-featured {
  background: #eef3ef;
}

.proof-number {
  display: block;
  margin-bottom: 36px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.proof-card h3 {
  margin: 16px 0 14px;
  font-size: 27px;
  line-height: 1.12;
}

.proof-card p {
  color: var(--muted);
  line-height: 1.6;
}

.sample-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sample-quote-card {
  display: flex;
  min-height: 390px;
  padding: 34px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 28, 18, .06);
}

.sample-quote-card-featured {
  background: #e8eeea;
}

.sample-service {
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sample-quote-card blockquote {
  margin: 28px 0 36px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.35;
}

.sample-profile {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.sample-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.sample-profile > span:last-child {
  display: grid;
  gap: 4px;
}

.sample-profile strong {
  font-size: 14px;
}

.sample-profile small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.testimonial-proof-link {
  width: fit-content;
  margin-top: 8px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(500px, 1.3fr);
  gap: 80px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid #aebbb1;
}

.faq-list details {
  border-bottom: 1px solid #aebbb1;
}

.faq-list summary {
  padding: 22px 38px 22px 0;
  position: relative;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--forest);
  font-size: 26px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -3px 44px 22px 0;
  color: var(--muted);
  line-height: 1.65;
}

.order-cta {
  background: var(--forest);
  color: var(--white);
}

.order-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
}

.order-cta h2 {
  max-width: 760px;
}

.order-cta p {
  max-width: 720px;
  margin-bottom: 0;
}

.button-stack {
  min-width: 300px;
  display: grid;
  gap: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(440px, 1.2fr);
  gap: 90px;
  align-items: start;
}

.contact-form,
.order-form {
  display: grid;
  gap: 12px;
}

.contact-form {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
}

label,
.field-label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #aeb9b1;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 61, 42, .13);
  outline: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-small,
.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  padding: 60px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .72fr 1fr .65fr;
  gap: 48px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 470px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid > div:not(:first-child) a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  text-decoration: none;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

/* Order and legal pages */
.subpage-main {
  min-height: calc(100vh - 76px);
  padding: 66px 0 90px;
  background: var(--mist);
}

.subpage-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.subpage-heading h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 70px);
}

.subpage-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 38px;
  align-items: start;
}

.order-panel {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
}

.order-progress {
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
}

.order-progress li {
  position: relative;
  padding-top: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.order-progress li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
}

.order-progress li::after {
  content: "";
  position: absolute;
  top: 2px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
}

.order-progress li.active,
.order-progress li.complete {
  color: var(--forest);
}

.order-progress li.active::after,
.order-progress li.complete::after,
.order-progress li.complete::before {
  background: var(--forest);
}

.form-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  width: 100%;
  margin-bottom: 26px;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.step-intro {
  max-width: 760px;
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.branding-assistance {
  margin-bottom: 24px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border-left: 4px solid var(--gold);
  background: #fff8df;
  cursor: pointer;
}

.branding-assistance input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin-top: 2px;
}

.branding-assistance strong,
.branding-assistance small {
  display: block;
}

.branding-assistance strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.branding-assistance small {
  color: #615428;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.branding-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  align-items: start;
  gap: 28px;
}

.branding-fields {
  display: grid;
  gap: 18px;
}

.branding-fields .field > span:first-child,
.branding-fields .field-label {
  color: var(--ink-soft);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.branding-fields em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.logo-upload-control {
  min-height: 70px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px dashed #8ca093;
  background: #f5f8f5;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease;
}

.logo-upload-control:hover,
.file-input:focus-visible + input + .logo-upload-control {
  border-color: var(--forest);
  background: #eaf2ec;
}

.logo-upload-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.logo-upload-control strong,
.logo-upload-control small {
  display: block;
}

.logo-upload-control strong {
  color: var(--forest-deep);
  font-size: 13px;
}

.logo-upload-control small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.branding-preview {
  position: sticky;
  top: 100px;
  min-height: 470px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--forest-deep);
  color: var(--white);
  overflow: hidden;
}

.branding-preview-head,
.branding-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.branding-preview-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
}

.branding-preview-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.branding-preview-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.branding-preview-content {
  margin: auto 0;
}

.branding-preview-content p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  text-transform: uppercase;
}

.branding-preview-content h3 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: 40px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.branding-preview-cta {
  min-height: 46px;
  max-width: 100%;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.branding-preview-content > small {
  margin-top: 12px;
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.branding-preview-foot {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
}

.branding-preview-foot strong {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.branding-workspace.assistance-active .branding-fields {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  position: relative;
  min-height: 160px;
  padding: 24px;
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 2px var(--forest);
}

.choice-card.optional-context {
  cursor: default;
  background: #eef2ef;
}

.choice-card.required-source-card {
  cursor: default;
  border-color: var(--forest);
  box-shadow: inset 0 0 0 2px var(--forest);
  background: #f8faf8;
}

.choice-card .required-source-check {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.choice-card.optional-context::before {
  content: "OPTIONAL";
  display: inline-block;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.choice-card input {
  width: 20px;
  min-height: 0;
  height: 20px;
  margin: 0 0 16px;
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.choice-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.choice-card .order-card-price {
  margin: 14px 0 4px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 10px;
  row-gap: 3px;
}

.order-card-price s {
  color: #7a817b;
  font-size: 15px;
  font-weight: 700;
  text-decoration-color: #a12d24;
  text-decoration-thickness: 2px;
}

.order-card-price b {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.order-card-price small {
  grid-column: 1 / -1;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.choice-card:has(input:checked) .order-card-price b {
  color: var(--forest-deep);
}

.choice-feature-list {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.choice-feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.choice-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.checkbox-list {
  display: grid;
  gap: 14px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.5;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 2px 0 0;
}

.form-actions {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.button-back {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}

.order-summary {
  display: grid;
  gap: 16px;
}

.summary-group {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.summary-group h3 {
  margin-bottom: 6px;
  font-family: inherit;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.summary-group p {
  margin: 0;
  line-height: 1.55;
}

.status-box {
  margin-bottom: 24px;
  padding: 15px 17px;
  border-left: 4px solid var(--gold);
  background: #fff8df;
  color: #504013;
  font-size: 13px;
  line-height: 1.55;
}

.error-box {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-left: 4px solid var(--danger);
  background: #fff0ee;
  color: #6e211b;
}

.error-box[hidden] {
  display: none;
}

.file-zone {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-picker {
  min-height: 148px;
  padding: 24px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 2px dashed #7f9a87;
  background: #f3f7f3;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.upload-picker:hover,
.upload-picker.is-dragging,
.file-input:focus-visible + .upload-picker {
  border-color: var(--forest);
  background: #eaf2ec;
  box-shadow: inset 0 0 0 1px var(--forest);
}

.upload-picker-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.upload-picker-copy,
.upload-picker-copy strong,
.upload-picker-copy small {
  display: block;
}

.upload-picker-copy strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
}

.upload-picker-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.upload-picker-action {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.file-selection-summary {
  margin: 16px 0 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.file-report {
  margin: 14px 0 0;
  padding: 0;
  max-height: 300px;
  display: grid;
  gap: 8px;
  overflow: auto;
  list-style: none;
}

.file-report li {
  padding: 9px 11px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
}

.upload-progress {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--line);
}

.upload-progress > span {
  width: 0;
  height: 100%;
  display: block;
  background: var(--forest);
  transition: width .2s ease;
}

@media (max-width: 620px) {
  .file-zone {
    padding: 14px;
  }

  .upload-picker {
    padding: 20px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .upload-picker-icon {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .upload-picker-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .file-report li {
    align-items: flex-start;
    flex-direction: column;
  }

  .branding-preview-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .branding-workspace {
    grid-template-columns: 1fr;
  }

  .branding-preview {
    position: static;
    min-height: 400px;
  }
}

.order-aside {
  position: sticky;
  top: 100px;
  padding: 28px;
  background: var(--forest-deep);
  color: var(--white);
}

.order-aside h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.order-aside p {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.6;
}

.aside-price {
  color: var(--gold) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px !important;
  line-height: 1;
}

.legal-article {
  max-width: 860px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-body {
  background: #e9efeb;
}

.admin-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-main {
  min-height: 100vh;
  padding: 150px 0 80px;
}

.admin-login {
  max-width: 620px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-login h1,
.admin-toolbar h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 46px;
}

.admin-login-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.admin-toolbar {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-summary {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.admin-summary > div {
  padding: 20px;
  display: grid;
  background: var(--forest-deep);
  color: var(--white);
}

.admin-summary strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.admin-summary span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-summary > .admin-payment-health {
  transition: background-color 160ms ease, border-color 160ms ease;
}

.admin-summary > .admin-payment-health strong {
  align-self: end;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.1;
}

.admin-summary > .admin-payment-health.is-ready {
  background: #174b32;
  border: 1px solid #5da77e;
}

.admin-summary > .admin-payment-health.is-blocked {
  background: #4a2522;
  border: 1px solid #c77b71;
}

.admin-mail-setup {
  margin: -18px 0 36px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid #d2b25e;
  background: #fff8df;
}

.admin-mail-setup p {
  margin: 6px 0 0;
}

.admin-mail-setup [role="status"] {
  grid-column: 1 / -1;
  min-height: 18px;
  font-size: 13px;
  font-weight: 800;
}

.admin-section {
  margin-top: 44px;
}

.admin-section-heading {
  margin-bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.admin-section-heading h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.admin-section-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.admin-controls {
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  align-items: end;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-tab {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-tab.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.admin-search-label {
  margin: 0;
}

.admin-search-label input {
  margin-top: 6px;
}

.admin-records {
  display: grid;
  gap: 18px;
}

.admin-record {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.admin-record-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.admin-record-head h3 {
  font-size: 24px;
}

.admin-record-head time {
  color: var(--muted);
  font-size: 12px;
}

.admin-record dl {
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-record dl > div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.admin-record dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-record dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}

.admin-message {
  max-width: 900px;
  white-space: pre-wrap;
}

.admin-priority {
  padding: 7px 10px;
  background: #fff4cc;
  color: var(--forest-deep);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-link-row {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.crm-editor {
  margin-top: 24px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(210px, 1fr) minmax(260px, 1.4fr) auto;
  align-items: end;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.crm-editor label {
  margin: 0;
  font-size: 11px;
}

.crm-editor input,
.crm-editor select,
.crm-editor textarea {
  margin-top: 6px;
  background: var(--paper);
}

.crm-editor textarea {
  min-height: 54px;
  resize: vertical;
}

.crm-save {
  min-height: 54px;
}

.crm-save-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.order-admin-actions {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center;
  gap: 16px;
  background: #f4f0df;
  border-left: 4px solid var(--gold);
}

.order-admin-actions .eyebrow {
  margin-bottom: 6px;
}

.order-admin-actions strong,
.order-admin-actions small {
  display: block;
}

.order-admin-actions small {
  margin-top: 5px;
  color: var(--muted);
}

.order-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.order-action-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.order-action-result label {
  margin: 0;
}

.order-action-result input {
  margin-top: 6px;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.order-copy-status {
  grid-column: 1 / -1;
}

.lead-import {
  margin-bottom: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  background: #fff4cc;
  border-left: 4px solid var(--gold);
}

.lead-import label {
  margin: 0;
}

.lead-import input[type="file"] {
  margin-top: 8px;
  width: 100%;
}

.lead-import [role="status"] {
  grid-column: 1 / -1;
  min-height: 18px;
  font-size: 12px;
  font-weight: 800;
}

.outreach-kpis {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.outreach-kpis > div {
  min-height: 92px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  background: var(--forest-deep);
  color: var(--white);
}

.outreach-kpis strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.outreach-kpis span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-files {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-uploaded-material {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.admin-files-heading {
  margin-bottom: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.admin-files-heading h4,
.admin-files-heading p {
  margin: 0;
}

.admin-files-heading > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
}

.admin-record-target {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(239, 187, 63, .28);
  scroll-margin-top: 120px;
}

.admin-file {
  min-height: 90px;
  padding: 10px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.admin-file img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.admin-file strong,
.admin-file small {
  display: block;
  overflow-wrap: anywhere;
}

.admin-file strong {
  font-size: 12px;
}

.admin-file small {
  margin: 4px 0;
  color: var(--muted);
  font-size: 10px;
}

.admin-file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-file-button,
.admin-file-download {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.admin-empty {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
}

.checkout-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 187, 63, .12), transparent 26rem),
    #edf2ee;
}

.checkout-header {
  position: relative;
}

.checkout-secure-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-secure-label svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.checkout-main {
  min-height: calc(100vh - 72px);
  padding: 54px 0 72px;
}

.checkout-shell {
  width: min(1080px, calc(100% - 64px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 24px;
}

.checkout-panel {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(12, 36, 24, .09);
}

.checkout-progress {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.checkout-progress span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #88918b;
}

.checkout-progress b {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #cbd2cd;
  border-radius: 50%;
  font-size: 11px;
}

.checkout-progress small {
  overflow: hidden;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-progress .complete,
.checkout-progress .active {
  color: var(--forest);
}

.checkout-progress .complete b {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.checkout-progress .active b {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}

.checkout-panel h1 {
  max-width: 700px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 54px);
  line-height: 1.02;
}

.checkout-intro {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.checkout-alert {
  margin-bottom: 14px;
  padding: 12px 15px;
  border: 1px solid #d7dfd9;
  border-radius: 8px;
  background: #f2f6f3;
  color: var(--forest);
  font-size: 13px;
  font-weight: 750;
}

.checkout-alert[data-tone="warning"] {
  border-color: #e7cf91;
  background: #fff8df;
  color: #6b5013;
}

.checkout-alert[data-tone="success"] {
  border-color: #aed0b7;
  background: #edf6ef;
  color: #1f6635;
}

.checkout-status {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e3d49e;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.checkout-status[data-tone="ready"],
.checkout-status[data-tone="success"] {
  border-color: #b5d5bd;
  border-left-color: var(--success);
  background: #edf6ef;
  color: #215e33;
}

.checkout-status[data-tone="error"] {
  border-color: #e5b7b1;
  border-left-color: var(--danger);
  background: #fff0ee;
  color: #6e211b;
}

.checkout-spinner {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: checkout-spin .7s linear infinite;
}

@keyframes checkout-spin {
  to { transform: rotate(360deg); }
}

.checkout-payments {
  display: grid;
  gap: 14px;
}

.checkout-payment {
  min-height: 100px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.checkout-payment.complete {
  border-color: var(--forest);
  background: #edf6ef;
}

.checkout-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--gold);
  font-weight: 900;
}

.checkout-payment strong,
.checkout-payment small {
  display: block;
}

.checkout-payment small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-payment-button {
  min-width: 230px;
}

.checkout-paid {
  color: var(--success);
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-assurances {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.checkout-assurances li {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.checkout-assurances li::before {
  content: "✓ ";
  color: var(--success);
}

.checkout-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.checkout-help {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.checkout-help a {
  color: var(--forest);
  font-weight: 800;
}

.checkout-aside {
  position: sticky;
  top: 24px;
  padding: 30px;
  background: var(--forest-deep);
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(12, 36, 24, .12);
}

.checkout-aside h2 {
  color: var(--white);
  font-size: 28px;
}

.checkout-aside p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
}

.checkout-reference {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.checkout-summary {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.checkout-summary-row {
  padding-top: 12px;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.checkout-summary-row span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-summary-row strong {
  color: var(--white);
  font-size: 19px;
}

.checkout-aside hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .3);
}

@media (max-width: 760px) {
  .admin-main {
    padding-top: 110px;
  }

  .admin-login,
  .admin-record {
    padding: 22px;
  }

  .admin-login h1,
  .admin-toolbar h1 {
    font-size: 34px;
  }

  .admin-login-row,
  .admin-record dl,
  .admin-files,
  .admin-summary,
  .admin-controls,
  .crm-editor,
  .admin-mail-setup,
  .lead-import,
  .outreach-kpis,
  .order-admin-actions,
  .order-action-result {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-record-head,
  .admin-section-heading,
  .admin-files-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .admin-tab {
    padding: 0 10px;
  }

  .crm-save {
    width: 100%;
  }

  .order-action-buttons {
    display: grid;
    justify-content: stretch;
  }

  .order-action-buttons .button,
  .order-action-result .button {
    width: 100%;
  }

  .checkout-main {
    padding: 20px 0 48px;
  }

  .checkout-shell {
    width: min(100% - 24px, 1080px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .checkout-panel {
    padding: 22px;
    border-radius: 12px;
  }

  .checkout-panel h1 {
    font-size: 38px;
  }

  .checkout-progress {
    margin-bottom: 26px;
  }

  .checkout-progress span {
    justify-content: center;
  }

  .checkout-progress small {
    display: none;
  }

  .checkout-payment {
    padding: 16px;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .checkout-payment .button,
  .checkout-paid {
    grid-column: 1 / -1;
  }

  .checkout-payment .button {
    width: 100%;
    min-width: 0;
  }

  .checkout-assurances {
    grid-template-columns: 1fr;
  }

  .checkout-aside {
    position: static;
    padding: 24px;
    border-radius: 12px;
  }
}

.legal-article h2 {
  margin-top: 38px;
  font-size: 28px;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-placeholder {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: #fff8df;
  color: #504013 !important;
}

@media (max-width: 1000px) {
  h1 {
    max-width: 680px;
    font-size: 54px;
  }

  .main-navigation > a:not(.button) {
    display: none;
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-list span:nth-child(4) {
    border-left: 1px solid rgba(18, 23, 18, .22);
  }

  .split-heading,
  .demo-layout,
  .included-layout,
  .transparency-layout,
  .faq-layout,
  .contact-layout,
  .order-cta-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 1px solid #bac5bd;
  }

  .process-list li:nth-child(n+3) {
    border-top: 0;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-aside {
    position: static;
  }

  .testimonial-proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .proof-card:first-child {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-card:first-child {
    border-top: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 560px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .menu-button {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation > a:not(.button) {
    min-height: 58px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-navigation .button {
    margin-top: 24px;
  }

  .hero {
    min-height: 650px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 17, 11, .95) 0%, rgba(5, 17, 11, .65) 68%, rgba(5, 17, 11, .28) 100%);
  }

  .hero-content {
    padding: 72px 0 40px;
  }

  h1 {
    max-width: 350px;
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 350px;
    margin-bottom: 26px;
    font-size: 17px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    min-height: 44px;
    justify-content: center;
  }

  .trust-list {
    padding: 10px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list span,
  .trust-list span:last-child {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-bottom: 1px solid rgba(18, 23, 18, .18);
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .demo-copy h2,
  .transparency-layout h2,
  .order-cta h2 {
    font-size: 38px;
  }

  .product-grid,
  .example-grid,
  .pricing-choice-grid,
  .included-columns,
  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .pricing-item {
    min-height: 0;
    padding: 28px;
  }

  .product-card .button,
  .pricing-item .button {
    width: 100%;
  }

  .demo-layout {
    display: flex;
    flex-direction: column;
  }

  .video-process-visual {
    width: 100%;
  }

  .property-slideshow-frame {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .property-slide-control {
    width: 42px;
    height: 42px;
  }

  .property-slide-topline {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .property-slide-dots {
    left: 12px;
    right: 12px;
    bottom: 11px;
  }

  .video-stage {
    order: -1;
    width: min(100%, 360px);
    align-self: center;
  }

  .video-share-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .share-video-card {
    width: min(100%, 380px);
    justify-self: center;
  }

  .video-share-copy h1 {
    font-size: 44px;
  }

  .example-body {
    padding: 24px;
  }

  .pricing-game {
    padding: 20px;
  }

  .reward-header {
    align-items: flex-end;
  }

  .reward-header strong {
    font-size: 21px;
  }

  .reward-score {
    min-width: 88px;
  }

  .reward-percent {
    font-size: 40px;
  }

  .reward-journey {
    margin: 22px 0;
    gap: 4px;
  }

  .reward-journey-line {
    left: calc(16.666% + 4px);
    right: calc(16.666% + 4px);
    top: 21px;
  }

  .reward-step-marker {
    width: 46px;
    height: 46px;
    font-size: 14px;
    box-shadow: 0 0 0 4px #17261d;
  }

  .reward-step.current .reward-step-marker {
    box-shadow: 0 0 0 4px #17261d, 0 0 0 6px rgba(239, 187, 63, .2);
  }

  .reward-step strong {
    font-size: 10px;
    letter-spacing: 0;
  }

  .reward-step small {
    max-width: 92px;
    font-size: 10px;
  }

  .bundle-callout {
    padding: 15px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .bundle-equation {
    justify-content: flex-start;
    gap: 7px;
  }

  .bundle-callout > div:last-child > strong {
    font-size: 15px;
  }

  .pricing-choice {
    min-height: 300px;
    padding: 24px;
  }

  .pricing-choice > strong {
    font-size: 28px;
  }

  .pricing-result {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-result .button {
    width: 100%;
  }

  .testimonial-proof-grid {
    border: 0;
    gap: 12px;
  }

  .proof-card,
  .proof-card:first-child {
    border: 1px solid var(--line);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: 0;
    border: 1px solid #bac5bd;
    border-bottom: 0;
  }

  .process-list li:last-child {
    border-bottom: 1px solid #bac5bd;
  }

  .process-list li > span {
    margin-bottom: 22px;
  }

  .included-columns > div,
  .included-columns > div + div {
    padding: 26px 0;
    border-left: 0;
  }

  .boundary-list {
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-left: 0;
  }

  .pricing-item + .pricing-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-list summary {
    padding-right: 34px;
  }

  .button-stack {
    min-width: 0;
  }

  .contact-form,
  .order-panel,
  .legal-article {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .subpage-main {
    padding: 46px 0 64px;
  }

  .subpage-heading h1 {
    font-size: 43px;
  }

  .order-progress {
    grid-template-columns: repeat(7, 40px);
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 10px;
  }

  .order-progress li {
    font-size: 0;
  }

  .form-step legend {
    font-size: 28px;
  }

  .field-wide {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
  }
}

.service-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
}

.service-hero-image,
.service-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.service-hero-tour .service-hero-image {
  object-position: center 50%;
  filter: saturate(.98) contrast(1.04);
  transform: scale(1.01);
}

.service-hero-video .service-hero-image {
  object-position: center 50%;
  filter: saturate(.94) contrast(1.03);
  transform: scale(1.01);
}

.service-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 17, 11, .94) 0%, rgba(5, 17, 11, .76) 54%, rgba(5, 17, 11, .22) 100%),
    linear-gradient(0deg, rgba(5, 17, 11, .72) 0%, transparent 48%);
}

.service-hero-video .service-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 17, 11, .94) 0%, rgba(5, 17, 11, .78) 45%, rgba(5, 17, 11, .28) 74%, rgba(5, 17, 11, .1) 100%),
    linear-gradient(0deg, rgba(5, 17, 11, .58) 0%, transparent 52%);
}

.service-hero-tour .service-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 17, 11, .94) 0%, rgba(5, 17, 11, .82) 39%, rgba(5, 17, 11, .38) 66%, rgba(5, 17, 11, .1) 100%),
    linear-gradient(0deg, rgba(5, 17, 11, .58) 0%, transparent 50%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 82px;
  padding-bottom: 62px;
}

.service-hero h1 {
  max-width: 900px;
  font-size: 60px;
}

.breadcrumb {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--white);
  text-underline-offset: 4px;
}

.service-facts {
  background: var(--gold);
  border-bottom: 1px solid var(--gold-dark);
}

.service-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-fact-grid > div {
  min-height: 128px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(18, 23, 18, .24);
}

.service-fact-grid > div:last-child {
  border-right: 1px solid rgba(18, 23, 18, .24);
}

.service-fact-grid span,
.service-fact-grid small {
  font-size: 12px;
  line-height: 1.4;
}

.service-fact-grid span {
  margin-bottom: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-fact-grid strong {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.08;
}

.service-fact-grid small {
  color: rgba(18, 23, 18, .76);
}

.service-intro {
  align-items: start;
}

.service-intro > div:last-child p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #bac5bd;
  border-left: 1px solid #bac5bd;
}

.service-feature-grid article {
  min-height: 270px;
  padding: 32px;
  border-right: 1px solid #bac5bd;
  border-bottom: 1px solid #bac5bd;
  background: rgba(255, 255, 255, .44);
}

.service-feature-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.service-feature-grid h3 {
  margin-bottom: 13px;
  font-size: 27px;
}

.service-feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-process {
  color: var(--white);
}

.service-process li {
  border-color: rgba(255, 255, 255, .24);
}

.service-process li:nth-child(n+3) {
  border-top-color: rgba(255, 255, 255, .24);
}

.service-process li > span {
  color: var(--gold);
}

.service-process li p {
  color: rgba(255, 255, 255, .7);
}

.section-dark .split-heading > p {
  color: rgba(255, 255, 255, .74);
}

.service-example-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-example-links > a {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(220px, 1.2fr);
  color: var(--white);
  background: #17261d;
  border: 1px solid rgba(255, 255, 255, .22);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.service-example-links > a:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.service-example-links img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
}

.service-example-links a > span {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.service-example-links strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.15;
}

.service-example-links small {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.5;
}

/* Product-specific visual source examples */
.service-visual-section {
  padding-top: 34px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.route-storyboard {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.route-shot {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.route-shot:nth-child(1) { z-index: 4; }
.route-shot:nth-child(2) { z-index: 3; }
.route-shot:nth-child(3) { z-index: 2; }
.route-shot:nth-child(4) { z-index: 1; }

.route-shot:last-child { border-right: 0; }

.route-shot:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  z-index: 4;
  top: 40%;
  right: -18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(5, 25, 14, .2);
  font-size: 21px;
  font-weight: 900;
}

.route-shot figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dce5df;
}

.route-shot figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 10, .06), transparent 48%, rgba(4, 17, 10, .45));
  pointer-events: none;
}

.route-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s ease;
}

.route-shot:hover img { transform: scale(1.045); }

.route-shot figure > span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
}

.route-shot > div {
  min-height: 118px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.route-shot strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.route-shot small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.source-coverage-band {
  margin-top: 24px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .8fr) auto;
  align-items: center;
  gap: 28px;
  border-left: 4px solid var(--gold);
  background: #e9f0eb;
}

.source-coverage-band > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.source-coverage-band .coverage-kicker {
  width: 100%;
  margin-bottom: 2px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.source-coverage-band > div strong {
  padding: 7px 9px;
  border: 1px solid #b8c8bc;
  background: var(--white);
  color: #385344;
  font-size: 12px;
}

.source-coverage-band > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.source-coverage-band > .text-link {
  white-space: nowrap;
}

.tour-source-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  border: 1px solid var(--line);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.tour-hotspot-preview {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #081a10;
}

.tour-hotspot-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 11, .08), transparent 50%, rgba(5, 18, 11, .78));
  pointer-events: none;
}

.tour-hotspot-preview > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.tour-hotspot-preview figcaption {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  gap: 5px;
  color: var(--white);
}

.tour-hotspot-preview figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.tour-hotspot-preview figcaption span {
  max-width: 670px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.5;
}

.tour-demo-hotspot {
  position: absolute;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .35));
}

.tour-demo-hotspot b {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.tour-demo-hotspot b::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(246, 190, 49, .55);
  border-radius: 50%;
  animation: tour-hotspot-pulse 2.2s ease-out infinite;
}

.tour-demo-hotspot > span {
  padding: 6px 9px;
  background: rgba(5, 18, 11, .88);
}

.hotspot-kitchen { left: 48%; top: 28%; }
.hotspot-veranda { right: 0; top: 38%; }
.hotspot-veranda > span { transform: translateX(-10px); }

.tour-source-steps {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.tour-source-steps article {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px 130px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 20px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.tour-source-steps article:last-child { border-bottom: 0; }

.tour-source-steps article > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.tour-source-steps img {
  width: 130px;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .3);
}

.tour-source-steps article:nth-child(2) img { object-position: 57% center; }

.tour-source-steps article > div {
  display: grid;
  gap: 6px;
}

.tour-source-steps strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.tour-source-steps small {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.45;
}

.reveal-enabled .service-visual-section.reveal-pending .route-shot,
.reveal-enabled .service-visual-section.reveal-pending .tour-source-steps article {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-enabled .service-visual-section.reveal-visible .route-shot,
.reveal-enabled .service-visual-section.reveal-visible .tour-source-steps article {
  animation: service-visual-item-in .55s ease both;
}

.reveal-enabled .service-visual-section.reveal-visible :is(.route-shot, .tour-source-steps article):nth-child(2) { animation-delay: .1s; }
.reveal-enabled .service-visual-section.reveal-visible :is(.route-shot, .tour-source-steps article):nth-child(3) { animation-delay: .2s; }
.reveal-enabled .service-visual-section.reveal-visible .route-shot:nth-child(4) { animation-delay: .3s; }

@keyframes service-visual-item-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes tour-hotspot-pulse {
  0% { opacity: .8; transform: scale(.78); }
  80%, 100% { opacity: 0; transform: scale(1.22); }
}

/* Search-focused resource hub and editorial guides */
.resource-hero {
  padding: 110px 0 82px;
  color: var(--white);
  background: var(--forest-deep);
}

.resource-hero .breadcrumb {
  margin-bottom: 30px;
}

.resource-hero h1 {
  max-width: 950px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 76px);
}

.resource-hero .hero-lead {
  max-width: 780px;
}

.resource-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #bac5bd;
  border-left: 1px solid #bac5bd;
}

.resource-card {
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #bac5bd;
  border-bottom: 1px solid #bac5bd;
  background: rgba(255, 255, 255, .48);
}

.resource-card .eyebrow {
  margin-bottom: 30px;
}

.resource-card h2 {
  margin-bottom: 16px;
  font-size: 31px;
}

.resource-card p {
  color: var(--muted);
  line-height: 1.65;
}

.resource-card .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.guide-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 76px;
  align-items: start;
}

.guide-content {
  min-width: 0;
  max-width: 820px;
}

.guide-content > section + section {
  margin-top: 58px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.guide-content h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 48px);
}

.guide-content h3 {
  margin: 32px 0 12px;
  font-size: 25px;
}

.guide-content p,
.guide-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.guide-content ul,
.guide-content ol {
  padding-left: 22px;
}

.guide-content li + li {
  margin-top: 10px;
}

.guide-summary {
  margin-bottom: 48px;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: #fff8df;
}

.guide-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.guide-summary p {
  margin: 0;
  color: #615428;
}

.guide-toc {
  position: sticky;
  top: 104px;
  padding: 24px 0 24px 24px;
  border-left: 1px solid var(--line);
}

.guide-toc strong {
  display: block;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guide-toc a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.guide-toc a:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.guide-comparison {
  width: 100%;
  max-width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
}

.guide-comparison th,
.guide-comparison td {
  padding: 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.guide-comparison th {
  color: var(--ink);
  background: var(--mist);
}

.guide-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.guide-next a {
  min-height: 170px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--forest-deep);
  text-decoration: none;
}

.guide-next span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-next strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .service-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-fact-grid > div:nth-child(odd) {
    border-left: 1px solid rgba(18, 23, 18, .24);
  }

  .service-fact-grid > div:nth-child(n+3) {
    border-top: 1px solid rgba(18, 23, 18, .24);
  }

  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-example-links {
    grid-template-columns: 1fr;
  }

  .route-storyboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-shot:nth-child(2) { border-right: 0; }
  .route-shot:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .route-shot:nth-child(2)::after { display: none; }

  .source-coverage-band {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .source-coverage-band > .text-link { white-space: normal; }

  .tour-source-demo {
    grid-template-columns: 1fr;
  }

  .tour-hotspot-preview,
  .tour-hotspot-preview > img { min-height: 560px; }

  .tour-source-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .tour-source-steps article {
    grid-template-columns: 32px minmax(0, 1fr);
    align-content: start;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 0;
  }

  .tour-source-steps article:last-child { border-right: 0; }

  .tour-source-steps img {
    width: 100%;
    grid-column: 1 / -1;
  }

  .tour-source-steps article > div { grid-column: 1 / -1; }

  .resource-index {
    grid-template-columns: 1fr 1fr;
  }

  .resource-card:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .guide-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .guide-toc {
    position: static;
    order: -1;
    padding: 20px;
    border: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .resource-hero {
    padding: 84px 0 58px;
  }

  .resource-hero h1 {
    font-size: 42px;
  }

  .resource-index,
  .guide-next {
    grid-template-columns: 1fr;
  }

  .resource-card,
  .resource-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 27px;
  }

  .guide-content p,
  .guide-content li {
    font-size: 16px;
  }

  .guide-comparison {
    display: block;
    width: 100%;
    max-width: calc(100vw - 48px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .service-hero {
    min-height: 650px;
  }

  .service-hero-image,
  .service-hero-tour .service-hero-image {
    object-position: 56% center;
  }

  .service-hero-overlay {
    background: linear-gradient(0deg, rgba(5, 17, 11, .96) 0%, rgba(5, 17, 11, .69) 72%, rgba(5, 17, 11, .3) 100%);
  }

  .service-hero-content {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .service-hero h1 {
    max-width: 380px;
    font-size: 42px;
  }

  .breadcrumb {
    margin-bottom: 26px;
  }

  .service-fact-grid,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-fact-grid > div,
  .service-fact-grid > div:last-child,
  .service-fact-grid > div:nth-child(odd) {
    min-height: 112px;
    border-right: 1px solid rgba(18, 23, 18, .24);
    border-bottom: 1px solid rgba(18, 23, 18, .24);
  }

  .service-feature-grid article {
    min-height: 0;
    padding: 27px;
  }

  .service-feature-grid article > span {
    margin-bottom: 24px;
  }

  .service-example-links > a {
    grid-template-columns: 1fr;
  }

  .service-example-links img {
    height: 210px;
    min-height: 0;
  }

  .service-visual-section { padding-top: 24px; }

  .route-storyboard { grid-template-columns: 1fr; }

  .route-shot,
  .route-shot:nth-child(2) {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-shot:last-child { border-bottom: 0; }

  .route-shot:not(:last-child)::after {
    top: auto;
    right: calc(50% - 17px);
    bottom: -18px;
    transform: rotate(90deg);
  }

  .route-shot:nth-child(2)::after { display: grid; }

  .route-shot figure {
    height: 100%;
    min-height: 142px;
    aspect-ratio: auto;
  }

  .route-shot > div {
    min-height: 142px;
    align-content: center;
  }

  .source-coverage-band { padding: 21px; }

  .source-coverage-band > div { align-items: flex-start; }

  .tour-hotspot-preview { min-height: 430px; }

  .tour-hotspot-preview > img {
    height: 300px;
    min-height: 0;
    object-position: 60% center;
  }

  .tour-hotspot-preview::after {
    background: linear-gradient(180deg, rgba(5, 18, 11, .04), rgba(5, 18, 11, .1) 48%, rgba(5, 18, 11, .96) 73%);
  }

  .tour-hotspot-preview figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .tour-hotspot-preview figcaption strong { font-size: 25px; }

  .tour-demo-hotspot b {
    width: 42px;
    height: 42px;
  }

  .tour-demo-hotspot > span { font-size: 10px; }

  .hotspot-kitchen { left: 45%; top: 17%; }
  .hotspot-veranda { right: 0; top: 23%; }

  .tour-source-steps { grid-template-columns: 1fr; }

  .tour-source-steps article {
    grid-template-columns: 32px 110px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .tour-source-steps img {
    width: 110px;
    grid-column: auto;
  }

  .tour-source-steps article > div { grid-column: auto; }
}

.analytics-consent {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  color: #132319;
  background: #fffdf8;
  border: 1px solid #a9b5ad;
  box-shadow: 0 20px 54px rgba(4, 18, 11, .28);
}

.analytics-consent[hidden],
.analytics-settings-button[hidden] {
  display: none;
}

.analytics-consent-copy h2 {
  margin: 4px 0 8px;
  color: #121712;
  font-size: 28px;
  letter-spacing: 0;
}

.analytics-consent-copy p {
  max-width: 680px;
  margin: 0 0 8px;
  color: #445249;
  line-height: 1.55;
}

.analytics-consent-copy a {
  color: #174a30;
  font-weight: 800;
}

.analytics-consent-actions {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.analytics-settings-button {
  position: fixed;
  z-index: 1100;
  bottom: 12px;
  left: 12px;
  padding: 9px 12px;
  color: #f7f5ed;
  background: #11261a;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 720px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 20px;
  }

  .analytics-consent-copy h2 {
    font-size: 24px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .analytics-consent-actions .button {
    width: 100%;
  }
}

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

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

  .hero-video {
    display: none;
  }
}


/* Visual source guide */
.photo-guide-section { overflow: hidden; }

.photo-guide-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  border: 1px solid var(--line);
  background: #0b2217;
  box-shadow: var(--shadow);
}

.photo-guide-stage {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #09170f;
}

.photo-guide-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #09170f;
}

.photo-guide-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -24px;
  background: linear-gradient(rgba(5, 18, 11, .42), rgba(5, 18, 11, .42)), var(--guide-bg) center / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.04);
}

.photo-guide-panel[hidden] { display: none; }

.photo-guide-panel.active { animation: guide-panel-in .55s ease both; }

.photo-guide-panel::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 11, .12), rgba(5, 18, 11, .08) 45%, rgba(5, 18, 11, .78));
  pointer-events: none;
}

.photo-guide-panel > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: none;
}

.photo-guide-panel[data-guide-panel="connection"] > img { object-position: center; }

.photo-guide-caption {
  position: absolute;
  z-index: 3;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  color: #fff;
}

.photo-guide-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
}

.photo-guide-caption span {
  max-width: 620px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.guide-marker {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .32));
}

.guide-marker.is-cropped {
  opacity: 0;
  pointer-events: none;
}

.guide-marker b {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  color: #102219;
}

.guide-marker span {
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 9px;
  background: rgba(5, 18, 11, .84);
  white-space: nowrap;
}

.guide-marker.marker-label-left span {
  right: calc(100% + 8px);
  left: auto;
}

.photo-guide-controls {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.photo-guide-tab {
  min-height: 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  gap: 4px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: transparent;
  color: rgba(255, 255, 255, .68);
  text-align: left;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.photo-guide-tab:last-child { border-bottom: 0; }

.photo-guide-tab:hover,
.photo-guide-tab:focus-visible {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.photo-guide-tab.active {
  background: var(--forest);
  color: #fff;
  box-shadow: inset 4px 0 0 var(--gold);
}

.photo-guide-tab > span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.photo-guide-tab strong,
.photo-guide-tab small { display: block; }

.photo-guide-tab strong { font-size: 17px; }

.photo-guide-tab small {
  color: inherit;
  opacity: .68;
  font-size: 12px;
}

.photo-proof-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.photo-proof {
  min-width: 0;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.photo-proof:last-child { border-right: 0; }

.photo-proof figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dbe3dc;
}

.photo-proof figure::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(9, 32, 20, .1);
  pointer-events: none;
}

.photo-proof img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.photo-proof:hover img { transform: scale(1.035); }

.photo-proof.proof-avoid img {
  filter: brightness(.62) blur(1.2px);
  transform: scale(1.32);
}

.photo-proof.proof-avoid:hover img { transform: scale(1.36); }

.photo-proof-badge {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-extra .photo-proof-badge { background: #8a6b12; }
.proof-avoid .photo-proof-badge { background: #7a2d26; }

.photo-proof > div { padding: 24px; }

.photo-proof h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.photo-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.photo-guide-summary {
  margin-top: 28px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-left: 4px solid var(--gold);
  background: #e9f0eb;
}

.photo-guide-summary strong {
  margin-right: 6px;
  color: var(--forest);
}

.photo-guide-summary > span {
  padding: 7px 9px;
  border: 1px solid #b8c8bc;
  background: #fff;
  color: #385344;
  font-size: 12px;
  font-weight: 750;
}

.photo-guide-summary .text-link {
  margin-left: auto;
  white-space: nowrap;
}

/* Order upload examples and selected file previews */
.upload-guide {
  margin: 24px 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background: #eef3ef;
}

.upload-guide-heading {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.upload-guide-heading h3 {
  margin: 3px 0 0;
  font-size: 24px;
}

.upload-guide-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.upload-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.upload-example-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #b9c7bd;
  border-radius: 6px;
}

.upload-example-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.upload-example-grid figure:nth-child(2) img { object-position: 58% center; }

.upload-example-grid figcaption {
  min-height: 96px;
  padding: 14px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 2px 8px;
}

.upload-example-grid figcaption span {
  grid-row: 1 / span 2;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
}

.upload-example-grid figcaption strong,
.upload-example-grid figcaption small { display: block; }

.upload-example-grid figcaption strong { font-size: 14px; }

.upload-example-grid figcaption small {
  color: var(--muted);
  line-height: 1.4;
}

.upload-guide-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.selected-image-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.selected-image-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #9eb4a4;
  background: #fff;
}

.selected-image-card.needs-attention { border-color: #bd766f; }

.selected-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #e8eeea;
}

.selected-image-card figcaption {
  padding: 9px;
  display: grid;
  gap: 4px;
}

.selected-image-card figcaption span,
.selected-image-card figcaption strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-image-card figcaption span {
  color: var(--muted);
  font-size: 10px;
}

.selected-image-card figcaption strong {
  color: var(--forest);
  font-size: 10px;
  text-transform: uppercase;
}

.selected-image-card.needs-attention figcaption strong { color: var(--danger); }

.selected-image-more {
  min-height: 90px;
  margin: 0;
  padding: 14px;
  display: grid;
  place-items: center;
  border: 1px dashed #9eb4a4;
  color: var(--forest);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.reveal-enabled .reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-enabled .reveal-pending.reveal-visible {
  opacity: 1;
  transform: none;
}

@keyframes guide-panel-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}


@media (max-width: 920px) {
  .photo-guide-workspace { grid-template-columns: 1fr; }
  .photo-guide-stage { min-height: 520px; }
  .photo-guide-controls {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }
  .photo-guide-tab {
    min-height: 112px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 0;
  }
  .photo-guide-tab:last-child { border-right: 0; }
  .photo-guide-tab.active { box-shadow: inset 0 4px 0 var(--gold); }
  .photo-proof-grid { grid-template-columns: 1fr; }
  .photo-proof {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) 1.1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .photo-proof:last-child { border-bottom: 0; }
  .upload-guide-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .selected-image-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .photo-guide-stage { min-height: 400px; }
  .photo-guide-panel > img { object-fit: contain; }
  .photo-guide-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .photo-guide-caption span { font-size: 13px; }
  .guide-marker span { display: none; }
  .guide-marker b {
    width: 30px;
    height: 30px;
  }
  .photo-guide-controls { grid-template-columns: 1fr; }
  .photo-guide-tab {
    min-height: 84px;
    grid-template-columns: 32px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .photo-proof { display: block; }
  .photo-proof figure { aspect-ratio: 16 / 10; }
  .photo-guide-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .photo-guide-summary .text-link {
    margin: 8px 0 0;
    white-space: normal;
  }
  .upload-guide { padding: 16px; }
  .upload-example-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .upload-example-grid figure {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }
  .upload-example-grid img {
    width: 100%;
    height: 132px;
    aspect-ratio: auto;
  }
  .upload-example-grid figcaption {
    min-height: 112px;
    align-content: center;
  }
  .selected-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .photo-guide-panel.active,
  .photo-guide-panel > img { animation: none; }
  .reveal-enabled .reveal-pending {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Tour interface configurator */
.tour-configurator-section {
  overflow: hidden;
  background: #edf1ed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tour-configurator-section .section-heading {
  margin-bottom: 34px;
}

.tour-style-editor {
  --tour-panel: #10281d;
  --tour-accent: #f3bd3e;
  --tour-text: #fffaf0;
  overflow: hidden;
  border: 1px solid #a9b7ae;
  border-radius: 8px;
  background: #f9faf7;
  box-shadow: 0 28px 70px rgba(12, 35, 24, .12);
}

.tour-style-editor-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 34px 38px 30px;
  border-bottom: 1px solid #c7d1ca;
}

.tour-style-editor-head h3 {
  max-width: 650px;
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
}

.tour-style-editor-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: #526158;
}

.tour-style-live-status {
  display: grid;
  min-width: 230px;
  padding-left: 24px;
  border-left: 1px solid #c7d1ca;
}

.tour-style-live-status span,
.tour-style-confirmation {
  color: #536159;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-style-live-status strong {
  margin-top: 6px;
  color: var(--forest);
  font-size: 16px;
}

.tour-style-workspace {
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
  min-height: 690px;
}

.tour-style-controls {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 36px 32px;
  border-right: 1px solid #c7d1ca;
  background: #ffffff;
}

.tour-style-control-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.tour-style-control-group legend {
  width: 100%;
  margin-bottom: 14px;
  color: #18251d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.tour-style-presets {
  display: grid;
  gap: 8px;
}

.tour-style-presets legend { margin-bottom: 6px; }

.tour-preset-option {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 8px 12px;
  border: 1px solid #d2d9d4;
  border-radius: 5px;
  background: #fbfcfa;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.tour-preset-option:hover {
  border-color: #72867a;
  transform: translateX(2px);
}

.tour-preset-option:has(input:checked) {
  border-color: var(--forest);
  background: #edf4ef;
  box-shadow: inset 4px 0 0 var(--forest);
}

.tour-preset-option input,
.tour-palette-option input,
.tour-connection-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.tour-preset-option > span:last-child {
  display: grid;
  gap: 2px;
}

.tour-preset-option strong {
  color: #17231c;
  font-size: 13px;
}

.tour-preset-option small {
  color: #66736b;
  font-size: 11px;
  line-height: 1.3;
}

.tour-preset-miniature {
  position: relative;
  display: block;
  width: 58px;
  height: 46px;
  overflow: hidden;
  border: 1px solid #aab6af;
  border-radius: 4px;
  background: linear-gradient(145deg, #a8b8ad, #e4e8e2);
}

.tour-preset-miniature i,
.tour-preset-miniature b,
.tour-preset-miniature em {
  position: absolute;
  display: block;
  background: #173d2a;
}

.tour-preset-miniature i { top: 4px; right: 4px; width: 20px; height: 17px; }
.tour-preset-miniature b { right: 4px; bottom: 4px; left: 4px; height: 7px; }
.tour-preset-miniature em { top: 17px; left: 13px; width: 8px; height: 8px; border-radius: 50%; background: #f3bd3e; }
.tour-preset-miniature.preset-blueprint { background: repeating-linear-gradient(0deg, #102f43 0 7px, #164058 7px 8px); }
.tour-preset-miniature.preset-blueprint i,
.tour-preset-miniature.preset-blueprint b { border: 1px solid #54c7e4; background: transparent; }
.tour-preset-miniature.preset-heritage i { border: 2px double #d6b75a; }
.tour-preset-miniature.preset-heritage b { height: 10px; }
.tour-preset-miniature.preset-glass i,
.tour-preset-miniature.preset-glass b { border: 1px solid rgba(255,255,255,.7); border-radius: 4px; background: rgba(17,37,27,.55); }
.tour-preset-miniature.preset-contrast { background: #f8f8f5; }
.tour-preset-miniature.preset-contrast i,
.tour-preset-miniature.preset-contrast b { background: #050505; }

.tour-palette-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tour-palette-option {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 47px;
  padding: 5px 8px;
  border: 1px solid #d4dbd6;
  border-radius: 4px;
  color: #2c3931;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.tour-palette-option:hover,
.tour-palette-option:has(input:checked) { border-color: #244b36; }
.tour-palette-option:has(input:checked) { box-shadow: inset 0 -3px 0 #244b36; }

.tour-connection-grid {
  display: grid;
  gap: 8px;
}

.tour-connection-option {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 9px 12px;
  border: 1px solid #d2d9d4;
  border-radius: 5px;
  background: #fbfcfa;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.tour-connection-option:hover {
  border-color: #72867a;
  transform: translateX(2px);
}

.tour-connection-option:has(input:checked) {
  border-color: var(--forest);
  background: #edf4ef;
  box-shadow: inset 4px 0 0 var(--forest);
}

.tour-connection-option > span:last-child { display: grid; gap: 2px; }
.tour-connection-option strong { color: #17231c; font-size: 13px; }
.tour-connection-option small { color: #66736b; font-size: 11px; line-height: 1.35; }

.tour-connection-miniature {
  position: relative;
  display: block;
  width: 56px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #aab6af;
  border-radius: 4px;
  background: #eef2ee;
}

.tour-connection-miniature i {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 27px;
  width: 2px;
  background: #718178;
}

.tour-connection-miniature.connection-markers b {
  position: absolute;
  top: 14px;
  left: 20px;
  width: 16px;
  height: 16px;
  border: 4px solid #eef2ee;
  border-radius: 50%;
  background: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--forest);
}

.tour-connection-miniature.connection-doors i {
  top: 4px;
  bottom: auto;
  height: 16px;
  box-shadow: 0 18px 0 #718178;
}

.tour-connection-miniature.connection-doors b {
  position: absolute;
  top: 19px;
  left: 27px;
  width: 17px;
  height: 17px;
  border-top: 2px solid var(--gold-dark);
  border-left: 2px solid var(--gold-dark);
  border-radius: 17px 0 0;
}

.tour-connection-miniature.connection-none b { display: none; }

.tour-palette-swatch {
  position: relative;
  display: block;
  width: 42px;
  height: 31px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 3px;
  background: var(--swatch-panel);
}

.tour-palette-swatch i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--swatch-accent);
}

.tour-palette-swatch b {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 14px;
  height: 3px;
  background: var(--swatch-text);
  box-shadow: 0 6px 0 var(--swatch-text);
}

.tour-custom-toggle {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  margin-top: 9px;
  padding: 9px;
  border: 1px dashed #8d9b92;
  border-radius: 4px;
  background: #f8faf7;
  color: #1c2a21;
  text-align: left;
  cursor: pointer;
}

.tour-custom-toggle.active { border-style: solid; border-color: var(--forest); background: #edf4ef; }
.tour-custom-toggle > span:last-child { display: grid; gap: 2px; }
.tour-custom-toggle strong { font-size: 12px; }
.tour-custom-toggle small { color: #69756e; font-size: 10px; }

.tour-custom-swatch {
  width: 42px;
  height: 31px;
  border-radius: 3px;
  background: linear-gradient(135deg, #e85b55 0 33%, #f2bd3e 33% 66%, #176f8b 66%);
}

.tour-custom-colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 9px;
}

.tour-custom-colors[hidden] { display: none; }
.tour-custom-colors label { display: grid; gap: 4px; color: #59665e; font-size: 10px; font-weight: 800; }
.tour-custom-colors input { width: 100%; height: 38px; padding: 3px; border: 1px solid #bbc6bf; border-radius: 4px; background: #fff; cursor: pointer; }

.tour-style-assistance {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 15px;
  border: 1px solid #d4c27b;
  border-radius: 5px;
  background: #fff9df;
  cursor: pointer;
}

.tour-style-assistance input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--forest); }
.tour-style-assistance span { display: grid; gap: 3px; }
.tour-style-assistance strong { color: #243128; font-size: 13px; }
.tour-style-assistance small { color: #6e633d; font-size: 11px; line-height: 1.45; }

.tour-style-editor.is-assisted :is(.tour-style-presets, .tour-color-controls, .tour-connection-controls) {
  opacity: .46;
  pointer-events: none;
}

.tour-style-stage {
  position: relative;
  min-width: 0;
  padding: 36px;
  background: #e2e9e4;
}

.tour-style-preview {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(11, 27, 18, .35);
  border-radius: 6px;
  background: #13251b;
  box-shadow: 0 22px 48px rgba(16, 38, 25, .22);
  isolation: isolate;
}

.tour-style-preview > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .4s ease;
}

.tour-style-editor:hover .tour-style-preview > img { transform: scale(1.015); }
.tour-preview-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,12,8,.18), transparent 38%, rgba(5,12,8,.28)); }

.tour-preview-topbar,
.tour-preview-plan,
.tour-preview-scenes,
.tour-preview-hotspot { position: absolute; z-index: 2; color: var(--tour-text); }

.tour-preview-topbar {
  top: 18px;
  right: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 8px 11px;
  background: color-mix(in srgb, var(--tour-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--tour-accent) 45%, transparent);
}

.tour-preview-brandmark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--tour-accent);
  color: var(--tour-panel);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.tour-preview-topbar strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.tour-preview-counter { color: color-mix(in srgb, var(--tour-text) 72%, transparent); font-size: 11px; font-weight: 800; }

.tour-preview-plan {
  top: 82px;
  right: 18px;
  width: min(43%, 270px);
  padding: 12px;
  background: color-mix(in srgb, var(--tour-panel) 94%, transparent);
  border: 1px solid color-mix(in srgb, var(--tour-accent) 42%, transparent);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.tour-preview-plan-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; padding-bottom: 7px; border-bottom: 1px solid color-mix(in srgb, var(--tour-text) 22%, transparent); }
.tour-preview-plan-head span { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.tour-preview-plan-head b { color: var(--tour-accent); font-size: 10px; }
.tour-preview-plan svg { display: block; width: 100%; height: auto; }
.tour-preview-plan .plan-lines :is(path, rect) { fill: color-mix(in srgb, var(--tour-text) 4%, transparent); stroke: color-mix(in srgb, var(--tour-text) 62%, transparent); stroke-width: 3; stroke-linejoin: round; }
.tour-preview-plan .plan-connections-doors path { fill: none; }
.tour-preview-plan .plan-door-gaps { stroke: var(--tour-panel); stroke-width: 7; }
.tour-preview-plan .plan-door-swings { stroke: var(--tour-accent); stroke-width: 2; stroke-linecap: round; }
.tour-preview-plan .plan-connections-markers circle { fill: var(--tour-accent); stroke: var(--tour-panel); stroke-width: 4; }
.tour-style-editor[data-connections="markers"] .plan-connections-doors,
.tour-style-editor[data-connections="doors"] .plan-connections-markers,
.tour-style-editor[data-connections="none"] .plan-connections { display: none; }
.tour-preview-plan .plan-labels text { fill: var(--tour-text); font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; text-anchor: middle; }
.tour-preview-plan .plan-active { fill: color-mix(in srgb, var(--tour-accent) 22%, transparent); stroke: var(--tour-accent); stroke-width: 2; }
.tour-preview-plan .plan-active-core { fill: var(--tour-accent); }

.tour-preview-hotspot {
  bottom: 122px;
  left: 47%;
  display: grid;
  justify-items: center;
  transform: translateX(-50%);
}

.tour-preview-hotspot > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid color-mix(in srgb, var(--tour-accent) 34%, transparent);
  border-radius: 50%;
  background: var(--tour-accent);
  color: var(--tour-panel);
  font-size: 27px;
  line-height: 1;
  box-shadow: 0 9px 22px rgba(0,0,0,.22);
}

.tour-preview-hotspot strong { order: -1; margin-bottom: 6px; padding: 6px 9px; border-radius: 4px; background: var(--tour-panel); color: var(--tour-text); font-size: 11px; }

.tour-preview-scenes {
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 5px;
  background: color-mix(in srgb, var(--tour-panel) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--tour-text) 24%, transparent);
}

.tour-preview-scenes span { padding: 11px 8px; border: 1px solid transparent; color: color-mix(in srgb, var(--tour-text) 72%, transparent); font-size: 10px; font-weight: 800; text-align: center; }
.tour-preview-scenes .active { border-color: var(--tour-accent); color: var(--tour-text); }

.tour-style-editor[data-preset="studio"] :is(.tour-preview-topbar, .tour-preview-plan, .tour-preview-scenes) { border-radius: 2px; box-shadow: none; }
.tour-style-editor[data-preset="blueprint"] .tour-preview-plan {
  background-color: var(--tour-panel);
  background-image: linear-gradient(color-mix(in srgb, var(--tour-accent) 11%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--tour-accent) 11%, transparent) 1px, transparent 1px);
  background-size: 14px 14px;
}
.tour-style-editor[data-preset="blueprint"] :is(.tour-preview-topbar strong, .tour-preview-plan-head, .tour-preview-scenes) { font-family: Consolas, "Courier New", monospace; text-transform: uppercase; }
.tour-style-editor[data-preset="heritage"] :is(.tour-preview-topbar, .tour-preview-plan, .tour-preview-scenes) { border: 2px double var(--tour-accent); }
.tour-style-editor[data-preset="heritage"] :is(.tour-preview-topbar strong, .tour-preview-plan-head, .tour-preview-scenes) { font-family: Georgia, "Times New Roman", serif; }
.tour-style-editor[data-preset="glass"] :is(.tour-preview-topbar, .tour-preview-plan, .tour-preview-scenes) { border-radius: 8px; background: color-mix(in srgb, var(--tour-panel) 70%, transparent); backdrop-filter: blur(12px); }
.tour-style-editor[data-preset="contrast"] :is(.tour-preview-topbar, .tour-preview-plan, .tour-preview-scenes) { border: 3px solid var(--tour-accent); background: var(--tour-panel); box-shadow: 7px 7px 0 color-mix(in srgb, var(--tour-accent) 55%, transparent); }
.tour-style-editor[data-preset="contrast"] .tour-preview-hotspot > span { border-width: 0; border-radius: 4px; }

.tour-preview-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: #405047;
  font-size: 12px;
}

.tour-preview-caption span { padding: 5px 8px; border: 1px solid #9dac9f; border-radius: 3px; font-size: 10px; font-weight: 800; text-transform: uppercase; }

.tour-style-editor-foot {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px 38px;
  border-top: 1px solid #c7d1ca;
  background: #f6f8f5;
}

.tour-style-editor-foot > div { display: grid; gap: 4px; }
.tour-style-editor-foot > div > strong { color: #173d2a; font-size: 16px; }
.tour-style-order-note { padding: 9px 12px; border-left: 3px solid var(--gold); color: #536159; font-size: 12px; font-weight: 800; }

.order-form [data-tour-only] {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #cbd4ce;
}

.order-form .tour-style-editor-head { padding: 26px; }
.order-form .tour-style-editor-head h3 { font-size: 34px; }
.order-form .tour-style-workspace { grid-template-columns: 1fr; }
.order-form .tour-style-controls { grid-template-columns: 1fr 1fr; border-right: 0; border-bottom: 1px solid #c7d1ca; }
.order-form .tour-connection-controls { grid-column: 1 / -1; }
.order-form .tour-style-assistance { grid-column: 1 / -1; }
.order-form .tour-style-stage { padding: 24px; }
.order-form .tour-style-preview { min-height: 520px; }
.order-form .tour-style-editor-foot { padding: 18px 26px; }

@media (max-width: 980px) {
  .tour-style-workspace { grid-template-columns: 1fr; }
  .tour-style-controls { grid-template-columns: 1fr 1fr; border-right: 0; border-bottom: 1px solid #c7d1ca; }
  .tour-connection-controls { grid-column: 1 / -1; }
  .tour-style-assistance { grid-column: 1 / -1; }
  .tour-style-preview { min-height: 560px; }
}

@media (max-width: 720px) {
  .tour-style-editor-head { grid-template-columns: 1fr; gap: 18px; padding: 25px 20px; }
  .tour-style-live-status { min-width: 0; padding: 12px 0 0; border-top: 1px solid #c7d1ca; border-left: 0; }
  .tour-style-controls,
  .order-form .tour-style-controls { grid-template-columns: 1fr; padding: 24px 18px; }
  .tour-connection-controls,
  .order-form .tour-connection-controls { grid-column: auto; }
  .tour-style-assistance { grid-column: auto; }
  .tour-style-stage,
  .order-form .tour-style-stage { padding: 14px; }
  .tour-style-preview,
  .order-form .tour-style-preview { min-height: 470px; }
  .tour-preview-plan { top: 76px; right: 12px; width: 52%; padding: 8px; }
  .tour-preview-topbar { top: 12px; right: 12px; left: 12px; }
  .tour-preview-scenes { right: 12px; bottom: 12px; left: 12px; }
  .tour-preview-hotspot { bottom: 108px; }
  .tour-style-editor-foot { display: grid; padding: 20px; }
  .tour-style-editor-foot .button { width: 100%; }
  .tour-preview-caption { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .tour-palette-grid { grid-template-columns: 1fr; }
  .tour-style-preview,
  .order-form .tour-style-preview { min-height: 430px; }
  .tour-preview-plan { width: 58%; }
  .tour-preview-plan .plan-labels text { font-size: 9px; }
}

/* Luxury editorial refresh */
:root {
  --ink: #101510;
  --ink-soft: #253029;
  --forest: #123d2a;
  --forest-deep: #071c12;
  --gold: #e1b340;
  --gold-dark: #b88c24;
  --paper: #f7f7f3;
  --mist: #edf0ed;
  --line: #d9ddd8;
  --muted: #5f6962;
  --shadow: 0 30px 90px rgba(7, 28, 18, .12);
}

body {
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
}

.shell {
  width: min(1280px, calc(100% - 64px));
}

.site-header {
  background: rgba(247, 247, 243, .86);
  border-bottom-color: rgba(16, 21, 16, .08);
  backdrop-filter: blur(24px) saturate(130%);
}

.header-inner { min-height: 72px; }

.brand {
  gap: 11px;
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.brand-logo { width: 38px; height: 38px; }
.main-navigation { gap: 30px; }

.main-navigation > a:not(.button) {
  color: #465049;
  font-size: 13px;
  font-weight: 700;
}

.button {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 7px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover { box-shadow: 0 12px 30px rgba(7, 28, 18, .14); }
.button-small { min-height: 42px; padding-inline: 19px; }

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero {
  min-height: min(820px, calc(100svh - 120px));
  align-items: center;
}

.hero-image,
.hero-video {
  transform: scale(1.015);
  object-position: 55% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 17, 10, .88) 0%, rgba(4, 17, 10, .66) 48%, rgba(4, 17, 10, .1) 82%),
    linear-gradient(0deg, rgba(4, 17, 10, .34) 0%, transparent 50%);
}

.hero-content { padding-block: 110px 90px; }
.hero .eyebrow { margin-bottom: 26px; }

.hero h1 {
  max-width: 1050px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: .94;
  text-wrap: balance;
}

.hero h1 span { display: block; }
.hero h1 span:last-child { color: rgba(255, 255, 255, .82); }

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.trust-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-list {
  min-height: 100px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-list span {
  padding: 20px 28px;
  display: grid;
  gap: 4px;
  border-left-color: var(--line);
  color: #69726c;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.trust-list span strong { color: var(--ink); font-size: 14px; }

.section { padding-block: clamp(100px, 10vw, 156px); }

.eyebrow {
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: .18em;
}

.section-heading { margin-bottom: 62px; }

.section-heading h2,
.demo-copy h2,
.transparency-layout h2,
.order-cta h2 {
  margin-bottom: 26px;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: .98;
}

.section-heading > p:last-child,
.split-heading > p,
.demo-copy > p,
.transparency-layout p,
.order-cta p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
}

.split-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .65fr);
  gap: 110px;
}

#video-demo { background: #071c12; }

.demo-layout {
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 8vw, 120px);
}

.demo-copy h2 { font-size: clamp(46px, 4.4vw, 64px); }

.demo-copy .plain-list { margin-block: 30px; gap: 16px; }

.demo-copy .transparency-note {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .55);
}

.video-process-visual {
  border: 0;
  border-radius: 8px;
  background: #0a130d;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .36);
}

.property-slideshow-frame {
  min-height: 630px;
  aspect-ratio: 5 / 4;
}

.video-process-visual figcaption { padding: 20px 22px; }
#tour-examples { background: #f7f7f3; }
.example-grid { gap: 42px; }

.example-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.example-media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 28, 18, .1);
}

.example-media img { transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.example-media:hover img { transform: scale(1.035); }

.media-action {
  left: 22px;
  bottom: 22px;
  min-height: 44px;
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.example-body { padding: 32px 4px 0; }
.example-body h3 { font-size: clamp(32px, 3vw, 43px); }
#process { background: #e9eeea; }

.process-list {
  gap: 0;
  border-top: 1px solid #bdc7bf;
}

.process-list li,
.process-list li:last-child {
  min-height: 280px;
  padding: 34px 30px;
  border: 0;
  border-right: 1px solid #bdc7bf;
  background: transparent;
}

.process-list li:last-child { border-right: 0; }
.process-list li > span { margin-bottom: 72px; }

.source-value-note {
  max-width: 760px;
  margin-top: 36px;
  padding: 0 0 0 22px;
  background: transparent;
}

.photo-guide-workspace { box-shadow: 0 32px 90px rgba(7, 28, 18, .1); }
.photo-guide-stage { min-height: 650px; }
.photo-proof-grid { gap: 28px; }

.photo-proof {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 28, 18, .07);
}

.pricing-arena { background: #081b12; }

.pricing-game {
  padding: clamp(26px, 4vw, 50px);
  border-color: rgba(225, 179, 64, .28);
  border-radius: 8px;
  background: #10281b;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .3);
}

.pricing-choice {
  min-height: 360px;
  padding: 36px;
  border-radius: 8px;
  background: #173323;
}

.pricing-choice.selected { background: #1c402b; }

.pricing-result {
  padding: 28px 30px;
  border-radius: 6px;
}

.testimonial-layout { gap: 24px; }

.testimonial-proof-grid {
  gap: 18px;
  border: 0;
}

.proof-card,
.proof-card:first-child {
  min-height: 320px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proof-card-featured { background: #e8eeea; }
.faq-layout { gap: 120px; }
.faq-list summary { padding-block: 26px; font-size: 17px; }

#contact {
  background: #0a2418;
  color: #fff;
}

#contact .section-heading h2 { color: #fff; }
#contact .section-heading > p,
#contact .section-heading .text-link { color: rgba(255, 255, 255, .68); }

.contact-form {
  padding: 42px;
  border-color: rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .26);
}

.site-footer { padding-top: 80px; background: #050f09; }

/* Shared premium treatment for product and guide landing pages. */
.service-hero { min-height: min(760px, calc(100svh - 72px)); }

.service-hero-overlay {
  background: linear-gradient(90deg, rgba(4, 17, 10, .88), rgba(4, 17, 10, .52) 54%, rgba(4, 17, 10, .08));
}

.service-hero h1,
.resource-hero h1 {
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: .96;
}

.service-facts { background: #fff; }
.service-fact-grid > div { padding-block: 27px; }
.service-feature-grid { gap: 20px; }

.service-feature-grid article,
.resource-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 28, 18, .06);
}

@media (max-width: 1000px) {
  .shell { width: min(100% - 40px, 1280px); }
  .hero { min-height: 760px; }

  .demo-layout,
  .split-heading,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .property-slideshow-frame { min-height: 560px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }

  .process-list li:nth-child(-n+2) {
    border-bottom: 1px solid #bdc7bf;
  }

  .sample-feedback-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1280px); }
  .header-inner { min-height: 64px; }
  .brand { font-size: 18px; }
  .brand-logo { width: 35px; height: 35px; }

  .hero {
    min-height: 600px;
    align-items: flex-end;
  }

  .hero-content { padding-block: 92px 50px; }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
    line-height: .96;
  }

  .hero h1 span { display: inline; }
  .hero-lead { font-size: 17px; }

  .hero .button-row {
    display: grid;
    align-items: stretch;
  }

  .hero .button,
  .hero .text-link { width: 100%; }

  .hero .text-link {
    min-height: 44px;
    justify-content: center;
  }

  .trust-list { grid-template-columns: repeat(2, 1fr); }

  .trust-list span {
    min-height: 92px;
    padding: 18px;
  }

  .trust-list span:nth-child(3),
  .trust-list span:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding-block: 88px; }
  .section-heading { margin-bottom: 40px; }

  .section-heading h2,
  .demo-copy h2 { font-size: clamp(40px, 12vw, 54px); }

  .example-grid,
  .pricing-choice-grid,
  .testimonial-proof-grid,
  .sample-feedback-grid,
  .photo-proof-grid { grid-template-columns: 1fr; }

  .sample-quote-card {
    min-height: 0;
    padding: 26px;
  }

  .example-media { aspect-ratio: 4 / 3; }

  .property-slideshow-frame,
  .photo-guide-stage { min-height: 500px; }

  .process-list { grid-template-columns: 1fr; }

  .process-list li,
  .process-list li:nth-child(2),
  .process-list li:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #bdc7bf;
  }

  .process-list li:last-child { border-bottom: 0; }
  .process-list li > span { margin-bottom: 36px; }

  .pricing-game,
  .pricing-choice,
  .proof-card,
  .contact-form { padding: 26px; }

  .pricing-result { align-items: stretch; }
  .pricing-result .button { width: 100%; }
  .footer-grid { gap: 36px; }
}
