:root {
  --ink: #261d1b;
  --muted: #746661;
  --paper: #fbf7f1;
  --paper-deep: #f2e9df;
  --white: #fffdf9;
  --accent: #8a2637;
  --accent-dark: #57131f;
  --accent-soft: #f1dcdf;
  --gold: #edae47;
  --gold-soft: #f9e8c9;
  --border: rgba(63, 40, 34, 0.13);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow: 0 28px 80px rgba(60, 25, 28, 0.14);
  --shadow-soft: 0 12px 36px rgba(60, 25, 28, 0.07);
}

body[data-theme="saffron"] {
  --accent: #a95816;
  --accent-dark: #6b2f0e;
  --accent-soft: #f7e1c6;
  --gold: #efb636;
}

body[data-theme="emerald"] {
  --accent: #386556;
  --accent-dark: #1f4238;
  --accent-soft: #dce9e3;
  --gold: #d59a43;
}

body[data-theme="plum"] {
  --accent: #784166;
  --accent-dark: #4c253f;
  --accent-soft: #ecdee8;
  --gold: #e5aa55;
}

body[data-theme="mehndi"] {
  --accent: #5c6d3d;
  --accent-dark: #344024;
  --accent-soft: #e2e8d2;
  --gold: #e4a73f;
}

body[data-theme="terracotta"] {
  --accent: #a65337;
  --accent-dark: #6a2a1c;
  --accent-soft: #f1ddd6;
  --gold: #dc9f3e;
}

body[data-theme="indigo"] {
  --accent: #4c527e;
  --accent-dark: #2d3153;
  --accent-soft: #e0e2ef;
  --gold: #dda64f;
}

body[data-theme="rose"] {
  --accent: #9a5360;
  --accent-dark: #64303a;
  --accent-soft: #f2e0e3;
  --gold: #e9aa54;
}

body[data-theme="teal"] {
  --accent: #367078;
  --accent-dark: #21494f;
  --accent-soft: #dcecee;
  --gold: #e0a33e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(73, 44, 35, 0.045) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

button,
input {
  font: inherit;
}

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

img {
  max-width: 100%;
}

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

.reading-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  min-height: 78px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4.6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: var(--accent-dark);
}

.brand {
  display: inline-flex;
  justify-self: start;
}

.brand-logo {
  position: relative;
  display: block;
  width: 172px;
  aspect-ratio: 1203 / 437;
  overflow: hidden;
}

.brand-logo img {
  position: absolute;
  top: -66.36%;
  left: -13.97%;
  display: block;
  width: 127.68%;
  max-width: none;
  height: auto;
  filter: brightness(1.8) saturate(0.72) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.16));
}

.site-header > nav {
  display: flex;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header > nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.site-header > nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.29);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  transition: 160ms ease;
}

.header-cta:hover {
  color: var(--accent-dark);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 685px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 7vw;
  align-items: center;
  overflow: hidden;
  padding: 75px max(6vw, calc((100vw - 1420px) / 2));
  color: var(--white);
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--accent-dark) 96%, black), color-mix(in srgb, var(--accent) 92%, #45131e)),
    var(--accent-dark);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-copy,
.site-preview {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow i,
.hero-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  overflow-wrap: break-word;
  font-family: var(--serif);
  font-size: clamp(55px, 5.4vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.hero-actions a {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 21px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.hero-actions a:hover {
  transform: translateY(-2px);
}

.primary-action {
  color: #3e2518;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.hero-proof span {
  color: var(--gold);
}

.site-preview {
  width: min(470px, 94%);
  justify-self: center;
  transform: rotate(1.2deg);
}

.preview-browser {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 9px 9px 0 0;
  color: #9a8e89;
  background: #ece5dd;
  box-shadow: var(--shadow);
}

.preview-browser i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9bbb0;
}

.preview-browser span {
  min-width: 0;
  overflow: hidden;
  margin-left: 8px;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-body {
  position: relative;
  min-height: 485px;
  overflow: hidden;
  padding: 58px 45px 38px;
  border-radius: 0 0 9px 9px;
  color: var(--ink);
  background:
    radial-gradient(circle at 110% 15%, var(--accent-soft), transparent 32%),
    radial-gradient(circle at -10% 90%, var(--gold-soft), transparent 28%),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.preview-body::before,
.preview-body::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: 50%;
  content: "";
}

.preview-body::before {
  top: -110px;
  right: -90px;
  box-shadow: 0 0 0 18px color-mix(in srgb, var(--accent) 3%, transparent);
}

.preview-body::after {
  bottom: -125px;
  left: -100px;
}

.preview-flower {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--accent);
}

.preview-body > small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-body h2 {
  margin: 9px 0 4px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.preview-body h2 i {
  color: var(--gold);
  font-weight: 400;
}

.preview-body > p {
  margin: 13px 0 26px;
  color: var(--muted);
  font-size: 10px;
}

.event-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.event-card > div {
  display: flex;
  flex-direction: column;
}

.event-card small {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.event-card > div:last-child {
  justify-content: center;
  padding-left: 15px;
  border-left: 1px solid var(--border);
  color: var(--muted);
  font-size: 8px;
}

.preview-body > button {
  position: relative;
  z-index: 1;
  min-height: 37px;
  margin-top: 19px;
  padding: 0 18px;
  border: 0;
  border-radius: 3px;
  color: var(--white);
  background: var(--accent);
  font-size: 8px;
  font-weight: 700;
}

.preview-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 13px 15px;
  border: 1px solid rgba(64, 42, 35, 0.1);
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 40px rgba(41, 14, 21, 0.18);
  transform: rotate(-2deg);
}

.preview-float > span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 11px;
}

.preview-float div {
  display: flex;
  flex-direction: column;
}

.preview-float strong {
  font-size: 10px;
}

.preview-float small {
  color: var(--muted);
  font-size: 8px;
}

.float-rsvp {
  top: 84px;
  right: -52px;
}

.float-map {
  bottom: 47px;
  left: -55px;
  transform: rotate(2deg);
}

.hero-motif {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.motif-one {
  top: -260px;
  right: -210px;
  width: 620px;
  height: 620px;
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.018),
    0 0 0 76px rgba(255, 255, 255, 0.012);
}

.motif-two {
  bottom: -340px;
  left: -220px;
  width: 580px;
  height: 580px;
}

.content-layout {
  display: grid;
  max-width: 1320px;
  grid-template-columns: 190px minmax(0, 830px);
  gap: 86px;
  margin: 0 auto;
  padding: 78px 48px 120px;
}

.toc {
  position: sticky;
  top: 30px;
  align-self: start;
}

.toc > p {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.toc nav {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

.toc nav a {
  position: relative;
  padding: 8px 0 8px 17px;
  color: #8e827d;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 160ms ease;
}

.toc nav a::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -1px;
  width: 2px;
  background: transparent;
  content: "";
}

.toc nav a.active,
.toc nav a:hover {
  color: var(--accent);
}

.toc nav a.active::before {
  background: var(--accent);
}

.toc-product {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.toc-product span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc-product strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.toc-product a {
  margin-top: 14px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
}

.article {
  min-width: 0;
}

.article > *,
.section-header > div,
.inline-product > div,
.takeaway-panel > *,
.planning-artifact > * {
  min-width: 0;
}

.article-feature-image {
  overflow: hidden;
  margin: 0 0 30px;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, transparent);
  border-radius: 8px;
  background: var(--paper-deep);
  box-shadow: var(--shadow-soft);
}

.article-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.article-inline-image {
  overflow: hidden;
  margin: 34px 0;
  border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 8px;
  background: var(--paper-deep);
  box-shadow: 0 18px 45px rgba(55, 24, 17, 0.12);
}

.article-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.quick-answer {
  position: relative;
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 20px;
  overflow: hidden;
  padding: 37px 39px;
  border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 105% 0, color-mix(in srgb, var(--gold) 18%, transparent), transparent 36%),
    var(--accent-soft);
}

.quick-answer::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 22px color-mix(in srgb, var(--accent) 2.5%, transparent),
    0 0 0 44px color-mix(in srgb, var(--accent) 1.5%, transparent);
}

.quick-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.42);
}

