:root {
  --paper: #fbfaf6;
  --surface: #ffffff;
  --wash: #edf4ef;
  --mist: #e9eef4;
  --ink: #151310;
  --muted: #5d5a52;
  --soft: #817b70;
  --line: rgba(21, 19, 16, 0.14);
  --sea: #214c49;
  --plum: #563449;
  --clay: #8f5f49;
  --gold: #9a7244;
  --danger: #8f2e2e;
  --focus: rgba(154, 114, 68, 0.72);
  --shadow: 0 24px 70px rgba(39, 31, 23, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--ink);
  background: var(--surface);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: linear-gradient(to bottom, rgba(251, 250, 246, 0.96), rgba(251, 250, 246, 0.76), rgba(251, 250, 246, 0));
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 10px 30px rgba(21, 19, 16, 0.05);
  backdrop-filter: blur(12px);
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.brand-logo img {
  width: 90px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.3vw, 28px);
  font-size: 14px;
}

.site-nav a,
.header-cta,
.menu-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--sea);
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 18px;
  font-weight: 800;
  background: rgba(251, 250, 246, 0.74);
}

.menu-toggle {
  display: none;
  width: 48px;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero,
.page-hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--paper);
}

.page-hero {
  min-height: 62svh;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.94) 0%, rgba(251, 250, 246, 0.84) 34%, rgba(251, 250, 246, 0.26) 68%, rgba(251, 250, 246, 0.02) 100%),
    linear-gradient(0deg, rgba(251, 250, 246, 0.32) 0%, rgba(251, 250, 246, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 150px 0 76px;
}

.hero-content > * {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6.3vw, 76px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
}

.hero-content p:not(.eyebrow),
.page-copy {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--sea);
}

.button-secondary {
  border-color: rgba(21, 19, 16, 0.45);
  background: rgba(255, 255, 255, 0.66);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--surface);
}

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

.trust-row {
  width: min(100% - 40px, var(--max));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: -32px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.trust-row > div {
  min-height: 188px;
  display: grid;
  grid-template-rows: 76px minmax(42px, auto) auto;
  align-content: start;
  gap: 6px;
  background: var(--surface);
  padding: 28px 22px 24px;
}

.trust-row strong {
  font-size: 18px;
  line-height: 1.12;
}

.trust-row span {
  color: var(--muted);
  font-size: 14px;
}

.trust-badge {
  justify-items: start;
}

.trust-badge > :first-child {
  align-self: start;
}

.trust-illustration {
  display: block;
  width: 64px;
  height: 76px;
  object-fit: contain;
  object-position: left top;
}

.trust-row .trust-rating {
  width: 112px;
  height: 76px;
  display: grid;
  align-content: start;
  gap: 7px;
  color: #b47a18;
}

.trust-row .trust-rating-number {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.trust-row .trust-rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #b47a18;
}

.rating-star,
.rating-star-half {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.rating-star {
  display: block;
  color: #b47a18;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.1;
  stroke-linejoin: round;
}

.rating-star-half {
  position: relative;
  display: inline-block;
}

.rating-star-half .rating-star {
  position: absolute;
  inset: 0;
}

.rating-star-empty {
  color: #d7d0c4;
}

.rating-star-half-fill {
  color: #b47a18;
  clip-path: inset(0 50% 0 0);
}

.trust-illustration-jeweler {
  width: 76px;
  height: 76px;
  margin: 0;
}

.badge-logo {
  width: 88px;
  height: 76px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 11px;
}

.badge-logo img {
  display: block;
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.section,
.split-section,
.gallery-section,
.form-shell {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 122px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
  margin-bottom: 38px;
}

.section-head p:not(.eyebrow),
.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.local-store {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(34px, 6vw, 78px);
}

.local-store-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.local-photo-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
  max-width: 640px;
  justify-self: end;
}

.local-photo-stack .image-frame:first-child {
  transform: none;
}

.local-photo-stack .image-frame:first-child img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.local-photo-stack .image-frame:last-child img {
  aspect-ratio: 821 / 616;
  object-fit: contain;
  background: #ede9df;
}

.split-section.reverse {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 0.95fr);
}

.split-section.reverse .split-copy {
  order: 2;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-frame.tall img {
  aspect-ratio: 4 / 5;
}

.image-frame.square img {
  aspect-ratio: 1 / 1;
}

.image-frame figcaption {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--soft);
  font-size: 12px;
}

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

.feature-card,
.review-card,
.faq-card,
.gallery-card {
  border: 1px solid var(--line);
  background: var(--surface);
}

.feature-card,
.review-card,
.faq-card {
  padding: 24px;
}

.feature-card strong,
.gallery-card strong {
  color: var(--sea);
  font-size: 13px;
  text-transform: uppercase;
}

.feature-card h3,
.review-card h3,
.faq-card h3,
.gallery-card h3 {
  margin-top: 12px;
}

.feature-card p,
.review-card p,
.faq-card p,
.gallery-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.band {
  margin: clamp(52px, 7vw, 86px) 0;
  background: var(--sea);
  color: var(--paper);
}

.band-inner {
  width: min(100% - 40px, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin: 0 auto;
  padding: 48px 0;
}

.band p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(251, 250, 246, 0.76);
}

.band .button {
  border-color: rgba(251, 250, 246, 0.7);
  color: var(--paper);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.step-list li {
  min-height: 240px;
  background: var(--surface);
  padding: 24px;
}

.step-list span {
  color: var(--gold);
  font-weight: 800;
}

.step-list h3 {
  margin-top: 42px;
}

.step-list p {
  color: var(--muted);
}

.quote-block {
  margin: 0;
  border-left: 4px solid var(--gold);
  padding-left: 22px;
}

.quote-block p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.quote-block cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
}

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

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-card div {
  padding: 18px;
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.mini-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  color: var(--muted);
}

.mini-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--sea);
}

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

.comparison article {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 26px;
}

.comparison h3 {
  color: var(--sea);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
}

.wizard {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.focused-intake-page {
  background: #fbfaf6;
}

.intake-main {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 38px) 0 clamp(40px, 7vw, 80px);
}

.intake-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: clamp(26px, 5vw, 48px);
}

.quiet-exit {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intake-intro {
  max-width: 760px;
  margin-bottom: clamp(24px, 5vw, 44px);
}

.intake-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 400;
  line-height: 0.96;
}

.intake-intro p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.focused-intake-page .form-shell {
  padding: 0 0 clamp(28px, 5vw, 54px);
}

.focused-intake-page .wizard {
  grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
}

.focused-intake-page .wizard-panel {
  scroll-margin-top: 24px;
}

.focused-intake-page .wizard-aside {
  top: 24px;
}

.intake-proof {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding: clamp(72px, 10vw, 122px) 0;
}

