:root {
  color-scheme: light;
  --ink: #111713;
  --muted: #657269;
  --line: #dce1e6;
  --surface: #f7f5ef;
  --surface-strong: #edf1f4;
  --accent: #146b43;
  --accent-strong: #0c4f31;
  --accent-bright: #c5f36b;
  --accent-bright-hover: #d3ff82;
  --warm: #2f73b8;
  --deep: #0e1728;
  --deep-soft: #15263f;
  --court-blue: #2f73b8;
  --court-purple: #7051a8;
  --buffer-gray: #838b94;
  --wall-navy: #0e1728;
  --white: #ffffff;
  --page-bg: #f6f7f3;
  --page-bg-warm: #fbfaf6;
  --panel: #ffffff;
  --panel-subtle: #f1f4f0;
  --panel-tinted: #edf7f1;
  --panel-dark: #101d2b;
  --panel-dark-soft: #172738;
  --text: var(--ink);
  --text-muted: #59665d;
  --text-soft: rgba(17, 23, 19, 0.72);
  --text-inverse: #ffffff;
  --text-inverse-muted: rgba(255, 255, 255, 0.76);
  --link-inverse: #9bd4ff;
  --border-subtle: rgba(17, 23, 19, 0.1);
  --border-medium: rgba(17, 23, 19, 0.16);
  --border-inverse: rgba(255, 255, 255, 0.16);
  --accent-soft: #e3f2e9;
  --accent-muted: rgba(20, 107, 67, 0.16);
  --accent-ring: rgba(20, 107, 67, 0.18);
  --focus-ring: rgba(197, 243, 107, 0.56);
  --info: #2f73b8;
  --info-soft: #e8f2fb;
  --warning: #9b6a1f;
  --warning-soft: #fff4da;
  --danger: #a33a32;
  --danger-soft: #fdecea;
  --success: #146b43;
  --success-soft: #e7f2ec;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --space-section-y: clamp(42px, 5.8vw, 70px);
  --space-section-x: clamp(18px, 4vw, 34px);
  --space-page-x: clamp(20px, 7vw, 92px);
  --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  --font-size-xs: 0.82rem;
  --font-size-sm: 0.9rem;
  --font-size-base: 1rem;
  --font-size-md: 1.06rem;
  --font-size-lg: 1.18rem;
  --font-size-section-title: clamp(1.6rem, 2.45vw, 2.22rem);
  --font-size-page-title: clamp(2.3rem, 4.7vw, 4.35rem);
  --font-size-hero-title: clamp(2.45rem, 4.7vw, 4.45rem);
  --line-tight: 1.14;
  --line-title: 1.02;
  --line-copy: 1.65;
  --shadow: 0 18px 48px rgba(16, 23, 19, 0.08);
  --shadow-strong: 0 28px 80px rgba(6, 15, 10, 0.22);
  --shadow-soft: 0 12px 34px rgba(17, 23, 19, 0.05);
  --shadow-panel: 0 18px 46px rgba(17, 23, 19, 0.08);
  --content-max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--deep);
  font-family: var(--font-family-base);
  line-height: var(--line-copy);
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--accent);
}

main {
  overflow: hidden;
  background: var(--page-bg-warm);
}

a {
  color: var(--accent-strong);
  text-underline-offset: 4px;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 40px);
  border-bottom: 1px solid var(--border-inverse);
  background: rgba(12, 22, 34, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(7, 12, 18, 0.18);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, var(--content-max));
  min-height: 44px;
  margin: 0 auto;
}

.messages {
  max-width: 1180px;
  margin: 14px auto 0;
  padding: 0 clamp(18px, 4vw, 32px);
}

.message {
  margin: 0;
  padding: 11px 14px;
  border: 1px solid var(--accent-muted);
  border-radius: var(--radius-md);
  background: var(--success-soft);
  color: var(--success);
  font-weight: 700;
}

.message.error {
  border-color: rgba(163, 58, 50, 0.22);
  background: var(--danger-soft);
  color: var(--danger);
}

.message.warning {
  border-color: rgba(155, 106, 31, 0.24);
  background: var(--warning-soft);
  color: var(--warning);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-inverse);
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav-main,
.site-nav-priority,
.site-nav-account {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.site-nav-priority {
  gap: 6px;
}

.site-nav-account {
  padding-left: 4px;
}

.nav-account-user {
  max-width: 150px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-account-form {
  display: inline-flex;
  margin: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  content: "";
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

.site-nav a:hover {
  color: var(--text-inverse);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--text-inverse);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.nav-cta,
.site-nav a.nav-account-link {
  border-radius: var(--radius-md);
}

.site-nav a.nav-cta::after,
.site-nav a.nav-account-link::after {
  display: none;
}

.site-nav a.nav-cta {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.site-nav a.nav-cta-primary {
  background: var(--accent);
  color: var(--white);
}

.site-nav a.nav-cta-primary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: var(--accent-strong);
  color: var(--white);
}

.site-nav a.nav-cta-primary.is-active {
  border-color: rgba(255, 255, 255, 0.36);
  background: var(--accent-strong);
  color: var(--white);
}

.site-nav a.nav-cta-secondary {
  background: transparent;
  color: var(--text-inverse);
}

.site-nav a.nav-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--accent-strong);
  color: var(--text-inverse);
}

.site-nav a.nav-cta-secondary.is-active,
.site-nav a.nav-account-link.is-active {
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--accent-strong);
  color: var(--text-inverse);
}

.site-nav a.nav-account-link {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 760;
}

.site-nav a.nav-account-link:hover {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text-inverse);
}

.nav-account-button {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
}

.nav-account-button:hover,
.nav-account-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text-inverse);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 390px);
  gap: clamp(28px, 5vw, 62px);
  min-height: min(720px, calc(100svh - 68px));
  align-items: center;
  padding-block: clamp(72px, 10vw, 126px);
  padding-inline: max(clamp(20px, 7vw, 92px), calc((100vw - var(--content-max)) / 2));
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(8, 14, 26, 0.98), rgba(10, 23, 42, 0.92) 44%, rgba(45, 39, 78, 0.62)),
    linear-gradient(90deg, rgba(112, 81, 168, 0.3) 0 18%, rgba(131, 139, 148, 0.18) 18% 25%, rgba(47, 115, 184, 0.25) 25% 75%, rgba(131, 139, 148, 0.18) 75% 82%, rgba(112, 81, 168, 0.3) 82% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 84px),
    var(--wall-navy);
}

.hero::before {
  position: absolute;
  right: clamp(20px, 8vw, 132px);
  bottom: clamp(32px, 8vw, 88px);
  z-index: -1;
  width: min(46vw, 560px);
  aspect-ratio: 1.78;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent 0 49.6%, rgba(255, 255, 255, 0.2) 49.6% 50.4%, transparent 50.4%),
    linear-gradient(0deg, transparent 0 31%, rgba(255, 255, 255, 0.16) 31% 32%, transparent 32% 68%, rgba(255, 255, 255, 0.16) 68% 69%, transparent 69%),
    linear-gradient(90deg, rgba(112, 81, 168, 0.76) 0 19%, rgba(131, 139, 148, 0.7) 19% 25%, rgba(47, 115, 184, 0.78) 25% 75%, rgba(131, 139, 148, 0.7) 75% 81%, rgba(112, 81, 168, 0.76) 81% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  opacity: 0.68;
  transform: rotate(-7deg);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 49.85%, rgba(255, 255, 255, 0.16) 49.85% 50.15%, transparent 50.15%),
    linear-gradient(0deg, transparent 0 49.8%, rgba(255, 255, 255, 0.12) 49.8% 50.2%, transparent 50.2%);
  opacity: 0.16;
}

.hero-copy {
  align-self: end;
  max-width: 760px;
}

