:root {
  --ink: #11110f;
  --ink-soft: #3e3d38;
  --paper: #ffffff;
  --studio: #f0f0ef;
  --warm: #f7f6f2;
  --line: #d9d7d0;
  --line-dark: rgba(255, 255, 255, 0.22);
  --gold: #bd8a33;
  --gold-light: #e2c47f;
  --gold-deep: #815c20;
  --cobalt: #195cc3;
  --header-height: 80px;
  --development-banner-height: 34px;
  --gutter: 72px;
  --content: 1440px;
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--development-banner-height) + var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
strong {
  font-weight: 500;
  letter-spacing: 0;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: #ffffff;
  background: #11110f;
}

::-moz-selection {
  color: #ffffff;
  background: #11110f;
}

html[data-theme="dark"] ::selection {
  color: #11110f;
  background: #ffffff;
}

html[data-theme="dark"] ::-moz-selection {
  color: #11110f;
  background: #ffffff;
}

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

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.section {
  padding-block: 132px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 42px;
  height: 1px;
  background: currentColor;
}

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

.section-title {
  max-width: 820px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: 1.02;
}

.lead {
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.45;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 78px;
}

.section-intro__copy {
  max-width: 540px;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

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

.button--ink {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button--ink:hover {
  color: var(--ink);
  background: transparent;
}

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

.button--outline:hover {
  background: var(--paper);
}

.button--light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.button--light:hover {
  color: var(--paper);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}

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

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 138, 51, 0.18);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.page-inner .site-header {
  border-bottom-color: rgba(17, 17, 15, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(17, 17, 15, 0.04);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand-lockup img {
  width: clamp(260px, 22vw, 340px);
  height: auto;
}

.site-header .brand-lockup img {
  width: clamp(190px, 16.5vw, 260px);
}

@media (min-width: 981px) {
  .site-header .brand-lockup {
    transform: translateY(-3px);
  }
}

.main-nav {
  display: flex;
  gap: 38px;
  align-items: center;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 16px;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color 200ms ease, background 200ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.menu-toggle .close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: calc(var(--development-banner-height) + var(--header-height) + 40px) var(--gutter) 40px;
  background: var(--paper);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.mobile-menu__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  margin-left: 22px;
  color: currentColor;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.mobile-menu__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu a:hover .mobile-menu__icon,
.mobile-menu a:focus-visible .mobile-menu__icon {
  opacity: 1;
  transform: translateX(-3px);
}

.studio-hero {
  position: relative;
  height: min(900px, 88svh);
  min-height: 680px;
  overflow: hidden;
  background: #e1e2e7;
}

.studio-hero__media,
.studio-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.studio-hero__media img {
  object-fit: cover;
  object-position: center;
}

.studio-hero__content {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: var(--gutter);
  width: 560px;
  transform: translateY(-50%);
}

.hero-title {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 106px;
  line-height: 0.88;
}

.hero-title span {
  display: block;
}

.hero-lead {
  max-width: 470px;
  margin-bottom: 34px;
  font-size: 22px;
  line-height: 1.45;
}

.studio-capabilities {
  background: var(--paper);
}

.studio-capabilities__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 110px;
  align-items: end;
  margin-bottom: 68px;
}

.studio-capabilities__intro .section-title {
  max-width: 900px;
}

.studio-capabilities__intro .lead {
  max-width: 560px;
  margin: 0;
}

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

.studio-capability {
  display: grid;
  min-height: 440px;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(130px, 1fr) auto auto;
  padding: 30px 38px 34px;
  border-right: 1px solid var(--line);
  transition: background 220ms ease;
}

.studio-capability:first-child {
  padding-left: 0;
}

.studio-capability:last-child {
  padding-right: 0;
  border-right: 0;
}

.studio-capability__number {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

.studio-capability__visual {
  width: min(250px, 100%);
  height: 132px;
  align-self: center;
  object-fit: contain;
  object-position: left center;
}

.studio-capability h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
}

.studio-capability p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.studio-capability:hover {
  background: var(--warm);
}

.studio-capability:hover h3 {
  color: var(--gold-deep);
}

.studio-education-editorial {
  background: var(--warm);
}

.studio-editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 110px;
  align-items: end;
  margin-bottom: 66px;
}

.studio-editorial-intro .section-title {
  margin-bottom: 0;
}

.studio-editorial-intro .lead {
  margin-bottom: 28px;
}

.studio-education-visual {
  display: grid;
  height: min(720px, 54vw);
  min-height: 500px;
  grid-template-rows: minmax(0, 1fr) 58px;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e1e2e7;
}

.studio-education-visual picture,
.studio-education-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.studio-education-visual img {
  object-fit: cover;
  object-position: center 38%;
}

.studio-education-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-inline: 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.studio-method {
  background: var(--paper);
}

.studio-method__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.studio-method__steps li {
  min-height: 280px;
  padding: 30px 40px 28px 0;
  border-right: 1px solid var(--line);
}

.studio-method__steps li + li {
  padding-left: 40px;
}

.studio-method__steps li:last-child {
  border-right: 0;
}

.studio-method__steps span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

.studio-method__steps h3 {
  margin: 82px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.05;
}

.studio-method__steps p {
  max-width: 350px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.service-overview {
  background: var(--paper);
}

.service-rows {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-height: 138px;
  grid-template-columns: 52px 64px minmax(220px, 0.8fr) minmax(260px, 1fr) 44px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, padding 240ms var(--ease);
}

.service-row:hover {
  padding-inline: 20px;
  background: var(--warm);
}

.service-row__number {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

.service-row__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-row__icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-row__icon--lime {
  border-color: var(--gold-light);
  color: var(--gold-deep);
  background: rgba(226, 196, 127, 0.14);
}

.service-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.05;
}

.service-row p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
}

.service-row__arrow {
  justify-self: end;
  font-size: 24px;
  transition: transform 220ms var(--ease);
}

.service-row:hover .service-row__arrow {
  transform: translate(4px, -4px);
}

.education-showcase {
  color: var(--paper);
  background: var(--ink);
}

.education-showcase__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
  gap: 90px;
  align-items: center;
}

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

.education-showcase .section-title {
  margin-bottom: 28px;
}

.education-showcase .lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.84);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.check-list li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
}

.suite-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.32);
}

.suite-window__bar {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 24px;
  border-bottom: 1px solid #e7e5de;
}

.suite-window__bar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.suite-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5a5a53;
  font-size: 11px;
  font-weight: 600;
}

.live-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}

.suite-window__body {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 490px;
}

.suite-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 12px;
  border-right: 1px solid #e7e5de;
  background: #f7f7f5;
}

.suite-nav span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 5px;
  color: #6c6b65;
  font-size: 11px;
}

.suite-nav span.is-active {
  color: var(--ink);
  background: var(--gold-light);
}

.suite-nav svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.suite-main {
  min-width: 0;
  padding: 26px;
}

.suite-main__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.suite-main__head small {
  color: #7b7972;
  font-size: 10px;
}

.suite-main__head h3 {
  margin: 3px 0 0;
  font-size: 23px;
}

.suite-main__head button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #dedcd5;
  border-radius: 50%;
  background: transparent;
}

.suite-main__head svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.metric-strip > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e2e0da;
  border-radius: 5px;
  background: #fbfbfa;
}

.metric-strip span,
.metric-strip small {
  display: block;
  overflow-wrap: anywhere;
  color: #73716a;
  font-size: 9px;
}

.metric-strip strong {
  display: block;
  margin-block: 5px 3px;
  font-size: 24px;
}

.metric-strip small {
  color: var(--gold-deep);
}

.suite-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  gap: 12px;
}

.activity-panel,
.task-panel {
  padding: 18px;
  border: 1px solid #e2e0da;
  border-radius: 5px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
}

.panel-title span {
  color: #7b7972;
  font-size: 9px;
}

.bar-chart {
  display: flex;
  height: 160px;
  align-items: end;
  gap: 9px;
  padding-top: 20px;
  border-bottom: 1px solid #d7d5cf;
}

.bar-chart i {
  width: 100%;
  height: var(--h);
  border-radius: 2px 2px 0 0;
  background: var(--gold-light);
}

.bar-chart i:nth-child(3n) {
  background: var(--gold);
}

.task-panel ul {
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.task-panel li {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  gap: 8px;
  align-items: center;
  padding-block: 12px;
  border-top: 1px solid #eceae5;
  font-size: 10px;
}

.task-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aaa8a1;
}

.task-dot--lime {
  background: var(--gold-light);
}

.task-dot--coral {
  background: var(--gold);
}

.process-section {
  background: var(--warm);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-block: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 28px 24px 24px 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 24px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span,
.journey-list span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

.process-list h3,
.journey-list h3 {
  margin: 84px 0 12px;
  font-size: 21px;
}

.process-list p,
.journey-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 100px;
}

.proof-list {
  border-top: 1px solid var(--line);
}

.proof-list article {
  display: grid;
  grid-template-columns: 54px minmax(180px, 0.7fr) minmax(240px, 1fr);
  gap: 28px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.proof-list span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
}

.proof-list h3,
.proof-list p {
  margin: 0;
}

.proof-list h3 {
  font-size: 20px;
}

.proof-list p {
  color: var(--ink-soft);
}

.project-cta {
  padding-block: 110px;
  color: var(--paper);
  background: var(--ink);
}

.project-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 100px;
  align-items: end;
}

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

.project-cta h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: 1.02;
}

.project-cta__grid > div:last-child {
  max-width: 480px;
}

.project-cta__grid p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.site-footer {
  padding: 78px 0 28px;
  color: var(--paper);
  background: #070706;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) repeat(3, minmax(130px, 0.55fr));
  gap: 72px;
  padding-bottom: 78px;
}

.footer-brand p {
  max-width: 380px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-grid nav strong {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-grid nav a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer-grid nav a:hover {
  color: var(--gold-light);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.business-registry-link {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.business-registry-link::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.72;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.business-registry-link:hover::after,
.business-registry-link:focus-visible::after {
  transform: scaleX(1);
}

.page-hero {
  padding: 184px 0 110px;
  overflow: hidden;
  background: var(--paper);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 100px;
  align-items: end;
}

.page-hero h1,
.education-hero h1,
.brief-hero h1 {
  max-width: 930px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  line-height: 0.98;
}

.page-hero__aside {
  max-width: 540px;
}

.page-hero__aside .lead {
  margin-bottom: 30px;
}

.page-hero__device-strip {
  position: relative;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  height: 330px;
  margin: 92px auto -110px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--studio);
}

.page-hero__device-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
}

.jump-nav {
  position: sticky;
  z-index: 20;
  top: calc(var(--development-banner-height) + var(--header-height));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.jump-nav a {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 16px;
  padding-inline: 20px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.jump-nav a:last-child {
  border-right: 0;
}

.jump-nav span {
  color: var(--gold-deep);
  font-size: 11px;
}

.jump-nav a:hover {
  background: var(--warm);
}

.service-details {
  background: var(--paper);
}

.service-detail {
  scroll-margin-top: calc(146px + var(--development-banner-height));
  padding-block: 100px;
  border-bottom: 1px solid var(--line);
}

.service-detail:nth-child(even) {
  background: var(--warm);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(360px, 1fr) minmax(300px, 0.8fr);
  gap: 72px;
}

.service-detail__identity > span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-detail__identity h2 {
  max-width: 320px;
  margin: 20px 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 49px;
  line-height: 1;
}

.service-detail__identity svg {
  width: 38px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.service-detail__statement h3 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 31px;
  line-height: 1.18;
}

.service-detail__statement p {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 18px;
}

.service-detail__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-detail__list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

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

.system-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr) 28px) minmax(160px, 1fr);
  align-items: center;
  border-block: 1px solid var(--line);
}

.system-flow > div {
  min-height: 190px;
  padding: 30px 18px;
}

.system-flow > div span,
.system-flow > div small {
  display: block;
}

.system-flow > div span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

.system-flow > div strong {
  display: block;
  margin: 50px 0 4px;
  font-size: 18px;
}

.system-flow > div small {
  color: var(--ink-soft);
}

.system-flow > i {
  color: #aaa8a1;
  font-style: normal;
  text-align: center;
}

.education-hero {
  padding: 152px 0 0;
  overflow: hidden;
  background: var(--studio);
}

.education-hero__grid {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.education-hero__copy {
  padding-bottom: 40px;
}

.education-hero h1 {
  margin-bottom: 30px;
  font-size: 76px;
}

.education-hero__copy .lead {
  max-width: 650px;
  margin-bottom: 34px;
}

.education-device {
  align-self: end;
  height: 650px;
  overflow: hidden;
}

.education-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.audience-rail {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(17, 17, 15, 0.14);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.education-capabilities {
  background: var(--paper);
}

.product-tabs {
  border-top: 1px solid var(--line);
}

.product-tabs__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.product-tabs__list button {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.product-tabs__list button:last-child {
  border-right: 0;
}

.product-tabs__list button span {
  color: #99978f;
  font-size: 10px;
}

.product-tabs__list button[aria-selected="true"] {
  background: var(--gold-light);
}

.product-tabs__list button[aria-selected="true"] span {
  color: var(--ink);
}

.product-tabs__stage {
  min-height: 600px;
  padding: 68px;
  background: var(--warm);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
  gap: 72px;
  align-items: center;
}

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

.product-panel__copy h3 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 47px;
  line-height: 1.03;
}

.product-panel__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
}

.product-panel__copy ul {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-panel__copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.app-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dad8d1;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 30px 60px rgba(17, 17, 15, 0.13);
}

.app-preview__bar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 24px;
  border-bottom: 1px solid #e6e4de;
}

.app-preview__bar button {
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 24px;
}

.pipeline > div {
  padding: 16px;
  border: 1px solid #e6e4de;
  border-radius: 5px;
}

.pipeline span,
.pipeline strong {
  display: block;
}

.pipeline span {
  color: #77756e;
  font-size: 9px;
}

.pipeline strong {
  margin-block: 8px;
  font-size: 24px;
}

.pipeline i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: #e8e6e0;
}

.pipeline i::before {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: var(--gold-light);
  content: "";
}

.preview-table {
  margin: 0 24px 24px;
  border: 1px solid #e6e4de;
  border-radius: 5px;
}

.preview-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr 100px;
  gap: 16px;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid #eceae5;
  font-size: 10px;
}

.preview-table > div:last-child {
  border-bottom: 0;
}

.preview-table > div:first-child {
  color: #74726b;
  background: #f8f8f6;
  font-size: 9px;
}

.status {
  display: inline-flex;
  width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #69675f;
  background: #efeee9;
  font-size: 8px;
  font-style: normal;
}

.status--lime {
  color: var(--gold-deep);
  background: rgba(226, 196, 127, 0.32);
}

.status--coral {
  color: #9d392b;
  background: rgba(239, 106, 84, 0.18);
}

.attendance-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px;
}

.attendance-summary > div {
  padding: 18px;
  border: 1px solid #e6e4de;
  border-radius: 5px;
}

.attendance-summary strong,
.attendance-summary span {
  display: block;
}

.attendance-summary strong {
  font-size: 30px;
}

.attendance-summary span {
  color: #74726b;
  font-size: 9px;
}

.checkin-list {
  margin: 0 24px 24px;
  border: 1px solid #e6e4de;
  border-radius: 5px;
}

.checkin-list > div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #eceae5;
}

.checkin-list > div:last-child {
  border-bottom: 0;
}

.avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--studio);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.checkin-list span strong,
.checkin-list span small {
  display: block;
}

.checkin-list span strong {
  font-size: 10px;
}

.checkin-list span small {
  color: #74726b;
  font-size: 8px;
}

.message-layout {
  display: grid;
  min-height: 320px;
  grid-template-columns: 240px 1fr;
}

.message-list {
  border-right: 1px solid #e6e4de;
}

.message-list button {
  display: grid;
  width: 100%;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 0;
  border-bottom: 1px solid #eceae5;
  background: transparent;
  text-align: left;
}

.message-list button.is-active {
  background: rgba(226, 196, 127, 0.16);
}

.message-list span strong,
.message-list span small {
  display: block;
}

.message-list span strong {
  font-size: 9px;
}

.message-list span small {
  color: #77756e;
  font-size: 8px;
}

.message-thread {
  padding: 48px;
}

.message-thread small,
.message-thread span {
  color: #77756e;
  font-size: 9px;
}

.message-thread p {
  max-width: 380px;
  margin: 16px 0;
  padding: 16px;
  border-radius: 6px;
  background: var(--studio);
  font-size: 12px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 28px;
}

.course-grid article {
  padding: 20px;
  border: 1px solid #e6e4de;
  border-radius: 5px;
}

.course-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 40px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.course-icon--lime {
  color: var(--ink);
  background: var(--gold-light);
}

.course-icon--coral {
  background: var(--gold);
}

.course-grid small,
.course-grid strong,
.course-grid i,
.course-grid em {
  display: block;
}

.course-grid small {
  color: #77756e;
  font-size: 8px;
}

.course-grid strong {
  min-height: 52px;
  margin: 5px 0 20px;
  font-size: 13px;
}

.course-grid i {
  height: 4px;
  border-radius: 999px;
  background: #e6e4de;
}

.course-grid i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-light);
}

.course-grid em {
  margin-top: 7px;
  color: #77756e;
  font-size: 8px;
  font-style: normal;
  text-align: right;
}

.metric-strip--light {
  padding: 24px 24px 0;
}

.operations-chart {
  margin: 0 24px 24px;
  padding: 20px;
  border: 1px solid #e6e4de;
  border-radius: 5px;
}

.line-bars {
  display: flex;
  height: 190px;
  align-items: end;
  gap: 16px;
  padding-top: 24px;
  border-bottom: 1px solid #d9d7d0;
}

.line-bars i {
  width: 100%;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: var(--ink);
}

.line-bars i:nth-child(5),
.line-bars i:nth-child(7) {
  background: var(--gold-light);
}

.journey-section {
  background: var(--warm);
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  min-height: 230px;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-list li:first-child {
  border-left: 1px solid var(--line);
}

.journey-list h3 {
  margin-top: 68px;
}

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

.organizations-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(520px, 1.15fr);
  gap: 100px;
}

.organization-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.organization-list li {
  min-height: 74px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.organization-list li:nth-child(even) {
  border-right: 0;
}

.about-intro {
  background: var(--warm);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.1fr);
  gap: 100px;
}

.company-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
}

.company-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}

.about-copy p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 20px;
}

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

.thinking-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.thinking-map article {
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thinking-map article span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

.thinking-map article h3 {
  margin: 120px 0 10px;
  font-size: 22px;
}

.thinking-map article p {
  max-width: 420px;
  color: var(--ink-soft);
}

.thinking-map__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 170px;
  height: 170px;
  place-content: center;
  border-radius: 50%;
  background: var(--gold-light);
  text-align: center;
  transform: translate(-50%, -50%);
}

.thinking-map__core span,
.thinking-map__core strong {
  display: block;
}

.thinking-map__core span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.thinking-map__core strong {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

.standards-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
  gap: 100px;
}

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

.standards-grid ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.standards-grid li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.standards-grid li span {
  color: var(--gold);
  font-size: 11px;
}

.standards-grid li strong {
  font-size: 20px;
}

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

.branch-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.branch-list a {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.branch-list a:hover {
  background: var(--warm);
}

.branch-list span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.branch-list h3 {
  margin: 105px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.branch-list p {
  max-width: 520px;
  color: var(--ink-soft);
}

.brief-hero {
  padding: 180px 0 100px;
  background: var(--warm);
}

.brief-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 100px;
  align-items: end;
}

.brief-hero h1 {
  font-size: 80px;
}

.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 12px;
}

.brief-meta span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.brief-section {
  padding-block: 100px 140px;
  background: var(--paper);
}

.project-form {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 110px;
  align-items: start;
}

.project-form__rail {
  position: sticky;
  top: calc(var(--development-banner-height) + var(--header-height) + 40px);
}

.project-form__rail > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.form-step {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
}

.project-form__rail p {
  color: var(--ink-soft);
}

.form-progress {
  height: 4px;
  margin: 30px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e3dd;
}

.form-progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-deep);
  transition: width 240ms ease;
}

.project-form__rail > small {
  color: #77756e;
}

.project-form fieldset {
  margin: 0;
  padding: 0 0 74px;
  border: 0;
}