.intake-proof-copy {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.intake-proof-copy h2 {
  max-width: 560px;
}

.intake-proof-copy p:not(.eyebrow) {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intake-proof-copy .mini-list {
  margin-top: 4px;
}

.intake-proof-media {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 680px;
  justify-self: end;
}

.intake-proof-media .jeweler-frame {
  box-shadow: 0 18px 48px rgba(18, 16, 13, 0.12);
}

.intake-proof-media .jeweler-frame img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.intake-proof-media .certificate-frame {
  box-shadow: 0 18px 48px rgba(18, 16, 13, 0.1);
}

.intake-proof-media .certificate-frame img {
  aspect-ratio: 1448 / 1086;
  object-fit: contain;
  background: #f3efe8;
}

.wizard-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(24px, 4vw, 38px);
  scroll-margin-top: 116px;
}

.wizard-aside {
  position: sticky;
  top: 104px;
}

.wizard-stepper {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  counter-reset: design-step;
}

.wizard-stepper li {
  counter-increment: design-step;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.wizard-stepper li::before {
  content: counter(design-step, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--soft);
  font-size: 12px;
}

.wizard-stepper button {
  display: grid;
  gap: 3px;
  width: 100%;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.wizard-stepper button:disabled {
  cursor: default;
  opacity: 0.62;
}

.wizard-stepper button strong,
.wizard-stepper button span {
  display: block;
}

.wizard-stepper button strong {
  line-height: 1.15;
}

.wizard-stepper button span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.wizard-stepper button:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 4px;
}

.wizard-stepper li.is-active {
  color: var(--ink);
}

.wizard-stepper li.is-active::before {
  border-color: var(--sea);
  background: var(--sea);
  color: #fff;
}

.wizard-stepper li.is-complete::before {
  border-color: rgba(33, 76, 73, 0.34);
  background: var(--wash);
  color: var(--sea);
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: rgba(33, 76, 73, 0.14);
}

.progress-bar {
  width: 14.285%;
  height: 100%;
  background: var(--sea);
  transition: width 180ms ease;
}

.step-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.draft-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  border: 1px solid rgba(33, 76, 73, 0.18);
  background: rgba(246, 244, 235, 0.78);
  padding: 10px 12px;
}

.draft-tools p {
  flex: 1 1 240px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.draft-tools .button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

.draft-tools.has-draft {
  border-color: rgba(33, 76, 73, 0.28);
  background: var(--wash);
}

.form-step {
  display: grid;
  gap: 20px;
}

.form-step legend,
.form-step h2 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

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

label {
  font-weight: 800;
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 12px 14px;
}

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

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

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-height: 54px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
  font-weight: 700;
}

.choice input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.visual-option-grid {
  gap: 16px;
}

.visual-choice {
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "media media"
    "input label";
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
}

.visual-choice:has(input:checked) {
  border-color: var(--sea);
  box-shadow: 0 0 0 2px rgba(33, 76, 73, 0.16);
}

.visual-choice input {
  grid-area: input;
  margin: 0 0 18px 18px;
}

.visual-choice-media {
  grid-area: media;
  display: block;
  width: 100%;
  aspect-ratio: 1.47 / 1;
  background: var(--wash);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

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

.visual-choice-label {
  grid-area: label;
  display: block;
  padding: 0 18px 18px 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

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

.phone-verification {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(33, 76, 73, 0.24);
  background: #f6f4eb;
  padding: 14px;
}

.phone-verification[hidden],
.phone-code-panel[hidden] {
  display: none;
}

.phone-verification-actions,
.phone-code-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.phone-code-panel .field-group {
  flex: 1 1 180px;
}

.phone-verification-status {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.phone-verification-status.is-visible {
  display: block;
}

.phone-verification-status.is-error {
  color: var(--danger);
}

.phone-verification-status.is-success {
  color: var(--sea);
}

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

.review-item {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 14px;
}

.review-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-item strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  line-height: 1.25;
}

.portal-preview-card {
  border: 1px solid rgba(33, 76, 73, 0.24);
  background: var(--wash);
  padding: 18px;
}

.portal-preview-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-preview-card strong {
  display: block;
  max-width: 620px;
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.16;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  border: 1px solid rgba(33, 76, 73, 0.28);
  background: var(--wash);
  padding: 14px;
  color: var(--sea);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

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

.note-box {
  border: 1px solid rgba(143, 95, 73, 0.34);
  background: #f7efe7;
  padding: 18px;
  color: #5e4537;
}

.portal-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, #f3eee6 0, #fbfaf6 460px),
    var(--paper);
}

.portal-app {
  width: min(100% - 40px, 1320px);
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px) 0 clamp(46px, 7vw, 76px);
}

.portal-sidebar {
  position: sticky;
  top: 18px;
  align-self: start;
  min-height: calc(100svh - 36px);
  display: grid;
  gap: 22px;
  align-content: start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  box-shadow: 0 22px 56px rgba(18, 16, 13, 0.08);
  backdrop-filter: blur(10px);
}

.portal-sidebar .brand-logo img {
  width: 104px;
  max-height: none;
}

.portal-nav {
  display: grid;
  gap: 8px;
}

.portal-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.portal-nav a[aria-current="page"],
.portal-nav a:hover {
  border-color: rgba(33, 76, 73, 0.2);
  background: var(--wash);
  color: var(--sea);
}

.portal-access-note {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.portal-workspace {
  min-width: 0;
  display: grid;
  align-content: start;
}

.portal-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 14px 0 20px;
}

.portal-topline h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 400;
  line-height: 0.98;
}

.portal-topline p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 720;
}

.portal-reference-card,
.portal-empty,
.portal-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(18, 16, 13, 0.07);
}

.portal-reference-card {
  padding: 18px;
}

.portal-reference-card span,
.portal-reference-card em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.portal-reference-card strong {
  display: block;
  margin: 8px 0;
  color: var(--sea);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.portal-empty {
  max-width: 680px;
  padding: clamp(24px, 4vw, 36px);
}

.portal-empty h2 {
  margin-top: 0;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
  box-shadow: 0 12px 34px rgba(18, 16, 13, 0.06);
}

.portal-actions .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 13px;
}

.portal-actions p {
  flex: 1 1 220px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.portal-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(20px, 3vw, 28px);
}

.portal-card-wide {
  grid-column: span 2;
}