.quick-answer > div:last-child {
  position: relative;
  z-index: 1;
}

.quick-answer span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-answer p {
  margin: 11px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}

.quick-answer strong {
  color: var(--accent);
  font-weight: 400;
}

.article-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  align-items: center;
  margin-top: 25px;
  padding: 19px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(237, 174, 71, 0.07);
}

.article-note span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.share-button {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--accent);
  background: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.article-section {
  margin-top: 92px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 29px;
}

.section-header > span {
  display: grid;
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 17px;
}

.section-header small {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0;
  overflow-wrap: break-word;
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 49px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-body > p {
  margin: 0 0 20px;
  color: #574b47;
}

.section-body > p:first-child {
  font-size: 18px;
}

.section-body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  text-underline-offset: 3px;
}

.label-card {
  position: relative;
  margin: 13px 0;
  padding: 21px 23px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(58, 33, 27, 0.04);
}

.label-title {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 21px;
}

.label-card p {
  margin: 0;
  color: #625653;
  font-size: 15px;
  line-height: 1.65;
}

.example-card {
  padding-right: 112px;
  border-left: 3px solid var(--gold);
}

.copy-example {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 31px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--accent);
  background: var(--paper);
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
}

.table-scroll {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th {
  padding: 15px 18px;
  color: #81736e;
  background: var(--paper-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
}

td {
  padding: 18px;
  border-top: 1px solid var(--border);
  color: #625653;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: top;
}

td:first-child {
  color: var(--ink);
}

td strong {
  color: var(--accent);
}

.bullet-list,
.numbered-list,
.example-list,
.checklist {
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.bullet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bullet-list li {
  position: relative;
  padding: 20px 20px 20px 45px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #5f5350;
  background: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

.bullet-list li::before {
  position: absolute;
  top: 21px;
  left: 19px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-soft);
  content: "✦";
  font-size: 7px;
}

.bullet-list strong {
  color: var(--accent);
}

.numbered-list {
  counter-reset: guide-list;
  border-top: 1px solid var(--border);
}

.numbered-list li {
  position: relative;
  min-height: 82px;
  padding: 23px 20px 23px 73px;
  border-bottom: 1px solid var(--border);
  color: #5e514d;
  counter-increment: guide-list;
}

.numbered-list li::before {
  position: absolute;
  top: 18px;
  left: 4px;
  color: var(--gold);
  content: counter(guide-list, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 34px;
}

.numbered-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.checklist {
  display: grid;
  gap: 9px;
}

.checklist li {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 13px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: #5c504c;
  background: var(--white);
  font-size: 14px;
  line-height: 1.6;
  transition: opacity 160ms ease;
}

.check-control {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 50%;
  background: var(--accent-soft);
  cursor: pointer;
}

.check-control span {
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg);
}

.checklist li.checked {
  opacity: 0.58;
}

.checklist li.checked .check-control span {
  opacity: 1;
}

.checklist li.checked > div {
  text-decoration: line-through;
}

.example-list {
  display: grid;
  gap: 9px;
}

.example-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

.example-index {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.inline-product {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 43px;
  padding: 26px 28px;
  border-radius: 7px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--gold) 24%, transparent), transparent 32%),
    var(--accent-dark);
  box-shadow: var(--shadow);
}

.inline-product-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
}

.inline-product span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inline-product h3 {
  max-width: 430px;
  margin: 4px 0 3px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.inline-product p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.5;
}

.inline-product > a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 3px;
  color: #3e281a;
  background: var(--gold);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

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

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}

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

.faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 700px;
  padding: 0 0 23px;
}

.faq-answer p {
  margin: 0;
  color: #655954;
  font-size: 15px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  margin-top: 98px;
  padding: 50px 52px;
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--gold) 24%, transparent), transparent 31%),
    linear-gradient(135deg, var(--accent-dark), color-mix(in srgb, var(--accent) 90%, #41151f));
  box-shadow: var(--shadow);
}

.final-cta::before {
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 26px rgba(255, 255, 255, 0.018),
    0 0 0 52px rgba(255, 255, 255, 0.012);
}

.final-cta-copy,
.final-phone {
  position: relative;
  z-index: 1;
}

.final-cta-copy > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 510px;
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 400;
  line-height: 1.08;
}

.final-cta-copy > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.feature-pills span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 7px;
}

.final-cta-copy > a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 17px;
  border-radius: 4px;
  color: #402717;
  background: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.final-phone {
  display: flex;
  width: 150px;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 25px 16px;
  border: 5px solid #241b19;
  border-radius: 25px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
  transform: rotate(3deg);
}

.phone-camera {
  position: absolute;
  top: 8px;
  width: 44px;
  height: 5px;
  border-radius: 100px;
  background: #2d2624;
}