.project-form fieldset + fieldset {
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.project-form legend {
  width: 100%;
  margin-bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 37px;
}

.field-grid {
  display: grid;
  gap: 26px;
}

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

.project-form label {
  display: block;
}

.project-form label > span:first-child {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 600;
}

.project-form input:not([type="radio"]):not([type="checkbox"]),
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.project-form input:not([type="radio"]):not([type="checkbox"]),
.project-form select {
  height: 52px;
  padding-inline: 14px;
}

.project-form textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.project-form textarea::placeholder {
  color: #99978f;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(25, 92, 195, 0.2);
}

.project-form__fields > fieldset > label + label {
  margin-top: 26px;
}

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

.choice-grid label {
  position: relative;
}

.choice-grid input,
.education-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid label > span {
  display: grid;
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.choice-grid label > span i {
  color: var(--gold-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.choice-grid label > span strong {
  align-self: end;
  margin-top: 28px;
  font-size: 18px;
}

.choice-grid label > span small {
  color: var(--ink-soft);
  font-size: 11px;
}

.choice-grid input:checked + span {
  border-color: var(--ink);
  background: rgba(226, 196, 127, 0.18);
}

.choice-grid input:focus-visible + span,
.education-choice input:focus-visible + span {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

.education-choice {
  position: relative;
  margin-top: 14px;
}

.education-choice > span {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.education-choice .status-dot {
  align-self: center;
  grid-row: 1 / 3;
}

.education-choice strong,
.education-choice small {
  display: block;
}

.education-choice small {
  color: var(--ink-soft);
}

.education-choice input:checked + span {
  border-color: var(--ink);
  background: rgba(226, 196, 127, 0.18);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.text-button {
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.form-actions p {
  width: 100%;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 11px;
}

.brief-dialog {
  width: min(780px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 34px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(17, 17, 15, 0.3);
}

.brief-dialog::backdrop {
  background: rgba(17, 17, 15, 0.72);
}

.brief-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.brief-dialog__head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.brief-dialog__head button {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.brief-dialog > p {
  color: var(--ink-soft);
}

.brief-dialog pre {
  max-height: 330px;
  margin-block: 24px;
  overflow: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.brief-dialog .dialog-status {
  min-height: 20px;
  margin-top: 14px;
  font-size: 12px;
}

/* Concierge homepage */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.page-concierge {
  --concierge-bg: #090a0b;
  --concierge-surface: #0f1112;
  --concierge-surface-raised: #17191b;
  --concierge-text: #f6f4ef;
  --concierge-muted: rgba(246, 244, 239, 0.66);
  --concierge-line: rgba(255, 255, 255, 0.13);
  color: var(--concierge-text);
  background: var(--concierge-bg);
  color-scheme: dark;
}

.page-concierge :focus-visible {
  outline-color: var(--gold-light);
}

.page-concierge .site-header:not(.is-scrolled) {
  color: var(--concierge-text);
}

.page-concierge .site-header.is-scrolled {
  border-bottom-color: var(--concierge-line);
  color: var(--concierge-text);
  background: rgba(9, 10, 11, 0.88);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.15);
}

.page-concierge .main-nav a::after {
  background: rgba(255, 255, 255, 0.86);
}

.page-concierge .menu-toggle {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--concierge-text);
}

.page-concierge .mobile-menu {
  color: var(--concierge-text);
  background: rgba(9, 10, 11, 0.98);
}

.page-concierge .mobile-menu nav,
.page-concierge .mobile-menu a {
  border-color: var(--concierge-line);
}

.page-concierge .mobile-menu__icon {
  color: currentColor;
}

.page-concierge .site-header .brand-lockup img {
  width: clamp(230px, 20vw, 315px);
}

.concierge-hero {
  position: relative;
  min-height: 760px;
  height: min(940px, 96svh);
  overflow: hidden;
  background: var(--concierge-bg);
}

.concierge-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.42) 0%, rgba(5, 6, 7, 0.08) 32%, rgba(5, 6, 7, 0.24) 100%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.16), transparent 34%, transparent 66%, rgba(5, 6, 7, 0.16));
  content: "";
  pointer-events: none;
}

.concierge-hero__media,
.concierge-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concierge-hero__media img {
  object-fit: cover;
  object-position: center;
}

.concierge-hero__content {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 50%;
  width: min(760px, calc(100% - (var(--gutter) * 2)));
  text-align: center;
  transform: translate(-50%, -50%);
}

.concierge-hero__content .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.76);
}

.concierge-hero h1 {
  max-width: 720px;
  margin: 0 auto 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  font-weight: 400;
  line-height: 0.98;
  color: #fffdf8;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.3);
}

.request-composer {
  padding: 18px 18px 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(12, 13, 14, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  text-align: left;
  backdrop-filter: blur(22px) saturate(1.15);
}

.request-composer textarea {
  display: block;
  width: 100%;
  min-height: 86px;
  resize: none;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--concierge-text);
  font: inherit;
  font-size: 18px;
  line-height: 1.45;
}

.request-composer textarea::placeholder {
  color: rgba(246, 244, 239, 0.48);
}

.request-composer:focus-within {
  border-color: rgba(226, 196, 127, 0.7);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 0 3px rgba(226, 196, 127, 0.14);
}

.request-composer__actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.request-composer__actions span {
  min-width: 0;
  color: var(--concierge-muted);
  font-size: 12px;
  line-height: 1.4;
}

.request-composer__actions button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #17120a;
  background: var(--gold-light);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.request-composer__actions button:hover {
  background: #f0d99e;
  transform: translateY(-1px);
}

.request-composer__actions svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.request-prompts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.request-prompts button {
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(12, 13, 14, 0.68);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.request-prompts button:hover {
  border-color: var(--gold-light);
  color: #fffdf8;
  background: rgba(25, 26, 27, 0.9);
}

.concierge-intro {
  background: var(--paper);
}

.concierge-offers {
  background: var(--concierge-surface);
}

.page-concierge .section-title {
  color: var(--concierge-text);
}

.page-concierge .lead {
  color: var(--concierge-muted);
}

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

.concierge-offers__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 64px;
}

.concierge-offers__heading .section-title,
.concierge-offers__heading .lead {
  margin-bottom: 0;
}

.offer-collage {
  display: block;
}

.offer-row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 16px;
}

.offer-row:last-child {
  margin-bottom: 0;
}

.offer-card {
  position: relative;
  display: block;
  min-width: 0;
  flex: 0 1 var(--offer-basis, 100%);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #151513;
  isolation: isolate;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.offer-card:hover,
.offer-card:focus-visible {
  outline: 0;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(226, 196, 127, 0.22);
  transform: translateY(-3px);
}

.offer-card::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 7, 0.14) 24%, rgba(8, 8, 7, 0.88) 100%);
  content: "";
  pointer-events: none;
}

.offer-card img {
  display: block;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  background: #151513;
  transition: transform 600ms var(--ease), filter 300ms ease;
}

.offer-card:hover img,
.offer-card:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.offer-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 26px 25px;
  color: var(--paper);
}

.offer-card span {
  display: block;
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  color: #f0cf7d;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transform: translateY(8px);
  transition: max-height 260ms var(--ease), margin 260ms var(--ease), opacity 200ms ease, transform 260ms var(--ease);
}

.offer-card h3 {
  margin: 0 0 8px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.offer-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  transform: translateY(10px);
  transition: max-height 320ms var(--ease), opacity 220ms ease, transform 320ms var(--ease);
}

.offer-card:hover span,
.offer-card:focus-visible span {
  max-height: 28px;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(0);
}

.offer-card:hover p,
.offer-card:focus-visible p {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.concierge-intro__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 32px 110px;
  align-items: end;
  margin-bottom: 72px;
}

.concierge-intro__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.concierge-intro__heading .section-title,
.concierge-intro__heading .lead {
  margin-bottom: 0;
}

.concierge-lanes {
  border-top: 1px solid var(--line);
}

.concierge-lanes > a {
  display: grid;
  min-height: 180px;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms var(--ease), color 220ms ease;
}

.concierge-lanes > a:hover {
  padding-inline: 18px;
  color: var(--gold-deep);
}

.concierge-lanes > a > span {
  align-self: start;
  padding-top: 9px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

.concierge-lanes h3 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.concierge-lanes p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.concierge-process {
  background: var(--concierge-surface-raised);
}

.concierge-process__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 64px;
}

.concierge-process__intro .section-title,
.concierge-process__intro .lead {
  margin-bottom: 0;
}

.concierge-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-block: 0;
  padding: 0;
  border-top: 1px solid var(--concierge-line);
  border-bottom: 1px solid var(--concierge-line);
  list-style: none;
}

.concierge-steps::before {
  position: absolute;
  z-index: 0;
  top: 96px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: var(--concierge-line);
  content: "";
}

.concierge-steps li {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 30px 30px;
  border-right: 1px solid var(--concierge-line);
}

.concierge-steps li:first-child { padding-left: 0; }
.concierge-steps li:last-child { padding-right: 0; border-right: 0; }
.concierge-steps img { display: block; width: 132px; height: 132px; margin: 0 auto; }
.concierge-steps h3 { margin: 50px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.concierge-steps h3 { color: var(--concierge-text); }
.concierge-steps p { max-width: 340px; margin: 0; color: var(--concierge-muted); font-size: 15px; }
.concierge-steps .is-complete h3 { color: var(--gold-light); }

.page-concierge .project-cta {
  border-top: 1px solid var(--concierge-line);
  background: #0b0c0d;
}

.page-concierge .site-footer {
  border-top: 1px solid var(--concierge-line);
  background: #050606;
}

.page-concierge .project-cta__grid p,
.page-concierge .footer-brand p {
  color: var(--concierge-muted);
}

.page-concierge .button--light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--concierge-text);
  background: transparent;
}

.page-concierge .button--light:hover {
  border-color: var(--gold-light);
  color: #17120a;
  background: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --gutter: 42px;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-title {
    font-size: 86px;
  }

  .studio-hero__content {
    width: 460px;
  }

  .service-row {
    grid-template-columns: 42px 54px minmax(190px, 0.7fr) minmax(240px, 1fr) 36px;
    gap: 20px;
  }

  .education-showcase__grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
  }

  .suite-window__body {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .suite-nav {
    padding-inline: 8px;
  }

  .suite-nav span {
    gap: 6px;
    padding-inline: 8px;
  }

  .service-detail__grid,
  .page-hero__grid,
  .brief-hero__grid {
    gap: 56px;
  }

  .product-tabs__stage {
    padding: 48px;
  }

  .product-panel {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 44px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
    --gutter: 28px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .section {
    padding-block: 96px;
  }

  .section-title {
    font-size: 54px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .section-intro__copy {
    max-width: 720px;
  }

  .studio-capabilities__intro,
  .studio-editorial-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .studio-capabilities__intro {
    margin-bottom: 52px;
  }

  .studio-capabilities__intro .lead,
  .studio-editorial-intro__aside {
    max-width: 720px;
  }

  .studio-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .studio-capability {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-capability:last-child {
    border-bottom: 0;
  }

  .studio-capability__number {
    grid-column: 1;
    grid-row: 1 / 4;
    padding-top: 8px;
  }

  .studio-capability__visual {
    width: 170px;
    height: 94px;
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 24px;
  }

  .studio-capability h3 {
    grid-column: 2;
    grid-row: 2;
    font-size: 42px;
  }

  .studio-capability p {
    grid-column: 2;
    grid-row: 3;
    max-width: 620px;
    margin-top: 12px;
  }

  .studio-editorial-intro {
    margin-bottom: 52px;
  }

  .studio-education-visual {
    height: 640px;
  }

  .studio-education-visual img {
    object-position: center 60%;
  }

  .studio-method__steps li {
    min-height: 250px;
    padding-right: 26px;
  }

  .studio-method__steps li + li {
    padding-left: 26px;
  }

  .studio-hero {
    height: min(860px, 90svh);
    min-height: 650px;
  }

  .studio-hero__content {
    top: 43%;
  }

  .service-row {
    grid-template-columns: 38px 52px minmax(180px, 0.7fr) minmax(220px, 1fr) 30px;
    min-height: 120px;
  }

  .service-row h3 {
    font-size: 31px;
  }

  .education-showcase__grid,
  .proof-grid,
  .project-cta__grid,
  .service-detail__grid,
  .organizations-grid,
  .about-intro__grid,
  .standards-grid,
  .brief-hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .education-showcase__copy {
    max-width: 700px;
  }

  .suite-window {
    max-width: 820px;
  }

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

  .process-list li:nth-child(3),
  .journey-list li:nth-child(3) {
    border-right: 0;
  }

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

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-hero h1,
  .brief-hero h1 {
    font-size: 70px;
  }

  .service-detail__statement {
    max-width: 720px;
  }

  .system-flow {
    grid-template-columns: 1fr 28px 1fr;
  }

  .system-flow > div:nth-of-type(3),
  .system-flow > div:nth-of-type(4),
  .system-flow > i:nth-of-type(2),
  .system-flow > i:nth-of-type(3) {
    border-top: 1px solid var(--line);
  }

  .system-flow > i:nth-of-type(2) {
    transform: rotate(135deg);
  }

  .education-hero__grid {
    min-height: 620px;
    grid-template-columns: 1fr 0.75fr;
    gap: 30px;
  }

  .education-hero h1 {
    font-size: 62px;
  }

  .education-device {
    height: 560px;
  }

  .audience-rail {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-block: 18px;
  }

  .product-tabs__list {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
  }

  .product-tabs__stage {
    padding: 42px;
  }

  .product-panel {
    grid-template-columns: 1fr;
  }

  .product-panel__copy {
    max-width: 700px;
  }

  .project-form {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 54px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 38px;
  }
}

@media (min-width: 701px) and (max-width: 1080px) and (orientation: portrait) {
  .studio-hero {
    height: 100svh;
    min-height: 900px;
    max-height: 1100px;
  }

  .studio-hero__media img {
    top: 10%;
    height: 90%;
    object-fit: contain;
    object-position: center bottom;
  }

  .studio-hero__content {
    top: 92px;
    width: min(540px, calc(100% - (var(--gutter) * 2)));
    transform: none;
  }

  .studio-hero .eyebrow {
    margin-bottom: 20px;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: 72px;
  }

  .hero-lead {
    max-width: 460px;
    margin-bottom: 24px;
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
  }

  .section {
    padding-block: 76px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .section-title {
    font-size: 43px;
  }

  .lead {
    font-size: 18px;
  }

  .studio-capabilities__intro,
  .studio-editorial-intro {
    gap: 34px;
  }

  .studio-capabilities__intro {
    margin-bottom: 38px;
  }

  .studio-capability {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 14px;
    padding: 25px 0;
  }

  .studio-capability__number {
    padding-top: 5px;
  }

  .studio-capability__visual {
    width: 145px;
    height: 82px;
    margin-bottom: 20px;
  }

  .studio-capability h3 {
    font-size: 32px;
  }

  .studio-capability p {
    margin-top: 9px;
    font-size: 14px;
  }

  .studio-editorial-intro {
    margin-bottom: 38px;
  }

  .studio-editorial-intro .lead {
    margin-bottom: 22px;
  }

  .studio-education-visual {
    width: calc(100% - (var(--gutter) * 2));
    height: 530px;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr) 52px;
  }

  .studio-education-visual img {
    object-position: center 75%;
  }

  .studio-education-visual figcaption {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 22px;
    padding-inline: 16px;
    scrollbar-width: none;
  }

  .studio-education-visual figcaption::-webkit-scrollbar {
    display: none;
  }

  .studio-education-visual figcaption span {
    flex: 0 0 auto;
  }

  .studio-method__steps {
    grid-template-columns: 1fr;
  }

  .studio-method__steps li,
  .studio-method__steps li + li {
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-method__steps li:last-child {
    border-bottom: 0;
  }

  .studio-method__steps h3 {
    margin: 34px 0 8px;
    font-size: 27px;
  }

  .studio-method__steps p {
    font-size: 14px;
  }

  .brand-lockup img {
    width: 220px;
  }

  .site-header .brand-lockup img {
    width: 190px;
  }

  .studio-hero {
    height: 92svh;
    min-height: 660px;
    max-height: 840px;
  }

  .studio-hero__media img {
    object-fit: cover;
    object-position: center bottom;
  }

  .studio-hero__content {
    top: 102px;
    right: var(--gutter);
    left: var(--gutter);
    width: auto;
    transform: none;
  }

  .hero-title {
    margin-bottom: 15px;
    font-size: 58px;
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.4;
  }

  .studio-hero .button-row {
    flex-wrap: nowrap;
  }

  .studio-hero .button {
    min-height: 41px;
    padding: 10px 12px;
    font-size: 10px;
    white-space: nowrap;
  }

  .service-row {
    grid-template-columns: 34px 44px 1fr 28px;
    gap: 14px;
    padding-block: 23px;
  }

  .service-row:hover {
    padding-inline: 10px;
  }

  .service-row__icon {
    width: 42px;
    height: 42px;
  }

  .service-row__icon svg {
    width: 20px;
  }

  .service-row h3 {
    font-size: 25px;
  }

  .service-row p {
    grid-column: 3 / 5;
    font-size: 13px;
  }

  .service-row__arrow {
    grid-column: 4;
    grid-row: 1;
  }

  .education-showcase__grid {
    gap: 50px;
  }

  .suite-window__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .suite-nav {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid #e7e5de;
  }

  .suite-nav span {
    flex: 0 0 auto;
  }

  .suite-main {
    padding: 18px;
  }

  .metric-strip,
  .suite-data-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-strip > div {
    padding: 11px;
  }

  .metric-strip strong {
    font-size: 18px;
  }

  .activity-panel {
    display: none;
  }

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

  .process-list li,
  .process-list li + li,
  .journey-list li {
    min-height: 170px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process-list h3,
  .journey-list h3 {
    margin-top: 44px;
  }

  .proof-grid {
    gap: 46px;
  }

  .proof-list article {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .proof-list p {
    grid-column: 2;
  }

  .project-cta {
    padding-block: 76px;
  }

  .project-cta h2 {
    font-size: 43px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 28px;
    padding-bottom: 54px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    padding: 142px 0 74px;
  }

  .page-hero h1,
  .education-hero h1,
  .brief-hero h1 {
    font-size: 53px;
  }

  .page-hero__device-strip {
    width: calc(100% - (var(--gutter) * 2));
    height: 240px;
    margin-top: 64px;
  }

  .jump-nav {
    width: 100%;
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
  }

  .service-detail {
    padding-block: 72px;
  }

  .service-detail__grid {
    gap: 38px;
  }

  .service-detail__identity h2 {
    font-size: 42px;
  }

  .service-detail__statement h3 {
    font-size: 25px;
  }

  .system-flow {
    grid-template-columns: 1fr;
  }

  .system-flow > i {
    padding: 8px;
    transform: rotate(90deg);
  }

  .system-flow > i:nth-of-type(2) {
    transform: rotate(90deg);
  }

  .system-flow > div {
    min-height: 150px;
    border-top: 1px solid var(--line);
  }

  .system-flow > div strong {
    margin-top: 34px;
  }

  .education-hero {
    padding-top: 130px;
  }

  .education-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .education-hero__copy {
    padding-bottom: 10px;
  }

  .education-device {
    width: calc(100% + (var(--gutter) * 2));
    height: 520px;
    margin-left: calc(var(--gutter) * -1);
  }

  .education-device img {
    object-position: center 58%;
  }

  .audience-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-tabs {
    width: 100%;
  }

  .product-tabs__stage {
    padding: 48px var(--gutter);
  }

  .product-panel__copy h3 {
    font-size: 39px;
  }

  .pipeline,
  .attendance-summary,
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-table > div {
    grid-template-columns: 1fr 80px;
  }

  .preview-table > div > :nth-child(2) {
    display: none;
  }

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

  .message-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid #e6e4de;
  }

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

  .message-list .avatar {
    display: none;
  }

  .message-thread {
    padding: 28px;
  }

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

  .organization-list li,
  .organization-list li:nth-child(even) {
    border-right: 0;
  }

  .about-intro__grid,
  .standards-grid,
  .organizations-grid {
    gap: 46px;
  }

  .about-copy p {
    font-size: 17px;
  }

  .thinking-map {
    grid-template-columns: 1fr;
  }

  .thinking-map article {
    min-height: 220px;
  }

  .thinking-map article h3 {
    margin-top: 70px;
  }

  .thinking-map__core {
    position: static;
    width: auto;
    height: 94px;
    border-radius: 0;
    transform: none;
  }

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

  .brief-hero {
    padding: 142px 0 74px;
  }

  .brief-section {
    padding-block: 76px 100px;
  }

  .project-form {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .project-form__rail {
    position: static;
  }

  .field-grid--two,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .brief-dialog {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 52px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .pipeline,
  .attendance-summary,
  .course-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .page-concierge .site-header .brand-lockup img { width: 246px; }
  .concierge-hero { min-height: 760px; height: 100svh; max-height: 1040px; }
  .concierge-hero__content { top: 47%; width: min(680px, calc(100% - (var(--gutter) * 2))); }
  .concierge-hero h1 { font-size: 66px; }
  .concierge-intro__heading,
  .concierge-offers__heading,
  .concierge-process__intro { grid-template-columns: 1fr; gap: 34px; }
  .concierge-intro__heading { margin-bottom: 54px; }
  .concierge-offers__heading { margin-bottom: 54px; }
  .concierge-process__intro { margin-bottom: 48px; }
  .concierge-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concierge-steps::before { display: none; }
  .concierge-steps li:nth-child(2) { border-right: 0; }
  .concierge-steps li:nth-child(-n + 2) { border-bottom: 1px solid var(--concierge-line); }
}

@media (min-width: 581px) and (max-width: 1080px) and (orientation: portrait) {
  .concierge-hero__media img { object-position: center; }
  .concierge-hero__content { top: 43%; }
}

@media (max-width: 700px) {
  .page-concierge .site-header .brand-lockup img { width: 214px; }
  .concierge-hero { min-height: 760px; height: 100svh; max-height: 900px; }
  .concierge-hero__media img { object-position: center; }
  .concierge-hero__content { top: 41%; }
  .concierge-hero__content .eyebrow { margin-bottom: 14px; }
  .concierge-hero h1 { max-width: 390px; margin-bottom: 20px; font-size: 48px; line-height: 0.98; }
  .request-composer { padding: 15px 14px 12px 16px; }
  .request-composer textarea { min-height: 76px; font-size: 16px; }
  .request-composer__actions { gap: 10px; }
  .request-composer__actions span { font-size: 10px; }
  .request-composer__actions button { width: 38px; height: 38px; }
  .request-prompts { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; scrollbar-width: none; }
  .request-prompts::-webkit-scrollbar { display: none; }
  .request-prompts button { flex: 0 0 auto; }
  .concierge-intro__heading { gap: 25px; margin-bottom: 38px; }
  .concierge-offers__heading { gap: 25px; margin-bottom: 38px; }
  .offer-row { display: block; margin-bottom: 14px; }
  .offer-card { width: 100%; }
  .offer-card > div { padding: 24px 20px 21px; }
  .offer-card h3 { font-size: 30px; }
  .concierge-lanes > a { min-height: 0; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding-block: 26px; }
  .concierge-lanes > a:hover { padding-inline: 8px; }
  .concierge-lanes h3 { margin-bottom: 9px; font-size: 32px; }
  .concierge-lanes p { font-size: 14px; }
  .concierge-steps { grid-template-columns: 1fr; }
  .concierge-steps li,
  .concierge-steps li:first-child,
  .concierge-steps li:last-child { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--concierge-line); }
  .concierge-steps li,
  .concierge-steps li:first-child,
  .concierge-steps li:last-child { display: grid; grid-template-columns: 94px minmax(0, 1fr); gap: 0 18px; align-items: center; }
  .concierge-steps li:last-child { border-bottom: 0; }
  .concierge-steps img { width: 88px; height: 88px; grid-column: 1; grid-row: 1 / 3; margin: 0; }
  .concierge-steps h3 { grid-column: 2; margin: 0 0 8px; font-size: 28px; }
  .concierge-steps p { grid-column: 2; font-size: 14px; }
}

/* Concierge V2: single-page service experience */
.page-concierge-v2 {
  --v2-bg: #070808;
  --v2-surface: #0c0e0f;
  --v2-surface-raised: #121415;
  --v2-text: #f4f0e8;
  --v2-muted: rgba(244, 240, 232, 0.62);
  --v2-line: rgba(255, 255, 255, 0.13);
  background: var(--v2-bg);
}

.page-concierge-v2 .site-header:not(.is-scrolled) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(5, 6, 6, 0.72), transparent);
}

.page-concierge-v2 .site-header .brand-lockup img {
  width: 250px;
}

.header-request {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms;
}

.header-request.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-request__trigger {
  display: flex;
  width: 218px;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 10px 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 10px 30px rgba(0, 0, 0, 0.16);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  backdrop-filter: blur(22px) saturate(1.25);
  transition: background 180ms ease, border-color 180ms ease;
}

.header-request__cue {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 160ms ease, transform 180ms ease;
}

.header-request.is-open .header-request__cue {
  opacity: 0;
  transform: translateX(4px);
}

.header-request__trigger:hover,
.header-request.is-open .header-request__trigger {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
}

.header-request__trigger svg,
.header-request__bar svg {
  width: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-request__panel {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  width: min(430px, calc(100vw - (var(--gutter) * 2)));
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms;
}

.header-request.is-open .header-request__panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.header-request__composer {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(36, 38, 38, 0.98), rgba(8, 9, 9, 0.97));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px) saturate(1.25);
}

.header-request__composer textarea {
  display: block;
  width: 100%;
  min-height: 126px;
  resize: none;
  padding: 21px 22px;
  border: 0;
  outline: 0;
  color: var(--v2-text);
  background: transparent;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
}

.header-request__composer textarea::placeholder {
  color: rgba(244, 240, 232, 0.46);
}

.header-request__bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-request__bar span {
  margin-right: auto;
  color: var(--v2-muted);
  font-size: 10px;
}

.header-request__bar button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #090a0a;
  background: #fff;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.header-request__bar button:hover {
  background: #f0ede7;
  transform: translateY(-1px);
}

.header-request__bar .request-mic,
.concierge-v2-composer__bar .request-mic {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header-request__bar .request-mic:hover,
.concierge-v2-composer__bar .request-mic:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.header-request__bar .request-mic.is-listening,
.concierge-v2-composer__bar .request-mic.is-listening {
  color: #071014;
  background: #8fc9dc;
  animation: request-mic-pulse 1.4s ease-in-out infinite;
}

@keyframes request-mic-pulse {
  50% { box-shadow: 0 0 0 7px rgba(143, 201, 220, 0.16); }
}

.concierge-v2-hero {
  position: relative;
  height: 92svh;
  min-height: 700px;
  max-height: 900px;
  overflow: hidden;
  background: #090909;
}

.concierge-v2-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 5, 5, 0.24) 0%, rgba(4, 5, 5, 0.02) 35%, rgba(4, 5, 5, 0.48) 100%),
    linear-gradient(90deg, rgba(4, 5, 5, 0.28), transparent 56%);
  content: "";
  pointer-events: none;
}