.hero-logo {
  width: min(100%, 390px);
  max-height: 430px;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(6, 15, 10, 0.28));
}

.hero-venue-photo {
  display: block;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  box-shadow: var(--shadow-strong);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: var(--font-size-hero-title);
  line-height: var(--line-title);
  text-wrap: balance;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--text-inverse-muted);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
}

.hero-actions,
.page-title-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics,
.page-title-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics div,
.page-title-meta span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.075);
}

.hero-metrics strong {
  font-size: 1.05rem;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-contact-card {
  display: grid;
  gap: 5px;
  min-height: 90px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.075);
}

.hero-contact-card.wide {
  grid-column: 1 / -1;
  min-height: 66px;
}

.hero-contact-card span,
.hero-contact-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-contact-card strong {
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.page-title-meta span {
  align-items: center;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.page-title-meta:empty {
  display: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: var(--font-size-xs);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-title .eyebrow,
.band .eyebrow {
  color: var(--link-inverse);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-section-y) var(--space-section-x);
}

.section.narrow {
  max-width: 620px;
}

.section.document-panel {
  max-width: 980px;
}

.staff-sop-section {
  padding-top: 26px;
  padding-bottom: 0;
}

.staff-sop-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--accent-muted);
  border-radius: var(--radius-md);
  background: var(--panel-tinted);
}

.staff-sop-callout h2,
.staff-sop-callout p {
  margin: 0;
}

.staff-sop-callout h2 {
  font-size: 1.22rem;
}

.staff-sop-callout p:not(.eyebrow) {
  color: var(--muted);
}

.staff-sop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.staff-quote-section {
  padding-top: 34px;
}

.staff-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.staff-quote-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(36, 75, 112, 0.16);
  border-radius: var(--radius-md);
  background: #f8fbff;
}

.staff-quote-card h3,
.staff-quote-card p,
.staff-quote-footnote {
  margin: 0;
}

.staff-quote-card h3 {
  font-size: 1.12rem;
  line-height: 1.24;
}

.staff-quote-card > p,
.staff-quote-note,
.staff-quote-footnote {
  color: var(--muted);
}

.staff-quote-price {
  color: var(--accent);
  font-size: 1.16rem;
}

.staff-quote-note {
  padding: 10px 12px;
  border: 1px solid rgba(20, 107, 67, 0.12);
  border-radius: 8px;
  background: rgba(20, 107, 67, 0.06);
}

.staff-quote-footnote {
  margin-top: 14px;
  font-size: 0.94rem;
  font-weight: 760;
}

.career-role-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.career-role-list div {
  display: grid;
  gap: 5px;
}

.career-role-list strong,
.career-role-list p {
  margin: 0;
}

.team-package-priority {
  padding-top: clamp(24px, 3vw, 36px);
}

.team-package-priority .section-heading {
  margin-bottom: 18px;
}

.team-building-brief {
  padding-top: clamp(18px, 2.8vw, 32px);
}

.section h2 {
  margin-top: 0;
  font-size: var(--font-size-section-title);
  line-height: var(--line-tight);
  text-wrap: balance;
}

.section > p,
.section-heading p,
.split > div > p {
  font-size: 1.02rem;
}

.page-title {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 7vw, 92px) clamp(34px, 4.4vw, 54px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 14, 26, 0.98), rgba(12, 27, 49, 0.94) 58%, rgba(55, 46, 92, 0.78)),
    linear-gradient(90deg, rgba(112, 81, 168, 0.22) 0 18%, rgba(131, 139, 148, 0.13) 18% 25%, rgba(47, 115, 184, 0.2) 25% 75%, rgba(131, 139, 148, 0.13) 75% 82%, rgba(112, 81, 168, 0.22) 82% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 92px),
    var(--wall-navy);
}

.compact-title {
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.page-title.contained-title {
  max-width: var(--content-max);
  margin: clamp(18px, 3vw, 34px) auto 0;
  padding-right: clamp(24px, 5vw, 76px);
  padding-left: clamp(24px, 5vw, 76px);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.page-title::after {
  position: absolute;
  right: clamp(20px, 8vw, 108px);
  bottom: -30px;
  z-index: -1;
  width: min(36vw, 420px);
  aspect-ratio: 1.9;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(112, 81, 168, 0.44) 0 19%, rgba(131, 139, 148, 0.36) 19% 25%, rgba(47, 115, 184, 0.46) 25% 75%, rgba(131, 139, 148, 0.36) 75% 81%, rgba(112, 81, 168, 0.44) 81% 100%);
  opacity: 0.42;
  transform: rotate(-5deg);
}

.page-title.contained-title::after {
  right: clamp(18px, 7vw, 104px);
  bottom: -18px;
  transform: rotate(-5deg);
}

.page-title h1 {
  max-width: 960px;
  margin: 0;
  font-size: var(--font-size-page-title);
  line-height: var(--line-title);
  text-wrap: balance;
}

.page-title.contained-title .page-title-meta {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.page-title p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--text-inverse-muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.page-title .button.ghost {
  color: var(--white);
}

.page-title-actions {
  margin-top: 24px;
}

.page-title.contained-title .page-title-actions {
  justify-content: flex-start;
}

.page-title.contained-title .page-title-meta span {
  justify-items: start;
  text-align: left;
}

.editorial-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  max-width: var(--content-max);
  min-height: auto;
  margin: clamp(18px, 3vw, 34px) auto 0;
  padding: clamp(48px, 6vw, 76px) clamp(24px, 5vw, 76px) clamp(38px, 5vw, 60px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--text-inverse);
  background:
    linear-gradient(110deg, rgba(8, 14, 26, 0.98), rgba(12, 27, 49, 0.94) 58%, rgba(55, 46, 92, 0.78)),
    var(--deep);
}

.editorial-hero-copy {
  display: grid;
  gap: 18px;
  align-content: end;
  max-width: 720px;
}

.editorial-hero-kicker {
  margin: 0;
  color: var(--link-inverse);
  font-size: var(--font-size-xs);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.editorial-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--text-inverse);
  font-size: var(--font-size-page-title);
  line-height: var(--line-title);
  text-wrap: balance;
}

.editorial-hero-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.editorial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.editorial-hero-media {
  position: relative;
  display: grid;
  min-height: clamp(220px, 26vw, 360px);
  align-items: end;
}

.editorial-hero-media img {
  display: block;
  width: min(100%, 420px);
  max-height: 420px;
  justify-self: center;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.editorial-hero-mark {
  display: grid;
  width: min(100%, 320px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.editorial-hero-mark img {
  width: min(72%, 230px);
  border: 0;
  box-shadow: none;
}

.editorial-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--border-inverse);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.11);
}

.editorial-hero-meta span {
  display: grid;
  min-height: 70px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--font-size-sm);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(290px, 0.82fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: start;
}

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

.section-heading h2 {
  margin: 0;
}

.section-heading a {
  font-weight: 800;
  text-decoration: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.card-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.story-band {
  max-width: var(--content-max);
  margin: clamp(24px, 4vw, 42px) auto;
  padding-right: clamp(24px, 5vw, 76px);
  padding-left: clamp(24px, 5vw, 76px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--text-inverse);
  background:
    linear-gradient(120deg, rgba(8, 14, 26, 0.98), rgba(18, 33, 48, 0.96) 58%, rgba(12, 79, 49, 0.72)),
    var(--deep);
}

.story-band .section-heading {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.story-band .eyebrow {
  color: var(--link-inverse);
}

.story-band h2 {
  color: var(--text-inverse);
}

.story-band .section-heading p,
.story-band p {
  color: rgba(255, 255, 255, 0.76);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 54px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.story-aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.story-quote {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-inverse);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.45;
}

.story-quote cite {
  display: block;
  margin-top: 14px;
  color: var(--link-inverse);
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: 850;
}

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

.keyword-card,
.metric-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 156px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
}

.keyword-card span,
.metric-card span {
  color: var(--link-inverse);
  font-size: var(--font-size-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.keyword-card h3,
.metric-card strong {
  margin: 0;
  color: var(--text-inverse);
  font-size: clamp(1.14rem, 2vw, 1.46rem);
  line-height: 1.16;
}

.keyword-card p,
.metric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.editorial-feature.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.editorial-feature.reverse .editorial-feature-media {
  order: 2;
}

.editorial-feature-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--panel-subtle);
  box-shadow: var(--shadow-panel);
}

.editorial-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-feature-placeholder {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(20, 107, 67, 0.14), rgba(47, 115, 184, 0.16)),
    var(--panel-subtle);
  color: var(--accent-strong);
  font-weight: 900;
  text-align: center;
}