.final-phone small {
  color: var(--accent);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.final-phone strong {
  margin-top: 11px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 0.95;
}

.final-phone strong i {
  color: var(--gold);
  font-weight: 400;
}

.final-phone > span {
  margin-top: 17px;
  color: var(--muted);
  font-size: 6px;
}

.final-phone button {
  min-height: 28px;
  margin-top: 17px;
  padding: 0 12px;
  border: 0;
  border-radius: 2px;
  color: var(--white);
  background: var(--accent);
  font-size: 6px;
  font-weight: 700;
}

.related {
  margin-top: 91px;
}

.related > header span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.related > header h2 {
  margin: 5px 0 24px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

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

.related-grid a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.related-grid a:hover {
  border-color: color-mix(in srgb, var(--accent) 32%, transparent);
  transform: translateY(-4px);
}

.related-grid span {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 15px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.related-grid b {
  margin-top: auto;
  color: var(--accent);
  font-size: 8px;
}

.mobile-conversion {
  display: none;
}

footer {
  display: grid;
  min-height: 120px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 30px 5vw;
  color: rgba(255, 255, 255, 0.72);
  background: #241a18;
  font-size: 9px;
}

footer p {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

footer > a:last-child {
  justify-self: end;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 23px;
  bottom: 23px;
  padding: 11px 15px;
  border-radius: 4px;
  color: var(--white);
  background: #28201e;
  box-shadow: var(--shadow);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(9px);
  transition: 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Second-generation editorial layouts */
.breadcrumb {
  display: flex;
  max-width: 1320px;
  align-items: center;
  gap: 9px;
  margin: 0 auto;
  padding: 18px 48px 0;
  color: #948680;
  font-size: 9px;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb b {
  color: var(--accent);
  font-weight: 600;
}

.hero-object {
  position: relative;
  z-index: 2;
  width: min(455px, 94%);
  min-height: 475px;
  min-width: 0;
  justify-self: center;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-object.hero-ledger {
  padding: 44px 39px;
  border-radius: 4px;
  transform: rotate(1.5deg);
}

.hero-object.hero-ledger::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 72px;
  width: 1px;
  background: rgba(177, 69, 74, 0.22);
  content: "";
}

.ledger-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 2px solid var(--ink);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ledger > strong {
  display: block;
  margin-top: 31px;
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 400;
}

.hero-ledger > small {
  color: var(--muted);
  font-size: 9px;
}

.ledger-bars {
  display: flex;
  height: 126px;
  align-items: flex-end;
  gap: 12px;
  margin: 35px 0 27px;
  padding-left: 50px;
  border-bottom: 1px solid var(--border);
}

.ledger-bars i {
  width: 39px;
  height: var(--bar);
  background: linear-gradient(var(--gold), var(--accent));
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 10px;
}

.ledger-row b {
  color: var(--accent);
}

.hero-stamp {
  position: absolute;
  right: 29px;
  bottom: 25px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-11deg);
}

.hero-object.hero-roadmap {
  min-height: 430px;
  padding: 45px 36px;
  border-radius: 180px 180px 12px 12px;
  background:
    radial-gradient(circle at 50% 0, var(--accent-soft), transparent 42%),
    var(--white);
}

.roadmap-label {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.roadmap-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 67px 4px 52px;
}

.roadmap-line::before {
  position: absolute;
  top: 16px;
  right: 20px;
  left: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  content: "";
}

.roadmap-line div {
  position: relative;
  z-index: 1;
  display: flex;
  width: 58px;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.roadmap-line b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  font-size: 9px;
}

.roadmap-line div:last-child b {
  color: #47301d;
  background: var(--gold);
}

.roadmap-line span {
  color: var(--muted);
  font-size: 7px;
}

.roadmap-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.roadmap-card small {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.roadmap-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.hero-object.hero-stage {
  min-height: 450px;
  padding: 43px 36px;
  border: 8px solid #281b23;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(rgba(35, 15, 29, 0.35), rgba(35, 15, 29, 0.9)),
    repeating-linear-gradient(90deg, #672f54 0 30px, #542044 31px 58px);
  text-align: center;
}

.stage-lights {
  display: flex;
  justify-content: space-around;
  margin: -20px 0 46px;
}

.stage-lights i {
  width: 52px;
  height: 100px;
  background: linear-gradient(rgba(245, 193, 97, 0.42), transparent);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
}

.hero-stage > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-stage > strong {
  display: block;
  margin: 4px 0 25px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.stage-setlist {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-setlist p {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  text-align: left;
}

.stage-setlist b {
  color: var(--gold);
}

.stage-setlist i {
  font-style: normal;
}

.hero-stage > small {
  display: block;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.hero-object.hero-lookbook {
  min-height: 480px;
  background: transparent;
  box-shadow: none;
}

.hero-object.hero-atelier {
  min-height: 455px;
  overflow: hidden;
  padding: 52px 42px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(99, 111, 65, 0.06) 50%),
    #f8eedf;
  transform: rotate(1deg);
}

.hero-object.hero-atelier::before {
  position: absolute;
  inset: 17px;
  border: 2px dashed rgba(92, 109, 61, 0.25);
  content: "";
}

.atelier-thread {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 210px;
  height: 210px;
  border: 10px solid var(--accent);
  border-radius: 50%;
  opacity: 0.17;
}

.hero-atelier > span,
.hero-atelier > strong,
.atelier-list,
.atelier-flower {
  position: relative;
  z-index: 1;
}

.hero-atelier > span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-atelier > strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
}

.atelier-list {
  margin-top: 43px;
}

.atelier-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(92, 109, 61, 0.2);
  color: #655848;
  font-size: 10px;
}

.atelier-list i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  font-size: 8px;
  font-style: normal;
}

.atelier-flower {
  position: absolute;
  right: 35px;
  bottom: 22px;
  color: var(--gold);
  font-size: 42px;
}

.lookbook-cover {
  position: absolute;
  top: 40px;
  left: 28px;
  display: flex;
  width: 300px;
  height: 380px;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 8px solid var(--white);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--gold) 38%, transparent), transparent 24%),
    var(--accent);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.lookbook-cover span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lookbook-cover strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 0.95;
}

.lookbook-cover i {
  margin-top: 60px;
  color: var(--gold);
  font-size: 40px;
  font-style: normal;
}

.lookbook-card {
  position: absolute;
  right: 0;
  width: 225px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.lookbook-card span {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lookbook-card b {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.lookbook-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.card-one {
  top: 84px;
  transform: rotate(3deg);
}

.card-two {
  right: 13px;
  bottom: 45px;
  transform: rotate(-2deg);
}

.hero-object.hero-atlas {
  min-height: 445px;
  padding: 44px 38px;
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(45deg, transparent 0 30px, var(--accent-soft) 31px 32px);
}

.atlas-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--accent);
}

.atlas-route i {
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.atlas-route b {
  color: var(--gold);
  font-size: 22px;
}

.atlas-route span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-atlas > strong {
  display: block;
  margin-top: 42px;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 400;
  text-align: center;
}

.hero-atlas > small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.atlas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 35px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--border);
}

.atlas-grid p {
  display: flex;
  min-height: 69px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.91);
}

.atlas-grid span {
  color: var(--muted);
  font-size: 7px;
  text-transform: uppercase;
}

.atlas-grid b {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.atlas-pin {
  position: absolute;
  right: 27px;
  bottom: 23px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 9px 20px rgba(42, 28, 26, 0.18);
}

.hero-object.hero-ceremony {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: 9px solid var(--white);
  outline-offset: -22px;
  background:
    radial-gradient(circle at 50% 15%, var(--gold-soft), transparent 24%),
    var(--white);
  text-align: center;
}

.ceremony-ornament {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--accent);
  font-size: 20px;
}

.hero-ceremony > span {
  margin-top: 24px;
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-ceremony > strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
}

.hero-ceremony > i {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.ceremony-rule {
  width: 100px;
  height: 1px;
  margin: 27px 0 19px;
  background: var(--gold);
}

.hero-ceremony p {
  margin: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.hero-ceremony small {
  margin-top: 30px;
  color: var(--muted);
  font-size: 7px;
}

.hero-object.hero-split {
  display: grid;
  min-height: 420px;
  grid-template-columns: 1fr 40px 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 7px;
  background: var(--white);
}

.hero-split > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.hero-split > div:first-child {
  color: var(--white);
  background: var(--accent);
}

.hero-split > div:last-of-type {
  background: var(--gold-soft);
}

.hero-split > i {
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--accent-dark);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}

.hero-split span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-split strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.hero-split p {
  max-width: 120px;
  margin: 10px 0 0;
  font-size: 8px;
}

.hero-split small {
  position: absolute;
  right: 0;
  bottom: -38px;
  left: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  text-align: center;
}

.hero-object.hero-portfolio {
  min-height: 450px;
  background: #191616;
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--white);
  background:
    radial-gradient(circle at 54% 35%, var(--gold) 0 4%, transparent 5%),
    linear-gradient(145deg, #53383b, #171414);
  box-shadow: 0 17px 35px rgba(0, 0, 0, 0.34);
}

.photo-frame i {
  position: absolute;
  right: 20%;
  bottom: 0;
  width: 43%;
  height: 72%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(var(--accent), #2c1c1e);
}

.frame-one {
  top: 30px;
  left: 25px;
  width: 250px;
  height: 300px;
  transform: rotate(-5deg);
}

.frame-two {
  top: 65px;
  right: 27px;
  width: 210px;
  height: 250px;
  transform: rotate(5deg);
}

.frame-three {
  right: 97px;
  bottom: 55px;
  width: 180px;
  height: 145px;
  transform: rotate(-2deg);
}

.hero-portfolio > span,
.hero-portfolio > strong {
  position: absolute;
  z-index: 3;
  left: 35px;
  color: var(--white);
}

.hero-object.hero-playful {
  min-height: 430px;
  overflow: hidden;
  padding: 55px 36px;
  border-radius: 30px 8px 30px 8px;
  background:
    radial-gradient(circle at 90% 10%, var(--gold) 0 4%, transparent 4.5%),
    radial-gradient(circle at 20% 85%, var(--accent) 0 7%, transparent 7.5%),
    var(--white);
  transform: rotate(-1deg);
}

.hero-playful > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-playful > strong,
.hero-playful > i,
.hero-playful > b {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin-top: 28px;
  padding: 10px 15px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--gold-soft);
  font-family: var(--serif);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  transform: rotate(-3deg);
}

.hero-playful > i {
  margin-left: 60px;
  color: var(--white);
  background: var(--accent);
  transform: rotate(2deg);
}

.hero-playful > b {
  margin-left: 20px;
  background: var(--accent-soft);
  transform: rotate(-1deg);
}

.playful-sticker {
  position: absolute;
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent-dark);
  font-size: 7px;
  font-weight: 700;
  transform: rotate(8deg);
}

.sticker-one {
  top: 44px;
  right: 42px;
}

.sticker-two {
  right: 25px;
  bottom: 75px;
  background: var(--gold);
}

.sticker-three {
  bottom: 15px;
  left: 38px;
  width: 54px;
  height: 54px;
}

.hero-object.hero-studio {
  min-height: 450px;
  padding: 0 38px 42px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, var(--accent-soft), transparent 32%),
    var(--white);
}

.studio-toolbar {
  display: flex;
  height: 39px;
  align-items: center;
  gap: 6px;
  margin: 0 -38px 45px;
  padding: 0 13px;
  border-radius: 8px 8px 0 0;
  background: var(--paper-deep);
}

.studio-toolbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c5b6ac;
}