.portal-card h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.portal-card-copy {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.portal-reference-tool .field-group,
.portal-note-tool .field-group,
.portal-message-tool .field-group {
  gap: 6px;
}

.portal-reference-tool input,
.portal-note-tool textarea,
.portal-message-tool textarea {
  min-height: 44px;
}

.portal-note-tool textarea,
.portal-message-tool textarea {
  min-height: 104px;
}

.portal-reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-reference-actions .button {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

.portal-local-note {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.portal-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
}

.status-chip {
  border: 1px solid rgba(33, 76, 73, 0.26);
  background: var(--wash);
  color: var(--sea);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-next-card {
  align-content: space-between;
}

.portal-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-timeline li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 10px;
}

.portal-timeline span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.portal-timeline strong {
  line-height: 1.2;
}

.portal-timeline em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.portal-timeline li.is-complete {
  border-color: rgba(33, 76, 73, 0.28);
  background: var(--wash);
}

.portal-timeline li.is-current {
  border-color: rgba(154, 114, 68, 0.38);
  background: #fbf0df;
}

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

.portal-detail-list div {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.portal-detail-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-detail-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.portal-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-chip-list li {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 10px;
  font-weight: 800;
}

.portal-task-list,
.portal-action-list,
.portal-file-list,
.portal-roadmap-list,
.portal-design-board-list,
.portal-packet-list,
.portal-message-list,
.portal-agenda-list,
.portal-decision-list,
.portal-question-list,
.portal-local-note-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-task-list li,
.portal-action-list li,
.portal-file-list li,
.portal-roadmap-list li,
.portal-design-board-list li,
.portal-packet-list li,
.portal-message-list li,
.portal-agenda-list li,
.portal-decision-list li,
.portal-question-list li,
.portal-local-note-list li {
  display: grid;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
}

.portal-task-list li {
  grid-template-columns: 24px 52px minmax(0, 1fr);
}

.portal-file-list li,
.portal-action-list li,
.portal-roadmap-list li,
.portal-design-board-list li,
.portal-packet-list li,
.portal-message-list li,
.portal-agenda-list li,
.portal-decision-list li,
.portal-question-list li,
.portal-local-note-list li {
  grid-template-columns: minmax(64px, auto) minmax(0, 1fr);
}

.portal-task-list input {
  width: 20px;
  height: 20px;
  margin: 4px 0 0;
  accent-color: var(--sea);
}

.portal-task-list li.is-complete,
.portal-decision-list li.is-complete {
  border-color: rgba(33, 76, 73, 0.26);
  background: var(--wash);
}

.portal-task-list span,
.portal-action-list span,
.portal-file-list span,
.portal-roadmap-list span,
.portal-design-board-list span,
.portal-packet-list span,
.portal-message-list span,
.portal-agenda-list span,
.portal-decision-list span,
.portal-question-list span,
.portal-local-note-list span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 114, 68, 0.36);
  background: #fbf0df;
  color: #67462d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-design-board-list span,
.portal-action-list span,
.portal-roadmap-list span,
.portal-packet-list span,
.portal-message-list span,
.portal-agenda-list span {
  min-width: 68px;
}

.portal-question-list span,
.portal-local-note-list span {
  min-width: 64px;
}

.portal-task-list li.is-complete span,
.portal-decision-list li.is-complete span {
  border-color: rgba(33, 76, 73, 0.24);
  background: rgba(33, 76, 73, 0.1);
  color: var(--sea);
}

.portal-task-list strong,
.portal-task-list em,
.portal-action-list strong,
.portal-action-list em,
.portal-file-list strong,
.portal-file-list em,
.portal-roadmap-list strong,
.portal-roadmap-list em,
.portal-design-board-list strong,
.portal-design-board-list em,
.portal-packet-list strong,
.portal-packet-list em,
.portal-message-list strong,
.portal-message-list em,
.portal-agenda-list strong,
.portal-agenda-list em,
.portal-decision-list strong,
.portal-decision-list em,
.portal-question-list strong,
.portal-question-list em,
.portal-local-note-list strong,
.portal-local-note-list em {
  display: block;
}

.portal-task-list strong,
.portal-action-list strong,
.portal-file-list strong,
.portal-roadmap-list strong,
.portal-design-board-list strong,
.portal-packet-list strong,
.portal-message-list strong,
.portal-agenda-list strong,
.portal-decision-list strong,
.portal-question-list strong,
.portal-local-note-list strong {
  line-height: 1.2;
}

.portal-task-list em,
.portal-action-list em,
.portal-file-list em,
.portal-roadmap-list em,
.portal-design-board-list em,
.portal-packet-list em,
.portal-message-list em,
.portal-agenda-list em,
.portal-decision-list em,
.portal-question-list em,
.portal-local-note-list em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.portal-inline-action {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  border: 1px solid rgba(33, 76, 73, 0.26);
  background: var(--wash);
  color: var(--sea);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.portal-inline-action:hover {
  border-color: rgba(33, 76, 73, 0.46);
}

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

.focused-intake-page {
  background: var(--paper);
}

.focused-intake-page .intake-main {
  width: 100%;
  margin: 0;
  padding: 0;
}

.design-flow-shell,
.design-flow {
  min-height: 100svh;
}

.design-flow {
  position: relative;
  background: var(--paper);
  color: var(--ink);
}

.flow-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 4px;
  background: rgba(154, 114, 68, 0.18);
}

.flow-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width 180ms ease;
}

.flow-back {
  position: fixed;
  top: clamp(24px, 5vw, 62px);
  left: clamp(22px, 6vw, 100px);
  z-index: 25;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.flow-back:disabled {
  visibility: hidden;
}

.flow-step-status,
.flow-draft-tools {
  position: fixed;
  z-index: 25;
}

.flow-step-status {
  right: clamp(18px, 4vw, 46px);
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  margin: 0;
  color: rgba(251, 250, 246, 0.7);
  font-size: 12px;
  text-align: right;
}

.intake-flow-step-light ~ .flow-step-status,
.design-flow:has(.intake-flow-step-light.is-active) .flow-step-status {
  color: rgba(21, 19, 16, 0.56);
}

.flow-draft-tools {
  left: 18px;
  bottom: 14px;
  display: none;
}

.intake-flow-step {
  min-height: 100svh;
  margin: 0;
  border: 0;
  padding: clamp(92px, 11vw, 160px) clamp(28px, 8vw, 160px) clamp(140px, 13vw, 190px);
}

.intake-flow-step-dark {
  background: var(--sea);
  color: var(--paper);
}

.intake-flow-step-light {
  background: var(--paper);
  color: var(--ink);
}

.flow-step-inner {
  width: min(100%, 1040px);
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  margin: 0 auto;
}

.intake-flow-step-dark .flow-step-inner {
  max-width: 980px;
}

.intake-flow-step:not(.is-compact) .flow-step-inner {
  align-content: center;
  min-height: calc(100svh - clamp(232px, 24vw, 330px));
}

.intake-flow-step .flow-title {
  max-width: 980px;
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 122px);
  font-weight: 400;
  line-height: 0.98;
  text-align: inherit;
}

.intake-flow-step-light .flow-title,
.intake-flow-step-light .flow-step-inner > p {
  text-align: center;
}

.intake-flow-step-light .flow-title {
  margin-inline: auto;
  font-size: clamp(42px, 6vw, 84px);
}

.intake-flow-step .flow-account-title {
  font-family: inherit;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 850;
}

.intake-flow-step:first-of-type .flow-title {
  max-width: 800px;
}

.flow-step-inner > p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.55;
}