.editorial-feature-copy {
  display: grid;
  gap: 16px;
}

.editorial-feature-copy h2,
.editorial-feature-copy h3,
.editorial-feature-copy p {
  margin: 0;
}

.editorial-feature-copy p {
  color: var(--text-muted);
}

.editorial-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  counter-reset: editorial-step;
}

.editorial-timeline-item {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  counter-increment: editorial-step;
}

.editorial-timeline-item::before {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  content: counter(editorial-step);
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: var(--font-size-xs);
  font-weight: 900;
}

.editorial-timeline-item h3,
.editorial-timeline-item p {
  margin: 0;
}

.editorial-timeline-item p {
  color: var(--text-muted);
}

.quick-actions-section {
  padding-top: clamp(32px, 4.5vw, 52px);
  padding-bottom: clamp(30px, 4.2vw, 48px);
}

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

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

.funnel-card {
  display: grid;
  gap: 12px;
  min-height: 250px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.funnel-card:hover {
  border-color: rgba(20, 107, 67, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.funnel-card span {
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.funnel-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  line-height: 1.18;
}

.funnel-card p {
  margin: 0;
  color: var(--text-muted);
}

.funnel-card strong {
  align-self: end;
  color: var(--accent-strong);
  font-size: 0.94rem;
}

.quick-action {
  display: grid;
  gap: 7px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(17, 23, 19, 0.11);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(17, 23, 19, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.quick-action:hover {
  border-color: rgba(20, 107, 67, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quick-action span {
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 900;
}

.quick-action strong {
  font-size: 1.05rem;
  line-height: 1.26;
}

.quick-action small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.venue-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}

.venue-photo-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venue-photo-card {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(17, 23, 19, 0.06);
}

.venue-photo-card:first-child {
  grid-row: span 2;
}

.venue-photo-grid.large .venue-photo-card:first-child {
  grid-row: span 1;
}

.venue-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.venue-photo-card:hover img {
  transform: scale(1.025);
}

.venue-photo-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 18, 0.78));
  font-size: 0.88rem;
  font-weight: 850;
}

.venue-gallery-heading {
  align-items: center;
}

.gallery-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.venue-gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: start;
}

.venue-gallery-feature {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 23, 19, 0.08);
}

.venue-gallery-feature a {
  display: block;
}

.venue-gallery-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-strong);
}

.venue-gallery-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid rgba(17, 23, 19, 0.08);
}

.venue-gallery-caption span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.venue-gallery-caption strong {
  overflow-wrap: anywhere;
  font-size: 1.02rem;
  line-height: 1.25;
}

.venue-gallery-caption small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.venue-gallery-caption a {
  flex: 0 0 auto;
  font-weight: 850;
  text-decoration: none;
}

.venue-gallery-browser,
.venue-gallery-groups {
  display: grid;
  gap: 16px;
}

.venue-gallery-groups {
  max-height: 820px;
  overflow: auto;
  padding-right: 4px;
}

.venue-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.venue-gallery-filters a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.venue-gallery-filters a span {
  color: var(--muted);
  font-size: 0.78rem;
}

.venue-gallery-group {
  scroll-margin-top: 92px;
}

.venue-gallery-group h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.venue-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.venue-gallery-thumb {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(17, 23, 19, 0.08);
}

.venue-gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.84;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.venue-gallery-thumb span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 10px 9px;
  background: linear-gradient(180deg, transparent, rgba(7, 12, 18, 0.8));
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.venue-gallery-thumb:hover img,
.venue-gallery-thumb:focus-visible img {
  opacity: 1;
  transform: scale(1.03);
}

.venue-gallery-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(20, 107, 67, 0.16), 0 12px 30px rgba(17, 23, 19, 0.1);
}

.venue-gallery-thumb.is-active img {
  opacity: 1;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

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

.team-package-guide {
  max-width: var(--content-max);
  margin: 0 auto clamp(22px, 4vw, 34px);
}

.team-package-guide-list {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
}

.team-package-guide-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.team-package-guide-list span {
  color: var(--accent);
  font-size: var(--font-size-xs);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.team-package-guide-list strong {
  color: var(--text);
  font-size: 1rem;
}

.team-package-guide-list p {
  margin: 0;
  color: var(--text-muted);
}

.package-card,
.path-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.package-card h3,
.path-card h3,
.path-card p,
.path-facts,
.service-detail-facts {
  margin: 0;
}

.package-card h3,
.path-card h3 {
  font-size: 1.16rem;
  line-height: 1.22;
}

.package-card p,
.faq-grid p {
  margin: 0;
  color: var(--text-muted);
}

.detail-grid,
.plan-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.recommended-plan-list {
  display: grid;
  gap: 16px;
}

.recommended-plan-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.recommended-plan-summary,
.recommended-plan-flow,
.recommended-plan-outcome {
  display: grid;
  gap: 12px;
  align-content: start;
}

.recommended-plan-card h3,
.recommended-plan-card h4,
.recommended-plan-card p {
  margin: 0;
}

.recommended-plan-card h3 {
  font-size: 1.18rem;
  line-height: 1.22;
}

.recommended-plan-card h4 {
  font-size: 0.96rem;
  line-height: 1.3;
}

.recommended-plan-card p {
  color: var(--text-muted);
}

.detail-card,
.plan-detail-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.detail-card h3,
.plan-detail-card h3,
.plan-detail-card h4,
.detail-card p,
.plan-detail-card p,
.detail-list,
.schedule-list {
  margin: 0;
}

.detail-card h3,
.plan-detail-card h3 {
  font-size: 1.15rem;
  line-height: 1.22;
}

.plan-detail-card h4 {
  font-size: 0.96rem;
  line-height: 1.3;
}

.detail-card p,
.plan-detail-card p {
  color: var(--text-muted);
}

.detail-list,
.schedule-list {
  display: grid;
  gap: 8px;
  padding-left: 1.15em;
  color: rgba(17, 23, 19, 0.76);
}

.detail-list li,
.schedule-list li {
  padding-left: 2px;
}

.schedule-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}

.schedule-list span {
  color: var(--muted);
}

.plan-detail-head {
  display: grid;
  gap: 9px;
}

.plan-detail-grid {
  align-items: start;
}

.path-card > a {
  font-weight: 850;
  text-decoration: none;
}

.editorial-path-card {
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.editorial-path-media {
  display: grid;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 107, 67, 0.14), rgba(47, 115, 184, 0.16)),
    var(--panel-subtle);
  color: var(--accent-strong);
  font-weight: 900;
}

.editorial-path-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.editorial-path-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.path-facts,
.service-detail-facts {
  display: grid;
  gap: 9px;
}