.studio-toolbar span {
  margin-left: 7px;
  color: var(--muted);
  font-size: 7px;
}

.hero-studio > small {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-studio > strong {
  display: block;
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
}

.hero-studio > p {
  max-width: 320px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 10px;
}

.studio-note {
  position: absolute;
  right: 24px;
  bottom: 58px;
  padding: 15px;
  border: 1px solid var(--gold);
  color: var(--accent);
  background: var(--gold-soft);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.25;
  transform: rotate(4deg);
}

.studio-note b {
  font-weight: 400;
}

.hero-studio > button {
  min-height: 37px;
  padding: 0 14px;
  border: 0;
  border-radius: 3px;
  color: var(--white);
  background: var(--accent);
  font-size: 8px;
  font-weight: 700;
}

.hero-portfolio > span {
  bottom: 39px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-portfolio > strong {
  bottom: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.hero-object.hero-scorecard {
  min-height: 430px;
  padding: 41px 37px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 49px, rgba(176, 75, 76, 0.15) 50px 51px, transparent 52px),
    repeating-linear-gradient(#fffdf9 0 39px, #ece4dc 40px 41px);
}

.hero-scorecard > span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scorecard > strong {
  display: block;
  margin: 7px 0 43px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-scorecard > div {
  display: grid;
  grid-template-columns: 105px 1fr 30px;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
}

.hero-scorecard p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.hero-scorecard i {
  position: relative;
  height: 5px;
  border-radius: 100px;
  background: var(--paper-deep);
}

.hero-scorecard i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--score);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  content: "";
}

.hero-scorecard b {
  color: var(--accent);
  font-size: 8px;
}

.takeaway-panel {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 27px;
  margin-top: 33px;
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.takeaway-heading span,
.artifact-heading > span,
.trust-section > div > span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.takeaway-heading h2 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.takeaway-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.takeaway-panel li {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 11px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.takeaway-panel li:first-child {
  border-top: 0;
}

.takeaway-panel li b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.takeaway-panel li p {
  margin: 0;
  color: #5f5350;
  font-size: 14px;
  line-height: 1.55;
}

.planning-artifact {
  margin-top: 74px;
  padding: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, transparent);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--gold) 15%, transparent), transparent 29%),
    var(--white);
  box-shadow: var(--shadow);
}