.concierge-v2-hero__media,
.concierge-v2-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concierge-v2-hero__media img {
  object-fit: cover;
  object-position: center;
}

.concierge-v2-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 48px;
  align-items: center;
}

.concierge-v2-hero h1 {
  max-width: 750px;
  margin: 0 0 42px;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  font-weight: 400;
  line-height: 0.94;
  text-align: center;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.44);
}

.concierge-v2-composer {
  position: relative;
  width: min(100%, 1040px);
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(36, 37, 37, 0.62), rgba(8, 9, 9, 0.48));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(1.3);
  isolation: isolate;
  opacity: var(--composer-fade, 1);
  transform: translateY(calc((1 - var(--composer-fade, 1)) * -8px));
}

.concierge-v2-composer.is-obscured {
  pointer-events: none;
}

.concierge-v2-composer::before {
  position: absolute;
  z-index: -1;
  top: -42%;
  left: 8%;
  width: 58%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.concierge-v2-composer:focus-within {
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.concierge-v2-composer textarea {
  display: block;
  width: 100%;
  min-height: 144px;
  resize: none;
  padding: 26px 28px;
  border: 0;
  outline: 0;
  color: var(--v2-text);
  background: transparent;
  font-size: 18px;
  line-height: 1.5;
}

.concierge-v2-composer textarea::placeholder {
  color: rgba(244, 240, 232, 0.48);
}

.concierge-v2-composer__bar {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.concierge-v2-composer__bar p {
  margin: 0 auto 0 0;
  color: var(--v2-muted);
  font-size: 12px;
}

.concierge-v2-composer__bar button {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #090a0a;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.concierge-v2-composer__bar button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.concierge-v2-composer__bar button:hover {
  background: #f0ede7;
  transform: translateY(-1px);
}

.concierge-v2-services,
.concierge-v2-process,
.concierge-v2-control,
.concierge-v2-closing,
.concierge-v3-collaboration {
  scroll-margin-top: calc(var(--development-banner-height) + var(--header-height));
}

.concierge-v2-services {
  padding: 126px 0 140px;
  background: var(--v2-bg);
}

.concierge-v2-section-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 72px;
}

.concierge-v2-section-head > p,
.concierge-v2-kicker,
.concierge-v2-closing > .shell > p {
  margin: 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.concierge-v2-section-head h2,
.concierge-v2-control h2,
.concierge-v2-closing h2,
.concierge-v3-collaboration h2 {
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.concierge-v2-section-head > span {
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.55;
}

.concierge-v2-service-viewer {
  display: grid;
  grid-template-columns: minmax(310px, 0.42fr) minmax(0, 1fr);
  gap: 62px;
  align-items: stretch;
}

.concierge-v2-service-index {
  border-top: 1px solid var(--v2-line);
}

.concierge-v2-service-index button {
  display: grid;
  width: 100%;
  min-height: 74px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  color: rgba(244, 240, 232, 0.56);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 220ms var(--ease);
}

.concierge-v2-service-index button span {
  color: rgba(226, 196, 127, 0.6);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.concierge-v2-service-index button:hover,
.concierge-v2-service-index button[aria-selected="true"] {
  padding-left: 14px;
  color: var(--v2-text);
}

.concierge-v2-service-stage {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #0c0d0e;
}

.concierge-v2-service-stage::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 6, 0.9));
  content: "";
  pointer-events: none;
}

.concierge-v2-service-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: opacity 180ms ease, transform 600ms var(--ease);
}

.concierge-v2-service-stage.is-changing img {
  opacity: 0.34;
  transform: scale(1.015);
}

.concierge-v2-service-stage figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(260px, 0.4fr);
  gap: 48px;
  align-items: end;
  padding: 38px 40px;
}

.concierge-v2-service-stage h3 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.concierge-v2-service-stage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.concierge-v2-process {
  padding: 132px 0 142px;
  border-block: 1px solid var(--v2-line);
  background: var(--v2-surface);
}

.concierge-v2-section-head--center {
  display: block;
  margin-bottom: 84px;
  text-align: center;
}

.concierge-v2-section-head--center > p {
  margin-bottom: 20px;
  color: rgba(244, 240, 232, 0.7);
}

.concierge-v2-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-block: 0;
  padding: 0;
  list-style: none;
}

.concierge-v2-rail::before {
  position: absolute;
  top: 26px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.concierge-v2-rail li {
  position: relative;
  padding: 0 34px;
  text-align: center;
}

.concierge-v2-rail li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0 auto 26px;
  border: 1px solid color-mix(in srgb, var(--process-color) 72%, transparent);
  border-radius: 50%;
  color: var(--process-color);
  background: color-mix(in srgb, var(--process-color) 11%, var(--v2-surface));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 22px color-mix(in srgb, var(--process-color) 9%, transparent);
}

.concierge-v2-rail li:nth-child(1) { --process-color: #8fc9dc; }
.concierge-v2-rail li:nth-child(2) { --process-color: #e2c47f; }
.concierge-v2-rail li:nth-child(3) { --process-color: #e79b86; }
.concierge-v2-rail li:nth-child(4) { --process-color: #b7a8e6; }

.concierge-v2-rail li > span svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  vector-effect: non-scaling-stroke;
}

.concierge-v2-rail strong {
  display: block;
  margin-bottom: 12px;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.concierge-v2-rail p {
  max-width: 255px;
  margin: 0 auto;
  color: var(--v2-muted);
  font-size: 14px;
}

.studio-pricing-note {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: end;
  margin-top: 88px;
  padding-top: 42px;
  border-top: 1px solid var(--v2-line);
}

.studio-pricing-note > div > p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--v2-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio-pricing-note > div > p::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.studio-pricing-note h3 {
  max-width: 540px;
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.studio-pricing-note > p {
  max-width: 660px;
  margin: 0;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.72;
}

.concierge-v2-control {
  padding: 132px 0;
  background: var(--v2-surface-raised);
}

.concierge-v2-control__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  gap: 120px;
  align-items: start;
}

.concierge-v2-control h2 {
  max-width: 520px;
  margin-top: 22px;
}

.concierge-v2-assurances {
  border-top: 1px solid var(--v2-line);
}

.concierge-v2-assurances article {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 0.6fr);
  gap: 44px;
  padding: 28px 0;
  border-bottom: 1px solid var(--v2-line);
}

.concierge-v2-assurances span {
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.concierge-v2-assurances p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
}

.concierge-v2-closing {
  padding: 126px 0;
  text-align: center;
  background: var(--v2-bg);
}

.concierge-v2-closing h2 {
  max-width: 820px;
  margin: 22px auto 36px;
  font-size: 64px;
}

.concierge-v3-collaboration {
  padding: 132px 0 138px;
  border-bottom: 1px solid var(--v2-line);
  background: var(--v2-surface-raised);
}

.concierge-v3-collaboration__head,
.concierge-v3-services__head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.concierge-v3-collaboration__blend {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  align-items: stretch;
  border-block: 1px solid var(--v2-line);
}

.concierge-v3-collaboration__blend article {
  min-height: 268px;
  padding: 48px clamp(24px, 5vw, 74px) 54px 0;
}

.concierge-v3-collaboration__blend article:last-child {
  padding-right: 0;
  padding-left: clamp(24px, 5vw, 74px);
}

.concierge-v3-collaboration__blend article {
  text-align: center;
}

.concierge-v3-collaboration__blend article p {
  margin-inline: auto;
}

.concierge-v3-collaboration__blend article > span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.concierge-v3-collaboration__blend h3 {
  margin: 52px 0 16px;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.concierge-v3-collaboration__blend p {
  max-width: 470px;
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.65;
}

.concierge-v3-collaboration__join {
  align-self: center;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  justify-self: center;
  border: 0;
  border-radius: 50%;
  color: #080909;
  background: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.concierge-v3-collaboration__result {
  margin-top: 36px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 13px;
  text-align: center;
}

.concierge-v3-providers {
  padding: 132px 0 138px;
  border-bottom: 1px solid var(--v2-line);
  background: var(--v2-bg);
}

.concierge-v3-providers__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
  margin-bottom: 76px;
}

.concierge-v3-providers__head > div > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.concierge-v3-providers__head h2 {
  max-width: 880px;
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.concierge-v3-providers__head > p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.7;
}

.concierge-v3-provider-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--v2-line);
}

.concierge-v3-provider-paths article {
  display: grid;
  min-height: 290px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 32px;
  align-content: center;
  padding: 52px clamp(32px, 5vw, 76px) 52px 0;
}

.concierge-v3-provider-paths article + article {
  padding-right: 0;
  padding-left: clamp(32px, 5vw, 76px);
  border-left: 1px solid var(--v2-line);
}

.concierge-v3-provider-paths article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--provider-color) 72%, transparent);
  border-radius: 50%;
  color: var(--provider-color);
  background: color-mix(in srgb, var(--provider-color) 11%, var(--v2-bg));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 22px color-mix(in srgb, var(--provider-color) 9%, transparent);
}

.concierge-v3-provider-paths article:first-child { --provider-color: #8fc9dc; }
.concierge-v3-provider-paths article:last-child { --provider-color: #b7a8e6; }

.concierge-v3-provider-paths svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.concierge-v3-provider-paths small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.concierge-v3-provider-paths h3 {
  margin: 24px 0 13px;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.concierge-v3-provider-paths p,
.concierge-v3-providers__footer p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.65;
}

.concierge-v3-providers__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 34px;
}

.concierge-v3-providers__footer p {
  max-width: 720px;
}

.concierge-v3-providers__footer strong {
  color: var(--v2-text);
  font-weight: 600;
}

.concierge-v3-providers__footer a {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  color: #090a0a;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.concierge-v3-providers__footer a:hover {
  background: #f0ede7;
  transform: translateY(-1px);
}

.page-concierge-v2 .site-footer {
  background: #050606;
}

@media (max-width: 1080px) {
  .concierge-v2-section-head { grid-template-columns: 110px minmax(0, 1fr); }
  .concierge-v3-collaboration__head,
  .concierge-v3-services__head { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr); }
  .concierge-v2-section-head > span { grid-column: 2; max-width: 520px; }
  .concierge-v2-service-viewer { grid-template-columns: minmax(250px, 0.4fr) minmax(0, 1fr); gap: 34px; }
  .concierge-v2-service-stage figcaption { grid-template-columns: 1fr; gap: 16px; }
  .concierge-v2-control__grid { gap: 70px; }
}

@media (max-width: 980px) {
  .page-concierge-v2 .site-header .brand-lockup img { width: 225px; }
  .header-actions { gap: 8px; }
  .header-request__trigger { width: 38px; height: 38px; justify-content: center; padding: 0; }
  .header-request__trigger span { display: none; }
  .header-request__trigger svg { width: 17px; flex-basis: 17px; }
  .header-request__panel {
    top: calc(100% + 17px);
    right: -52px;
    left: auto;
    width: calc(100vw - (var(--gutter) * 2));
  }
  .concierge-v2-hero h1 { font-size: 68px; }
  .concierge-v2-service-viewer { grid-template-columns: 1fr; }
  .concierge-v2-service-index { display: flex; overflow-x: auto; border-top: 0; scrollbar-width: none; }
  .concierge-v2-service-index::-webkit-scrollbar { display: none; }
  .concierge-v2-service-index button { width: auto; min-width: max-content; min-height: 52px; grid-template-columns: 24px auto; padding: 0 22px 0 0; border-bottom-color: var(--v2-line); font-size: 18px; }
  .concierge-v2-service-index button:hover,
  .concierge-v2-service-index button[aria-selected="true"] { padding-left: 0; color: var(--v2-text); border-bottom-color: var(--gold-light); }
  .concierge-v2-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 54px 0; }
  .concierge-v2-rail::before { display: none; }
  .concierge-v2-control__grid { grid-template-columns: 1fr; gap: 62px; }
  .concierge-v3-providers__head { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .page-concierge-v2 .site-header .brand-lockup img { width: min(225px, 58vw); }
  .concierge-v2-hero { height: 88svh; min-height: 700px; max-height: 820px; }
  .concierge-v2-hero::after { background: linear-gradient(180deg, rgba(4, 5, 5, 0.36), rgba(4, 5, 5, 0.06) 48%, rgba(4, 5, 5, 0.48)); }
  .concierge-v2-hero__media img { object-position: center; }
  .concierge-v2-hero__content { justify-content: flex-start; padding-top: 152px; }
  .concierge-v2-hero h1 { margin-bottom: 28px; font-size: 50px; line-height: 0.98; }
  .concierge-v2-composer textarea { min-height: 126px; padding: 20px; font-size: 16px; }
  .concierge-v2-composer__bar { min-height: 62px; padding: 8px 8px 8px 20px; }
  .concierge-v2-composer__bar p { max-width: 170px; font-size: 10px; }
  .concierge-v2-composer__bar button { width: 44px; height: 44px; flex-basis: 44px; padding: 0; }
  .concierge-v2-services,
  .concierge-v2-process,
  .concierge-v2-control,
  .concierge-v2-closing,
  .concierge-v3-collaboration { padding-block: 92px; }
  .concierge-v2-section-head { display: block; margin-bottom: 44px; }
  .concierge-v2-section-head > p { margin-bottom: 18px; }
  .concierge-v2-section-head h2,
  .concierge-v2-control h2,
  .concierge-v2-closing h2,
  .concierge-v3-collaboration h2 { font-size: 42px; }
  .concierge-v2-section-head > span { display: block; margin-top: 22px; }
  .concierge-v2-service-viewer { gap: 24px; }
  .concierge-v2-service-stage { min-height: 480px; }
  .concierge-v2-service-stage img { min-height: 480px; }
  .concierge-v2-service-stage figcaption { padding: 28px 24px; }
  .concierge-v2-service-stage h3 { font-size: 36px; }
  .concierge-v2-section-head--center { margin-bottom: 58px; }
  .concierge-v2-rail { grid-template-columns: 1fr; gap: 0; }
  .concierge-v2-rail li { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 0 18px; padding: 22px 0; border-bottom: 1px solid var(--v2-line); text-align: left; }
  .concierge-v2-rail li:first-child { border-top: 1px solid var(--v2-line); }
  .concierge-v2-rail li > span { grid-row: 1 / 3; margin: 0; }
  .concierge-v2-rail strong { margin: 0 0 6px; font-size: 25px; }
  .concierge-v2-rail p { max-width: none; margin: 0; font-size: 13px; }
  .studio-pricing-note { display: block; margin-top: 52px; padding-top: 32px; }
  .studio-pricing-note h3 { max-width: 330px; font-size: 36px; }
  .studio-pricing-note > p { margin-top: 24px; font-size: 14px; }
  .concierge-v2-control__grid { gap: 46px; }
  .concierge-v2-assurances article { grid-template-columns: 1fr; gap: 10px; }
  .concierge-v2-closing h2 { margin-bottom: 30px; }
  .concierge-v3-collaboration__blend { grid-template-columns: 1fr; }
  .concierge-v3-collaboration__blend article,
  .concierge-v3-collaboration__blend article:last-child { min-height: 0; padding: 36px 0 40px; }
  .concierge-v3-collaboration__blend article { text-align: left; }
  .concierge-v3-collaboration__blend article p { margin-inline: 0; }
  .concierge-v3-collaboration__blend article:last-child { border-top: 1px solid var(--v2-line); }
  .concierge-v3-collaboration__blend h3 { margin-top: 30px; font-size: 30px; }
  .concierge-v3-collaboration__join { position: relative; z-index: 1; margin: -28px auto; background: #ffffff; }
  .concierge-v3-collaboration__result { margin-top: 30px; }
  .concierge-v3-providers { padding-block: 92px; }
  .concierge-v3-providers__head { margin-bottom: 48px; }
  .concierge-v3-providers__head h2 { font-size: 42px; }
  .concierge-v3-provider-paths { grid-template-columns: 1fr; }
  .concierge-v3-provider-paths article { min-height: 0; padding: 38px 0; }
  .concierge-v3-provider-paths article + article { padding-left: 0; border-top: 1px solid var(--v2-line); border-left: 0; }
  .concierge-v3-providers__footer { align-items: flex-start; flex-direction: column; gap: 26px; }
}

.concierge-v3-category-collage {
  display: block;
}

.concierge-v3-category-collage .offer-row {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 14px;
  margin: 0 auto 14px;
}

.concierge-v3-category-collage .offer-row:last-child {
  margin-bottom: 0;
}

.concierge-v3-category {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: var(--offer-aspect, 1.5);
  flex: 0 1 var(--offer-basis, 100%);
  overflow: hidden;
  border-radius: 5px;
  background: #101112;
  isolation: isolate;
}

.concierge-v3-category::after {
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 5, 0.92));
  content: "";
  pointer-events: none;
}