.path-facts div,
.service-detail-facts div {
  display: grid;
  gap: 2px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.path-facts dt,
.service-detail-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.path-facts dd,
.service-detail-facts dd {
  margin: 0;
  color: rgba(17, 23, 19, 0.82);
  font-weight: 780;
}

.service-detail-facts {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
}

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

.faq-grid article {
  padding: 18px;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 23, 19, 0.04);
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.card {
  display: block;
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.card:hover {
  border-color: rgba(20, 107, 67, 0.3);
  box-shadow: var(--shadow-panel);
  transform: translateY(-2px);
}

.card h2,
.card h3 {
  margin: 12px 0 10px;
  line-height: 1.22;
  letter-spacing: 0;
}

.card p {
  color: var(--text-muted);
}

.card > a:not(.button) {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 850;
  text-decoration: none;
}

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.asset-card img,
.asset-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.activity-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-pills a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.filter-pills a.active,
.filter-pills a:hover {
  border-color: rgba(20, 107, 67, 0.34);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.activity-card {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.activity-card:hover {
  border-color: rgba(20, 107, 67, 0.28);
  box-shadow: var(--shadow-panel);
  transform: translateY(-2px);
}

.activity-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: var(--text);
  text-decoration: none;
}

.activity-card-media {
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 23, 19, 0.08);
  background:
    linear-gradient(135deg, rgba(20, 107, 67, 0.14), rgba(47, 115, 184, 0.16)),
    var(--surface-strong);
  color: var(--accent-strong);
  font-weight: 900;
}

.activity-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-card-media span {
  padding: 0 18px;
  text-align: center;
}

.activity-card-body {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.activity-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.activity-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.22;
}

.activity-card p {
  margin: 0;
  color: var(--text-muted);
}

.activity-card .activity-card-org {
  color: rgba(17, 23, 19, 0.72);
  font-size: 0.9rem;
  font-weight: 850;
}

.activity-card .activity-card-case {
  color: rgba(17, 23, 19, 0.62);
  font-size: 0.86rem;
  font-weight: 750;
}

.activity-detail-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.42fr);
}

.activity-cover-image,
.activity-cover-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.activity-cover-image {
  display: block;
  object-fit: cover;
}

.activity-cover-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(20, 107, 67, 0.14), rgba(47, 115, 184, 0.16)),
    var(--surface-strong);
  color: var(--accent-strong);
  font-size: 1.12rem;
  font-weight: 900;
}

.activity-detail-copy {
  max-width: 820px;
  margin-top: 24px;
}

.activity-detail-copy h2,
.activity-photo-section h2 {
  margin-top: 28px;
  font-size: 1.34rem;
}

.activity-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.activity-photo-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 23, 19, 0.04);
}

.activity-photo-card a,
.activity-photo-card img,
.activity-photo-card video {
  display: block;
}

.activity-photo-card img,
.activity-photo-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #101820;
}

.activity-photo-card figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.activity-asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.activity-asset-card {
  overflow: hidden;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 23, 19, 0.04);
}

.activity-asset-media {
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 23, 19, 0.08);
  background: var(--surface-strong);
  color: var(--muted);
  font-weight: 900;
}

.activity-asset-media img,
.activity-asset-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-asset-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.activity-asset-body h3,
.activity-asset-body p {
  margin: 0;
}

.activity-asset-body h3 {
  font-size: 1.06rem;
  line-height: 1.25;
}

.activity-asset-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.beautify-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.48fr);
}

.beautify-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.beautify-panel h2,
.beautify-option-group h3,
.beautify-prompt-head h2 {
  margin: 0;
}

.beautify-option-groups {
  display: grid;
  gap: 18px;
}

.beautify-option-group {
  display: grid;
  gap: 10px;
}

.beautify-option-group h3 {
  font-size: 1.03rem;
  line-height: 1.3;
}

.beautify-option-list {
  display: grid;
  gap: 10px;
}

.beautify-field-label {
  color: rgba(17, 23, 19, 0.82);
  font-weight: 850;
}

.beautify-extra-textarea,
.beautify-prompt-textarea {
  resize: vertical;
}

.beautify-prompt-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.beautify-prompt-textarea {
  min-height: 520px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  line-height: 1.55;
}

.beautify-side-panel {
  display: grid;
  gap: 14px;
}

.beautify-preview {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.file-badge,
.file-preview {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--muted);
  font-weight: 850;
}

.asset-preview {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid var(--accent-muted);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 850;
}

.band {
  max-width: none;
  padding-right: clamp(18px, 6vw, 92px);
  padding-left: clamp(18px, 6vw, 92px);
  color: var(--white);
  background:
    linear-gradient(105deg, #0e1728, #122943 58%, #30284f),
    var(--deep);
}

.band > .section-heading,
.band > .price-strip,
.band > .price-table,
.band > .muted {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.band .section-heading {
  margin-bottom: 24px;
}

.band .section-heading a,
.band a {
  color: var(--link-inverse);
}

.band > .muted,
.band > .empty {
  color: rgba(255, 255, 255, 0.7);
}

.band > .empty {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.band .price-row .muted {
  color: var(--muted);
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.price-strip div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.price-strip strong {
  font-size: 1.02rem;
}

.price-strip span {
  color: var(--link-inverse);
  font-size: 1.08rem;
  font-weight: 850;
  white-space: nowrap;
}

.price-table {
  display: grid;
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(17, 23, 19, 0.05);
}

.band .price-row {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
}

.price-row h2,
.price-row h3 {
  margin: 0 0 6px;
  line-height: 1.2;
}

.price-row p {
  margin: 0;
  color: var(--muted);
}

.price-number {
  color: var(--accent-strong);
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.price-number span {
  display: inline-block;
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.side-panel,
.info-list {
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-panel);
}

.side-panel h2 {
  margin-top: 0;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.compact-info {
  margin-top: 18px;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.info-list div {
  display: grid;
  grid-template-columns: minmax(86px, max-content) minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.mini-row,
.estimate div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  min-width: 0;
  margin: 0;
  text-align: right;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.mini-row,
.estimate div {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.mini-row:last-child,
.estimate div:last-child {
  border-bottom: 0;
}

.estimate .total {
  color: var(--accent-strong);
  font-size: 1.2rem;
}

.muted,
.empty {
  color: var(--text-muted);
}

.empty {
  margin: 0;
  padding: 16px 18px;
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--panel-subtle);
  font-weight: 760;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin-top: 30px;
}

.form-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-panel);
}

.form-panel p {
  margin: 0;
}

.form-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-panel label {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-weight: 850;
}

.form-more {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel-subtle);
}

.form-more summary {
  cursor: pointer;
  padding: 12px 14px;
  color: var(--accent-strong);
  font-weight: 850;
}

.form-more summary::marker {
  color: var(--accent);
}

.form-more-grid {
  display: grid;
  gap: 14px;
  padding: 0 14px 14px;
}

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

.form-panel .button-row .button {
  width: auto;
}

.errorlist {
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--danger);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 240px) auto;
  gap: 11px;
  margin-bottom: 26px;
}

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

.list-item {
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.list-item h2 {
  margin: 8px 0;
}

.doc-body {
  max-width: 940px;
}

.doc-body h1,
.doc-body h2,
.doc-body h3 {
  line-height: 1.25;
}

.doc-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-panel);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
}

.data-table th,
.data-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  background: var(--panel-subtle);
  color: var(--text-soft);
  font-size: 0.9rem;
}

.compensation-section {
  max-width: 1240px;
  scroll-margin-top: 86px;
  padding-top: clamp(32px, 4.5vw, 52px);
  padding-bottom: clamp(34px, 4.8vw, 56px);
}

.compensation-section .section-heading {
  align-items: start;
  margin-bottom: 16px;
}

.compensation-heading-note {
  max-width: 460px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.compensation-table-wrap {
  box-shadow: 0 10px 30px rgba(17, 23, 19, 0.05);
}

.compensation-comparison-table {
  min-width: 980px;
  table-layout: fixed;
  font-size: 0.92rem;
  line-height: 1.48;
}

.compensation-comparison-table th,
.compensation-comparison-table td,
.compensation-rules-table th,
.compensation-rules-table td {
  padding: 10px 12px;
  vertical-align: top;
  white-space: normal;
}

.compensation-comparison-table thead th,
.compensation-rules-table thead th {
  font-size: 0.84rem;
}

.compensation-comparison-table tbody th {
  width: 15%;
  color: rgba(17, 23, 19, 0.82);
  font-weight: 900;
}

.compensation-comparison-table td,
.compensation-rules-table td {
  color: rgba(17, 23, 19, 0.78);
}

.compensation-rules {
  margin-top: 24px;
}

.compensation-rules h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.compensation-rules-table {
  min-width: 760px;
  font-size: 0.9rem;
}

.doc-body th,
.doc-body td {
  padding: 9px 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.doc-body pre {
  overflow: auto;
  padding: 16px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--surface);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(20, 107, 67, 0.2);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.button:hover {
  background: var(--accent-strong);
  box-shadow: 0 16px 36px rgba(20, 107, 67, 0.28);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(20, 107, 67, 0.18);
}

.button:disabled,
.button[aria-disabled="true"] {
  background: var(--buffer-gray);
  color: rgba(255, 255, 255, 0.76);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: var(--accent);
}

.button.ghost:active {
  background: var(--accent-strong);
}

.button.ghost-dark {
  border-color: rgba(20, 107, 67, 0.38);
  background: transparent;
  color: var(--accent-strong);
  box-shadow: none;
}

.button.ghost-dark:hover {
  border-color: var(--accent-strong);
  background: var(--accent);
  color: var(--white);
}

.button.ghost-dark:active {
  background: var(--accent-strong);
  color: var(--white);
}

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

.contact-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  color: var(--ink);
  font-weight: 850;
}

.link-button {
  margin-left: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.link-button:hover {
  color: var(--accent);
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--text);
  font: inherit;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--accent);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(20, 107, 67, 0.55);
  outline: 3px solid var(--accent-ring);
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: var(--accent-ring);
}

.check-line {
  display: flex;
  gap: 8px;
  align-items: center;
}

.asset-upload-workbench {
  max-width: 1220px;
}

.asset-upload-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

.asset-upload-form {
  gap: 20px;
}

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

.asset-upload-grid .field-full {
  grid-column: 1 / -1;
}

.asset-upload-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 18px;
  align-items: start;
}