.artifact-heading {
  margin-bottom: 30px;
}

.artifact-heading h2 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
}

.artifact-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.artifact-budget > label,
.artifact-capacity > label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artifact-budget label strong,
.artifact-capacity label strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.artifact-budget input,
.artifact-capacity input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--accent);
}

.budget-artifact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.budget-artifact-grid > div {
  position: relative;
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 5px;
}

.budget-artifact-grid span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.budget-artifact-grid strong {
  position: relative;
  z-index: 1;
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.budget-artifact-grid i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--size);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
}

.artifact-budget > small {
  display: block;
  margin-top: 13px;
  color: #958984;
  font-size: 8px;
}

.artifact-input-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.artifact-input-row label,
.artifact-quota > label,
.artifact-rsvp label,
.invite-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.artifact-input-row input,
.artifact-quota input,
.artifact-rsvp input,
.invite-fields input {
  width: 100%;
  min-height: 47px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 21px;
}

.artifact-input-row input:focus,
.artifact-quota input:focus,
.artifact-rsvp input:focus,
.invite-fields input:focus {
  border-color: var(--accent);
}

.runtime-result,
.rsvp-result {
  margin-top: 22px;
  padding: 24px;
  border-radius: 6px;
  color: var(--white);
  background: var(--accent-dark);
  text-align: center;
}

.runtime-result span,
.rsvp-result span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.runtime-result strong,
.rsvp-result strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.runtime-result p,
.rsvp-result p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.artifact-capacity {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 28px;
  align-items: center;
}

.artifact-capacity > div {
  padding: 25px;
  border-radius: 7px;
  color: var(--white);
  background: var(--accent);
  text-align: center;
}

.artifact-capacity > div span {
  color: var(--gold);
  font-size: 8px;
  text-transform: uppercase;
}

.artifact-capacity > div strong {
  display: block;
  font-family: var(--serif);
  font-size: 53px;
  font-weight: 400;
}

.artifact-capacity > div p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
}

.artifact-scorecard {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 28px;
}

.scorecard-list label {
  display: grid;
  grid-template-columns: 135px 1fr 35px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.scorecard-list label:first-child {
  border-top: 0;
}

.scorecard-list span {
  color: #5f5350;
  font-size: 10px;
}

.scorecard-list input {
  accent-color: var(--accent);
}

.scorecard-list b {
  color: var(--accent);
  font-size: 9px;
}

.scorecard-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 8px 8px;
  color: var(--white);
  background: var(--accent);
  text-align: center;
}

.scorecard-total span {
  color: var(--gold);
  font-size: 7px;
  text-transform: uppercase;
}

.scorecard-total strong {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
}

.scorecard-total p {
  max-width: 125px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
}

.artifact-quota > label {
  max-width: 260px;
}

.quota-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}

.quota-grid div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--paper);
}

.quota-grid span {
  color: var(--muted);
  font-size: 8px;
}

.quota-grid strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
}

.quota-grid small {
  color: #9b8d88;
  font-size: 8px;
}

.artifact-quota > p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.artifact-rsvp {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 25px;
}

.artifact-rsvp > div:first-child {
  display: grid;
  gap: 12px;
}

.rsvp-result {
  margin: 0;
}

.artifact-hashtag > div:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr 110px;
  gap: 10px;
}

.artifact-hashtag label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.artifact-hashtag input {
  min-height: 45px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: 0;
  background: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
}

.artifact-hashtag > button,
.artifact-formats button,
.artifact-itinerary button,
.artifact-eventstack button {
  min-height: 37px;
  margin-top: 15px;
  padding: 0 13px;
  border: 0;
  border-radius: 3px;
  color: var(--white);
  background: var(--accent);
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
}

.hashtag-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.hashtag-results button {
  min-height: 67px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--accent);
  background: var(--accent-soft);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 17px;
}

.artifact-invite {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.invite-fields {
  display: grid;
  gap: 10px;
}

.invite-preview {
  padding: 23px;
  border-radius: 7px;
  background: #e8f0e4;
  box-shadow: inset 0 0 0 1px rgba(61, 96, 62, 0.12);
}

.invite-preview > span {
  color: #497252;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.invite-preview p {
  margin: 13px 0;
  padding: 15px;
  border-radius: 0 8px 8px 8px;
  background: var(--white);
  font-size: 11px;
  white-space: pre-line;
}

.invite-preview button {
  border: 0;
  color: #497252;
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
}

.artifact-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.artifact-timeline::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 28px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--gold));
  content: "";
}

.artifact-timeline > div {
  position: relative;
  display: grid;
  grid-template-columns: 56px 110px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 61px;
}

.artifact-timeline b {
  position: relative;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: 13px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  font-size: 7px;
}

.artifact-timeline span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 16px;
}

.artifact-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.city-tabs,
.artifact-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.city-tabs button,
.artifact-tab-buttons button {
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
}

.city-tabs button.active,
.artifact-tab-buttons button.active {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.city-display {
  margin-top: 25px;
  padding: 32px;
  border-radius: 7px;
  color: var(--white);
  background: var(--accent-dark);
}

.city-display span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.city-display strong {
  display: block;
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
}

.city-display p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
}

.artifact-data {
  display: none;
}

.artifact-tab-panels {
  margin-top: 20px;
}

.artifact-tab-panels article {
  display: none;
  min-height: 180px;
  padding: 31px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--gold) 18%, transparent), transparent 35%),
    var(--accent-soft);
}

.artifact-tab-panels article.active {
  display: block;
}

.artifact-tab-panels span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artifact-tab-panels h3 {
  max-width: 620px;
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

.artifact-tab-panels p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.artifact-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.artifact-formats article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--paper);
  transition: 160ms ease;
}