.intake-flow-step-dark .flow-step-inner > p {
  max-width: 860px;
  font-weight: 400;
}

.intake-flow-step-light .flow-step-inner > p {
  margin-inline: auto;
  color: var(--ink);
}

.flow-helper,
.flow-grid-label,
.flow-inline-question {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  text-align: center;
}

.flow-inline-question {
  margin-top: clamp(16px, 3vw, 34px);
}

.flow-footer {
  font-size: 18px;
}

.intake-flow-step:first-of-type .flow-footer {
  position: fixed;
  left: clamp(28px, 12.5vw, 160px);
  bottom: 30px;
  z-index: 25;
  margin: 0;
}

.flow-footer a {
  color: var(--paper);
  font-weight: 800;
}

.flow-select,
.flow-input,
.flow-textarea {
  width: min(100%, 920px);
  justify-self: center;
}

.flow-select select,
.flow-input input,
.flow-textarea textarea {
  min-height: 84px;
  border: 2px solid rgba(21, 19, 16, 0.76);
  background: var(--surface);
  color: var(--ink);
  padding: 0 28px;
  font-size: clamp(22px, 3vw, 34px);
}

.flow-select select {
  font-weight: 400;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 42px) 50%,
    calc(100% - 24px) 50%;
  background-size: 18px 18px, 18px 18px;
  background-repeat: no-repeat;
}

.flow-textarea textarea {
  min-height: 170px;
  padding-block: 22px;
  line-height: 1.35;
}

.flow-field-row {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 5vw, 64px);
  justify-self: center;
}

.flow-check,
.flow-consent {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  justify-self: center;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
}

.flow-check input,
.flow-consent input {
  width: 34px;
  height: 34px;
  min-height: 34px;
  accent-color: var(--gold);
}

.flow-stacked-options,
.flow-described-options {
  width: min(100%, 980px);
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  justify-self: center;
}

.flow-option-row,
.flow-described-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  border: 2px solid var(--line);
  background: var(--surface);
  padding: 22px 34px;
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 650;
}

.flow-option-row input,
.flow-described-option input,
.flow-picture-card input,
.flow-shape-card input,
.flow-triptych-card input,
.flow-mini-card input,
.flow-button-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.flow-option-row:has(input:checked),
.flow-described-option:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--focus);
}

.flow-described-option span {
  display: grid;
  gap: 10px;
}

.flow-described-option strong {
  font-size: clamp(22px, 2.8vw, 34px);
}

.flow-described-option em {
  font-style: normal;
  font-weight: 520;
}

.flow-picture-grid {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
  justify-self: center;
}

.flow-picture-card,
.flow-shape-card,
.flow-triptych-card,
.flow-mini-card {
  position: relative;
  display: grid;
  align-content: start;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  overflow: visible;
  cursor: pointer;
}

.flow-picture-card {
  min-height: 280px;
}

.flow-picture,
.flow-mini-media,
.flow-shape-picture {
  display: block;
  width: 100%;
  aspect-ratio: 468 / 317;
  overflow: hidden;
  background: var(--mist);
}

.flow-picture img,
.flow-mini-media img,
.flow-shape-picture img,
.flow-triptych-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-picture-card strong,
.flow-shape-card strong,
.flow-triptych-card strong,
.flow-mini-card strong {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  font-size: clamp(16px, 2vw, 28px);
  line-height: 1.2;
  text-align: center;
}

.flow-select-bubble {
  position: absolute;
  top: -28px;
  left: -28px;
  z-index: 2;
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--paper);
  font-size: 34px;
  line-height: 1;
}

.flow-picture-card:has(input:checked),
.flow-shape-card:has(input:checked),
.flow-triptych-card:has(input:checked),
.flow-mini-card:has(input:checked) {
  box-shadow: 0 0 0 3px var(--focus);
}

.flow-picture-card:has(input:checked) .flow-select-bubble,
.flow-shape-card:has(input:checked) .flow-select-bubble,
.flow-triptych-card:has(input:checked) .flow-select-bubble,
.flow-mini-card:has(input:checked) .flow-select-bubble {
  display: grid;
}

.flow-shape-section,
.flow-triptych-section,
.flow-feature-section,
.flow-detail-block {
  width: min(100%, 980px);
  display: grid;
  gap: 18px;
  justify-self: center;
}

.flow-shape-grid,
.flow-mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.flow-shape-card {
  min-height: 210px;
  padding: 18px;
}

.flow-shape-picture {
  aspect-ratio: 1.05 / 1;
  border: 1px solid var(--line);
}

.gem-shape {
  width: 112px;
  height: 112px;
  justify-self: center;
  align-self: center;
  margin-top: 12px;
  border: 3px solid #5b7f90;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(108,151,169,0.46)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(68, 108, 128, 0.24) 18px 21px);
  box-shadow: inset 0 0 24px rgba(67, 113, 136, 0.28);
}

.gem-round,
.gem-old-euro,
.gem-rose {
  border-radius: 50%;
}

.gem-princess,
.gem-square-cushion,
.gem-asscher,
.gem-old-mine,
.gem-hexagon {
  border-radius: 10px;
}

.gem-oval,
.gem-elongated-cushion {
  border-radius: 50%;
  width: 86px;
}

.gem-emerald,
.gem-radiant,
.gem-calf-coffin {
  width: 82px;
  border-radius: 8px;
}

.gem-pear,
.gem-heart,
.gem-marquise,
.gem-kite,
.gem-trillion,
.gem-half-moon,
.gem-shield {
  transform: rotate(45deg);
  border-radius: 48% 8% 48% 8%;
}

.flow-triptych-stack {
  display: grid;
  gap: 24px;
}

.flow-triptych-media {
  display: block;
  aspect-ratio: 2.25 / 1;
  overflow: hidden;
  background: var(--mist);
}

.flow-mini-card {
  min-height: 190px;
}