.asset-upload-tags > label,
.asset-upload-public > label {
  margin-bottom: 8px;
}

.asset-upload-tags #id_tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px 14px;
  padding: 12px;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: #f8fbf9;
}

.asset-upload-tags #id_tags label,
.asset-upload-public .check-line {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: rgba(17, 23, 19, 0.82);
  font-weight: 760;
}

.asset-upload-public {
  padding: 12px;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: #f8fbf9;
}

.form-actions {
  align-items: center;
}

.asset-upload-side {
  position: sticky;
  top: 94px;
}

.compact-list {
  gap: 10px;
}

.mini-link-row {
  display: grid;
  gap: 3px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(17, 23, 19, 0.08);
  color: inherit;
  text-decoration: none;
}

.mini-link-row:last-child {
  border-bottom: 0;
}

.mini-link-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.check-line input {
  width: auto;
  min-height: auto;
}

.help-text {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.switch-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  cursor: pointer;
}

.switch-line .switch-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.switch-ui {
  position: relative;
  width: 48px;
  height: 28px;
  border: 1px solid rgba(17, 23, 19, 0.2);
  border-radius: 999px;
  background: #e5e9ec;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.switch-ui::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(17, 23, 19, 0.18);
  transition: transform 0.18s ease;
}

.switch-input:checked + .switch-ui {
  border-color: rgba(20, 107, 67, 0.58);
  background: var(--accent);
}

.switch-input:checked + .switch-ui::after {
  transform: translateX(20px);
}

.switch-line strong,
.switch-line small {
  display: block;
}

.switch-line small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.estimate-actions,
.contact-actions {
  margin-top: 18px;
}

.contact-mini {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-mini strong {
  color: var(--ink);
}

.mobile-sticky-cta {
  display: none;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 16px 18px 16px 56px;
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 23, 19, 0.04);
  counter-increment: step;
}

.booking-overview .card {
  min-height: 148px;
}

.booking-estimate-section {
  align-items: start;
}

.steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  content: counter(step);
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.steps span {
  color: var(--muted);
}

.price-sheet-section {
  max-width: 1280px;
}

.price-sheet-image-link {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.price-sheet-image {
  display: block;
  width: 100%;
  height: auto;
}

.price-sheet-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  gap: 8px;
  padding: 28px;
  border: 1px dashed rgba(17, 23, 19, 0.22);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.price-sheet-placeholder strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.rules-doc {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rules-doc h2 {
  margin-top: 30px;
  font-size: 1.25rem;
}

.rules-doc h2:first-child {
  margin-top: 0;
}

.rules-doc ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: rgba(17, 23, 19, 0.82);
}

.doc-callout {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(20, 107, 67, 0.16);
  border-radius: 8px;
  background: #edf7f1;
}

.doc-callout strong {
  color: var(--accent-strong);
}

.doc-callout + .card-grid {
  margin-top: 18px;
}

.activity-conversion-callout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 0;
  margin-bottom: 22px;
}

.activity-conversion-callout strong,
.activity-conversion-callout span {
  grid-column: 1;
}