.artifact-formats article.selected {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent-soft);
}

.artifact-formats span {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.artifact-formats h3 {
  margin: 16px 0 7px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.artifact-formats p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.artifact-formats button {
  margin-top: auto;
}

.artifact-itinerary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.artifact-itinerary article {
  min-height: 260px;
  padding: 22px;
  border-radius: 6px;
  background: var(--paper);
  border-top: 4px solid var(--accent);
}

.artifact-itinerary span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 23px;
}

.artifact-itinerary p {
  margin: 11px 0 0;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--white);
  font-size: 9px;
}

.artifact-itinerary p:focus {
  border-color: var(--accent);
  outline: 0;
}

.artifact-audit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.artifact-audit > button {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-size: 9px;
  text-align: left;
}

.artifact-audit button i {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.artifact-audit button.complete {
  opacity: 0.58;
  text-decoration: line-through;
}

.artifact-audit button.complete i {
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--paper);
}

.artifact-audit > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 5px;
  color: var(--white);
  background: var(--accent);
}

.artifact-audit > div strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.artifact-audit > div span {
  color: var(--gold);
  font-size: 8px;
}

.artifact-eventstack {
  display: grid;
  gap: 8px;
}

.artifact-eventstack article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--paper);
}

.artifact-eventstack article.complete {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.artifact-eventstack article > b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.artifact-eventstack h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.artifact-eventstack p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.artifact-eventstack button {
  margin: 0;
}

.balance-head {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 22px;
  text-align: center;
}

.balance-head i {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}

.artifact-balance label {
  display: grid;
  grid-template-columns: 150px 1fr 120px;
  gap: 15px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--border);
}

.artifact-balance label span {
  color: var(--muted);
  font-size: 9px;
}

.artifact-balance input {
  accent-color: var(--accent);
}

.artifact-balance b {
  color: var(--accent);
  font-size: 8px;
  text-align: right;
}

.artifact-ceremony {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.artifact-ceremony article {
  position: relative;
  min-height: 185px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--paper);
}

.artifact-ceremony article > b {
  position: absolute;
  top: 17px;
  right: 17px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.artifact-ceremony article > span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artifact-ceremony p {
  max-width: 250px;
  margin: 9px 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
}

.artifact-ceremony textarea {
  width: 100%;
  min-height: 45px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: 0;
  background: var(--white);
  resize: vertical;
  font-size: 9px;
}

.insight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  position: relative;
  padding: 17px 17px 17px 43px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: #5e514e;
  background: var(--white);
  font-size: 11px;
}

.insight-list li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  color: var(--gold);
  content: "✦";
}

.editorial-expansion .section-body > p:first-child::first-letter {
  float: left;
  margin: 7px 8px 0 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 0.75;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 235px;
  gap: 30px;
  margin-top: 92px;
  padding: 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
}

.trust-section > div > h2 {
  margin: 7px 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

.trust-section > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.trust-section aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  align-content: start;
  padding: 19px;
  border-radius: 5px;
  color: var(--white);
  background: var(--accent-dark);
}

.trust-section aside b,
.trust-section aside small {
  grid-column: 1 / -1;
}

.trust-section aside b {
  color: var(--gold);
  font-size: 8px;
  text-transform: uppercase;
}

.trust-section aside span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  text-align: center;
}

.trust-section aside small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  line-height: 1.5;
}

.source-list {
  grid-column: 1;
  display: grid;
  gap: 7px;
  margin-top: 15px;
}

.source-list > span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.source-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 9px;
}

.source-list a small {
  color: var(--muted);
}