.flow-metal-swatch {
  min-height: 150px;
  background: linear-gradient(135deg, #f8f8f8, #cfcfcf 48%, #ffffff);
}

.flow-metal-swatch.is-yellow {
  background: linear-gradient(135deg, #fbf3bd, #d9a82d 48%, #fff5c7);
}

.flow-metal-swatch.is-rose {
  background: linear-gradient(135deg, #ffd9cc, #cb806c 48%, #fff0e9);
}

.flow-button-options {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 44px);
  justify-content: center;
}

.flow-button-options label span,
.flow-upload-button,
.flow-social,
.portal-outline-button {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0 42px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.flow-button-options label:has(input:checked) span {
  box-shadow: 0 0 0 3px var(--focus);
}

.flow-detail-block h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.flow-detail-block p {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.5;
}

.flow-login-link,
.flow-divider,
.flow-account-note {
  justify-self: center;
  color: var(--ink);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  text-align: center;
}

.flow-divider {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.flow-social {
  width: min(100%, 640px);
  justify-self: center;
  border-radius: 8px;
  color: var(--paper);
  text-transform: none;
  letter-spacing: 0;
}

.flow-google {
  background: var(--sea);
}

.flow-apple {
  background: var(--ink);
}

.flow-facebook {
  background: var(--plum);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-actions {
  position: fixed;
  left: 50%;
  bottom: clamp(32px, 6vw, 68px);
  z-index: 24;
  transform: translateX(-50%);
  margin: 0;
  justify-content: center;
}

.flow-actions .button {
  min-width: min(420px, calc(100vw - 56px));
  min-height: 92px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.design-flow:has(.intake-flow-step:first-of-type.is-active) .flow-actions {
  bottom: clamp(86px, 12vw, 142px);
}

.start-design-page {
  background: var(--paper);
}

.start-design-main {
  background: var(--paper);
}

.start-design-hero {
  min-height: 68svh;
}

.start-design-overview {
  padding-bottom: clamp(38px, 6vw, 72px);
}

.design-flow-heading {
  max-width: 760px;
  margin: 0 0 clamp(24px, 4vw, 36px);
}

.design-flow-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.start-design-page .design-flow-shell {
  width: min(100% - 40px, 1120px);
  min-height: auto;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 94px) 0 clamp(72px, 10vw, 128px);
  scroll-margin-top: 96px;
}

.start-design-page .design-flow {
  min-height: auto;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(20px, 3.4vw, 38px);
  box-shadow: 0 18px 60px rgba(21, 19, 16, 0.08);
}

.start-design-page .flow-progress {
  position: relative;
  inset: auto;
  z-index: 1;
  height: 8px;
}

.flow-form-topline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.start-design-page .flow-back,
.start-design-page .flow-step-status,
.start-design-page .flow-draft-tools,
.start-design-page .flow-actions {
  position: static;
  inset: auto;
  z-index: auto;
  transform: none;
}

.start-design-page .flow-back {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--sea);
  font-size: 30px;
}

.start-design-page .flow-step-status {
  max-width: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.start-design-page .flow-draft-tools {
  display: flex;
}

.start-design-page .intake-flow-step {
  min-height: auto;
  border: 0;
  padding: clamp(24px, 4vw, 38px) 0 4px;
}

.start-design-page .intake-flow-step-dark,
.start-design-page .intake-flow-step-light {
  background: transparent;
  color: var(--ink);
}

.start-design-page .intake-flow-step-dark {
  border-top: 1px solid rgba(33, 76, 73, 0.18);
}

.start-design-page .flow-step-inner,
.start-design-page .intake-flow-step-dark .flow-step-inner {
  width: 100%;
  max-width: none;
  gap: clamp(16px, 2.4vw, 24px);
  margin: 0;
}

.start-design-page .intake-flow-step:not(.is-compact) .flow-step-inner {
  min-height: auto;
  align-content: start;
}

.start-design-page .intake-flow-step .flow-title,
.start-design-page .intake-flow-step-light .flow-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  text-align: left;
}

.start-design-page .intake-flow-step:first-of-type .flow-title {
  max-width: 680px;
}

.start-design-page .flow-step-inner > p,
.start-design-page .intake-flow-step-dark .flow-step-inner > p,
.start-design-page .intake-flow-step-light .flow-step-inner > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.62;
  text-align: left;
}

.start-design-page .flow-helper,
.start-design-page .flow-grid-label,
.start-design-page .flow-inline-question {
  color: var(--ink);
  font-size: clamp(16px, 1.7vw, 20px);
  text-align: left;
}

.start-design-page .flow-select,
.start-design-page .flow-input,
.start-design-page .flow-textarea,
.start-design-page .flow-field-row,
.start-design-page .flow-stacked-options,
.start-design-page .flow-described-options,
.start-design-page .flow-shape-section,
.start-design-page .flow-triptych-section,
.start-design-page .flow-feature-section,
.start-design-page .flow-detail-block {
  width: 100%;
  justify-self: stretch;
}

.start-design-page .flow-select select,
.start-design-page .flow-input input,
.start-design-page .flow-textarea textarea {
  min-height: 58px;
  border-width: 1px;
  padding-inline: 16px;
  font-size: 17px;
}

.start-design-page .flow-textarea textarea {
  min-height: 130px;
  padding-block: 16px;
}

.start-design-page .flow-field-row {
  gap: 16px;
}

.start-design-page .flow-check,
.start-design-page .flow-consent {
  justify-self: start;
  font-size: 16px;
}

.start-design-page .flow-check input,
.start-design-page .flow-consent input {
  width: 24px;
  height: 24px;
  min-height: 24px;
}

.start-design-page .flow-stacked-options,
.start-design-page .flow-described-options,
.start-design-page .flow-triptych-stack {
  gap: 14px;
}

.start-design-page .flow-option-row,
.start-design-page .flow-described-option {
  min-height: 76px;
  padding: 18px 20px;
  font-size: 18px;
}

.start-design-page .flow-described-option strong {
  font-size: 20px;
}

.start-design-page .flow-picture-grid {
  width: 100%;
  max-width: 760px;
  gap: 18px;
  justify-self: start;
}

.start-design-page .flow-picture-card {
  min-height: auto;
}

.start-design-page .flow-picture-card strong,
.start-design-page .flow-shape-card strong,
.start-design-page .flow-triptych-card strong,
.start-design-page .flow-mini-card strong {
  min-height: 54px;
  padding: 10px;
  font-size: 16px;
}

.start-design-page .flow-select-bubble {
  top: -18px;
  left: -18px;
  width: 40px;
  height: 40px;
  font-size: 24px;
}

.start-design-page .flow-shape-grid,
.start-design-page .flow-mini-card-grid {
  gap: 16px;
}

.start-design-page .flow-shape-card {
  min-height: 160px;
  padding: 14px;
}

.start-design-page .flow-mini-card {
  min-height: 150px;
}

.start-design-page .gem-shape {
  width: 82px;
  height: 82px;
}

.start-design-page .gem-oval,
.start-design-page .gem-elongated-cushion {
  width: 64px;
}

.start-design-page .gem-emerald,
.start-design-page .gem-radiant,
.start-design-page .gem-calf-coffin {
  width: 62px;
}

.start-design-page .flow-detail-block {
  gap: 12px;
}

.start-design-page .flow-detail-block h3 {
  font-size: 22px;
}

.start-design-page .flow-detail-block p,
.start-design-page .flow-login-link,
.start-design-page .flow-divider,
.start-design-page .flow-account-note {
  font-size: 17px;
}

.start-design-page .flow-button-options {
  justify-content: flex-start;
  gap: 14px;
}

.start-design-page .flow-button-options label span,
.start-design-page .flow-upload-button,
.start-design-page .flow-social {
  min-height: 56px;
  padding: 0 22px;
  font-size: 14px;
}

.start-design-page .flow-social {
  width: min(100%, 420px);
  justify-self: start;
}

.start-design-page .flow-footer,
.start-design-page .intake-flow-step:first-of-type .flow-footer {
  position: static;
  margin: 0;
}

.start-design-page .flow-footer a {
  color: var(--sea);
}

.start-design-page .flow-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.start-design-page .flow-actions .button {
  width: auto;
  min-width: min(100%, 260px);
  min-height: 58px;
  padding-inline: 24px;
  font-size: 15px;
}

.simple-intake-header {
  width: min(100% - 32px, 760px);
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 18px 0 6px;
}

.simple-intake-header .brand-logo img {
  width: 82px;
  max-height: 58px;
}

.start-design-simple-hero {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px) 0 clamp(14px, 3vw, 24px);
}

.start-design-simple-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.start-design-simple-hero p:not(.eyebrow) {
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.start-design-minimal .design-flow-shell {
  width: min(100% - 32px, 760px);
  padding: 12px 0 clamp(54px, 8vw, 86px);
  scroll-margin-top: 28px;
}

.start-design-minimal .design-flow-heading {
  max-width: 620px;
  margin: 0 0 18px;
}

.start-design-minimal .design-flow-heading .eyebrow {
  display: none;
}

.start-design-minimal .design-flow-heading h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.12;
}

.start-design-minimal .design-flow-heading p:not(.eyebrow) {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.45;
}

.start-design-minimal .design-flow {
  gap: 14px;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.start-design-minimal .flow-progress {
  height: 5px;
  background: rgba(154, 114, 68, 0.14);
}

.start-design-minimal .flow-form-topline {
  gap: 10px;
}

.start-design-minimal .flow-back {
  width: 38px;
  height: 38px;
  border-color: rgba(33, 76, 73, 0.18);
  background: transparent;
  font-size: 26px;
}

.start-design-minimal .flow-step-status {
  font-size: 12px;
  font-weight: 750;
}

.start-design-minimal .flow-draft-tools {
  display: none;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(33, 76, 73, 0.14);
  background: transparent;
  padding: 4px 0 12px;
}

.start-design-minimal .flow-draft-tools.has-draft {
  display: flex;
}

.start-design-minimal .flow-draft-tools p {
  font-size: 12px;
  font-weight: 650;
}

.start-design-minimal .flow-draft-tools .button {
  min-height: 32px;
  border-width: 1px;
}

.start-design-minimal .intake-flow-step {
  padding: 16px 0 0;
}

.start-design-minimal .intake-flow-step-dark {
  border-top: 0;
}

.start-design-minimal .flow-step-inner,
.start-design-minimal .intake-flow-step-dark .flow-step-inner {
  gap: 14px;
}

.start-design-minimal .intake-flow-step .flow-title,
.start-design-minimal .intake-flow-step-light .flow-title {
  max-width: 620px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
}

.start-design-minimal .flow-step-inner > p,
.start-design-minimal .intake-flow-step-dark .flow-step-inner > p,
.start-design-minimal .intake-flow-step-light .flow-step-inner > p {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.48;
}

.start-design-minimal .flow-helper,
.start-design-minimal .flow-grid-label,
.start-design-minimal .flow-inline-question {
  font-size: 16px;
}

.start-design-minimal .flow-select select,
.start-design-minimal .flow-input input,
.start-design-minimal .flow-textarea textarea {
  min-height: 52px;
  padding-inline: 14px;
  font-size: 16px;
}

.start-design-minimal .flow-textarea textarea {
  min-height: 112px;
  padding-block: 14px;
}

.start-design-minimal .flow-option-row,
.start-design-minimal .flow-described-option {
  min-height: 58px;
  border-width: 1px;
  padding: 14px;
  font-size: 16px;
}

.start-design-minimal .flow-described-option strong {
  font-size: 17px;
}

.start-design-minimal .flow-picture-grid,
.start-design-minimal .flow-shape-grid,
.start-design-minimal .flow-mini-card-grid {
  max-width: none;
  gap: 10px;
}

.start-design-minimal .flow-shape-grid,
.start-design-minimal .flow-mini-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.start-design-minimal .flow-picture-card,
.start-design-minimal .flow-shape-card,
.start-design-minimal .flow-mini-card {
  min-height: auto;
  border-width: 1px;
  padding: 0;
}

.start-design-minimal .flow-picture-card strong,
.start-design-minimal .flow-shape-card strong,
.start-design-minimal .flow-triptych-card strong,
.start-design-minimal .flow-mini-card strong {
  min-height: 42px;
  padding: 8px;
  font-size: 14px;
}

.start-design-minimal .flow-select-bubble {
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  font-size: 18px;
}

.start-design-minimal .flow-detail-block {
  border-width: 1px;
  padding: 16px;
}

.start-design-minimal .flow-detail-block h3 {
  font-size: 19px;
}

.start-design-minimal .flow-detail-block p,
.start-design-minimal .flow-login-link,
.start-design-minimal .flow-divider,
.start-design-minimal .flow-account-note {
  font-size: 15px;
}

.start-design-minimal .flow-button-options {
  gap: 10px;
}

.start-design-minimal .flow-button-options label span,
.start-design-minimal .flow-upload-button,
.start-design-minimal .flow-social {
  min-height: 50px;
  padding: 0 16px;
  font-size: 13px;
}

.start-design-minimal .flow-actions {
  justify-content: stretch;
  margin-top: 4px;
}

.start-design-minimal .flow-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  font-size: 14px;
}

.simple-intake-footer {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  border-top: 1px solid rgba(33, 76, 73, 0.14);
  padding: 22px 0 30px;
}

.simple-intake-footer p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-height: 780px) and (min-width: 760px) {
  .intake-flow-step {
    padding-top: 74px;
    padding-bottom: 122px;
  }

  .intake-flow-step .flow-title {
    font-size: clamp(48px, 6.7vw, 82px);
  }

  .intake-flow-step-light .flow-title {
    font-size: clamp(42px, 5vw, 64px);
  }

  .flow-step-inner {
    gap: 20px;
  }

  .flow-step-inner > p {
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.45;
  }

  .flow-actions {
    bottom: 42px;
  }

  .flow-actions .button {
    min-height: 76px;
  }

  .intake-flow-step:first-of-type .flow-footer {
    bottom: 24px;
  }

  .flow-step-status {
    bottom: 12px;
  }
}

.portal-simple-page {
  background: var(--surface);
}

.portal-simple-app {
  width: min(100% - 32px, 720px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 18px 0 56px;
  color: var(--ink);
}

.portal-simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 26px;
}

.portal-simple-header .brand-logo img {
  width: 54px;
  max-height: none;
}

.portal-simple-empty {
  display: grid;
  gap: 16px;
  max-width: 500px;
  border-top: 1px solid var(--line);
  padding: 28px 0 0;
}

.portal-simple-empty h2,
.portal-simple-hero h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.03;
}