.activity-conversion-callout .button {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.contract-preview {
  max-width: 1120px;
}

.contract-paper {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contract-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.contract-header p,
.contract-header span {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.contract-header h1 {
  margin: 6px 0;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.contract-paper section {
  margin-top: 26px;
}

.contract-paper h2 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.contract-paper table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
}

.contract-paper th,
.contract-paper td {
  padding: 10px 11px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.contract-paper th {
  width: 18%;
  background: var(--surface);
  color: rgba(17, 23, 19, 0.8);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--border-inverse);
  color: rgba(255, 255, 255, 0.68);
  background: var(--deep);
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.site-footer nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.site-footer a {
  color: var(--link-inverse);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text-inverse);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    gap: 16px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav-main,
  .site-nav-priority,
  .site-nav-account {
    flex-wrap: nowrap;
  }

  .venue-gallery-shell {
    grid-template-columns: 1fr;
  }

  .venue-gallery-groups {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
    padding-bottom: 50px;
  }

  .site-header,
  .hero,
  .page-title,
  .section {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .page-title.contained-title {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    border-radius: var(--radius-md);
  }

  .site-header-inner {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 40px;
  }

  .brand {
    flex: 0 0 auto;
    gap: 8px;
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .site-nav {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav-main a:not(:first-child):not(.is-active) {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 5px 0;
    white-space: nowrap;
  }

  .site-nav a.nav-cta,
  .site-nav a.nav-account-link,
  .nav-account-button {
    padding: 5px 9px;
  }

  .nav-account-user {
    max-width: 120px;
  }

  .site-nav a::after {
    right: 0;
    bottom: -2px;
    left: 0;
  }

  .hero,
  .editorial-hero,
  .editorial-feature,
  .editorial-feature.reverse,
  .story-grid,
  .split,
  .asset-upload-layout,
  .asset-upload-grid,
  .asset-upload-options {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    min-height: auto;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 50px;
    border-radius: var(--radius-md);
    background:
      linear-gradient(145deg, rgba(8, 14, 26, 0.98), rgba(18, 33, 48, 0.98) 58%, rgba(12, 79, 49, 0.74)),
      var(--deep);
  }

  .story-band {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: var(--radius-md);
  }

  .hero-copy,
  .editorial-hero-copy,
  .editorial-hero-media,
  .story-aside,
  .editorial-feature-copy,
  .editorial-feature-media,
  .page-title > *,
  .section > *,
  .card,
  .side-panel,
  .info-list,
  .form-panel,
  .beautify-panel,
  .list-item,
  .price-row,
  .activity-card,
  .activity-photo-card,
  .activity-asset-card,
  .venue-photo-card,
  .venue-gallery-shell,
  .venue-gallery-feature,
  .venue-gallery-browser {
    min-width: 0;
    max-width: 100%;
  }

  .asset-upload-grid .field-full {
    grid-column: auto;
  }

  .asset-upload-side {
    position: static;
  }

  .card-grid,
  .card-grid.compact,
  .funnel-grid,
  .quick-action-grid,
  .path-grid,
  .package-grid,
  .staff-quote-grid,
  .detail-grid,
  .plan-detail-grid,
  .faq-grid,
  .activity-card-grid,
  .activity-photo-grid,
  .activity-asset-grid,
  .venue-photo-grid,
  .price-strip,
  .price-table,
  .list-stack,
  .table-wrap,
  .hero-contact-grid,
  .hero-metrics,
  .page-title-meta,
  .editorial-hero-meta,
  .keyword-grid,
  .metric-grid,
  .editorial-timeline {
    width: 100%;
    max-width: 100%;
  }

  .card-grid,
  .card-grid.compact,
  .funnel-grid,
  .quick-action-grid,
  .path-grid,
  .package-grid,
  .staff-quote-grid,
  .detail-grid,
  .plan-detail-grid,
  .faq-grid,
  .activity-card-grid,
  .activity-photo-grid,
  .activity-asset-grid,
  .venue-photo-grid,
  .price-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-hero-meta,
  .keyword-grid,
  .metric-grid,
  .editorial-timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-feature.reverse .editorial-feature-media {
    order: 0;
  }

  .hero-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-contact-card.wide {
    grid-column: auto;
  }

  .recommended-plan-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-photo-card:first-child {
    grid-row: span 1;
  }

  .venue-gallery-heading {
    align-items: flex-start;
  }

  .gallery-count {
    width: fit-content;
  }

  .staff-sop-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .staff-sop-actions {
    justify-content: flex-start;
  }

  .venue-gallery-feature img {
    aspect-ratio: 4 / 3;
  }

  .venue-gallery-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .venue-gallery-filters {
    flex-wrap: nowrap;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .venue-gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .venue-gallery-filters a {
    flex: 0 0 auto;
  }

  .venue-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 6px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .venue-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .venue-gallery-thumb {
    flex: 0 0 min(72vw, 250px);
    scroll-snap-align: start;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .hero-actions,
  .page-title-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button,
  .page-title-actions .button {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero::before {
    right: -80px;
    bottom: 28px;
    width: 340px;
  }

  .hero-logo,
  .hero-venue-photo {
    width: min(74vw, 310px);
    justify-self: start;
  }

  .hero-venue-photo {
    aspect-ratio: 4 / 3;
  }

  .hero-metrics,
  .page-title-meta {
    grid-template-columns: 1fr;
  }

  .page-title h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.42rem);
  }

  .page-title p:not(.eyebrow),
  .page-title-meta {
    max-width: 100%;
  }

  .page-title p:not(.eyebrow),
  .rules-doc li,
  .list-item p,
  .side-panel p {
    max-width: 330px;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a,
  span,
  strong,
  dd {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-heading {
    display: block;
  }

  .activity-conversion-callout {
    grid-template-columns: 1fr;
  }

  .activity-conversion-callout strong,
  .activity-conversion-callout span,
  .activity-conversion-callout .button {
    grid-row: auto;
    grid-column: 1;
  }

  .section-heading a {
    display: inline-flex;
    margin-top: 10px;
  }

  .info-list dd {
    text-align: left;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mini-row,
  .estimate div {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .card {
    min-height: 0;
    padding: 20px;
  }

  .side-panel,
  .info-list,
  .form-panel,
  .beautify-panel {
    padding: 20px;
  }

  .switch-line {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    width: 100%;
    max-width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--deep);
  }

  .mobile-sticky-cta a,
  .mobile-sticky-cta span,
  .mobile-sticky-cta button {
    display: grid;
    min-height: 48px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--white);
    font: inherit;
    font-weight: 850;
    text-decoration: none;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-number {
    white-space: normal;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .contract-paper {
    overflow-x: auto;
  }

  .contract-paper table {
    min-width: 680px;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .price-sheet-image-link {
    overflow-x: auto;
  }

  .price-sheet-image {
    width: auto;
    max-width: none;
    min-width: 760px;
  }

  .rules-doc {
    padding: 22px;
  }

  .page-title::after {
    display: none;
  }
}

/* 2026 public redesign layer */
:root {
  --ink: #101512;
  --muted: #65706a;
  --line: #dfe5de;
  --surface: #fbfaf5;
  --surface-strong: #eef3ee;
  --accent: #146b43;
  --accent-strong: #0b4f31;
  --accent-bright: #bdf238;
  --accent-bright-hover: #ccff4d;
  --deep: #07130f;
  --deep-soft: #0d1927;
  --warm: #2f73b8;
  --page-bg: #fbfaf5;
  --page-bg-warm: #fbfaf5;
  --panel: #ffffff;
  --panel-subtle: #f2f6f1;
  --panel-dark: #07130f;
  --text: #101512;
  --text-muted: #65706a;
  --border-subtle: rgba(16, 21, 18, 0.12);
  --border-medium: rgba(16, 21, 18, 0.18);
  --shadow: 0 22px 60px rgba(8, 17, 13, 0.12);
  --shadow-soft: 0 12px 30px rgba(8, 17, 13, 0.05);
  --shadow-panel: 0 18px 46px rgba(8, 17, 13, 0.08);
  --shadow-strong: 0 32px 80px rgba(5, 12, 20, 0.28);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --space-section-y: clamp(64px, 8vw, 108px);
  --space-section-x: clamp(20px, 4vw, 34px);
  --font-size-section-title: clamp(2rem, 4.2vw, 3.625rem);
  --font-size-page-title: clamp(2.75rem, 7vw, 5.5rem);
  --font-size-hero-title: clamp(3rem, 7.2vw, 5.75rem);
  --line-title: 0.99;
}

body {
  background: var(--deep);
}

main {
  background: var(--surface);
}

.site-header {
  min-height: 72px;
  padding: 10px clamp(16px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 19, 15, 0.92);
  box-shadow: none;
}

.site-header-inner {
  min-height: 52px;
}

.brand {
  gap: 11px;
  font-size: 1rem;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
}

.site-nav a::after {
  background: var(--accent-bright);
}

.site-nav a.nav-cta {
  border-radius: 999px;
  box-shadow: none;
}

.site-nav a.nav-cta-primary {
  border-color: rgba(189, 242, 56, 0.7);
  background: var(--accent-bright);
  color: #132016;
}

.site-nav a.nav-cta-primary:hover,
.site-nav a.nav-cta-primary.is-active {
  border-color: var(--accent-bright-hover);
  background: var(--accent-bright-hover);
  color: #132016;
}

.site-nav a.nav-cta-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button {
  min-height: 48px;
  padding: 13px 21px;
  border-color: rgba(189, 242, 56, 0.7);
  border-radius: 999px;
  background: var(--accent-bright);
  color: #122015;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(189, 242, 56, 0.18);
}

.button:hover {
  background: var(--accent-bright-hover);
  color: #122015;
  box-shadow: 0 18px 36px rgba(189, 242, 56, 0.24);
}

.button.ghost,
.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.button.ghost:hover,
.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.button.ghost-dark {
  border-color: rgba(20, 107, 67, 0.3);
  background: #ffffff;
  color: var(--accent-strong);
}

.button.ghost-dark:hover {
  background: var(--accent);
  color: #ffffff;
}

.eyebrow,
.editorial-hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.editorial-hero-kicker::before,
.section-kicker::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 7px rgba(189, 242, 56, 0.18);
}

.hero .eyebrow,
.page-title .eyebrow,
.editorial-hero-kicker,
.band .eyebrow,
.dark-band .eyebrow,
.feature-panel .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero,
.page-title,
.editorial-hero,
.public-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background: var(--deep);
}

.public-hero-bg,
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.public-hero-bg img,
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.public-hero-panel {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(7, 19, 15, 0.62);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.public-hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.public-hero-panel-header strong {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.3;
}

.public-hero-panel-header span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-bright);
  color: #102014;
  font-size: 0.82rem;
  font-weight: 900;
}

.public-hero-facts {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.public-hero-facts div {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
}

.public-hero-facts span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 760;
}

.public-hero-facts small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.public-hero-facts strong {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero,
.public-hero {
  min-height: min(760px, calc(100svh - 72px));
  padding-block: clamp(78px, 9vw, 126px) clamp(54px, 7vw, 92px);
}

.hero-photo {
  background: var(--deep);
}

.hero-photo::after,
.public-hero::after,
.page-title::before,
.editorial-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 12, 18, 0.92), rgba(5, 12, 18, 0.66) 45%, rgba(5, 12, 18, 0.18) 82%),
    linear-gradient(0deg, rgba(7, 19, 15, 0.82), rgba(7, 19, 15, 0) 40%);
  pointer-events: none;
}

.hero::before,
.hero::after,
.page-title::after {
  opacity: 1;
}

.hero h1,
.page-title h1,
.editorial-hero h1,
.public-hero-title {
  color: #ffffff;
  font-size: var(--font-size-hero-title);
  line-height: var(--line-title);
  letter-spacing: 0;
}

.page-title h1,
.editorial-hero h1 {
  font-size: var(--font-size-page-title);
}

.hero h1 span,
.page-title h1 span,
.editorial-hero h1 span,
.public-hero-title span {
  color: var(--accent-bright);
}

.hero p,
.page-title p:not(.eyebrow),
.editorial-hero-lead,
.public-hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 1.55vw, 1.3rem);
  line-height: 1.72;
}

.page-title.contained-title,
.editorial-hero {
  max-width: var(--content-max);
  margin: clamp(18px, 3vw, 34px) auto 0;
  border-radius: var(--radius-lg);
}

.section {
  max-width: var(--content-max);
}

.section-heading {
  gap: 34px;
  margin-bottom: 34px;
}

.section h2 {
  font-size: var(--font-size-section-title);
  line-height: 1.03;
}

.section-heading p,
.split > div > p,
.section > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.card,
.detail-card,
.keyword-card,
.package-card,
.activity-card,
.quick-action,
.funnel-card,
.faq-grid article,
.side-panel,
.form-panel,
.info-list,
.list-item {
  border-color: var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.card,
.detail-card,
.keyword-card,
.package-card,
.quick-action,
.funnel-card,
.faq-grid article {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.card:hover,
.detail-card:hover,
.keyword-card:hover,
.package-card:hover,
.quick-action:hover,
.funnel-card:hover,
.activity-card:hover {
  border-color: rgba(20, 107, 67, 0.22);
  box-shadow: var(--shadow-panel);
  transform: translateY(-2px);
}

.pill,
.filter-pills a,
.activity-card-meta span,
.activity-card-meta time {
  border-radius: 999px;
}

.pill {
  background: rgba(189, 242, 56, 0.24);
  color: var(--accent-strong);
  font-weight: 900;
}

.card-media,
.activity-card-media img,
.editorial-path-media img,
.venue-gallery-feature img {
  filter: saturate(0.98) contrast(1.02);
}

.band,
.dark-band {
  max-width: none;
  background: var(--deep);
  color: #ffffff;
}

.band {
  width: min(100% - 40px, var(--content-max));
  max-width: var(--content-max);
  border-radius: var(--radius-lg);
}

.band .section-heading p,
.band .muted,
.dark-band p {
  color: rgba(255, 255, 255, 0.72);
}

.band .section-heading a:not(.button) {
  color: var(--accent-bright);
}

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

.public-route-card {
  position: relative;
  display: grid;
  min-height: 238px;
  align-content: space-between;
  gap: 22px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.public-route-card::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 46px;
  height: 5px;
  content: "";
  background: var(--accent-bright);
}

.public-route-card span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.public-route-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.public-route-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.public-route-card strong {
  color: var(--accent-strong);
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.photo-feature > img,
.photo-feature-media {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.feature-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-md);
  background: var(--deep);
  color: #ffffff;
}

.feature-panel h2 {
  color: #ffffff;
}

.feature-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.stat-strip,
.public-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
}

.stat-strip div,
.public-stat-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-strip strong,
.public-stat-strip strong {
  display: block;
  color: var(--accent-bright);
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  line-height: 1;
}

.stat-strip span,
.public-stat-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.42;
}

.public-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--border-subtle);
}

.public-timeline article {
  min-height: 210px;
  padding: 22px;
  background: #ffffff;
}

.public-timeline span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.public-timeline h3 {
  margin: 34px 0 10px;
  font-size: 1.45rem;
  line-height: 1.14;
}

.public-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.public-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 16px;
}

.public-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.public-gallery-stack {
  display: grid;
  gap: 16px;
}

.public-gallery-stack img {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.lead-band,
.public-cta-band {
  width: min(100% - 40px, var(--content-max));
  max-width: var(--content-max);
  margin: 0 auto clamp(54px, 6vw, 86px);
  border-radius: var(--radius-md);
  background: var(--accent-bright);
  color: #122015;
  box-shadow: var(--shadow);
}

.lead-band-inner,
.public-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
}

.lead-band h2,
.public-cta-band h2 {
  margin: 0;
  color: #122015;
  font-size: clamp(1.9rem, 4.2vw, 3.5rem);
  line-height: 1.04;
}

.lead-band p,
.public-cta-band p {
  max-width: 720px;
  margin: 13px 0 0;
  color: rgba(18, 32, 21, 0.72);
  font-size: 1.06rem;
}

.lead-band-actions,
.public-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.lead-band .button,
.public-cta-band .button {
  border-color: rgba(20, 107, 67, 0.36);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(20, 107, 67, 0.18);
}

.lead-band .button.ghost-dark,
.public-cta-band .button.ghost-dark {
  background: #ffffff;
  color: var(--accent-strong);
}

.steps li::before {
  background: var(--accent-bright);
  color: #132016;
}

/* Lower-funnel public pages and customer delivery workspace. */
.toolbar {
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  align-items: end;
  padding: 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.toolbar .button {
  min-width: 128px;
}

.filter-pills {
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.doc-callout.activity-conversion-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  border-left: 0;
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(189, 242, 56, 0.18), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.doc-callout.activity-conversion-callout strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.doc-callout.activity-conversion-callout span {
  color: var(--muted);
}

.activity-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
  gap: 20px;
}

.activity-card {
  border-radius: var(--radius-md);
}

.activity-card-media {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(20, 107, 67, 0.2), rgba(47, 115, 184, 0.16)),
    #eef4ee;
}

.activity-card-body {
  min-height: 206px;
  padding: 20px;
}

.activity-card-meta span,
.activity-card-meta time {
  padding: 5px 9px;
  background: rgba(20, 107, 67, 0.08);
  color: var(--accent-strong);
}

.activity-card > .button-row {
  padding: 0 20px 20px;
}

.activity-card > .button-row .button {
  width: 100%;
}

.activity-detail-layout {
  align-items: start;
}

.activity-detail-layout > article {
  min-width: 0;
}

.activity-cover-image,
.activity-cover-placeholder {
  overflow: hidden;
  border-color: rgba(17, 23, 19, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.activity-cover-placeholder {
  min-height: 330px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 12, 18, 0.28), rgba(20, 107, 67, 0.72)),
    #143425;
}

.activity-detail-copy {
  max-width: none;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.activity-detail-copy > :first-child {
  margin-top: 0;
}

.activity-detail-copy p,
.activity-detail-copy li {
  color: var(--text-muted);
  line-height: 1.78;
}

.activity-detail-copy h2 {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.activity-detail-copy h2:first-child {
  padding-top: 0;
  border-top: 0;
}

.activity-detail-copy h3 {
  color: var(--accent-strong);
  font-size: 1rem;
  letter-spacing: 0;
}

.activity-photo-section {
  margin-top: 30px;
}

.activity-photo-section > h2 {
  margin-bottom: 16px;
}

.activity-photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.activity-photo-card,
.activity-asset-card {
  border-color: var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.activity-photo-card figcaption,
.activity-asset-body {
  padding: 14px;
}

.activity-photo-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.activity-photo-card figcaption a {
  color: var(--accent-strong);
  font-weight: 900;
  text-decoration: none;
}

.activity-asset-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 22px;
}

.activity-asset-media {
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 107, 67, 0.16), rgba(47, 115, 184, 0.16)),
    #edf3f1;
  color: var(--accent-strong);
  font-weight: 900;
}

.activity-asset-media img,
.activity-asset-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-asset-body {
  display: grid;
  gap: 12px;
}

.media-authorization-form {
  display: grid;
  gap: 22px;
}

.media-authorization-form > label,
.activity-asset-body label,
.list-item label {
  display: grid;
  gap: 7px;
  color: var(--text-soft);
  font-weight: 820;
}

.media-authorization-form .button {
  justify-self: start;
}

.lead-form-panel {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
}

.lead-form-panel .form-lead h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.lead-form-panel .form-lead p:not(.eyebrow) {
  margin-bottom: 8px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea,
.media-authorization-form input,
.media-authorization-form select,
.media-authorization-form textarea,
.toolbar input,
.toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(17, 23, 19, 0.14);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.form-panel textarea,
.media-authorization-form textarea {
  min-height: 108px;
  padding: 10px 12px;
}

.form-panel input,
.form-panel select,
.media-authorization-form input,
.media-authorization-form select,
.toolbar input,
.toolbar select {
  padding: 0 12px;
}

.form-panel input[type="checkbox"],
.media-authorization-form input[type="checkbox"],
.list-item input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.form-panel label:has(input[type="checkbox"]),
.media-authorization-form label:has(input[type="checkbox"]),
.list-item label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 9px;
}

.recommended-plan-list {
  display: grid;
  gap: 22px;
}

.recommended-plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.78fr) minmax(260px, 0.62fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.recommended-plan-card > div {
  padding: clamp(18px, 2.5vw, 28px);
  background: #ffffff;
}

.recommended-plan-card h3 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.08;
}

.recommended-plan-card h4 {
  margin-top: 0;
  color: var(--accent-strong);
}

.schedule-list {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.schedule-list li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 3px solid var(--accent-bright);
}

.schedule-list span,
.recommended-plan-card p,
.recommended-plan-card li {
  color: var(--muted);
}

.list-stack {
  gap: 16px;
}

.list-item {
  position: relative;
  overflow: hidden;
}

.list-item::before {
  position: absolute;
  top: 0;
  left: 20px;
  width: 44px;
  height: 5px;
  content: "";
  background: var(--accent-bright);
}

.list-item h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 1.22rem;
}