.concierge-v3-category img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease, transform 650ms var(--ease);
}

.concierge-v3-category picture {
  display: block;
  width: 100%;
  height: 100%;
}

.concierge-v3-category:hover img,
.concierge-v3-category:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
}

.concierge-v3-category > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 26px 24px;
}

.concierge-v3-category span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.concierge-v3-category h3 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  transition: margin 260ms var(--ease), transform 260ms var(--ease);
}

.concierge-v3-category p {
  max-height: 0;
  max-width: 390px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.48;
  opacity: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  transform: translateY(8px);
  transition: max-height 320ms var(--ease), opacity 220ms ease, transform 320ms var(--ease);
}

.concierge-v3-category:hover h3,
.concierge-v3-category:focus-visible h3 {
  margin-bottom: 8px;
  transform: translateY(-2px);
}

.concierge-v3-category:hover p,
.concierge-v3-category:focus-visible p {
  max-height: 110px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .concierge-v3-category-collage .offer-row {
    display: block;
    margin-bottom: 12px;
  }

  .concierge-v3-category {
    width: 100%;
  }

  .concierge-v3-category > div {
    padding: 22px 20px 20px;
  }

  .concierge-v3-category h3 {
    font-size: 28px;
  }

  .concierge-v3-category p {
    font-size: 12px;
  }
}

@media (hover: none) {
  .concierge-v3-category:focus h3 {
    margin-bottom: 0;
    transform: none;
  }

  .concierge-v3-category:focus p {
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
  }
}

/* Studio clone: intentionally inherits Concierge structure and rhythm. */
.page-studio-clone .site-header .brand-lockup img,
.page-studio-clone .site-footer .brand-lockup img {
  width: 250px;
}

.studio-clone-hero::after {
  display: none;
  background:
    linear-gradient(90deg, rgba(6, 7, 7, 0.92) 0%, rgba(6, 7, 7, 0.82) 31%, rgba(6, 7, 7, 0.58) 62%, rgba(6, 7, 7, 0.4) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.28) 0%, rgba(5, 6, 6, 0.08) 48%, rgba(5, 6, 6, 0.58) 100%);
}

.studio-clone-hero {
  height: auto;
  min-height: clamp(700px, 92svh, 900px);
  max-height: none;
}

.studio-clone-hero .concierge-v2-hero__content {
  height: auto;
  min-height: inherit;
  align-items: center;
  padding-block: 86px 72px;
}

.studio-clone-hero__eyebrow {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.studio-clone-hero h1 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: clamp(60px, 5.25vw, 76px);
  line-height: 0.97;
  text-align: center;
}

.studio-clone-hero .concierge-v2-composer {
  --composer-textarea-min-height: 76px;
  flex-shrink: 0;
  width: min(100%, 830px);
  border-radius: 22px;
  transition: width 260ms var(--ease), opacity 180ms ease, transform 220ms var(--ease), box-shadow 180ms ease;
}

.studio-clone-hero .concierge-v2-composer::before {
  display: none;
}

.studio-clone-hero .concierge-v2-composer.is-expanded {
  --composer-textarea-min-height: 220px;
  width: min(100%, 1040px);
}

.studio-clone-hero .concierge-v2-composer textarea {
  position: relative;
  z-index: 1;
  height: var(--composer-textarea-min-height);
  min-height: var(--composer-textarea-min-height);
  overflow-y: hidden;
  padding: 20px 24px 8px;
  overflow-wrap: break-word;
  font-size: 16px;
  white-space: pre-wrap;
  word-break: break-word;
}

.studio-clone-hero .concierge-v2-composer__bar {
  min-height: 58px;
  gap: 12px;
  padding: 0 12px 12px;
  border-top: 0;
}

.studio-clone-hero .concierge-v2-composer__bar p {
  max-width: 320px;
  margin-inline: 2px auto;
  font-size: 10px;
}

.composer-tools,
.composer-primary-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.concierge-v2-composer__bar .composer-tool {
  position: relative;
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #11110f;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.concierge-v2-composer__bar .composer-tool:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: #ffffff;
}

.concierge-v2-composer__bar .composer-tool[aria-pressed="true"] {
  color: #ffffff;
  background: #11110f;
}

.concierge-v2-composer__bar .composer-tool img {
  width: 18px;
  height: 18px;
}

.concierge-v2-composer__bar .composer-tool__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  min-width: 17px;
  height: 17px;
  padding-inline: 4px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  color: #ffffff;
  background: #11110f;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.concierge-v2-composer__bar .composer-tool__badge[hidden] {
  display: none;
}

.concierge-v2-composer__bar .composer-tool[aria-pressed="true"] img {
  filter: invert(1);
}

body.reference-links-dialog-open {
  overflow: hidden;
}

.reference-links-dialog {
  --reference-surface: rgba(14, 15, 15, 0.98);
  --reference-panel: rgba(255, 255, 255, 0.055);
  --reference-input: rgba(0, 0, 0, 0.22);
  --reference-ink: #f4f0e8;
  --reference-muted: rgba(244, 240, 232, 0.64);
  --reference-line: rgba(255, 255, 255, 0.13);
  --reference-strong: #f4f0e8;
  --reference-strong-ink: #11110f;
  --reference-error: #ffaaa2;
  width: min(580px, calc(100vw - 32px));
  max-width: none;
  max-height: min(720px, calc(100svh - 32px));
  margin: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--reference-line);
  border-radius: 26px;
  color: var(--reference-ink);
  background: var(--reference-surface);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(28px) saturate(1.15);
}

.reference-links-dialog::backdrop {
  background: rgba(9, 10, 10, 0.48);
  backdrop-filter: blur(14px);
}

.reference-links-dialog[open] {
  animation: reference-links-enter 200ms var(--ease);
}

@keyframes reference-links-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
}

.reference-links-dialog__shell {
  display: grid;
  max-height: min(720px, calc(100svh - 32px));
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.reference-links-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--reference-line);
}

.reference-links-dialog__header p {
  margin: 0 0 7px;
  color: var(--reference-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reference-links-dialog__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.reference-links-dialog__header > button {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--reference-line);
  border-radius: 50%;
  color: var(--reference-ink);
  background: var(--reference-panel);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

.reference-links-dialog__header > button:hover {
  border-color: var(--reference-muted);
  transform: rotate(4deg);
}

.reference-links-dialog__header svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.reference-links-dialog__body {
  min-height: 0;
  overflow: auto;
  padding: 24px;
}

.reference-links-dialog__intro {
  max-width: 480px;
  margin: 0 0 20px;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.55;
}

.reference-links-dialog__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.reference-links-dialog__form input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--reference-line);
  border-radius: 14px;
  outline: 0;
  color: var(--reference-ink);
  background: var(--reference-input);
  font: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.reference-links-dialog__form input::placeholder {
  color: var(--reference-muted);
}

.reference-links-dialog__form input:focus {
  border-color: var(--reference-muted);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--reference-ink) 12%, transparent);
}

.reference-links-dialog__form > button,
.reference-links-dialog__footer button {
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  color: var(--reference-strong-ink);
  background: var(--reference-strong);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms var(--ease), opacity 180ms ease;
}

.reference-links-dialog__form > button:hover,
.reference-links-dialog__footer button:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.reference-links-dialog__status {
  min-height: 18px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--reference-muted);
  font-size: 11px;
  line-height: 1.45;
}

.reference-links-dialog__status[data-state="error"] {
  color: var(--reference-error);
}

.reference-links-dialog__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--reference-line);
}

.reference-links-dialog__list-head h3 {
  margin: 0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-links-dialog__list-head span {
  color: var(--reference-muted);
  font-size: 11px;
}

.reference-links-dialog__list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.reference-links-dialog__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--reference-line);
  border-radius: 16px;
  background: var(--reference-panel);
}

.reference-links-dialog__list a {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 13px 0 13px 15px;
}

.reference-links-dialog__list strong {
  overflow: hidden;
  color: var(--reference-ink);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reference-links-dialog__list a span {
  overflow: hidden;
  color: var(--reference-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reference-links-dialog__list li > button {
  min-height: 34px;
  margin-right: 9px;
  padding: 0 11px;
  border: 1px solid var(--reference-line);
  border-radius: 999px;
  color: var(--reference-muted);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.reference-links-dialog__list li > button:hover {
  color: var(--reference-ink);
  background: var(--reference-input);
}

.reference-links-dialog__empty {
  margin: 14px 0 0;
  padding: 22px 18px;
  border: 1px dashed var(--reference-line);
  border-radius: 16px;
  color: var(--reference-muted);
  font-size: 12px;
  text-align: center;
}

.reference-links-dialog__footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 24px 20px;
  border-top: 1px solid var(--reference-line);
}

.reference-links-dialog__footer button {
  min-height: 44px;
  padding-inline: 24px;
}

.reference-links-dialog button:focus-visible,
.reference-links-dialog a:focus-visible {
  outline: 2px solid var(--reference-ink);
  outline-offset: 3px;
}

.studio-clone-services .concierge-v3-category {
  min-height: clamp(500px, 48vw, 670px);
}

.studio-clone-services .concierge-v3-category > div {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 6, 0.22) 18%, rgba(5, 6, 6, 0.94) 100%);
}

.studio-clone-or {
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .studio-clone-hero::after {
    background:
      linear-gradient(90deg, rgba(6, 7, 7, 0.86) 0%, rgba(6, 7, 7, 0.72) 48%, rgba(6, 7, 7, 0.24) 100%),
      linear-gradient(180deg, rgba(5, 6, 6, 0.2), rgba(5, 6, 6, 0.46));
  }

  .studio-clone-hero .concierge-v2-hero__content {
    align-items: center;
  }

  .studio-clone-hero h1,
  .studio-clone-hero__eyebrow {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .page-studio-clone .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding-inline: 20px;
  }

  .page-studio-clone .site-header .brand-lockup img {
    width: min(184px, 48vw);
  }

  .page-studio-clone .header-request {
    display: none;
  }

  .page-studio-clone .header-actions {
    display: block;
    width: 44px;
  }

  .page-studio-clone .menu-toggle {
    position: relative;
    display: grid;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.56);
  }

  .studio-clone-hero {
    min-height: clamp(700px, 88svh, 820px);
  }

  .studio-clone-hero::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.66) 0%, rgba(5, 6, 6, 0.32) 40%, rgba(5, 6, 6, 0.74) 100%),
      linear-gradient(90deg, rgba(5, 6, 6, 0.62), rgba(5, 6, 6, 0.18));
  }

  .studio-clone-hero .concierge-v2-hero__media img {
    object-position: center;
  }

  .studio-clone-hero .concierge-v2-hero__content {
    align-items: center;
    justify-content: flex-start;
    padding-block: 172px 72px;
  }

  .studio-clone-hero__eyebrow {
    margin-bottom: 18px;
    text-align: center;
  }

  .studio-clone-hero h1 {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: clamp(41px, 11.5vw, 52px);
    line-height: 0.98;
    text-align: center;
  }

  .studio-clone-hero .concierge-v2-composer textarea {
    height: 96px;
    min-height: 96px;
    padding: 18px 18px 8px;
    font-size: 15px;
  }

  .studio-clone-hero .concierge-v2-composer {
    --composer-textarea-min-height: 96px;
    width: 100%;
    max-width: calc(100vw - 40px);
    min-width: 0;
    border-radius: 18px;
  }

  .studio-clone-hero .concierge-v2-composer__bar {
    display: flex;
    min-height: 54px;
    gap: 8px;
    padding: 0 8px 8px;
  }

  .studio-clone-hero .concierge-v2-composer__bar p {
    display: none;
  }

  .studio-clone-hero .concierge-v2-composer__bar button {
    display: grid;
  }

  .studio-clone-hero .composer-tools,
  .studio-clone-hero .composer-primary-actions {
    gap: 6px;
  }

  .studio-clone-hero .composer-primary-actions {
    margin-left: auto;
  }

  .studio-clone-hero .concierge-v2-composer__bar .composer-tool {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .studio-clone-hero .concierge-v2-composer__bar .request-mic,
  .studio-clone-hero .concierge-v2-composer__bar .composer-submit {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .studio-clone-hero .concierge-v2-composer.is-expanded {
    --composer-textarea-min-height: 220px;
  }

  .reference-links-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    border-radius: 20px;
  }

  .reference-links-dialog__shell {
    max-height: calc(100svh - 20px);
  }

  .reference-links-dialog__header {
    padding: 19px 18px 17px;
  }

  .reference-links-dialog__header h2 {
    font-size: 29px;
  }

  .reference-links-dialog__body {
    padding: 18px;
  }

  .reference-links-dialog__form {
    grid-template-columns: 1fr;
  }

  .reference-links-dialog__form > button {
    width: 100%;
  }

  .reference-links-dialog__status {
    grid-column: 1;
  }

  .reference-links-dialog__list li {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .reference-links-dialog__footer {
    padding: 12px 18px 16px;
  }

  .reference-links-dialog__footer button {
    width: 100%;
  }

  .studio-clone-services .concierge-v3-category {
    min-height: 490px;
  }
}

/* Studio positioning and production Education Suite proof. */
.suite-proof {
  scroll-margin-top: calc(var(--development-banner-height) + var(--header-height));
  padding: 126px 0 140px;
  color: #181713;
  background: #f8f6f1;
}

.page-studio-clone .suite-proof--home {
  color: var(--v2-text);
  border-block: 1px solid var(--v2-line);
  background: var(--v2-bg);
}

.page-studio-clone .suite-proof--home .suite-proof__head {
  border-bottom-color: var(--v2-line);
}

.page-studio-clone .suite-proof--home .suite-proof__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 240, 232, 0.72);
}

.page-studio-clone .suite-proof--home .suite-proof__eyebrow::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.page-studio-clone .suite-proof--home .suite-proof__source {
  color: rgba(244, 240, 232, 0.62);
}

.page-studio-clone .suite-proof--home .suite-proof__head h2,
.page-studio-clone .suite-proof--home .suite-proof__feature-copy h3,
.page-studio-clone .suite-proof--home .suite-proof__item-copy h3 {
  color: var(--v2-text);
}

.page-studio-clone .suite-proof--home .suite-proof__intro p,
.page-studio-clone .suite-proof--home .suite-proof__feature-copy > p:last-child,
.page-studio-clone .suite-proof--home .suite-proof__item-copy p {
  color: var(--v2-muted);
}

.page-studio-clone .suite-proof--home .suite-proof__intro .suite-proof__small {
  border-top-color: var(--v2-line);
  color: rgba(244, 240, 232, 0.58);
}

.page-studio-clone .suite-proof--home .suite-proof__intro a {
  color: var(--v2-text);
  border-bottom-color: rgba(244, 240, 232, 0.72);
}

.page-studio-clone .suite-proof--home .suite-proof__frame {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.38);
}

.page-studio-clone .suite-proof--home .suite-proof__frame {
  position: relative;
  transition: transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.page-studio-clone .suite-proof--home .suite-proof__frame:hover,
.page-studio-clone .suite-proof--home .suite-proof__frame:focus-within {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.52);
  transform: translateY(-7px) scale(1.008);
}

.suite-proof--full {
  padding-top: 132px;
  background:
    radial-gradient(circle at 88% 7%, rgba(216, 184, 112, 0.12), transparent 25%),
    #fbfaf7;
}

.suite-proof__head {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.58fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 42px;
  border-bottom: 1px solid #d8d3c9;
}

.suite-proof__eyebrow,
.suite-proof__source {
  margin: 0 0 18px;
  color: #9a6e20;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.suite-proof__head h2 {
  max-width: 790px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.suite-proof__intro {
  padding-bottom: 4px;
}

.suite-proof__intro p {
  margin: 0;
  color: #625f58;
  font-size: 15px;
  line-height: 1.7;
}

.suite-proof__intro .suite-proof__small {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ddd8ce;
  color: #79766f;
  font-size: 13px;
}

.suite-proof__intro a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid #181713;
  color: #181713;
  font-size: 13px;
  font-weight: 700;
}

.suite-proof__intro a span {
  color: #9a6e20;
}

.suite-proof__feature {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 52px;
  align-items: end;
}

.suite-proof__feature-copy {
  padding: 0 0 22px;
}

.suite-proof__number {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 58px;
  color: #a47625;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.suite-proof__number::after {
  width: 36px;
  height: 1px;
  background: #c7a96e;
  content: "";
}

.suite-proof__feature-copy h3,
.suite-proof__item-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.suite-proof__feature-copy > p:last-child,
.suite-proof__item-copy p {
  margin: 18px 0 0;
  color: #66625b;
  font-size: 14px;
  line-height: 1.65;
}

.suite-proof__frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d6d0c5;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(43, 36, 24, 0.09);
}

.suite-proof__media-button {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
}

.suite-proof__media-button:focus-visible {
  outline: 3px solid rgba(244, 240, 232, 0.9);
  outline-offset: -5px;
}

.suite-proof__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.44;
  object-fit: cover;
  object-position: top;
}

.suite-proof__media-button img {
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 420ms ease;
}

.suite-proof__media-button:hover img,
.suite-proof__media-button:focus-visible img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.018);
}

.suite-proof__frame-meta {
  display: grid;
  min-height: 54px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 9px 11px 9px 15px;
  border-top: 1px solid #e3dfd6;
  color: #181713;
  background: #ffffff;
}