.portal-simple-empty p,
.portal-simple-hero p,
.portal-simple-copy,
.portal-simple-note,
.portal-simple-details p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.55;
}

.portal-simple-empty .button,
.portal-simple-primary {
  width: fit-content;
  min-height: 52px;
  padding: 0 22px;
}

.portal-simple-content {
  display: grid;
  gap: 0;
}

.portal-simple-hero {
  display: grid;
  gap: 16px;
  padding: 8px 0 30px;
}

.portal-simple-hero h2 {
  max-width: 620px;
}

.portal-simple-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
}

.portal-simple-tabs a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 19, 16, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.portal-simple-tabs a:hover,
.portal-simple-tabs a[aria-current="page"] {
  border-color: rgba(33, 76, 73, 0.34);
  background: var(--wash);
  color: var(--ink);
}

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

.portal-simple-facts,
.portal-summary-list {
  display: grid;
  margin: 0;
}

.portal-simple-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.portal-simple-facts div,
.portal-summary-list div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(21, 19, 16, 0.16);
  padding-top: 12px;
}

.portal-simple-facts dt,
.portal-summary-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-simple-facts dd,
.portal-summary-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 680;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.portal-simple-section {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.portal-simple-section h2,
.portal-simple-details summary {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.portal-simple-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-simple-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.portal-simple-steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 76, 73, 0.22);
  border-radius: 999px;
  color: var(--sea);
  font-size: 13px;
  font-weight: 900;
}