.list-item .button-row {
  margin-top: 14px;
}

/* Internal workspace basics. */
main > .section:not(.band) > .price-strip {
  gap: 12px;
  margin-bottom: 14px;
}

main > .section:not(.band) > .price-strip div {
  min-height: 96px;
  border-color: var(--border-subtle);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.96)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

main > .section:not(.band) > .price-strip strong {
  color: var(--accent-strong);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1;
}

main > .section:not(.band) > .price-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  white-space: normal;
}

main > .section:not(.band) > .price-strip div:nth-child(3n + 1) {
  border-top: 4px solid var(--accent-bright);
}

main > .section:not(.band) > .price-strip div:nth-child(3n + 2) {
  border-top: 4px solid rgba(47, 115, 184, 0.34);
}

main > .section:not(.band) > .price-strip div:nth-child(3n) {
  border-top: 4px solid rgba(20, 107, 67, 0.34);
}

.section-heading > .filter-pills,
.section-heading > .toolbar {
  margin-bottom: 0;
}

.section-heading > .toolbar {
  flex: 1 1 520px;
}

.section-heading > .button {
  flex: 0 0 auto;
}

.card-grid > .card {
  display: grid;
  min-height: 198px;
  align-content: space-between;
  padding: 20px;
}

.card-grid > .card h2 {
  margin: 18px 0 10px;
  font-size: 1.32rem;
  line-height: 1.12;
}