.suite-proof__implementation {
  min-width: 0;
  color: #7a766e;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.suite-proof__expand {
  position: static;
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: #11110f;
  box-shadow: 0 7px 18px rgba(17, 17, 15, 0.16);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.suite-proof__expand svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.suite-proof__media-button:hover .suite-proof__expand,
.suite-proof__media-button:focus-visible .suite-proof__expand {
  background: #3e3d38;
  box-shadow: 0 9px 22px rgba(17, 17, 15, 0.22);
  transform: translateX(2px);
}

.suite-proof__frame figcaption {
  padding: 12px 16px;
  border-top: 1px solid #e3dfd6;
  color: #7a766e;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.suite-proof__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 54px 26px;
  margin-top: 78px;
}

.suite-proof__item {
  min-width: 0;
}

.suite-proof__item--enrollment,
.suite-proof__grid--teaser .suite-proof__item:first-child {
  grid-column: 1 / span 6;
}

.suite-proof__item--attendance,
.suite-proof__grid--teaser .suite-proof__item:last-child {
  grid-column: 7 / span 6;
}

.suite-proof__item--forms {
  grid-column: 1 / span 7;
}

.suite-proof__item--dashboard {
  grid-column: 8 / span 5;
}

.suite-proof__item--time-clock {
  grid-column: 3 / span 8;
}

.suite-proof__item-copy {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 5px 18px;
  padding: 24px 2px 0;
}

.suite-proof__item-copy > span {
  grid-row: 1 / 3;
  padding-top: 5px;
  color: #a47625;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.suite-proof__item-copy > span::after {
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 12px;
  background: #c7a96e;
  content: "";
}

.suite-proof__item-copy h3,
.suite-proof__item-copy p {
  grid-column: 2;
}

.suite-proof__item-copy h3 {
  font-size: 29px;
}

.suite-proof__item-copy p {
  margin-top: 10px;
}

.page-studio-clone .suite-proof--home .suite-proof__item-copy {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 6px 20px;
}

.suite-proof__marker {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.22);
  border-radius: 14px;
  color: rgba(244, 240, 232, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.suite-proof__marker--hero {
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  border-radius: 16px;
}

.suite-proof__marker svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.suite-proof__marker--hero svg {
  width: 31px;
  height: 31px;
}

.suite-proof__item-copy > .suite-proof__marker {
  grid-row: 1 / 3;
  padding-top: 0;
  color: rgba(244, 240, 232, 0.92);
  font-size: 0;
}

.suite-proof__item-copy > .suite-proof__marker::after {
  display: none;
}

.suite-proof__production-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 84px;
  padding: 28px 0;
  border-top: 1px solid #d8d3c9;
  border-bottom: 1px solid #d8d3c9;
}

.suite-proof__production-note p {
  max-width: 880px;
  margin: 0;
  color: #5f5b54;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.45;
}

.suite-proof__production-note strong {
  color: #181713;
  font-weight: 400;
}

.page-studio-clone .suite-proof--home .suite-proof__production-note {
  border-color: var(--v2-line);
}

.page-studio-clone .suite-proof--home .suite-proof__production-note strong {
  color: var(--v2-text);
}

.page-studio-clone .suite-proof--home .suite-proof__production-note p {
  color: var(--v2-muted);
}

.suite-proof__project-button {
  min-width: 164px;
  flex: 0 0 auto;
  justify-content: center;
  white-space: nowrap;
}

body.suite-dialog-open {
  overflow: hidden;
}

.suite-detail-dialog {
  width: min(1460px, calc(100vw - 32px));
  height: min(900px, calc(100svh - 32px));
  max-width: none;
  max-height: none;
  margin: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #f4f0e8;
  background: #0b0c0c;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.68);
}

.suite-detail-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.suite-detail-dialog[open] {
  animation: suite-dialog-enter 220ms ease-out;
}

@keyframes suite-dialog-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }
}

.suite-detail-dialog__shell {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.suite-detail-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 26px 23px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.suite-detail-dialog__header p {
  margin: 0 0 7px;
  color: rgba(244, 240, 232, 0.68);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.suite-detail-dialog__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.suite-detail-dialog__header button {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #f4f0e8;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.suite-detail-dialog__header button:hover,
.suite-detail-dialog__header button:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(4deg);
}

.suite-detail-dialog__header button:focus-visible {
  outline: 2px solid rgba(244, 240, 232, 0.9);
  outline-offset: 3px;
}

.suite-detail-dialog__header button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.suite-detail-dialog__body {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.58fr);
}

.suite-detail-dialog__media {
  position: relative;
  min-width: 0;
  overflow: auto;
  overscroll-behavior: contain;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  background: #eeece7;
  scrollbar-color: #8b877f #d8d4cc;
}

.suite-detail-dialog__media:focus-visible {
  outline: 3px solid rgba(244, 240, 232, 0.92);
  outline-offset: -5px;
}

.suite-detail-dialog__media-toolbar {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 7px 10px 7px 15px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  color: #ffffff;
  background: #141515;
  box-shadow: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.suite-detail-dialog__media-toolbar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #111211;
  background: #f4f0e8;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.suite-detail-dialog__media-toolbar button:hover {
  background: #ffffff;
}

.suite-detail-dialog__media-toolbar button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.suite-detail-dialog__image-stack {
  display: grid;
  width: max-content;
  min-width: 100%;
  align-content: start;
  gap: 0;
}

.suite-detail-dialog__media img {
  display: block;
  width: auto;
  min-width: 100%;
  max-width: none;
  height: auto;
}

.suite-detail-dialog__media.is-fit-width .suite-detail-dialog__image-stack {
  width: 100%;
}

.suite-detail-dialog__media.is-fit-width img {
  width: 100%;
  min-width: 0;
}

.suite-detail-dialog__media.is-html-demo {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7f5ef;
}

.suite-detail-dialog__view-switcher {
  display: flex;
  flex: 0 0 auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: #141515;
}

.suite-detail-dialog__view-switcher[hidden] {
  display: none !important;
}

.suite-detail-dialog__view-switcher button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.suite-detail-dialog__view-switcher button:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.48);
}

.suite-detail-dialog__view-switcher button[aria-selected="true"] {
  color: #111211;
  border-color: #f4f0e8;
  background: #f4f0e8;
}

.suite-detail-dialog__view-switcher button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.suite-detail-dialog__embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #f7f5ef;
}

.suite-detail-dialog__embed-host {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  background: #f7f5ef;
}

.suite-detail-dialog__embed-host[hidden],
.suite-detail-dialog__embed[hidden],
.suite-detail-dialog__image-stack[hidden],
.suite-detail-dialog__media-toolbar[hidden] {
  display: none !important;
}

.suite-detail-dialog__copy {
  min-height: 0;
  overflow: auto;
  padding: 42px 38px 48px;
}

.suite-detail-dialog__overview {
  margin: 0 0 34px;
  color: rgba(244, 240, 232, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.48;
}

.suite-detail-dialog__copy section {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.suite-detail-dialog__copy h3 {
  margin: 0 0 17px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.suite-detail-dialog__copy ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-detail-dialog__copy li {
  position: relative;
  padding-left: 19px;
  color: rgba(244, 240, 232, 0.7);
  font-size: 13px;
  line-height: 1.62;
}

.suite-detail-dialog__copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.68);
  content: "";
}

.suite-detail-dialog__copy section p {
  margin: 0;
  color: rgba(244, 240, 232, 0.7);
  font-size: 13px;
  line-height: 1.68;
}

.suite-detail-dialog__copy > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.65);
  color: #f4f0e8;
  font-size: 12px;
  font-weight: 700;
}

.suite-detail-dialog__copy > a span {
  color: rgba(244, 240, 232, 0.72);
  font-size: 16px;
}

.education-device--product {
  align-self: center;
  height: auto;
  margin: 86px 0 44px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 34px 74px rgba(29, 27, 23, 0.18);
}

.education-device--product img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.44;
  object-fit: cover;
  object-position: top;
}

.education-device--product figcaption {
  padding: 14px 18px;
  border-top: 1px solid #e3dfd6;
  color: #6d6961;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-education .education-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
}

.page-education .education-hero h1 {
  font-size: clamp(54px, 5.3vw, 76px);
}

@media (max-width: 980px) {
  .suite-proof__head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .suite-proof__head h2 {
    max-width: 760px;
  }

  .suite-proof__intro {
    max-width: 720px;
  }

  .suite-proof__feature {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
  }

  .suite-detail-dialog__body {
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.8fr);
  }

  .suite-detail-dialog__copy {
    padding-inline: 28px;
  }

  .page-education .education-hero__grid {
    min-height: 620px;
    grid-template-columns: minmax(0, 0.92fr) minmax(350px, 0.82fr);
  }
}

@media (max-width: 700px) {
  .studio-clone-hero {
    min-height: 820px;
  }

  .studio-clone-hero h1 {
    margin-bottom: 22px;
  }

  .suite-proof,
  .suite-proof--full {
    padding: 82px 0 92px;
  }

  .suite-proof__head {
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 30px;
  }

  .suite-proof__head h2 {
    font-size: 43px;
    line-height: 1;
  }

  .suite-proof__intro p {
    font-size: 14px;
  }

  .suite-proof__feature {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .suite-proof__feature-copy {
    padding-bottom: 0;
  }

  .suite-proof__number {
    margin-bottom: 26px;
  }

  .suite-proof__feature-copy h3 {
    font-size: 32px;
  }

  .suite-proof__grid,
  .suite-proof__grid--teaser {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 52px;
  }

  .suite-proof__item,
  .suite-proof__item--enrollment,
  .suite-proof__item--attendance,
  .suite-proof__item--forms,
  .suite-proof__item--dashboard,
  .suite-proof__item--time-clock,
  .suite-proof__grid--teaser .suite-proof__item:first-child,
  .suite-proof__grid--teaser .suite-proof__item:last-child {
    grid-column: 1;
  }

  .suite-proof__frame {
    border-radius: 10px;
  }

  .suite-proof__item-copy {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 4px 12px;
    padding-top: 19px;
  }

  .page-studio-clone .suite-proof--home .suite-proof__item-copy {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 5px 14px;
  }

  .suite-proof__marker {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .suite-proof__marker svg {
    width: 24px;
    height: 24px;
  }

  .suite-proof__marker--hero {
    width: 52px;
    height: 52px;
    margin-bottom: 30px;
    border-radius: 14px;
  }

  .suite-proof__marker--hero svg {
    width: 28px;
    height: 28px;
  }

  .suite-proof__item-copy h3 {
    font-size: 26px;
  }

  .suite-proof__production-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin-top: 60px;
  }

  .suite-proof__production-note p {
    font-size: 18px;
  }

  .suite-proof__project-button {
    min-width: 158px;
    align-self: flex-start;
  }

  .suite-proof__expand {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 8px;
  }

  .suite-proof__frame-meta {
    min-height: 52px;
    gap: 8px;
    padding: 9px 9px 9px 12px;
  }

  .suite-proof__implementation {
    font-size: 8px;
    line-height: 1.3;
  }

  .suite-detail-dialog {
    width: calc(100vw - 14px);
    height: calc(100svh - 14px);
    border-radius: 13px;
  }

  .suite-detail-dialog__header {
    gap: 18px;
    padding: 18px 16px 17px 19px;
  }

  .suite-detail-dialog__header h2 {
    max-width: 270px;
    font-size: 27px;
  }

  .suite-detail-dialog__header button {
    width: 40px;
    height: 40px;
  }

  .suite-detail-dialog__body {
    display: block;
    overflow: auto;
  }

  .suite-detail-dialog__media {
    max-height: 52svh;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .suite-detail-dialog__media.is-html-demo {
    height: 52svh;
  }

  .suite-detail-dialog__media-toolbar {
    min-height: 45px;
    padding: 6px 8px 6px 12px;
  }

  .suite-detail-dialog__view-switcher {
    min-height: 45px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 8px;
  }

  .suite-detail-dialog__view-switcher button {
    flex: 0 0 auto;
  }

  .suite-detail-dialog__copy {
    overflow: visible;
    padding: 30px 20px 42px;
  }

  .suite-detail-dialog__overview {
    margin-bottom: 28px;
    font-size: 19px;
  }

  .page-education .education-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .education-device.education-device--product {
    width: 100%;
    height: auto;
    margin: 24px 0 42px;
  }

  .education-device--product img {
    height: auto;
    object-position: top;
  }
}

/* Studio single-page information architecture. */
#services,
#education-proof,
#roadmap,
#process,
#about,
#selected-work,
#start-project {
  scroll-margin-top: calc(var(--development-banner-height) + var(--header-height));
}

.studio-onepage {
  padding: 126px 0 136px;
  color: var(--v2-text);
  background: var(--v2-bg);
}

.studio-capabilities,
.studio-about {
  border-block: 1px solid var(--v2-line);
}

.studio-capabilities {
  padding-block: 112px 104px;
}

.studio-capabilities .studio-onepage__head {
  margin-bottom: 30px;
}

.studio-capabilities__summary {
  max-width: 900px;
  margin: 0;
  color: var(--v2-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.018em;
}

.studio-onepage__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--v2-line);
}

.studio-onepage__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(244, 240, 232, 0.7);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio-onepage__eyebrow::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.studio-onepage__head h2,
.studio-brief__head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.studio-onepage__head > p,
.studio-about__copy > p,
.studio-brief__head > div:last-child > p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.72;
}

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

.studio-capability {
  display: grid;
  min-height: 330px;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 28px;
  padding: 46px 48px 48px 0;
  border-bottom: 1px solid var(--v2-line);
}

.studio-capability:nth-child(even) {
  padding-right: 0;
  padding-left: 48px;
  border-left: 1px solid var(--v2-line);
}

.studio-capability__icon,
.studio-principles article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.2);
  border-radius: 15px;
  color: rgba(244, 240, 232, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.016);
}

.studio-capability__icon svg,
.studio-principles article > span svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.studio-capability div > p:first-child {
  margin: 2px 0 24px;
  color: rgba(244, 240, 232, 0.6);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-capability h3,
.studio-principles h3 {
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.studio-capability div > p:last-child,
.studio-principles p {
  margin: 18px 0 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.68;
}

.page-studio-clone .studio-capability:hover {
  background: rgba(255, 255, 255, 0.035);
}

.page-studio-clone .studio-capability:hover h3 {
  color: var(--v2-text);
}

.studio-connected-system {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 46px;
}

.studio-connected-system p {
  max-width: 900px;
  margin: 0;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.68;
}

.studio-connected-system strong {
  color: var(--v2-text);
  font-weight: 650;
}

.studio-connected-system a,
.studio-brief a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.74);
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 700;
}

.studio-about {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.045), transparent 26%),
    #0a0b0b;
}

.studio-about__head {
  align-items: start;
}

.studio-about .studio-onepage__head {
  margin-bottom: 0;
}

.studio-about {
  padding-bottom: 112px;
}

.studio-about__copy {
  display: grid;
  gap: 18px;
}

.studio-about__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.studio-about__founder {
  color: var(--v2-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, currentColor 68%, transparent);
  text-underline-offset: 0.22em;
}

.studio-about__founder:hover,
.studio-about__founder:focus-visible {
  text-decoration-thickness: 2px;
  text-decoration-color: currentColor;
}

.studio-about__portfolio {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 700;
}

.studio-about__portfolio svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms var(--ease);
}

.studio-about__portfolio:hover svg {
  transform: translate(2px, -2px);
}

.studio-about__contact {
  display: inline-flex;
  min-height: 42px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 17px;
  border: 1px solid var(--v2-text);
  border-radius: 999px;
  color: var(--v2-bg);
  background: var(--v2-text);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.studio-about__contact svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.studio-about__contact:hover {
  color: var(--v2-text);
  background: transparent;
  transform: translateY(-1px);
}

.studio-about__contact:focus-visible {
  outline: 3px solid var(--v2-text);
  outline-offset: 3px;
}

.studio-about__copy > span,
.studio-brief__head > div:last-child > span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: rgba(244, 240, 232, 0.68);
  font-size: 11px;
  letter-spacing: 0.035em;
}

.studio-about__copy i,
.studio-brief__head i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.82);
  box-shadow: 0 0 0 4px rgba(244, 240, 232, 0.08);
}

.studio-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--v2-line);
}

.studio-principles article {
  min-height: 310px;
  padding: 36px 28px 38px;
}

.studio-principles article + article {
  border-left: 1px solid var(--v2-line);
}

.studio-principles article > span {
  width: 52px;
  height: 52px;
  margin-bottom: 46px;
  border-radius: 14px;
}

.studio-principles article > span svg {
  width: 27px;
  height: 27px;
}

.studio-principles h3 {
  font-size: 25px;
}

/* Selected work: an auto-rotating, manually selectable portfolio stage. */
.selected-work {
  --work-rotation-duration: 7000ms;
  padding: 60px 0 128px;
  color: var(--v2-text);
  border-bottom: 1px solid var(--v2-line);
  background: var(--v2-bg);
}

.selected-work > .shell {
  width: min(calc(100% - 80px), 1544px);
}

.selected-work__intro {
  margin-bottom: 48px;
}