.author-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 19px;
  align-items: start;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.author-monogram {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--accent-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.author-card span {
  color: var(--accent);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-card h3 {
  margin: 3px 0 4px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.author-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.author-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
}

body[data-layout="ledger"] .quick-answer {
  border-left: 5px solid var(--accent);
  border-radius: 0;
  background: var(--white);
}

body[data-layout="roadmap"] .section-header > span {
  border-radius: 50% 50% 10px 10px;
}

body[data-layout="stage"] .article-section:nth-of-type(even) {
  margin-right: -25px;
  margin-left: -25px;
  padding: 35px 25px;
  border-radius: 8px;
  background: #261c25;
}

body[data-layout="stage"] .article-section:nth-of-type(even) h2,
body[data-layout="stage"] .article-section:nth-of-type(even) .section-body > p {
  color: var(--white);
}

body[data-layout="stage"] .article-section:nth-of-type(even) .section-header > span,
body[data-layout="stage"] .article-section:nth-of-type(even) .section-header small {
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  color: var(--gold);
}

body[data-layout="field-guide"] .article-section {
  padding-top: 30px;
  border-top: 4px double var(--accent);
}

body[data-layout="atlas"] .article-section {
  padding-left: 30px;
  border-left: 1px dashed color-mix(in srgb, var(--accent) 35%, transparent);
}

body[data-layout="ceremony"] .section-header {
  justify-content: center;
  text-align: center;
}

body[data-layout="ceremony"] .section-header > span {
  border-radius: 50% 50% 46% 54% / 55% 44% 56% 45%;
}

body[data-layout="studio"] .label-card {
  border-left: 4px solid var(--gold);
}

/* Library */
.library-page {
  background: var(--paper);
}

.library-hero {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  padding: 85px max(7vw, calc((100vw - 1280px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 87% 10%, rgba(237, 174, 71, 0.2), transparent 26%),
    linear-gradient(120deg, #50121e, #7b2434);
}

.library-hero::after {
  position: absolute;
  right: -190px;
  bottom: -350px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.018),
    0 0 0 80px rgba(255, 255, 255, 0.012);
}

.library-hero > div {
  position: relative;
  z-index: 1;
}

.library-hero > div:first-child > span,
.guide-library > header span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.library-hero h1 {
  margin: 10px 0 20px;
  overflow-wrap: break-word;
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.library-hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.library-hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.library-hero > div:first-child > a {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  margin-top: 16px;
  padding: 0 19px;
  border-radius: 4px;
  color: #3e2619;
  background: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.library-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 15px;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.library-stat strong {
  grid-row: span 1;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
}

.library-stat span {
  align-self: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.library-stat i {
  grid-column: 1 / -1;
  height: 1px;
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.14);
}

.guide-library {
  max-width: 1260px;
  margin: 0 auto;
  padding: 90px 40px 125px;
}

.guide-library > header {
  margin-bottom: 35px;
}

.guide-library > header span {
  color: var(--accent);
}

.guide-library > header h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.guide-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.guide-card:hover {
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
  transform: translateY(-5px);
}

.guide-card-image {
  overflow: hidden;
  margin: -28px -28px 22px;
  border-radius: 7px 7px 0 0;
  background: var(--paper-deep);
}

.guide-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.visual-guide-card .guide-card-image img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.guide-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card h2 {
  margin: 20px 0 13px;
  overflow-wrap: break-word;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.guide-tool {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 6px 9px;
  border-radius: 100px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 7px;
  font-weight: 700;
}

.guide-card > div:last-child {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: #938681;
  font-size: 8px;
}

.guide-card > div:last-child strong {
  color: var(--accent);
}

.policy-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 92px 40px 120px;
}

.policy-main > header {
  margin-bottom: 70px;
}

.policy-main > header > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-main h1 {
  margin: 10px 0 17px;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.policy-main > header p {
  max-width: 680px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 21px;
}

.policy-main > section {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 29px 0;
  border-top: 1px solid var(--border);
}

.policy-main > section > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
}

.policy-main section h2 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.policy-main section p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    gap: 3vw;
  }

  .float-rsvp {
    right: -20px;
  }

  .float-map {
    left: -20px;
  }

  .content-layout {
    grid-template-columns: 165px minmax(0, 760px);
    gap: 43px;
    justify-content: center;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header > nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .site-preview {
    width: min(100%, 480px);
    margin-top: 20px;
  }

  .hero-object {
    width: min(100%, 480px);
    margin-top: 24px;
  }

  .content-layout {
    display: block;
    max-width: 840px;
    padding-right: 35px;
    padding-left: 35px;
  }

  .toc {
    display: none;
  }

  .library-hero {
    grid-template-columns: 1fr;
  }

  .library-stat {
    max-width: 360px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .site-header {
    min-height: 68px;
    gap: 12px;
    overflow: hidden;
    padding: 0 20px;
  }

  .brand-logo {
    width: 145px;
  }

  .header-cta {
    min-height: 38px;
    max-width: 155px;
    overflow: hidden;
    padding: 0 11px;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 53px 22px 67px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 54px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-intro {
    font-size: 18px;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .hero-meta i {
    display: none;
  }

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

  .hero-actions a {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .site-preview {
    width: min(100%, 420px);
    margin-top: 37px;
  }

  .hero-object {
    width: min(100%, 420px);
    min-height: 400px;
    margin-top: 38px;
  }

  .hero-object.hero-ledger {
    padding: 35px 26px;
  }

  .hero-object.hero-ledger::before {
    left: 52px;
  }

  .hero-object.hero-roadmap {
    min-height: 385px;
    padding: 39px 20px;
  }

  .roadmap-line {
    margin-right: -8px;
    margin-left: -8px;
  }

  .roadmap-line div {
    width: 50px;
  }

  .lookbook-cover {
    left: 9px;
    width: 255px;
    height: 340px;
  }

  .lookbook-card {
    width: 185px;
    padding: 17px;
  }

  .hero-object.hero-atlas,
  .hero-object.hero-ceremony {
    padding: 36px 25px;
  }

  .hero-object.hero-split {
    min-height: 360px;
    grid-template-columns: 1fr 30px 1fr;
  }

  .hero-split > div {
    padding: 16px 10px;
  }

  .hero-object.hero-scorecard {
    padding: 33px 23px;
  }

  .breadcrumb {
    padding: 15px 20px 0;
    flex-wrap: wrap;
    line-height: 1.45;
    white-space: normal;
  }

  .preview-body {
    min-height: 430px;
    padding: 47px 29px 32px;
  }

  .preview-body h2 {
    font-size: 35px;
  }

  .float-rsvp {
    top: 66px;
    right: -7px;
  }

  .float-map {
    bottom: 35px;
    left: -7px;
  }

  .preview-float {
    min-width: 165px;
    padding: 10px 12px;
  }

  .content-layout {
    padding: 52px 18px 83px;
  }

  .quick-answer {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .quick-answer p {
    font-size: 21px;
    line-height: 1.5;
  }

  .article-note {
    display: block;
  }

  .article-note p {
    margin-top: 5px;
  }

  .share-button {
    margin-top: 13px;
  }

  .article-section {
    margin-top: 72px;
  }

  .takeaway-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .planning-artifact {
    width: calc(100% + 36px);
    max-width: none;
    min-width: 0;
    margin-right: -18px;
    margin-left: -18px;
    padding: 34px 18px;
    border-radius: 0;
  }

  .planning-artifact *,
  .artifact-scorecard,
  .scorecard-list,
  .artifact-timeline {
    min-width: 0;
  }

  .artifact-heading h2 {
    font-size: 33px;
    overflow-wrap: anywhere;
  }

  .artifact-heading p {
    font-size: 15px;
  }

  .budget-artifact-grid,
  .hashtag-results,
  .artifact-formats,
  .artifact-itinerary,
  .artifact-audit,
  .artifact-ceremony {
    grid-template-columns: 1fr;
  }

  .artifact-input-row,
  .artifact-hashtag > div:first-child {
    grid-template-columns: 1fr;
  }

  .artifact-capacity,
  .artifact-scorecard,
  .artifact-rsvp,
  .artifact-invite {
    grid-template-columns: 1fr;
  }

  .scorecard-total {
    min-height: 170px;
  }

  .scorecard-list label {
    grid-template-columns: minmax(0, 1fr) 64px 30px;
    gap: 8px;
  }

  .scorecard-list input {
    width: 100%;
    min-width: 0;
  }

  .scorecard-list span {
    font-size: 11px;
    line-height: 1.35;
  }

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

  .artifact-timeline > div {
    grid-template-columns: 44px minmax(66px, 78px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 9px 0;
  }

  .artifact-timeline::before {
    left: 22px;
  }

  .artifact-timeline b {
    margin-left: 7px;
  }

  .artifact-timeline span {
    font-size: 14px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .artifact-timeline p {
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .artifact-eventstack article {
    grid-template-columns: 34px 1fr;
  }

  .artifact-eventstack button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .artifact-balance label {
    grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1fr);
  }

  .artifact-balance b {
    grid-column: 1 / -1;
    text-align: left;
  }

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

  .trust-section {
    grid-template-columns: 1fr;
    margin-right: -18px;
    margin-left: -18px;
    padding: 30px 18px;
  }

  .source-list {
    grid-column: auto;
  }

  .author-card {
    grid-template-columns: 48px 1fr;
    padding: 22px;
  }

  .author-monogram {
    width: 48px;
    height: 48px;
  }

  body[data-layout="stage"] .article-section:nth-of-type(even) {
    margin-right: -18px;
    margin-left: -18px;
    border-radius: 0;
  }

  body[data-layout="atlas"] .article-section {
    padding-left: 18px;
  }

  .section-header {
    align-items: flex-start;
    gap: 14px;
  }

  .section-header > span {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .section-header h2 {
    font-size: clamp(31px, 9vw, 36px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

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

  .example-card {
    padding-right: 23px;
    padding-bottom: 58px;
  }

  .copy-example {
    top: auto;
    right: auto;
    bottom: 17px;
    left: 22px;
  }

  .inline-product {
    grid-template-columns: 43px 1fr;
    padding: 23px;
  }

  .inline-product > a {
    grid-column: 1 / -1;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .final-cta {
    grid-template-columns: 1fr;
    padding: 38px 27px;
  }

  .final-phone {
    display: none;
  }

  .final-cta h2 {
    font-size: 33px;
  }

  .related-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .related-grid a {
    min-height: 180px;
  }

  .table-scroll {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-scroll table,
  .table-scroll tbody,
  .table-scroll tr,
  .table-scroll td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .table-scroll thead {
    display: none;
  }

  .table-scroll tbody {
    display: grid;
    gap: 12px;
  }

  .table-scroll tr {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .table-scroll td {
    display: grid;
    grid-template-columns: minmax(88px, 0.38fr) minmax(0, 0.62fr);
    gap: 13px;
    padding: 14px 16px;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.55;
  }

  .table-scroll td::before {
    color: var(--accent);
    content: attr(data-label);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .table-scroll td:first-child {
    border-top: 0;
  }

  .budget-artifact-grid span,
  .artifact-budget > small,
  .artifact-input-row label,
  .artifact-quota > label,
  .artifact-rsvp label,
  .invite-fields label,
  .artifact-hashtag label {
    font-size: 10px;
    line-height: 1.4;
  }

  .runtime-result p,
  .rsvp-result p,
  .artifact-capacity > div p,
  .scorecard-total p,
  .quota-grid span,
  .quota-grid small,
  .artifact-quota > p,
  .city-display p,
  .artifact-tab-panels p,
  .artifact-formats p,
  .artifact-itinerary p,
  .artifact-eventstack p,
  .artifact-balance label span,
  .artifact-ceremony textarea {
    font-size: 12px;
    line-height: 1.5;
  }

  .artifact-capacity > div span,
  .scorecard-total span,
  .artifact-formats span,
  .artifact-ceremony article > span,
  .invite-preview > span {
    font-size: 10px;
    line-height: 1.4;
  }

  .artifact-hashtag > button,
  .artifact-formats button,
  .artifact-itinerary button,
  .artifact-eventstack button {
    min-height: 42px;
    font-size: 10px;
  }

  .artifact-formats article,
  .artifact-itinerary article,
  .artifact-ceremony article {
    min-height: auto;
  }

  .city-display {
    padding: 25px 22px;
  }

  .city-display strong {
    font-size: 34px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .artifact-tab-panels article {
    min-height: 0;
    padding: 25px 22px;
  }

  .artifact-tab-panels h3 {
    font-size: 25px;
  }

  .artifact-audit > button,
  .city-tabs button,
  .artifact-tab-buttons button {
    font-size: 10px;
  }

  .balance-head {
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    font-size: 19px;
  }

  .source-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    overflow-wrap: anywhere;
  }

  .mobile-conversion {
    position: fixed;
    z-index: 150;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 53px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    color: var(--white);
    background: var(--accent-dark);
    box-shadow: 0 14px 40px rgba(30, 14, 16, 0.28);
    font-size: 9px;
  }

  .mobile-conversion b {
    color: var(--gold);
  }

  footer {
    display: flex;
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 30px 22px;
  }

  footer p {
    margin: 0;
  }

  .library-page {
    padding-bottom: 0;
  }

  .library-hero {
    min-height: 600px;
    gap: 42px;
    padding: 70px 22px;
  }

  .library-hero h1 {
    font-size: clamp(44px, 13vw, 52px);
    line-height: 1;
  }

  .guide-library {
    padding: 69px 18px 90px;
  }

  .guide-library > header h2 {
    font-size: 38px;
  }

  .policy-main {
    padding: 68px 20px 90px;
  }

  .policy-main > header {
    margin-bottom: 48px;
  }

  .policy-main h1 {
    font-size: clamp(43px, 13vw, 58px);
    overflow-wrap: anywhere;
  }

  .policy-main > section {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
  }

  .policy-main > section > span {
    font-size: 28px;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand-logo {
    width: 124px;
  }

  .header-cta {
    max-width: 132px;
    padding: 0 9px;
    font-size: 7.5px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .content-layout {
    padding-right: 14px;
    padding-left: 14px;
  }

  .planning-artifact {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .trust-section,
  body[data-layout="stage"] .article-section:nth-of-type(even) {
    margin-right: -14px;
    margin-left: -14px;
  }

  .artifact-heading h2 {
    font-size: 30px;
  }

  .section-header {
    gap: 11px;
  }

  .section-header > span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .section-header h2 {
    font-size: 29px;
  }

  .quick-answer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .quick-answer p {
    font-size: 19px;
  }

  .table-scroll td {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .artifact-timeline > div {
    grid-template-columns: 42px 64px minmax(0, 1fr);
    gap: 8px;
  }

  .artifact-timeline span {
    font-size: 13px;
  }

  .scorecard-list label {
    grid-template-columns: minmax(0, 1fr) 54px 28px;
    gap: 6px;
  }

  .mobile-conversion {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .reading-progress,
  .site-header,
  .hero-actions,
  .toc,
  .article-note,
  .inline-product,
  .final-cta,
  .related,
  .mobile-conversion,
  footer,
  .toast {
    display: none !important;
  }

  body,
  .hero {
    color: #000;
    background: #fff;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 30px 0;
  }

  .hero h1,
  .hero h1 em,
  .hero-intro,
  .hero-meta {
    color: #000;
  }

  .site-preview {
    display: none;
  }

  .content-layout {
    display: block;
    max-width: none;
    padding: 0;
  }
}

/* Contextual in-body internal links (injected by scripts/inject-internal-links.mjs) */
.article-crosslink{margin-top:40px;padding-top:24px;border-top:1px solid var(--border);}
.article-crosslink>p{color:#574b47;}