.portal-simple-steps strong,
.portal-simple-steps em {
  display: block;
}

.portal-simple-steps strong {
  font-size: 16px;
  line-height: 1.25;
}

.portal-simple-steps em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 560;
  line-height: 1.45;
}

.portal-simple-steps .is-current span {
  border-color: var(--gold);
  background: #fbf0df;
  color: var(--ink);
}

.portal-simple-steps .is-complete span {
  border-color: rgba(33, 76, 73, 0.3);
  background: var(--wash);
}

.portal-simple-note {
  border-radius: 6px;
  background: var(--wash);
  padding: 14px;
  font-size: 14px;
}

.portal-summary-list {
  gap: 0;
}

.portal-summary-list div {
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
}

.portal-simple-details {
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 1px solid var(--line);
  border-left: 0;
  background: transparent;
  padding: 18px 0;
}

.portal-simple-details summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 820;
}

.portal-simple-details p {
  padding-top: 12px;
  font-size: 15px;
}

.portal-message-panel {
  display: grid;
}

.portal-message-thread {
  gap: 18px;
}

.portal-message-thread-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.portal-message-thread-head h2,
.portal-message-form label {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.portal-conversation-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-conversation-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.portal-message-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 76, 73, 0.24);
  border-radius: 50%;
  background: var(--wash);
  color: var(--sea);
  font-size: 12px;
  font-weight: 900;
}

.portal-conversation-item.is-customer .portal-message-avatar {
  border-color: rgba(191, 122, 53, 0.34);
  background: #fbf0df;
  color: var(--ink);
}