.selected-work__intro > p {
  margin: 0 0 20px;
  color: var(--v2-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.selected-work__intro h2 {
  max-width: 1200px;
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 4vw, 64px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.selected-work__layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.selected-work__index {
  border-top: 1px solid var(--v2-line);
}

.selected-work__tab {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 118px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 30px 18px 26px 26px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  color: var(--v2-muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.selected-work__tab::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 0;
  width: 4px;
  background: var(--v2-text);
  content: "";
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 180ms ease, transform 240ms var(--ease);
}

.selected-work__tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--v2-text);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.selected-work.is-rotating .selected-work__tab[aria-selected="true"]::after {
  animation: selected-work-progress var(--work-rotation-duration) linear forwards;
}

.selected-work__tab:hover {
  color: var(--v2-text);
  background: color-mix(in srgb, var(--v2-text) 3.5%, transparent);
}

.selected-work__tab:focus-visible {
  z-index: 1;
}

.selected-work__tab[aria-selected="true"] {
  color: var(--v2-text);
}

.selected-work__tab[aria-selected="true"]::before {
  opacity: 1;
  transform: scaleY(1);
}

.selected-work__tab > span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.025em;
}

.selected-work__tab > span:last-child {
  display: grid;
  gap: 9px;
}

.selected-work__tab strong {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.28;
}

.selected-work__tab small {
  color: var(--v2-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.selected-work__stage {
  min-width: 0;
}

.selected-work__viewport {
  position: relative;
  aspect-ratio: 1.92 / 1;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  background: var(--v2-surface);
}

.selected-work__panel {
  position: absolute;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.992);
  transition: opacity 360ms ease, transform 540ms var(--ease), visibility 360ms;
  pointer-events: none;
}

.selected-work__panel.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.selected-work__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.selected-work__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
  padding-top: 26px;
}

.selected-work__details > div:first-child {
  max-width: 760px;
}

.selected-work__details [data-work-kicker] {
  margin: 0 0 11px;
  color: var(--v2-text);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.selected-work__details [data-work-description] {
  margin: 0;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.58;
}

.selected-work__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.selected-work__rotation {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--v2-line);
  border-radius: 50%;
  color: var(--v2-text);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.selected-work__rotation:hover {
  color: var(--v2-bg);
  border-color: var(--v2-text);
  background: var(--v2-text);
}

.selected-work__rotation svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.selected-work__rotation svg[hidden] {
  display: none;
}

.selected-work__rotation svg[data-work-play-icon] {
  fill: currentColor;
  stroke: none;
}

.selected-work__learn {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--v2-text);
  border-radius: 999px;
  color: var(--v2-bg);
  background: var(--v2-text);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.selected-work__learn:hover {
  color: var(--v2-text);
  background: transparent;
  transform: translateY(-1px);
}

.selected-work__actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.selected-work__actions a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  transition: transform 180ms var(--ease);
}

.selected-work__actions a:hover svg {
  transform: translate(2px, -2px);
}

.selected-work__live[hidden] {
  display: none;
}

.selected-work__promise {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: start;
  margin-top: 82px;
  padding-top: 58px;
  border-top: 1px solid var(--v2-line);
}

.selected-work__promise > div:first-child > p {
  margin: 0 0 20px;
  color: var(--v2-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.selected-work__promise h3 {
  max-width: 700px;
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.selected-work__promise > div:last-child {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.selected-work__promise > div:last-child > p {
  max-width: 760px;
  margin: 0;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.68;
}

.selected-work__promise > div:last-child > p:first-child {
  color: var(--v2-text);
  font-size: 18px;
  line-height: 1.55;
}

.selected-work__promise a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid var(--v2-text);
  border-radius: 999px;
  color: var(--v2-bg);
  background: var(--v2-text);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.selected-work__promise a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.selected-work__promise a:hover {
  color: var(--v2-text);
  background: transparent;
  transform: translateY(-1px);
}

.selected-work__promise a:focus-visible {
  outline: 3px solid var(--v2-text);
  outline-offset: 3px;
}

.work-detail-dialog .suite-detail-dialog__media {
  display: grid;
  align-content: start;
}

.work-detail-dialog .suite-detail-dialog__media.is-html-demo {
  display: flex;
  height: 100%;
  min-height: 0;
  align-content: normal;
}

.work-detail-dialog .suite-detail-dialog__media.is-html-demo > span {
  display: none;
}

.work-detail-dialog .suite-detail-dialog__media.is-html-demo .suite-detail-dialog__embed-host {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.work-detail-dialog .suite-detail-dialog__media img {
  min-height: 100%;
  object-fit: contain;
  object-position: top center;
}

@keyframes selected-work-progress {
  to {
    transform: scaleX(1);
  }
}

.studio-brief {
  padding: 128px 0 144px;
  color: var(--v2-text);
  border-top: 1px solid var(--v2-line);
  background:
    radial-gradient(circle at 10% 2%, rgba(255, 255, 255, 0.055), transparent 22%),
    #070808;
}

.studio-brief__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 84px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--v2-line);
}

.studio-brief__head > div:last-child {
  display: grid;
  gap: 18px;
}

.studio-project-form {
  color: var(--v2-text);
}

.studio-project-form .project-form__rail p,
.studio-project-form .project-form__rail > small,
.studio-project-form .choice-grid label > span small,
.studio-project-form .education-choice small,
.studio-project-form .form-actions p {
  color: var(--v2-muted);
}

.studio-project-form .form-step {
  color: #080909;
  background: #f4f0e8;
}

.studio-project-form .form-progress {
  background: rgba(255, 255, 255, 0.12);
}

.studio-project-form .form-progress i {
  background: #f4f0e8;
}

.studio-project-form fieldset + fieldset,
.studio-project-form .form-actions {
  border-color: var(--v2-line);
}

.studio-project-form input:not([type="radio"]):not([type="checkbox"]),
.studio-project-form select,
.studio-project-form textarea,
.studio-project-form .choice-grid label > span,
.studio-project-form .education-choice > span {
  border-color: rgba(255, 255, 255, 0.17);
  color: var(--v2-text);
  background: rgba(255, 255, 255, 0.035);
}

.studio-project-form select {
  color-scheme: dark;
}

.studio-project-form textarea::placeholder {
  color: rgba(244, 240, 232, 0.38);
}

.studio-project-form input:focus,
.studio-project-form select:focus,
.studio-project-form textarea:focus {
  border-color: rgba(244, 240, 232, 0.9);
  box-shadow: 0 0 0 3px rgba(244, 240, 232, 0.12);
}

.studio-project-form .choice-grid label > span,
.studio-project-form .education-choice > span {
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.studio-project-form .choice-grid input:checked + span,
.studio-project-form .education-choice input:checked + span {
  border-color: rgba(244, 240, 232, 0.82);
  background: rgba(244, 240, 232, 0.09);
}

.studio-project-form .choice-grid label > span i {
  color: rgba(244, 240, 232, 0.62);
}

.studio-project-form .choice-grid input:focus-visible + span,
.studio-project-form .education-choice input:focus-visible + span {
  outline-color: rgba(244, 240, 232, 0.88);
}

.studio-project-form .text-button {
  color: var(--v2-text);
}

/* Education Suite roadmap. */
.studio-roadmap {
  padding: 126px 0 136px;
  color: var(--v2-text);
  border-bottom: 1px solid var(--v2-line);
  background:
    radial-gradient(circle at 84% 6%, rgba(255, 255, 255, 0.05), transparent 27%),
    #0a0b0b;
}

.studio-roadmap__head {
  align-items: start;
}

.studio-roadmap__intro {
  display: grid;
  gap: 22px;
}

.studio-roadmap__intro p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.72;
}

.studio-roadmap__intro span {
  padding-top: 18px;
  border-top: 1px solid var(--v2-line);
  color: rgba(244, 240, 232, 0.52);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.065em;
  line-height: 1.55;
  text-transform: uppercase;
}

.studio-roadmap__phases {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--v2-line);
  list-style: none;
}

.studio-roadmap__phase {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  border-top: 1px solid var(--v2-line);
}

.studio-roadmap__phase > header {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 42px 34px 42px 0;
}

.studio-roadmap__phase > header span {
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.025em;
}

.studio-roadmap__phase > header small {
  color: rgba(244, 240, 232, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

.studio-roadmap__features article {
  display: grid;
  min-height: 250px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  align-content: start;
  padding: 42px;
}

.studio-roadmap__features article + article {
  border-left: 1px solid var(--v2-line);
}

.studio-roadmap__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.2);
  border-radius: 14px;
  color: rgba(244, 240, 232, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.016);
}

.studio-roadmap__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.studio-roadmap__features h3 {
  margin: 2px 0 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.studio-roadmap__features p {
  margin: 15px 0 0;
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.68;
}

.studio-roadmap__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 42px;
}

.studio-roadmap__footer p {
  max-width: 880px;
  margin: 0;
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.68;
}

.studio-roadmap__footer strong {
  color: var(--v2-text);
  font-weight: 650;
}

.studio-roadmap__footer a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.74);
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 1101px) {
  .page-studio-clone {
    --gutter: clamp(42px, 5vw, 72px);
  }

  .page-studio-clone .site-header {
    display: flex;
    justify-content: space-between;
  }

  .page-studio-clone .site-header .brand-lockup img {
    width: clamp(190px, 17vw, 250px);
  }

  .page-studio-clone .main-nav {
    position: absolute;
    top: 50%;
    left: 50vw;
    gap: clamp(18px, 2vw, 38px);
    white-space: nowrap;
    transform: translate(-50%, -50%);
  }

  .page-studio-clone .main-nav a {
    font-size: clamp(0.8125rem, 0.74rem + 0.12vw, 0.875rem);
  }

  .page-studio-clone .header-actions {
    gap: clamp(10px, 1vw, 16px);
  }

  .page-studio-clone .header-request__trigger {
    width: clamp(176px, 15vw, 218px);
  }
}

@media (max-width: 1100px) {
  .page-studio-clone {
    --header-height: 72px;
    --gutter: 28px;
  }

  .page-studio-clone .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-studio-clone .site-header .brand-lockup img {
    width: clamp(184px, 24vw, 230px);
  }

  .page-studio-clone .main-nav,
  .page-studio-clone .header-request {
    display: none;
  }

  .page-studio-clone .header-actions {
    display: block;
    width: 44px;
  }

  .page-studio-clone .menu-toggle {
    display: grid;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.56);
  }
}

@media (max-width: 980px) {
  .studio-onepage__head,
  .studio-brief__head {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .studio-capability-grid,
  .studio-principles {
    grid-template-columns: 1fr;
  }

  .studio-capability,
  .studio-capability:nth-child(even) {
    padding: 38px 0;
    border-left: 0;
  }

  .studio-principles article {
    display: grid;
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 6px 24px;
    padding: 32px 0;
  }

  .studio-principles article + article {
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .studio-principles article > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .studio-principles p {
    margin-top: 9px;
  }

  .selected-work__layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 34px;
  }

  .selected-work__tab {
    min-height: 116px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 30px 12px 26px 22px;
  }

  .selected-work__tab > span:first-child {
    font-size: 22px;
  }

  .studio-roadmap__phase {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .studio-roadmap__features {
    grid-template-columns: 1fr;
  }

  .studio-roadmap__features article {
    min-height: 0;
  }

  .studio-roadmap__features article + article {
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .selected-work__intro {
    margin-bottom: 42px;
  }

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

  .selected-work__index {
    display: flex;
    overflow-x: auto;
    border-top: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .selected-work__index::-webkit-scrollbar {
    display: none;
  }

  .selected-work__tab {
    width: auto;
    min-width: 232px;
    min-height: 104px;
    flex: 0 0 232px;
    scroll-snap-align: start;
    border-right: 1px solid var(--v2-line);
    border-bottom: 0;
  }

  .selected-work__tab::before {
    top: 0;
    right: auto;
    bottom: auto;
    left: 22px;
    width: 42px;
    height: 3px;
    transform: scaleX(0.45);
  }

  .selected-work__tab[aria-selected="true"]::before {
    transform: scaleX(1);
  }

  .selected-work__tab::after {
    right: auto;
    bottom: 0;
    width: 100%;
  }

  .selected-work__details {
    gap: 30px;
  }

  .selected-work__promise {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 64px;
    padding-top: 44px;
  }
}

@media (max-width: 700px) {
  .studio-onepage,
  .studio-brief,
  .studio-roadmap,
  .selected-work {
    padding: 88px 0 96px;
  }

  .selected-work > .shell {
    width: min(calc(100% - 32px), 1544px);
  }

  .studio-onepage__head,
  .studio-brief__head {
    margin-bottom: 48px;
    padding-bottom: 30px;
  }

  .studio-capabilities {
    padding-block: 82px 78px;
  }

  .studio-capabilities .studio-onepage__head {
    margin-bottom: 24px;
  }

  .studio-capabilities__summary {
    font-size: 24px;
    line-height: 1.34;
  }

  .studio-about .studio-onepage__head {
    margin-bottom: 0;
  }

  .studio-about {
    padding-bottom: 88px;
  }

  .studio-onepage__head h2,
  .studio-brief__head h2,
  .selected-work__intro h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .selected-work__viewport {
    aspect-ratio: 4 / 3;
  }

  .selected-work__panel img {
    object-fit: contain;
  }

  .selected-work__details {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 22px;
  }

  .selected-work__actions {
    justify-content: space-between;
  }

  .selected-work__promise {
    margin-top: 52px;
    padding-top: 38px;
  }

  .selected-work__promise h3 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .studio-capability {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }

  .studio-capability__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .studio-capability__icon svg {
    width: 24px;
    height: 24px;
  }

  .studio-capability h3 {
    font-size: 27px;
  }

  .studio-connected-system {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .studio-principles article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 6px 16px;
  }

  .studio-principles article > span {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .studio-project-form .field-grid--two,
  .studio-project-form .choice-grid {
    grid-template-columns: 1fr;
  }

  .studio-project-form .choice-grid label > span {
    min-height: 116px;
  }

  .studio-roadmap__phase {
    grid-template-columns: 1fr;
  }

  .studio-roadmap__phase > header {
    padding: 30px 0 24px;
  }

  .studio-roadmap__features {
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .studio-roadmap__features article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
    padding: 30px 0 34px;
  }

  .studio-roadmap__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .studio-roadmap__icon svg {
    width: 24px;
    height: 24px;
  }

  .studio-roadmap__features h3 {
    font-size: 25px;
  }

  .studio-roadmap__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

/* Studio appearance system: Fashion-light by default, with persistent Auto/Light/Dark modes. */
:root[data-theme="dark"] {
  --ink: #f4f0e8;
  --ink-soft: rgba(244, 240, 232, 0.68);
  --paper: #070808;
  --studio: #121415;
  --warm: #0c0e0f;
  --line: rgba(255, 255, 255, 0.14);
  --gold-deep: #e2c47f;
}

body,
.site-header,
.mobile-menu,
.brief-hero,
.brief-section,
.studio-onepage,
.studio-roadmap,
.suite-proof,
.concierge-v2-services,
.concierge-v2-process,
.concierge-v3-collaboration,
.concierge-v3-providers {
  transition: color 180ms ease, background-color 220ms ease, border-color 220ms ease;
}

.theme-picker {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
}

.theme-picker__trigger {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  border-radius: 50%;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  box-shadow: 0 9px 24px rgba(17, 17, 15, 0.08);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(1.15);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.theme-picker__trigger:hover,
.theme-picker.is-open .theme-picker__trigger {
  border-color: color-mix(in srgb, var(--ink) 48%, transparent);
  background: var(--paper);
  transform: translateY(-1px);
}

.theme-picker__trigger:focus-visible {
  outline-color: var(--gold);
}

.theme-picker__trigger svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.theme-picker__trigger svg path {
  fill: currentColor;
  stroke: none;
}

.theme-picker__panel {
  position: absolute;
  top: calc(100% + 13px);
  right: 0;
  width: 276px;
  padding: 12px;
  visibility: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 14px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  box-shadow: 0 24px 70px rgba(17, 17, 15, 0.18);
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top right;
  pointer-events: none;
  backdrop-filter: blur(26px) saturate(1.2);
  transition: opacity 160ms ease, transform 200ms var(--ease), visibility 160ms;
}

.theme-picker.is-open .theme-picker__panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.theme-picker__head {
  display: grid;
  gap: 3px;
  padding: 8px 9px 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.theme-picker__head strong {
  font-size: 13px;
  font-weight: 700;
}

.theme-picker__head span {
  color: var(--ink-soft);
  font-size: 10px;
}

.theme-picker__options {
  display: grid;
  gap: 3px;
  padding-top: 7px;
}

.theme-picker__options label {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 56px;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  gap: 11px;
  align-items: center;
  padding: 8px 9px;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease;
}

.theme-picker__options label:hover,
.theme-picker__options label:has(input:checked) {
  background: color-mix(in srgb, var(--ink) 7%, transparent);
}

.theme-picker__options label:focus-within {
  outline: 3px solid var(--cobalt);
  outline-offset: 2px;
}

.theme-picker__options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.theme-picker__options label > span:nth-of-type(2) {
  display: grid;
  gap: 1px;
}

.theme-picker__options strong {
  font-size: 12px;
  font-weight: 700;
}

.theme-picker__options small {
  color: var(--ink-soft);
  font-size: 9px;
}

.theme-picker__options i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  border-radius: 50%;
}

.theme-picker__options input:checked ~ i {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 0 0 3px var(--paper);
}

.theme-picker__icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 50%;
}

.theme-picker__icon--light {
  background: #ffffff;
  box-shadow: inset 0 0 0 5px #f7f6f2;
}

.theme-picker__icon--dark {
  background: #11110f;
  box-shadow: inset 0 0 0 5px #2b2b29;
}

.theme-picker__icon--system {
  isolation: isolate;
  border-color: #d9d7d0;
  background: #ffffff;
  box-shadow: 0 2px 7px rgba(17, 17, 15, 0.07);
}

.theme-picker__icon--system::after {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 50%;
  background: #11110f;
  content: "";
}

html[data-theme="dark"] .theme-picker__icon--system {
  border-color: rgba(255, 255, 255, 0.24);
}

html[data-theme="dark"] .site-footer {
  color: #ffffff;
  background: #050606;
}

html[data-theme="dark"] .site-footer .footer-brand p,
html[data-theme="dark"] .site-footer .footer-legal {
  color: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .site-footer .footer-grid nav strong {
  color: rgba(255, 255, 255, 0.44);
}

html[data-theme="dark"] .site-footer .footer-grid nav a {
  color: rgba(255, 255, 255, 0.82);
}

html[data-theme="dark"] .page-inner .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: #f4f0e8;
  background: rgba(7, 8, 8, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .page-inner .brief-hero {
  background: #0c0e0f;
}

html[data-theme="dark"] .page-inner .brief-section {
  background: #070808;
}

html[data-theme="dark"] .page-inner .project-form input:not([type="radio"]):not([type="checkbox"]),
html[data-theme="dark"] .page-inner .project-form select,
html[data-theme="dark"] .page-inner .project-form textarea,
html[data-theme="dark"] .page-inner .choice-grid label > span,
html[data-theme="dark"] .page-inner .education-choice > span {
  color: var(--ink);
  background: #0c0e0f;
}

/* The homepage light theme uses the Fashion site's white, warm white, ink, and gray palette. */
html[data-theme="light"] .reference-links-dialog {
  --reference-surface: rgba(255, 255, 255, 0.98);
  --reference-panel: #f6f5f2;
  --reference-input: #ffffff;
  --reference-ink: #11110f;
  --reference-muted: #66635d;
  --reference-line: rgba(17, 17, 15, 0.12);
  --reference-strong: #11110f;
  --reference-strong-ink: #ffffff;
  --reference-error: #9c2f26;
  box-shadow: 0 44px 120px rgba(17, 17, 15, 0.24);
}

html[data-theme="light"] .page-studio-clone {
  --v2-bg: #ffffff;
  --v2-surface: #f7f6f2;
  --v2-surface-raised: #f0f0ef;
  --v2-text: #11110f;
  --v2-muted: #5f5d57;
  --v2-line: rgba(17, 17, 15, 0.14);
  color: #11110f;
  background: #ffffff;
}

html[data-theme="light"] .page-studio-clone .site-header.is-scrolled {
  border-bottom-color: rgba(17, 17, 15, 0.11);
  color: #11110f;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(17, 17, 15, 0.045);
  backdrop-filter: blur(18px) saturate(1.15);
}

html[data-theme="light"] .page-studio-clone .site-header.is-scrolled .main-nav a::after {
  background: #11110f;
}

html[data-theme="light"] .page-studio-clone .header-request__trigger {
  border-color: rgba(17, 17, 15, 0.16);
  color: rgba(17, 17, 15, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 9px 24px rgba(17, 17, 15, 0.07);
}

html[data-theme="light"] .page-studio-clone .header-request__trigger:hover,
html[data-theme="light"] .page-studio-clone .header-request.is-open .header-request__trigger {
  border-color: rgba(17, 17, 15, 0.34);
  background: #ffffff;
}

html[data-theme="light"] .page-studio-clone .header-request__composer {
  border-color: rgba(17, 17, 15, 0.14);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 70px rgba(17, 17, 15, 0.16), inset 0 1px 0 #ffffff;
}

html[data-theme="light"] .page-studio-clone .header-request__composer textarea {
  color: #11110f;
}

html[data-theme="light"] .page-studio-clone .header-request__composer textarea::placeholder {
  color: rgba(17, 17, 15, 0.48);
}

html[data-theme="light"] .page-studio-clone .header-request__bar {
  border-top-color: rgba(17, 17, 15, 0.1);
}

html[data-theme="light"] .page-studio-clone .header-request__bar span {
  color: #6b6962;
}

html[data-theme="light"] .studio-clone-hero {
  background: #f0f0ef;
}

html[data-theme="light"] .studio-clone-hero h1 {
  color: #11110f;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .studio-clone-hero .concierge-v2-composer {
  border: 1px solid rgba(17, 17, 15, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 64px rgba(17, 17, 15, 0.15), inset 0 1px 0 #ffffff;
  backdrop-filter: blur(22px) saturate(1.04);
}

html[data-theme="light"] .studio-clone-hero .concierge-v2-composer:focus-within {
  box-shadow: 0 26px 70px rgba(17, 17, 15, 0.18), inset 0 1px 0 #ffffff;
}

html[data-theme="light"] .studio-clone-hero .concierge-v2-composer textarea {
  color: #11110f;
}

html[data-theme="light"] .studio-clone-hero .concierge-v2-composer textarea::placeholder {
  color: rgba(17, 17, 15, 0.52);
}

html[data-theme="light"] .studio-clone-hero .concierge-v2-composer__bar p {
  color: #5f5d57;
}

html[data-theme="light"] .page-studio-clone .header-request__bar .request-mic,
html[data-theme="light"] .studio-clone-hero .concierge-v2-composer__bar .request-mic {
  color: #11110f;
  background: rgba(17, 17, 15, 0.065);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.06);
}

html[data-theme="light"] .page-studio-clone .header-request__bar .request-mic:hover,
html[data-theme="light"] .studio-clone-hero .concierge-v2-composer__bar .request-mic:hover {
  color: #ffffff;
  background: #11110f;
}

html[data-theme="light"] .studio-clone-hero .concierge-v2-composer__bar .composer-submit,
html[data-theme="light"] .page-studio-clone .header-request__bar button:not(.request-mic) {
  color: #ffffff;
  background: #11110f;
}

html[data-theme="light"] .studio-clone-hero .concierge-v2-composer__bar .composer-submit:hover,
html[data-theme="light"] .page-studio-clone .header-request__bar button:not(.request-mic):hover {
  background: #3e3d38;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-services {
  background: #ffffff;
}

html[data-theme="light"] .page-studio-clone .studio-capabilities {
  background: #f7f6f2;
}

html[data-theme="light"] .page-studio-clone .suite-proof {
  color: #11110f;
  background: #ffffff;
}

html[data-theme="light"] .page-studio-clone .suite-proof__production-note .button--light {
  border-color: #11110f;
  color: #ffffff;
  background: #11110f;
}

html[data-theme="light"] .page-studio-clone .suite-proof__production-note .button--light:hover {
  color: #11110f;
  background: transparent;
}

html[data-theme="light"] .page-studio-clone .studio-roadmap {
  border-color: var(--v2-line);
  background: #f7f6f2;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-process {
  background: #ffffff;
}

html[data-theme="light"] .page-studio-clone .concierge-v3-collaboration {
  background: #f7f6f2;
}

html[data-theme="light"] .page-studio-clone .studio-about {
  background: #ffffff;
}

html[data-theme="light"] .page-studio-clone .concierge-v3-providers {
  background: #f7f6f2;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-section-head > p,
html[data-theme="light"] .page-studio-clone .concierge-v2-kicker,
html[data-theme="light"] .page-studio-clone .studio-onepage__eyebrow,
html[data-theme="light"] .page-studio-clone .suite-proof__eyebrow,
html[data-theme="light"] .page-studio-clone .concierge-v3-providers__head > div > p {
  color: #3e3d38;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-section-head--center > p,
html[data-theme="light"] .page-studio-clone .studio-about__copy > span,
html[data-theme="light"] .page-studio-clone .studio-roadmap__phase > header small,
html[data-theme="light"] .page-studio-clone .studio-roadmap__intro span,
html[data-theme="light"] .page-studio-clone .concierge-v3-collaboration__blend article > span,
html[data-theme="light"] .page-studio-clone .concierge-v3-providers__head > div > p,
html[data-theme="light"] .page-studio-clone .concierge-v3-provider-paths small {
  color: #66645e;
}

html[data-theme="light"] .page-studio-clone .studio-capability__icon,
html[data-theme="light"] .page-studio-clone .studio-principles article > span,
html[data-theme="light"] .page-studio-clone .studio-roadmap__icon {
  border-color: rgba(17, 17, 15, 0.16);
  color: #11110f;
  background: linear-gradient(145deg, #ffffff, #f0f0ef);
  box-shadow: 0 10px 24px rgba(17, 17, 15, 0.055);
}

html[data-theme="light"] .page-studio-clone .studio-capability div > p:first-child {
  color: #6b6962;
}

html[data-theme="light"] .page-studio-clone .studio-capability:hover {
  background: #f7f6f2;
}

html[data-theme="light"] .page-studio-clone .studio-connected-system a,
html[data-theme="light"] .page-studio-clone .studio-roadmap__footer a {
  border-bottom-color: rgba(17, 17, 15, 0.74);
}

html[data-theme="light"] .page-studio-clone .studio-about__copy i {
  background: #11110f;
  box-shadow: 0 0 0 4px rgba(17, 17, 15, 0.08);
}

html[data-theme="light"] .page-studio-clone .concierge-v2-rail::before {
  background: rgba(17, 17, 15, 0.17);
}

html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(1) { --process-color: #164da0; }
html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(2) { --process-color: #126238; }
html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(3) { --process-color: #d24f40; }
html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(4) { --process-color: #bd8a33; }

html[data-theme="light"] .page-studio-clone .concierge-v2-rail li > span {
  box-shadow: inset 0 1px 0 #ffffff, 0 7px 18px color-mix(in srgb, var(--process-color) 9%, transparent);
}

/* One restrained status material, with a distinct semantic color for each step. */
.page-studio-clone .concierge-v2-rail li:nth-child(1) {
  --process-color: #f4f1e9;
  --process-mark: #11110f;
}

.page-studio-clone .concierge-v2-rail li:nth-child(2) {
  --process-color: #78a8e8;
  --process-mark: #11110f;
}

.page-studio-clone .concierge-v2-rail li:nth-child(3) {
  --process-color: #d06b5a;
  --process-mark: #11110f;
}

.page-studio-clone .concierge-v2-rail li:nth-child(4) {
  --process-color: #267e55;
  --process-mark: #ffffff;
}

.page-studio-clone .concierge-v2-rail li > span {
  border-color: color-mix(in srgb, var(--process-color) 78%, #000000);
  color: var(--process-mark);
  background: var(--process-color);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 20px color-mix(in srgb, var(--process-color) 18%, transparent);
}

html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(1) {
  --process-color: #11110f;
  --process-mark: #ffffff;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(2) {
  --process-color: #164da0;
  --process-mark: #ffffff;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(3) {
  --process-color: #a84236;
  --process-mark: #ffffff;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-rail li:nth-child(4) {
  --process-color: #1f7a4f;
  --process-mark: #ffffff;
}

html[data-theme="light"] .page-studio-clone .concierge-v2-rail li > span {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 20px color-mix(in srgb, var(--process-color) 18%, transparent);
}

html[data-theme="light"] .page-studio-clone .concierge-v3-collaboration__join {
  color: #ffffff;
  background: #11110f;
}

html[data-theme="light"] .page-studio-clone .concierge-v3-collaboration__result {
  color: #5f5d57;
}

html[data-theme="light"] .page-studio-clone .concierge-v3-provider-paths article:first-child { --provider-color: #126238; }
html[data-theme="light"] .page-studio-clone .concierge-v3-provider-paths article:last-child { --provider-color: #bd8a33; }

html[data-theme="light"] .page-studio-clone .concierge-v3-provider-paths article > span {
  box-shadow: inset 0 1px 0 #ffffff, 0 7px 18px color-mix(in srgb, var(--provider-color) 9%, transparent);
}

html[data-theme="light"] .page-studio-clone .concierge-v3-providers__footer a {
  color: #ffffff;
  background: #11110f;
}

html[data-theme="light"] .page-studio-clone .concierge-v3-providers__footer a:hover {
  background: #3e3d38;
}

@media (max-width: 1100px) {
  .page-studio-clone .header-actions {
    display: flex;
    width: auto;
    gap: 9px;
  }

  html[data-theme="light"] .page-studio-clone .site-header.is-scrolled .menu-toggle {
    color: #11110f;
    border-color: rgba(17, 17, 15, 0.44);
  }
}

@media (max-width: 700px) {
  .page-studio-clone .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-studio-clone .site-header .brand-lockup img {
    width: min(184px, 48vw);
  }

  .page-studio-clone .header-actions {
    display: flex;
    width: auto;
  }

  .theme-picker__trigger,
  .page-studio-clone .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .theme-picker__panel {
    position: fixed;
    top: calc(var(--development-banner-height) + var(--header-height) + 10px);
    right: 12px;
    width: min(276px, calc(100vw - 24px));
  }

  html[data-theme="light"] .studio-clone-hero .concierge-v2-hero__content {
    padding-top: 172px;
  }

}

/* Keep Studio headers as quiet as the Fashion header: no divider or drop shadow. */
html[data-theme] .page-studio-clone .site-header,
html[data-theme] .page-studio-clone .site-header.is-scrolled,
html[data-theme] .page-studio-clone .site-header:not(.is-scrolled),
html[data-theme] .page-inner .site-header {
  border-bottom: 0;
  box-shadow: none;
}

html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) {
  color: #ffffff;
  background: transparent;
  backdrop-filter: none;
}

html[data-theme] .page-studio-clone .site-header {
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) .theme-picker__trigger,
html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  background: rgba(17, 17, 15, 0.08);
  box-shadow: 0 9px 24px rgba(17, 17, 15, 0.1);
}

html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) .theme-picker__trigger:hover,
html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) .theme-picker.is-open .theme-picker__trigger,
html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) .menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.84);
  color: #ffffff;
  background: rgba(17, 17, 15, 0.18);
}

/* Education package, project-path, and future platform readiness. */
.account-entry {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  border-radius: 50%;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.account-entry:hover {
  border-color: color-mix(in srgb, var(--ink) 48%, transparent);
  transform: translateY(-1px);
}

.account-entry:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.account-entry svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.account-entry img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.account-entry img[hidden],
.account-entry svg[hidden] {
  display: none;
}

html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) .account-entry {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  background: rgba(17, 17, 15, 0.08);
  box-shadow: 0 9px 24px rgba(17, 17, 15, 0.1);
}

html[data-theme] .page-studio-clone .site-header:not(.is-scrolled) .account-entry:hover {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(17, 17, 15, 0.18);
}

.mobile-menu__utility {
  margin-top: 24px;
}

.mobile-menu__utility button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.mobile-menu__utility button > span {
  display: grid;
  gap: 5px;
}

.mobile-menu__utility strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.mobile-menu__utility small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.58;
}

.mobile-menu__utility svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  opacity: 0.72;
}

.mobile-menu__utility button:hover svg,
.mobile-menu__utility button:focus-visible svg {
  opacity: 1;
}

.account-status-dialog {
  width: min(570px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  overflow: auto;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.3);
}

.account-status-dialog::backdrop {
  background: rgba(7, 8, 8, 0.72);
  backdrop-filter: blur(8px);
}

.account-status-dialog__shell {
  position: relative;
  padding: 44px;
}

.account-status-dialog__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.account-status-dialog__close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.55;
}

.account-status-dialog__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: 16px;
}

.account-status-dialog__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.account-status-dialog__shell > p:first-of-type {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-status-dialog h2 {
  max-width: 420px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.account-status-dialog #account-status-description {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

.account-status-dialog__auth {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.account-status-dialog__auth > button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font: 650 13px/1 Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms var(--ease);
}

.account-status-dialog__auth > button[hidden] {
  display: none;
}

.account-status-dialog__auth > button:hover {
  transform: translateY(-1px);
}

.account-status-dialog__auth > button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.account-status-dialog__auth > button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.account-status-dialog__auth > button img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 6px;
}

.account-status-dialog__profile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 15px;
  background: color-mix(in srgb, var(--ink) 3%, transparent);
}

.account-status-dialog__profile[hidden] {
  display: none;
}

.account-status-dialog__profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  object-fit: cover;
}

.account-status-dialog__profile span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.account-status-dialog__profile strong,
.account-status-dialog__profile small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-status-dialog__profile strong {
  font-size: 14px;
}

.account-status-dialog__profile small {
  color: var(--ink-soft);
  font-size: 11px;
}

.account-status-dialog__auth-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.account-status-dialog__auth-status[data-state="error"] {
  color: #a32929;
}

html[data-theme="dark"] .account-status-dialog__auth-status[data-state="error"] {
  color: #ff9d9d;
}

.account-status-dialog__future {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

.account-status-dialog__future > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

.account-status-dialog__future svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.account-status-dialog__future span {
  display: grid;
  gap: 3px;
}

.account-status-dialog__future strong {
  font-size: 12px;
  font-weight: 700;
}

.account-status-dialog__future small {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.account-status-dialog__cancellation {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

.account-status-dialog__cancellation summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.account-status-dialog__cancellation summary::-webkit-details-marker {
  display: none;
}

.account-status-dialog__cancellation summary::after {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.account-status-dialog__cancellation[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.account-status-dialog__cancellation p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

.account-status-dialog__not-live {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

.account-status-dialog__not-live strong {
  color: var(--ink);
  font-weight: 700;
}

.account-status-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}

.account-status-dialog__actions [hidden] {
  display: none;
}

.account-status-dialog__actions a,
.account-status-dialog__actions button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: 650 13px/1 Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
}

.account-status-dialog__actions a {
  color: var(--paper);
  background: var(--ink);
}

.account-status-dialog__actions button {
  color: var(--ink);
  background: transparent;
}

.education-package {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 84px;
  margin: 0 0 96px;
  padding: 44px 0 46px;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.page-studio-clone .suite-proof--home .education-package {
  border-top: 0;
}

.education-package__copy > p {
  margin: 0 0 20px;
  color: var(--v2-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.education-package__copy h3 {
  max-width: 560px;
  margin: 0;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.2vw, 59px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.035em;
}

.education-package__copy > span {
  display: block;
  max-width: 520px;
  margin-top: 24px;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.7;
}

.education-package__copy > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--v2-text);
  font-size: 13px;
  font-weight: 700;
}

.education-package__copy > a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms var(--ease);
}

.education-package__copy > a:hover svg {
  transform: translateX(3px);
}

.education-package__terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.education-package__price {
  display: grid;
  align-content: start;
  padding: 4px 28px 30px 0;
}

.education-package__price + .education-package__price {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid var(--v2-line);
}

.education-package__price > span {
  color: var(--v2-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.education-package__price strong {
  margin-top: 14px;
  color: var(--v2-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.education-package__price small {
  margin-top: 12px;
  color: var(--v2-muted);
  font-size: 11px;
  line-height: 1.45;
}

.education-package__required {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px 0 24px;
  border-top: 1px solid var(--v2-line);
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.65;
}

.education-package__required strong {
  color: var(--v2-text);
}

.education-package__readiness {
  grid-column: 1 / -1;
  border-top: 1px solid var(--v2-line);
}

.education-package__readiness summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 4px;
  color: var(--v2-text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.education-package__readiness summary::-webkit-details-marker {
  display: none;
}

.education-package__readiness summary::after {
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.education-package__readiness[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.education-package__readiness p {
  margin: 14px 0 0;
  color: var(--v2-muted);
  font-size: 12px;
  line-height: 1.65;
}

.engagement-path__intro {
  max-width: 690px;
  margin: -14px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

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

.engagement-path__choices label {
  position: relative;
}

.engagement-path__choices input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.engagement-path__choices label > span {
  display: grid;
  min-height: 182px;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 96%, var(--ink) 4%);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.engagement-path__choices label > span:hover {
  transform: translateY(-2px);
}

.engagement-path__choices small {
  margin-bottom: auto;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.engagement-path__choices strong {
  margin-top: 32px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.05;
}

.engagement-path__choices b {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.5;
}

.engagement-path__choices input:checked + span {
  border-color: var(--ink);
  background: color-mix(in srgb, var(--paper) 88%, var(--ink) 12%);
}

.engagement-path__choices input:focus-visible + span {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

.engagement-path__panel {
  margin-top: 24px;
  padding: 28px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--ink);
}

.engagement-path__panel--education {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: 44px;
}

.engagement-path__panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.engagement-path__panel--education > div > p {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.engagement-path__panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.08;
}

.engagement-path__panel--education > div > span {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.engagement-path__panel ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.engagement-path__panel li {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 3px 16px;
  border-left: 1px solid var(--line);
}

.engagement-path__panel li strong {
  font-size: 12px;
}

.engagement-path__panel li span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.engagement-path__panel--custom {
  max-width: 760px;
}

.engagement-path__panel--custom strong {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .education-package {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .engagement-path__panel--education {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .account-entry {
    width: 40px;
    height: 40px;
  }

  .engagement-path__choices,
  .engagement-path__panel--education {
    grid-template-columns: 1fr;
  }

  .engagement-path__panel ol {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .engagement-path__panel li {
    padding: 0 0 15px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .engagement-path__panel li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .site-header .account-entry {
    display: none;
  }

  .education-package {
    gap: 44px;
    margin-bottom: 72px;
    padding: 34px 0 38px;
  }

  .education-package__terms {
    grid-template-columns: 1fr;
  }

  .education-package__price {
    padding: 0 0 24px;
  }

  .education-package__price + .education-package__price {
    padding: 24px 0;
    border-top: 1px solid var(--v2-line);
    border-left: 0;
  }

  .education-package__price strong {
    font-size: 42px;
  }

  .account-status-dialog__shell {
    padding: 34px 26px 28px;
  }

  .account-status-dialog__close {
    top: 16px;
    right: 16px;
  }

  .account-status-dialog__actions {
    display: grid;
  }

  .engagement-path__choices label > span {
    min-height: 154px;
  }

  .engagement-path__panel {
    padding: 24px 0 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .selected-work__panel,
  .selected-work__actions a svg,
  .selected-work__promise a,
  .education-package__copy > a svg,
  .studio-about__portfolio svg,
  .studio-about__contact,
  .engagement-path__choices label > span {
    transition: none;
  }

  .selected-work.is-rotating .selected-work__tab[aria-selected="true"]::after {
    animation: none;
  }
}

@media print {
  .theme-picker,
  .account-entry,
  .mobile-menu__utility {
    display: none !important;
  }
}

/* Homepage project intake: one progressive flow from the hero composer. */
body.project-intake-open {
  overflow: hidden;
}

.composer-context {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  margin-right: auto;
  color: rgba(17, 17, 15, 0.62);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.composer-context::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.composer-context[hidden] {
  display: none;
}

.project-intake-dialog {
  --intake-bg: var(--v2-bg, #ffffff);
  --intake-panel: var(--v2-surface, #f7f6f2);
  --intake-raised: var(--v2-surface-raised, #f0f0ef);
  --intake-text: var(--v2-text, #11110f);
  --intake-muted: var(--v2-muted, #5f5d57);
  --intake-line: var(--v2-line, rgba(17, 17, 15, 0.14));
  width: min(1120px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--intake-line);
  border-radius: 22px;
  color: var(--intake-text);
  background: var(--intake-bg);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.34);
}

.project-intake-dialog::backdrop {
  background: rgba(7, 8, 8, 0.76);
  backdrop-filter: blur(9px);
}

.project-intake-dialog__shell {
  max-height: calc(100svh - 40px);
  overflow: auto;
  overscroll-behavior: contain;
}

.project-intake__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 42px 46px 36px;
  border-bottom: 1px solid var(--intake-line);
}

.project-intake__header > div {
  max-width: 780px;
}

.project-intake__header > div > p:first-child {
  margin: 0 0 13px;
  color: var(--intake-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-intake__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.035em;
}

.project-intake__header > div > p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--intake-muted);
  font-size: 14px;
  line-height: 1.68;
}

.project-intake__close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--intake-line);
  border-radius: 50%;
  color: var(--intake-text);
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.project-intake__close:hover {
  color: var(--intake-bg);
  background: var(--intake-text);
  transform: rotate(4deg);
}

.project-intake__close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.55;
}

.project-intake__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.project-intake__request,
.project-intake__contact {
  padding: 42px 46px 46px;
}

.project-intake__contact {
  border-left: 1px solid var(--intake-line);
  background: color-mix(in srgb, var(--intake-panel) 72%, transparent);
}

.project-intake__section-head {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-bottom: 30px;
}

.project-intake__section-head > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--intake-line);
  border-radius: 50%;
  color: var(--intake-muted);
  font: 700 10px/1 Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.project-intake__section-head p {
  margin: 0 0 4px;
  color: var(--intake-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-intake__section-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.project-intake__description {
  display: grid;
  gap: 9px;
}

.project-intake__description > span,
.project-intake__fields label > span,
.project-intake__paths legend,
.project-intake__contact-method legend {
  color: var(--intake-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-intake__description small,
.project-intake__fields small {
  font-size: inherit;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
}

.project-intake__description textarea,
.project-intake__fields input {
  width: 100%;
  border: 1px solid var(--intake-line);
  border-radius: 12px;
  outline: 0;
  color: var(--intake-text);
  background: color-mix(in srgb, var(--intake-bg) 92%, var(--intake-text) 8%);
}

.project-intake__description textarea {
  min-height: 132px;
  resize: vertical;
  padding: 16px 17px;
  line-height: 1.55;
}

.project-intake__description--optional {
  margin-top: 28px;
}

.project-intake__description--optional textarea {
  min-height: 94px;
}

.project-intake__description textarea::placeholder,
.project-intake__fields input::placeholder {
  color: color-mix(in srgb, var(--intake-muted) 72%, transparent);
}

.project-intake__description textarea:focus,
.project-intake__fields input:focus {
  border-color: var(--intake-text);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--intake-text) 12%, transparent);
}

.project-intake__paths,
.project-intake__contact-method {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.project-intake__paths legend,
.project-intake__contact-method legend {
  margin-bottom: 12px;
}

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

.project-intake__path-option--general {
  grid-column: 1 / -1;
}

.project-intake__path-option--general > span {
  min-height: 126px;
}

.project-intake__path-grid label,
.project-intake__contact-method label {
  position: relative;
}

.project-intake__path-grid input,
.project-intake__contact-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.project-intake__path-grid label > span {
  display: grid;
  min-height: 154px;
  align-content: end;
  padding: 20px;
  border: 1px solid var(--intake-line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--intake-bg) 88%, var(--intake-text) 12%);
  cursor: pointer;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.project-intake__path-grid label > span:hover {
  transform: translateY(-2px);
}

.project-intake__path-grid small {
  margin-bottom: auto;
  color: var(--intake-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-intake__path-grid strong {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.06;
}

.project-intake__path-grid b {
  margin-top: 8px;
  color: var(--intake-muted);
  font-size: 11px;
  font-weight: 550;
  line-height: 1.45;
}

.project-intake__path-grid input:checked + span {
  border-color: var(--intake-text);
  background: color-mix(in srgb, var(--intake-bg) 78%, var(--intake-text) 22%);
  box-shadow: inset 0 0 0 1px var(--intake-text);
}

.project-intake__path-grid input:focus-visible + span,
.project-intake__contact-method input:focus-visible + span {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

.project-intake__path-note {
  margin-top: 18px;
  padding: 17px 18px;
  border-left: 2px solid var(--intake-text);
  background: color-mix(in srgb, var(--intake-panel) 74%, transparent);
}

.project-intake__path-note strong {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

.project-intake__path-note p {
  margin: 7px 0 0;
  color: var(--intake-muted);
  font-size: 11px;
  line-height: 1.58;
}

.project-intake__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 12px;
}

.project-intake__fields label {
  display: grid;
  gap: 8px;
}

.project-intake__fields input {
  height: 46px;
  padding: 0 13px;
}

.project-intake__contact-method {
  padding-top: 26px;
  border-top: 1px solid var(--intake-line);
}

.project-intake__contact-method > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.project-intake__contact-method label > span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 13px;
  border: 1px solid var(--intake-line);
  border-radius: 999px;
  color: var(--intake-muted);
  background: var(--intake-bg);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.project-intake__contact-method label > span small {
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.project-intake__contact-method input:checked + span {
  border-color: var(--intake-text);
  color: var(--intake-bg);
  background: var(--intake-text);
}

.project-intake__workspace-note {
  margin: 14px 0 0;
  padding: 13px 14px;
  border: 1px solid var(--intake-line);
  border-radius: 10px;
  color: var(--intake-muted);
  font-size: 10px;
  line-height: 1.55;
}

.project-intake__consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  margin-top: 16px;
  color: var(--intake-muted);
  font-size: 10px;
  line-height: 1.55;
}

.project-intake__consent[hidden] {
  display: none;
}

.project-intake__consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--intake-text);
}

.project-intake__readiness {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--intake-line);
}

.project-intake__readiness svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--intake-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.project-intake__readiness p {
  margin: 0;
  color: var(--intake-muted);
  font-size: 10px;
  line-height: 1.6;
}

.project-intake__readiness a {
  border-bottom: 1px solid currentColor;
  color: var(--intake-text);
  font-weight: 700;
}

.project-intake__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 46px;
  border-top: 1px solid var(--intake-line);
  background: color-mix(in srgb, var(--intake-bg) 88%, var(--intake-text) 12%);
}

.project-intake__footer p {
  max-width: 520px;
  margin: 0;
  color: var(--intake-muted);
  font-size: 10px;
  line-height: 1.55;
}

.project-intake__footer button,
.project-intake-summary__actions button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--intake-text);
  border-radius: 999px;
  color: var(--intake-bg);
  background: var(--intake-text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.project-intake__footer button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.project-intake-summary {
  min-height: 560px;
}

.project-intake-summary__status {
  display: grid;
  grid-template-columns: 10px auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 30px 46px 0;
  padding: 13px 15px;
  border: 1px solid var(--intake-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--intake-panel) 76%, transparent);
}

.project-intake-summary__status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aa3f36;
}

.project-intake-summary__status strong {
  font-size: 11px;
}

.project-intake-summary__status p {
  margin: 0;
  color: var(--intake-muted);
  font-size: 10px;
}

.project-intake-summary pre {
  margin: 22px 46px 0;
  padding: 24px;
  overflow: auto;
  border: 1px solid var(--intake-line);
  border-radius: 14px;
  color: var(--intake-text);
  background: color-mix(in srgb, var(--intake-bg) 88%, var(--intake-text) 12%);
  font: 500 11px/1.68 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.project-intake-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 46px 0;
  padding-bottom: 12px;
}

.project-intake-summary__actions button:nth-child(2),
.project-intake-summary__actions button:nth-child(3) {
  color: var(--intake-text);
  background: transparent;
}

.project-intake-summary__message {
  min-height: 20px;
  margin: 0 46px 30px;
  color: var(--intake-muted);
  font-size: 11px;
}

.education-package__payment-plan {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 0 24px;
  color: var(--v2-muted);
  font-size: 12px;
  line-height: 1.65;
}

.education-package__payment-plan strong {
  color: var(--v2-text);
}

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

  .project-intake__contact {
    border-top: 1px solid var(--intake-line);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .composer-context {
    max-width: 88px;
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
  }

  .project-intake-dialog {
    width: calc(100% - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 17px;
  }

  .project-intake-dialog__shell {
    max-height: calc(100svh - 16px);
  }

  .project-intake__header {
    gap: 14px;
    padding: 28px 22px 25px;
  }

  .project-intake__header h2 {
    font-size: 36px;
  }

  .project-intake__header > div > p:last-child {
    font-size: 12px;
  }

  .project-intake__close {
    width: 38px;
    height: 38px;
  }

  .project-intake__request,
  .project-intake__contact {
    padding: 30px 22px 34px;
  }

  .project-intake__path-grid,
  .project-intake__fields {
    grid-template-columns: 1fr;
  }

  .project-intake__path-grid label > span {
    min-height: 124px;
  }

  .project-intake__footer {
    display: grid;
    padding: 20px 22px 24px;
  }

  .project-intake__footer button {
    width: 100%;
  }

  .project-intake-summary__status {
    grid-template-columns: 10px minmax(0, 1fr);
    margin: 22px 22px 0;
  }

  .project-intake-summary__status p {
    grid-column: 2;
  }

  .project-intake-summary pre,
  .project-intake-summary__actions {
    margin-right: 22px;
    margin-left: 22px;
  }

  .project-intake-summary__actions {
    display: grid;
  }

  .project-intake-summary__actions button {
    width: 100%;
  }

  .project-intake-summary__message {
    margin-right: 22px;
    margin-left: 22px;
  }
}

@media (max-width: 420px) {
  .composer-context {
    display: none;
  }

  .project-intake__contact-method > div {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-intake__close,
  .project-intake__path-grid label > span {
    transition: none;
  }
}

/* Temporary public development notice. Keep this isolated for easy removal at launch. */
@media screen {
  .development-banner {
    appearance: none;
    position: fixed;
    z-index: 140;
    inset: 0 0 auto;
    display: flex;
    width: 100%;
    height: var(--development-banner-height);
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding-inline: var(--gutter);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    background: #11110f;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.045em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 160ms ease;
  }

  .development-banner:hover {
    background: #20201d;
  }

  .development-banner:focus-visible {
    z-index: 151;
    outline: 3px solid #ffffff;
    outline-offset: -5px;
  }

  .development-banner__dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
  }

  .development-banner__action {
    padding-left: 10px;
    margin-left: 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.76);
    font-weight: 560;
    letter-spacing: 0.02em;
  }

  .development-banner__chevron {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 160ms ease;
  }

  .development-banner:hover .development-banner__chevron,
  .development-banner[aria-expanded="true"] .development-banner__chevron {
    transform: translateY(2px);
  }

  .development-banner ~ .site-header {
    top: var(--development-banner-height);
  }
}

@media screen and (max-width: 420px) {
  .development-banner {
    gap: 8px;
    padding-inline: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.025em;
  }

  .development-banner__action {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (forced-colors: active) {
  .page-studio-clone .concierge-v2-rail li > span {
    border-color: ButtonText;
    color: ButtonText;
    background: ButtonFace;
    box-shadow: none;
    forced-color-adjust: auto;
  }

}

.development-status-open {
  overflow: hidden;
}

.development-status-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: min(90svh, 940px);
  padding: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.34);
}

.development-status-dialog::backdrop {
  background: rgba(4, 5, 5, 0.66);
  backdrop-filter: blur(12px);
}

.development-status-dialog__surface {
  max-height: min(90svh, 940px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.development-status-dialog__header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  padding: 34px 38px 30px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(22px);
}

.development-status-dialog__header > div {
  max-width: 780px;
}

.development-status-dialog__header > div > p:first-child {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.development-status-dialog__header h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.development-status-dialog__header > div > p:last-child {
  max-width: 710px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.development-status-dialog__close {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  place-items: center;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.development-status-dialog__close:hover {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(4deg);
}

.development-status-dialog__close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.development-status-dialog__status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.development-status-dialog__status > div {
  min-width: 0;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.development-status-dialog__status > div:last-child {
  border-right: 0;
}

.development-status-dialog__status span,
.development-status-dialog__status strong {
  display: block;
}

.development-status-dialog__status span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 690;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.development-status-dialog__status strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.development-status-dialog__body {
  padding: 10px 38px 22px;
}

.development-status-group {
  padding: 34px 0 32px;
  border-bottom: 1px solid var(--line);
}

.development-status-group:last-child {
  border-bottom: 0;
}

.development-status-group__header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.development-status-group__header > span {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  place-items: center;
}

.development-status-group__header h3 {
  margin: -2px 0 5px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.development-status-group__header p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.development-status-group__header strong {
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.development-status-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.development-status-group li {
  display: grid;
  min-width: 0;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 17px 18px 17px 0;
  border-bottom: 1px solid var(--line);
  color: color-mix(in srgb, var(--ink) 88%, transparent);
  font-size: 0.8rem;
  line-height: 1.55;
}

.development-status-group li:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.development-status-group li:nth-child(even) {
  padding-left: 28px;
}

.development-status-item__marker {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.58;
}

.development-status-dialog__footer {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 38px 28px;
  color: #ffffff;
  background: #090a0a;
}

.development-status-dialog__footer p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.development-status-dialog__footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
}

.development-status-dialog__footer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 670;
  line-height: 1.5;
}

.development-status-dialog__footer a:hover {
  border-bottom-color: #ffffff;
}

@media (max-width: 760px) {
  .development-status-dialog {
    width: calc(100vw - 20px);
    max-height: 94svh;
    border-radius: 20px;
  }

  .development-status-dialog__surface {
    max-height: 94svh;
  }

  .development-status-dialog__header {
    gap: 18px;
    padding: 26px 20px 24px;
  }

  .development-status-dialog__header h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .development-status-dialog__header > div > p:last-child {
    font-size: 0.86rem;
  }

  .development-status-dialog__close {
    width: 42px;
    height: 42px;
  }

  .development-status-dialog__status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .development-status-dialog__status > div:nth-child(2) {
    border-right: 0;
  }

  .development-status-dialog__status > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .development-status-dialog__status > div {
    padding: 18px 20px;
  }

  .development-status-dialog__body {
    padding: 4px 20px 14px;
  }

  .development-status-group {
    padding: 28px 0;
  }

  .development-status-group__header {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 20px;
  }

  .development-status-group__header > span {
    width: 38px;
    height: 38px;
  }

  .development-status-group__header strong {
    grid-column: 2;
    padding-top: 0;
  }

  .development-status-group ul {
    grid-template-columns: 1fr;
  }

  .development-status-group li,
  .development-status-group li:nth-child(odd),
  .development-status-group li:nth-child(even) {
    padding: 15px 0;
    border-right: 0;
  }

  .development-status-dialog__footer {
    display: grid;
    gap: 18px;
    padding: 22px 20px 26px;
  }

  .development-status-dialog__footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .development-banner,
  .development-banner__chevron,
  .development-status-dialog__close {
    transition: none;
  }
}

@media (forced-colors: active) {
  .development-banner,
  .development-status-dialog,
  .development-status-dialog__close,
  .development-status-group__header > span {
    forced-color-adjust: auto;
  }

  .development-status-dialog__footer {
    border-top: 1px solid CanvasText;
    color: CanvasText;
    background: Canvas;
  }

  .development-status-dialog__footer p,
  .development-status-dialog__footer a {
    color: CanvasText;
  }
}

.page-studio-clone .suite-proof__head--compact {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .page-studio-clone .suite-proof__head--compact {
    margin-bottom: 0;
  }
}

@media print {
  .development-banner,
  .development-status-dialog {
    display: none !important;
  }
}

/* Public policy system — aligned with the Breauti Fashion policy presentation. */
.page-policy {
  --policy-radius-large: 28px;
  --policy-radius-medium: 18px;
  --policy-radius-small: 12px;
  background: var(--paper);
}

.page-policy .site-header {
  border-bottom: 0;
  box-shadow: none;
}

.policy-print {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid color-mix(in srgb, var(--ink) 42%, transparent);
  border-radius: var(--radius);
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.policy-print svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-print:hover {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.policy-hero {
  padding: calc(var(--development-banner-height) + var(--header-height) + clamp(72px, 9vw, 138px)) 0 clamp(62px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.policy-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.58fr);
  gap: clamp(52px, 10vw, 160px);
  align-items: end;
}

.policy-hero__title-row {
  display: flex;
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}

.policy-hero__mark {
  display: grid;
  width: clamp(76px, 8vw, 104px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--policy-radius-medium);
  color: var(--ink);
  background: var(--paper);
}

.policy-hero__mark svg,
.policy-snapshot__icon svg,
.policy-notice svg,
.policy-heading__marker svg,
.policy-checklist svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-hero__mark svg {
  width: 56%;
  stroke-width: 1.55;
}

.policy-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
}

.policy-hero__meta > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.policy-hero__meta dl {
  margin: 32px 0 0;
  border-top: 1px solid var(--ink);
}

.policy-hero__meta dl > div {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.policy-hero__meta dt {
  color: var(--ink-soft);
}

.policy-hero__meta dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.policy-snapshot {
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.policy-snapshot__grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.policy-snapshot__grid li {
  display: grid;
  min-height: 128px;
  padding: 28px clamp(18px, 2.6vw, 32px);
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.policy-snapshot__grid li:first-child {
  border-left: 1px solid var(--line);
}

.policy-snapshot__icon {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--policy-radius-small);
  color: var(--ink);
  background: var(--paper);
}

.policy-snapshot__icon svg {
  width: 22px;
  stroke-width: 1.45;
}

.policy-snapshot__grid strong,
.policy-snapshot__grid small {
  display: block;
}

.policy-snapshot__grid strong {
  font-size: 0.78rem;
  font-weight: 700;
}

.policy-snapshot__grid small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.45;
}

.policy-body {
  padding-block: clamp(76px, 9vw, 136px);
  background: var(--paper);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1.12fr);
  gap: clamp(56px, 10vw, 156px);
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: calc(var(--development-banner-height) + var(--header-height) + 28px);
}

.policy-summary__status {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.policy-summary__status span {
  width: 34px;
  height: 1px;
  background: var(--ink);
}

.policy-summary__status strong {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-summary > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.policy-toc {
  margin: 25px 0;
  border-top: 1px solid var(--line);
}

.policy-toc a {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 38px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.35;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  color: var(--ink);
}

.policy-toc a span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.policy-summary .text-link {
  font-size: 0.76rem;
}

.policy-copy {
  min-width: 0;
  max-width: 940px;
}

.policy-notice {
  display: grid;
  padding: clamp(24px, 4vw, 40px);
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid var(--ink);
  border-radius: var(--policy-radius-large);
  color: var(--ink);
  background: var(--warm);
}

.policy-notice > span {
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--policy-radius-small);
  background: var(--paper);
}

.policy-notice svg {
  width: 25px;
  stroke-width: 1.5;
}

.policy-notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.policy-notice p {
  margin: 0;
  color: var(--ink-soft);
}

.policy-section {
  scroll-margin-top: calc(var(--development-banner-height) + var(--header-height) + 24px);
  margin-top: clamp(60px, 8vw, 94px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--ink);
}

.policy-heading {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.policy-heading__marker,
.policy-heading__marker svg {
  width: 64px;
}

.policy-heading__marker {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
}

.policy-heading__marker svg {
  stroke-width: 1.25;
}

.policy-heading__number {
  fill: currentColor;
  stroke: none;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  text-anchor: middle;
  dominant-baseline: middle;
}

.policy-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.policy-copy h3 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
}

.policy-copy p,
.policy-copy li,
.policy-copy td {
  color: var(--ink-soft);
}

.policy-copy a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 650;
}

.policy-copy li + li {
  margin-top: 10px;
}

.policy-copy .policy-note {
  margin-top: 26px;
  padding-left: 16px;
  border-left: 2px solid var(--ink);
  font-size: 0.82rem;
}

.policy-checklist {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.policy-copy .policy-checklist li {
  display: grid;
  margin: 0;
  padding: 15px 0;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.policy-checklist svg {
  width: 20px;
  margin-top: 2px;
  stroke: var(--ink);
  stroke-width: 1.5;
}

.policy-table-wrap {
  max-width: 100%;
  margin-block: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--policy-radius-medium);
  background: var(--paper);
}

.policy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.78rem;
  line-height: 1.5;
}

.policy-table th,
.policy-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table thead th {
  color: var(--ink);
  background: color-mix(in srgb, var(--ink) 4%, var(--paper));
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-table tbody th {
  color: var(--ink);
  font-weight: 700;
}

.policy-table tr:last-child th,
.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.policy-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.78rem;
}

.policy-contact a:hover {
  color: var(--ink);
  background: transparent;
}

/* Five-column footer once the Studio policy library is present. */
.footer-grid {
  grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(118px, 0.55fr));
  gap: clamp(30px, 4.2vw, 64px);
}

@media (max-width: 1180px) {
  .page-policy .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .page-policy .main-nav {
    display: none;
  }

  .page-policy .menu-toggle {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .policy-hero__grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-hero__grid {
    gap: 36px;
  }

  .policy-hero__meta {
    max-width: 620px;
  }

  .policy-summary {
    position: static;
  }

  .policy-toc {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-toc a:nth-child(odd) {
    padding-right: 18px;
    border-right: 1px solid var(--line);
  }

  .policy-toc a:nth-child(even) {
    padding-left: 18px;
  }
}

@media (max-width: 700px) {
  .page-policy .site-header .brand-lockup img {
    width: min(184px, 43vw);
  }

  .page-policy .header-actions {
    gap: 8px;
  }

  .policy-print {
    width: 40px;
    height: 40px;
    min-height: 40px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .policy-print span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .policy-hero__title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-hero__mark {
    width: 68px;
  }

  .policy-hero h1 {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .policy-snapshot__grid {
    grid-template-columns: 1fr;
  }

  .policy-snapshot__grid li,
  .policy-snapshot__grid li:first-child {
    min-height: 102px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .policy-snapshot__grid li:first-child {
    border-top: 0;
  }

  .policy-notice {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .policy-toc a,
  .policy-toc a:nth-child(odd),
  .policy-toc a:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .policy-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }

  .policy-heading__marker,
  .policy-heading__marker svg {
    width: 48px;
  }

  .policy-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (forced-colors: active) {
  .policy-hero__mark,
  .policy-snapshot__icon,
  .policy-notice,
  .policy-notice > span,
  .policy-print,
  .policy-contact a {
    border-color: ButtonText;
    color: ButtonText;
    background: Canvas;
    box-shadow: none;
    forced-color-adjust: auto;
  }
}

@media print {
  @page {
    margin: 15mm;
  }

  .page-policy {
    color: #000000;
    background: #ffffff;
    font-size: 10pt;
    line-height: 1.45;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .page-policy .development-banner,
  .page-policy .site-header,
  .page-policy .mobile-menu,
  .page-policy .policy-print,
  .page-policy .policy-snapshot,
  .page-policy .policy-summary,
  .page-policy .site-footer {
    display: none !important;
  }

  .page-policy .shell {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  .policy-hero {
    padding: 0 0 11mm;
    border-bottom: 1px solid #000000;
    background: #ffffff !important;
  }

  .policy-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(62mm, 0.9fr);
    gap: 12mm;
  }

  .policy-hero h1 {
    font-size: 38pt;
  }

  .policy-hero__title-row {
    align-items: flex-end;
    flex-direction: row;
    gap: 8mm;
  }

  .policy-hero__mark {
    width: 22mm;
    border-radius: 4mm;
  }

  .policy-body {
    padding: 10mm 0 0;
    background: #ffffff !important;
  }

  .policy-layout {
    display: block;
  }

  .policy-copy {
    max-width: none;
  }

  .policy-notice {
    padding: 6mm;
    break-inside: avoid;
    border-color: #000000;
    background: #ffffff !important;
  }

  .policy-section {
    margin-top: 9mm;
    padding-top: 5mm;
    break-inside: auto;
  }

  .policy-heading {
    margin-bottom: 4mm;
    break-after: avoid;
  }

  .policy-heading h2 {
    font-size: 21pt;
  }

  .policy-heading__marker,
  .policy-heading__marker svg {
    width: 14mm;
  }

  .policy-table-wrap {
    overflow: visible;
    border-radius: 0;
  }

  .policy-table {
    min-width: 0;
    font-size: 7.5pt;
  }

  .policy-table th,
  .policy-table td {
    padding: 2.5mm;
  }

  .policy-copy p,
  .policy-copy li,
  .policy-copy td,
  .policy-hero__meta > p {
    color: #222222 !important;
  }
}