.card-grid > .card p {
  margin: 0;
  line-height: 1.58;
}

.card-grid > .card .pill {
  justify-self: start;
}

.asset-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
}

.asset-card img,
.asset-card video,
.asset-card .file-badge {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.asset-card h2,
.asset-card p {
  padding-inline: 18px;
}

.asset-card h2 {
  margin-top: 16px;
}

.asset-card p {
  padding-bottom: 18px;
}

.asset-preview,
.file-preview {
  border-color: var(--border-subtle);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(20, 107, 67, 0.12), rgba(47, 115, 184, 0.12)),
    #eef4ee;
  box-shadow: var(--shadow-soft);
}

.side-panel .button + .button,
.side-panel .button + h2 {
  margin-top: 10px;
}

.side-panel .button {
  width: 100%;
}

.side-panel .mini-row strong {
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.split > article > h2,
.split > div > h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.split > article > .button,
.split > div > .button {
  margin-top: 16px;
}

.list-item h2 {
  margin: 12px 0 8px;
  font-size: 1.22rem;
  line-height: 1.18;
}

.list-item h2 a,
.list-item h3 a,
.asset-card {
  color: inherit;
  text-decoration: none;
}

.list-item p {
  color: var(--text-muted);
  line-height: 1.62;
}

.asset-upload-form {
  padding: clamp(22px, 3vw, 34px);
}

.asset-upload-options {
  padding-top: 4px;
}

.asset-upload-tags #id_tags,
.asset-upload-public {
  border-color: var(--border-subtle);
  background: rgba(247, 250, 248, 0.96);
}

.mini-link-row {
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}

.mini-link-row:hover {
  border-color: rgba(20, 107, 67, 0.18);
  background: rgba(20, 107, 67, 0.05);
}

.site-footer {
  background: var(--deep);
}

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

  .photo-feature,
  .public-gallery-grid,
  .lead-band-inner,
  .public-cta-inner {
    grid-template-columns: 1fr;
  }

  .lead-band-actions,
  .public-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .site-header,
  .hero,
  .page-title,
  .editorial-hero,
  .section {
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .public-hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .hero h1,
  .page-title h1,
  .editorial-hero h1,
  .public-hero-title {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .public-route-grid,
  .public-timeline,
  .stat-strip,
  .public-stat-strip {
    grid-template-columns: 1fr;
  }

  .public-route-card {
    min-height: 0;
  }

  .photo-feature > img,
  .photo-feature-media {
    min-height: 320px;
  }

  .lead-band,
  .public-cta-band {
    width: calc(100% - 32px);
  }

  .lead-band-actions,
  .public-cta-actions,
  .lead-band .button,
  .public-cta-band .button {
    width: 100%;
  }

  .public-gallery-grid img {
    min-height: 260px;
  }
}