.portal-message-bubble {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(21, 19, 16, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 13px 14px;
}

.portal-message-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.portal-message-meta strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.portal-message-body {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.5;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.portal-message-form {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(21, 19, 16, 0.16);
  padding-top: 18px;
}

.portal-message-form textarea {
  width: 100%;
  min-height: 138px;
  resize: vertical;
  border: 1px solid rgba(21, 19, 16, 0.18);
  border-radius: 8px;
  background: #fffaf3;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  padding: 13px 14px;
}

.portal-message-form textarea:focus {
  outline: 3px solid rgba(191, 122, 53, 0.18);
  border-color: rgba(191, 122, 53, 0.55);
}

.portal-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-message-actions .button {
  min-height: 46px;
  padding: 0 16px;
}

.portal-message-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.4;
}

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

.footer-inner {
  width: min(100% - 40px, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  margin: 0 auto;
  padding: 38px 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.footer-note {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .brand-logo img {
  width: 110px;
  max-height: none;
}

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-block: 1px solid var(--line);
    background: rgba(251, 250, 246, 0.98);
    padding: 10px 20px 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .trust-row,
  .card-grid,
  .gallery-grid,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .split-section,
  .split-section.reverse,
  .local-store,
  .intake-proof,
  .wizard,
  .focused-intake-page .wizard,
  .band-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-copy {
    order: initial;
  }

  .wizard-aside {
    position: static;
  }

  .local-photo-stack,
  .intake-proof-media {
    justify-self: stretch;
    max-width: none;
  }

  .portal-app {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
  }

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

  .portal-reference-card,
  .portal-access-note,
  .portal-sidebar .quiet-exit {
    grid-column: 1 / -1;
  }

  .portal-topline {
    grid-template-columns: 1fr;
  }

  .portal-topline .button {
    justify-self: start;
  }

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

}

@media (max-width: 660px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .site-nav {
    inset-block-start: 70px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand-logo img {
    width: 78px;
    max-height: 50px;
  }

  .hero,
  .page-hero {
    min-height: 76svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.86) 54%, rgba(251, 250, 246, 0.42) 100%),
      linear-gradient(90deg, rgba(251, 250, 246, 0.88), rgba(251, 250, 246, 0.2));
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 124px 0 56px;
  }

  .section,
  .split-section,
  .gallery-section,
  .form-shell,
  .band-inner,
  .portal-app,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .trust-row,
  .card-grid,
  .gallery-grid,
  .step-list,
  .comparison,
  .local-photo-stack,
  .intake-proof-media,
  .portal-board,
  .review-panel,
  .option-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .portal-card-wide {
    grid-column: auto;
  }

  .portal-timeline li {
    grid-template-columns: 34px 1fr;
  }

  .portal-timeline em {
    grid-column: 2;
    text-align: left;
  }

  .local-photo-stack .image-frame:first-child {
    transform: none;
  }

  .trust-row {
    margin-top: 0;
    box-shadow: none;
    width: 100%;
  }

  .trust-row > div {
    min-height: auto;
    grid-template-rows: 70px auto auto;
    padding-inline: 24px;
    padding-block: 22px;
  }

  .trust-illustration,
  .trust-illustration-jeweler,
  .trust-rating,
  .badge-logo {
    height: 70px;
  }

  .hero-actions .button,
  .inline-actions .button,
  .success-actions .button,
  .wizard-actions .button {
    width: 100%;
  }

  .step-list li {
    min-height: auto;
  }

  .step-list h3 {
    margin-top: 22px;
  }

  .intake-flow-step {
    padding: 86px 22px 138px;
  }

  .intake-flow-step .flow-title,
  .intake-flow-step-light .flow-title {
    font-size: clamp(42px, 14vw, 68px);
  }

  .flow-step-inner > p {
    font-size: 21px;
    line-height: 1.48;
  }

  .flow-field-row,
  .flow-picture-grid,
  .flow-shape-grid,
  .flow-mini-card-grid,
  .portal-topic-grid {
    grid-template-columns: 1fr;
  }

  .flow-triptych-media {
    aspect-ratio: 2.2 / 1;
  }

  .flow-select select,
  .flow-input input,
  .flow-textarea textarea {
    min-height: 66px;
    font-size: 20px;
    padding-inline: 18px;
  }

  .flow-actions {
    width: calc(100% - 44px);
  }

  .flow-actions .button {
    min-height: 72px;
    min-width: 0;
  }

  .start-design-minimal .simple-intake-header {
    width: min(100% - 32px, 760px);
    padding: 12px 0 2px;
  }

  .start-design-minimal .simple-intake-header .brand-logo img {
    width: 74px;
    max-height: 52px;
  }

  .start-design-minimal .start-design-simple-hero {
    width: min(100% - 32px, 760px);
    padding: 22px 0 10px;
  }

  .start-design-minimal .start-design-simple-hero .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .start-design-minimal .start-design-simple-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .start-design-minimal .start-design-simple-hero p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  .start-design-minimal .design-flow-shell {
    width: min(100% - 32px, 760px);
    padding: 8px 0 48px;
  }

  .start-design-minimal .design-flow-heading {
    margin-bottom: 14px;
  }

  .start-design-minimal .design-flow-heading h2 {
    font-size: 22px;
  }

  .start-design-minimal .design-flow-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .start-design-minimal .flow-form-topline {
    grid-template-columns: 38px 1fr;
  }

  .start-design-minimal .flow-draft-tools {
    align-items: flex-start;
    padding-bottom: 10px;
  }

  .start-design-minimal .intake-flow-step {
    padding-top: 14px;
  }

  .start-design-minimal .intake-flow-step .flow-title,
  .start-design-minimal .intake-flow-step-light .flow-title {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.06;
  }

  .start-design-minimal .flow-step-inner > p,
  .start-design-minimal .intake-flow-step-dark .flow-step-inner > p,
  .start-design-minimal .intake-flow-step-light .flow-step-inner > p {
    font-size: 15px;
    line-height: 1.45;
  }

  .start-design-minimal .flow-field-row,
  .start-design-minimal .flow-described-options,
  .start-design-minimal .flow-stacked-options {
    gap: 10px;
  }

  .start-design-minimal .flow-picture-grid,
  .start-design-minimal .flow-shape-grid,
  .start-design-minimal .flow-mini-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .start-design-minimal .flow-picture-card strong,
  .start-design-minimal .flow-shape-card strong,
  .start-design-minimal .flow-triptych-card strong,
  .start-design-minimal .flow-mini-card strong {
    min-height: 40px;
    font-size: 13px;
  }

  .start-design-minimal .flow-check,
  .start-design-minimal .flow-consent,
  .start-design-minimal .flow-option-row,
  .start-design-minimal .flow-described-option {
    font-size: 15px;
  }

  .start-design-minimal .flow-actions .button {
    min-height: 52px;
  }

  .start-design-minimal .simple-intake-footer {
    width: min(100% - 32px, 760px);
    padding: 18px 0 26px;
  }

  .intake-flow-step:first-of-type .flow-footer {
    left: 22px;
    bottom: 24px;
  }

  .portal-simple-app {
    width: min(100% - 32px, 720px);
    padding: 12px 0 38px;
  }

  .portal-simple-header {
    padding: 4px 0 22px;
  }

  .portal-simple-header .brand-logo img {
    width: 48px;
  }

  .portal-simple-empty {
    padding-top: 24px;
  }

  .portal-simple-empty h2,
  .portal-simple-hero h2 {
    font-size: 36px;
  }

  .portal-simple-empty .button,
  .portal-simple-primary {
    width: 100%;
    min-height: 52px;
  }

  .portal-simple-facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .portal-simple-section {
    padding: 24px 0;
  }

  .portal-summary-list div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 0;
  }

  .portal-simple-tabs {
    gap: 6px;
    padding-top: 16px;
  }

  .portal-simple-tabs a {
    min-height: 44px;
    font-size: 13px;
  }

  .portal-message-thread-head {
    align-items: start;
  }

  .portal-conversation-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .portal-message-avatar {
    width: 32px;
    height: 32px;
  }

  .portal-message-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .portal-message-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .portal-page {
    background: #ffffff;
  }

  .portal-simple-app {
    width: 100%;
    min-height: auto;
    display: block;
    padding: 0;
  }
}

.article-shell {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 90px) 0;
}

.lead-copy {
  margin: 0 0 34px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.24;
}

.content-section {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.content-section h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
}

.content-section p + p {
  margin-top: 14px;
}

.article-visual {
  margin: 0 0 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.article-visual figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 15px 16px 15px 42px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sea);
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.source-list li {
  padding-left: 4px;
}

.source-list a {
  font-weight: 800;
}

.source-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

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

.link-grid a {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.link-grid span {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #e8e1d5;
}

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

.blog-card-copy {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
}

.blog-card-copy strong {
  font-size: 18px;
  line-height: 1.18;
}

.blog-card-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.related-section {
  padding-top: 0;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 16px 18px;
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

.faq-list details p {
  margin-top: 10px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  display: none;
  border: 1px solid var(--line);
  background: var(--wash);
  padding: 14px 16px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(143, 46, 46, 0.34);
  background: #fff6f5;
  color: var(--danger);
}

.form-status.is-success {
  border-color: rgba(33, 76, 73, 0.28);
  background: #eff7f2;
  color: var(--sea);
}

.form-status .button {
  margin-top: 12px;
}

.small-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.is-submitted fieldset,
.is-submitted .wizard-actions {
  display: none;
}

.consent-choice {
  margin-top: 16px;
}

@media (max-width: 860px) {
  .article-shell {
    width: min(100% - 32px, 860px);
    padding: 44px 0;
  }

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

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .link-grid a {
    min-height: 98px;
  }
}
