:root {
  --porcelain: #f3efe7;
  --paper: #faf8f3;
  --white: #fffefb;
  --ink: #151512;
  --muted: #6f6c64;
  --line: rgba(21, 21, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --bordeaux: #672c38;
  --bordeaux-deep: #4e1f29;
  --forest: #18342e;
  --olive: #6f7759;
  --champagne: #cdbf9d;
  --sand: #dfd6c5;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shadow-soft: 0 28px 80px rgba(32, 27, 21, 0.12);
  --shadow-card: 0 18px 50px rgba(32, 27, 21, 0.1);
  --shell: min(1240px, calc(100vw - 80px));
  --ease: cubic-bezier(.2, .75, .3, 1);
}

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

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

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

h1 em,
h2 em {
  color: var(--bordeaux);
  font-weight: 400;
}

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

:focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s;
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--bordeaux);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(243, 239, 231, .93);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.wordmark {
  display: inline-flex;
  min-width: 180px;
}

.wordmark-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wordmark-name {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: -.02em;
  line-height: 1;
}

.wordmark small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  overflow: visible;
}

.brand-mark-frame,
.brand-mark-fold,
.brand-mark-axis {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.brand-mark-frame {
  stroke: var(--champagne);
  stroke-width: 1.35;
}

.brand-mark-fold {
  stroke: var(--bordeaux);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.25;
}

.brand-mark-axis {
  stroke: var(--forest);
  stroke-width: 1.15;
}

.brand-mark-seal {
  fill: var(--forest);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--bordeaux);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

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

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 18px;
  padding: 0 19px;
  background: var(--ink);
  color: var(--white);
  transition: background .25s, transform .25s;
}

.site-nav .nav-cta:hover {
  background: var(--bordeaux);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .25s;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 26px;
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}

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

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

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

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

.button-light:hover {
  background: var(--champagne);
}

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

.button-outline:hover {
  border-color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.button-arrow {
  justify-content: space-between;
}

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

.button-row-center {
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2.4;
  text-transform: uppercase;
  transition: color .2s, gap .25s;
}

.text-link:hover {
  gap: 20px;
  color: var(--bordeaux);
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  padding: 168px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 71% 36%, rgba(205, 191, 157, .21), transparent 30%),
    linear-gradient(135deg, var(--porcelain), #eee9de);
}

.hero::after {
  position: absolute;
  right: -16%;
  bottom: -38%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(103, 44, 56, .08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: .86fr 1.14fr;
  gap: 54px;
}

.pilot-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(103, 44, 56, .23);
  border-radius: 30px;
  color: var(--bordeaux);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pilot-label span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bordeaux);
  box-shadow: 0 0 0 4px rgba(103, 44, 56, .1);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6vw, 92px);
}

.hero h1 em {
  display: inline-block;
  font-size: .79em;
  white-space: nowrap;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 33px;
  color: #514f49;
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  margin-bottom: 39px;
}

.hero-actions .button {
  min-width: 245px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 23px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  color: var(--olive);
  content: "✓";
  font-size: 10px;
}

.hero-product {
  position: relative;
  min-height: 570px;
}

.hero-monogram {
  position: absolute;
  top: -52px;
  right: -18px;
  pointer-events: none;
}

.hero-brand-mark {
  width: 390px;
  height: 390px;
  opacity: .065;
}

.hero-brand-mark .brand-mark-frame,
.hero-brand-mark .brand-mark-fold,
.hero-brand-mark .brand-mark-axis {
  stroke: var(--bordeaux);
}

.hero-brand-mark .brand-mark-seal {
  fill: var(--bordeaux);
}

.dashboard-preview {
  position: absolute;
  top: 48px;
  right: 0;
  width: 90%;
  height: 410px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .62);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 35px 80px rgba(41, 32, 23, .18);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.preview-topbar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
  border-bottom: 1px solid #ece8e0;
  color: #a4a098;
  font-size: 6px;
  letter-spacing: .08em;
}

.preview-dots {
  display: flex;
  gap: 4px;
}

.preview-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d7d2c9;
}

.preview-body {
  display: grid;
  height: calc(100% - 34px);
  grid-template-columns: 52px 1fr;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding-top: 14px;
  background: #1c2623;
}

.mini-wordmark {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 17px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: #e6ddcc;
}

.mini-brand-mark {
  width: 17px;
  height: 17px;
}

.mini-brand-mark .brand-mark-frame,
.mini-brand-mark .brand-mark-axis {
  stroke: var(--champagne);
}

.mini-brand-mark .brand-mark-fold {
  stroke: var(--white);
}

.mini-brand-mark .brand-mark-seal {
  fill: var(--champagne);
}

.preview-sidebar i {
  width: 13px;
  height: 2px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .26);
}

.preview-sidebar i.active {
  height: 13px;
  background: rgba(255, 255, 255, .82);
}

.preview-content {
  padding: 19px 22px;
  background: #f7f5ef;
}

.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.preview-heading small {
  color: #9c978e;
  font-size: 6px;
}

.preview-heading strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.preview-avatar {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--bordeaux);
  color: white;
  font-size: 6px;
}

.preview-metrics {
  display: grid;
  margin: 20px 0 12px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preview-metrics > div {
  display: flex;
  min-height: 74px;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #eae5dc;
  background: white;
}

.preview-metrics small {
  color: #8c887f;
  font-size: 5px;
}

.preview-metrics strong {
  margin: 3px 0 1px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.preview-metrics span {
  color: var(--olive);
  font-size: 5px;
}

.preview-chart-card {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
  background: white;
}

.preview-chart-card > div:first-child {
  display: flex;
  flex-direction: column;
}

.preview-chart-card small,
.preview-chart-card span {
  color: #918d84;
  font-size: 6px;
}

.preview-chart-card strong {
  margin: 3px 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.preview-donut {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--bordeaux) 0 78%, #e5e1d9 78% 100%);
}

.preview-donut::before {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  content: "";
}

.preview-donut span {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.preview-rows {
  display: grid;
  margin-top: 10px;
  gap: 6px;
}

.preview-rows span {
  height: 18px;
  background: linear-gradient(90deg, white 0 28%, #efebe4 28% 29%, white 29%);
}

.phone-preview {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: -5px;
  width: 198px;
  height: 402px;
  padding: 7px;
  border: 2px solid #2b2b27;
  border-radius: 30px;
  background: #161613;
  box-shadow: 0 30px 70px rgba(26, 22, 18, .27);
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  width: 54px;
  height: 12px;
  border-radius: 20px;
  background: #151512;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 23px;
  background: #51322d;
}

.phone-screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 10, 8, .03), rgba(14, 10, 8, .65));
  content: "";
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(.96);
}

.phone-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 26px;
  left: 0;
  color: white;
  text-align: center;
}

.phone-overlay span,
.phone-overlay small {
  display: block;
  font-size: 6px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.phone-overlay strong {
  display: block;
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: .94;
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 254, 251, .92);
  box-shadow: 0 15px 35px rgba(35, 29, 23, .13);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.floating-note > div {
  display: flex;
  flex-direction: column;
}

.floating-note small {
  color: var(--muted);
  font-size: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 8px;
  font-weight: 500;
}

.note-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 10px;
}

.note-icon-pin {
  background: var(--bordeaux);
}

.note-rsvp {
  top: 91px;
  right: -23px;
  animation: float-note 6s ease-in-out infinite;
}

.note-map {
  right: 70px;
  bottom: 16px;
  animation: float-note 6s 1.2s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(103, 44, 56, .09);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 105px;
  right: 24%;
  width: 290px;
  height: 290px;
}

.hero-orbit-two {
  right: 7%;
  bottom: 25px;
  width: 500px;
  height: 500px;
}

@keyframes float-note {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Product */
.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ebe6dc;
}

.signal-grid {
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid > div {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 19px;
  padding: 0 42px;
  border-left: 1px solid var(--line);
}

.signal-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.signal-grid strong {
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.signal-grid span {
  max-width: 180px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.55;
  text-transform: uppercase;
}

/* Editorial demo couple */
.plush-story {
  padding: 34px;
  background: var(--ink);
}

.plush-story-frame {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--forest);
  isolation: isolate;
}

.plush-story-frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 22, 19, .62) 0, rgba(13, 22, 19, .12) 48%, transparent 72%),
    linear-gradient(0deg, rgba(13, 22, 19, .48), transparent 42%);
  content: "";
  pointer-events: none;
}

.plush-story-frame > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.006);
  transition: transform 1.2s var(--ease);
}

.plush-story-frame:hover > img {
  transform: scale(1.025);
}

.plush-story-copy {
  position: absolute;
  z-index: 2;
  bottom: 74px;
  left: clamp(28px, 6vw, 92px);
  max-width: 530px;
  color: var(--white);
}

.plush-story-copy h2 {
  max-width: 500px;
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 74px);
  line-height: .98;
}

.plush-story-copy > p:not(.eyebrow) {
  max-width: 475px;
  margin-bottom: 27px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.9;
}

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

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

.plush-story-meta {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 30px;
  display: flex;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(20, 28, 25, .72);
  color: white;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.plush-story-meta > span {
  display: flex;
  min-width: 135px;
  flex-direction: column;
  padding: 16px 20px;
  border-left: 1px solid rgba(255,255,255,.15);
}

.plush-story-meta > span:first-child {
  border-left: 0;
}

.plush-story-meta small {
  margin-bottom: 5px;
  color: var(--champagne);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.plush-story-meta strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
}

.product-section,
.process-section {
  padding: 145px 0;
  background: var(--paper);
}

/* Platform suite */
.platform-suite {
  padding: 155px 0;
  background: #ded8cc;
}

.platform-suite-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr .92fr;
  grid-template-rows: repeat(2, minmax(360px, auto));
  gap: 12px;
}

.suite-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(21,21,18,.13);
  background: rgba(250,248,243,.76);
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}

.suite-card:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(39, 32, 25, .13);
  transform: translateY(-5px);
}

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

.suite-card-top small {
  color: var(--muted);
  font-size: 7px;
}

.suite-card h3 {
  margin: 0 0 12px;
  font-size: 29px;
}

.suite-card > p,
.suite-card > div > p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.suite-card-budget,
.suite-card-seating {
  background: var(--paper);
}

.suite-card-budget {
  grid-row: 1 / 3;
}

.suite-card-seating {
  grid-row: 1 / 3;
  grid-column: 3;
}

.suite-budget-visual {
  display: grid;
  margin-top: 70px;
}

.suite-budget-visual > strong {
  font-family: var(--serif);
  font-size: 53px;
  font-weight: 400;
  letter-spacing: -.05em;
}

.suite-budget-visual > small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.suite-budget-visual > i {
  height: 5px;
  margin: 26px 0 13px;
  overflow: hidden;
  background: #d6d0c5;
}

.suite-budget-visual > i b {
  display: block;
  width: 84%;
  height: 100%;
  background: var(--bordeaux);
}

.suite-budget-visual > span {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}

.suite-budget-visual em {
  color: var(--muted);
  font-style: normal;
}

.suite-vendor-list {
  display: grid;
  margin-top: 28px;
  gap: 6px;
}

.suite-vendor-list > span {
  display: grid;
  min-height: 47px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  grid-template-columns: 31px 1fr auto;
  gap: 9px;
}

.suite-vendor-list i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 6px;
  font-style: normal;
}

.suite-vendor-list b,
.suite-vendor-list em {
  font-size: 7px;
  font-style: normal;
  font-weight: 500;
}

.suite-vendor-list em {
  color: var(--bordeaux);
}

.suite-table-visual {
  position: relative;
  display: grid;
  min-height: 330px;
  margin-top: 45px;
  place-items: center;
}

.suite-table-visual > div {
  position: relative;
  display: grid;
  width: 245px;
  height: 245px;
  place-items: center;
  border: 1px solid rgba(103,44,56,.25);
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}

.suite-table-visual strong {
  display: flex;
  flex-direction: column;
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  text-align: center;
}

.suite-table-visual strong small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: .1em;
}

.suite-table-visual div > span {
  position: absolute;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 7px;
}

.suite-table-visual div > span:nth-child(1) { top: -18px; left: 104px; }
.suite-table-visual div > span:nth-child(2) { top: 104px; right: -18px; }
.suite-table-visual div > span:nth-child(4) { bottom: -18px; left: 104px; }
.suite-table-visual div > span:nth-child(5) { top: 104px; left: -18px; }

.suite-avatars {
  display: flex;
  margin-top: 25px;
  padding-left: 8px;
}

.suite-avatars span,
.suite-avatars b {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: -8px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 7px;
  font-weight: 500;
}

.suite-avatars span:nth-child(2) { background: var(--bordeaux); }
.suite-avatars span:nth-child(3) { background: #8b795e; }
.suite-avatars b { background: var(--champagne); color: var(--ink); }

.suite-guest-pulse {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.suite-guest-pulse span {
  display: flex;
  flex-direction: column;
  padding: 13px 8px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 6px;
  text-align: center;
}

.suite-guest-pulse span:first-child { border-left: 0; }
.suite-guest-pulse b { color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 400; }

.suite-timeline-mini {
  display: grid;
  margin-top: 25px;
  gap: 10px;
}

.suite-timeline-mini span {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 13px 1fr;
  gap: 7px;
  font-size: 7px;
}

.suite-timeline-mini time { color: var(--bordeaux); font-weight: 500; }
.suite-timeline-mini i { width: 6px; height: 6px; border: 1px solid var(--bordeaux); border-radius: 50%; }
.suite-timeline-mini b { font-weight: 500; }

.platform-suite-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.platform-suite-cta p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.platform-suite-cta p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ba17b;
  box-shadow: 0 0 0 5px rgba(107,161,123,.13);
}

.section-heading {
  margin-bottom: 68px;
}

.section-heading-split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
}

.section-heading h2 em {
  font-size: .86em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.85;
}

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

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

.product-tabs button {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 20px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 21px;
  text-align: left;
  transition: color .25s, border-color .25s;
}

.product-tabs button + button {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.product-tabs button span {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
}

.product-tabs button[aria-selected="true"] {
  border-bottom: 2px solid var(--bordeaux);
  color: var(--ink);
}

.product-panel {
  display: grid;
  min-height: 610px;
  grid-template-columns: .82fr 1.18fr;
}

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

.product-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 70px 72px 0;
}

.product-story h3 {
  max-width: 480px;
  margin-bottom: 23px;
  font-size: 41px;
}

.product-story > p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.85;
}

.clean-list {
  display: grid;
  margin: 19px 0 33px;
  padding: 0;
  gap: 9px;
  list-style: none;
  color: #484741;
  font-size: 12px;
}

.clean-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.clean-list span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 52, 46, .1);
  color: var(--forest);
  font-size: 8px;
}

.product-story .text-link {
  align-self: flex-start;
}

.guest-canvas,
.couple-canvas {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .1)),
    #d9d0c2;
}

.guest-canvas::before,
.couple-canvas::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(21, 21, 18, .09);
  content: "";
}

.guest-canvas::after,
.couple-canvas::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(21, 21, 18, .09);
  content: "";
}

.guest-phone {
  position: absolute;
  z-index: 2;
  width: 220px;
  height: 455px;
  padding: 8px;
  border: 1px solid #272722;
  border-radius: 31px;
  background: #1b1b18;
  box-shadow: 0 28px 55px rgba(39, 31, 24, .25);
}

.guest-phone::before {
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 50%;
  width: 55px;
  height: 13px;
  border-radius: 20px;
  background: #161613;
  content: "";
  transform: translateX(-50%);
}

.guest-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 23px;
  background: #eee7da;
}

.guest-phone-back {
  top: 89px;
  left: 84px;
  transform: rotate(-7deg);
}

.guest-phone-front {
  z-index: 3;
  top: 56px;
  right: 76px;
  transform: rotate(5deg);
}

.guest-phone-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.65) brightness(.7);
}

.tiny-label {
  margin: 60px 0 40px;
  color: var(--bordeaux);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.timeline-mini {
  position: relative;
  display: grid;
  margin: 0 25px;
  gap: 32px;
}

.timeline-mini::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 1px;
  background: rgba(103, 44, 56, .28);
  content: "";
}

.timeline-mini span {
  position: relative;
  display: grid;
  padding-left: 22px;
  color: #57544d;
  font-family: var(--serif);
  font-size: 13px;
}

.timeline-mini i {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 1px;
  width: 7px;
  height: 7px;
  border: 2px solid #eee7da;
  border-radius: 50%;
  background: var(--bordeaux);
}

.timeline-mini b {
  color: var(--bordeaux);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .12em;
}

.guest-phone-caption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 30px;
  left: 15px;
  color: white;
  text-align: center;
}

.guest-phone-caption > span {
  font-size: 7px;
  letter-spacing: .22em;
}

.guest-phone-caption strong {
  display: block;
  margin: 9px 0 19px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.12;
}

.guest-phone-caption button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guest-card {
  position: absolute;
  z-index: 5;
  right: 25px;
  bottom: 42px;
  display: flex;
  min-width: 236px;
  align-items: center;
  gap: 14px;
  padding: 17px;
  background: rgba(255, 254, 251, .94);
  box-shadow: var(--shadow-card);
}

.guest-card-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: var(--bordeaux);
  color: white;
}

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

.guest-card small,
.guest-card span:last-child {
  color: var(--muted);
  font-size: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guest-card strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}

.couple-canvas {
  display: grid;
  place-items: center;
  background: #d8ddd8;
}

.couple-window {
  position: relative;
  z-index: 2;
  width: 85%;
  min-height: 400px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .6);
  border-radius: 10px;
  background: #f6f4ef;
  box-shadow: var(--shadow-soft);
  transform: rotate(1.5deg);
}

.couple-window-head {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid #e7e2d9;
  background: white;
}

.couple-window-head span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d5d0c8;
}

.couple-window-head small {
  margin-left: 10px;
  color: #938f87;
  font-size: 6px;
}

.couple-window-body {
  display: grid;
  min-height: 365px;
  grid-template-columns: 58px 1fr;
}

.couple-mini-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding-top: 20px;
  background: var(--forest);
}

.couple-mini-side b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: white;
  font-family: var(--serif);
  font-weight: 400;
}

.couple-brand-mark {
  width: 20px;
  height: 20px;
}

.couple-brand-mark .brand-mark-frame,
.couple-brand-mark .brand-mark-axis {
  stroke: var(--champagne);
}

.couple-brand-mark .brand-mark-fold {
  stroke: var(--white);
}

.couple-brand-mark .brand-mark-seal {
  fill: var(--champagne);
}

.couple-mini-side i {
  width: 14px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .3);
}

.couple-mini-main {
  padding: 32px;
}

.couple-mini-main > p {
  font-family: var(--serif);
  font-size: 23px;
}

.couple-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.couple-mini-stats span {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  padding: 13px;
  border: 1px solid #e8e3da;
  background: white;
  color: #8c887f;
  font-size: 6px;
}

.couple-mini-stats b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.couple-mini-table {
  display: grid;
  margin-top: 15px;
  padding: 11px;
  gap: 8px;
  background: white;
}

.couple-mini-table i {
  height: 26px;
  border-bottom: 1px solid #ede8e1;
  background: linear-gradient(90deg, #e5e0d8 0 18%, transparent 18% 31%, #eee9e1 31% 46%, transparent 46%);
}

.couple-toast {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 66px;
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  background: white;
  box-shadow: var(--shadow-card);
}

.couple-toast > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
}

.couple-toast > div {
  display: flex;
  flex-direction: column;
}

.couple-toast small {
  color: var(--muted);
  font-size: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.couple-toast strong {
  font-size: 8px;
  font-weight: 500;
}

/* Value proposition */
.value-section {
  padding: 140px 0;
  background: var(--forest);
  color: var(--white);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-light);
}

.section-kicker p {
  margin: 0;
}

.section-kicker > span {
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.35fr .825fr .825fr;
  gap: 16px;
}

.value-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .025);
  transition: background .3s, transform .3s;
}

.value-card:hover {
  background: rgba(255, 255, 255, .05);
  transform: translateY(-5px);
}

.value-index {
  color: var(--champagne);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
}

.value-visual {
  position: relative;
  display: grid;
  flex: 1;
  place-items: center;
}

.value-copy {
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.value-copy h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.value-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .57);
  font-size: 11px;
  line-height: 1.8;
}

.value-visual-messages {
  min-height: 280px;
}

.message-bubble,
.message-answer {
  position: absolute;
  padding: 11px 15px;
  border-radius: 18px 18px 18px 3px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .68);
  font-size: 9px;
  white-space: nowrap;
}

.bubble-one {
  top: 12%;
  left: 4%;
  transform: rotate(-2deg);
}

.bubble-two {
  top: 36%;
  right: 4%;
  transform: rotate(2deg);
}

.bubble-three {
  top: 59%;
  left: 13%;
  transform: rotate(-1deg);
}

.message-answer {
  right: 8%;
  bottom: 2%;
  border-radius: 18px 18px 3px 18px;
  background: var(--champagne);
  color: var(--ink);
  font-weight: 500;
}

.message-answer b {
  margin-left: 6px;
  color: var(--forest);
}

.rsvp-ring {
  display: grid;
  width: 176px;
  height: 176px;
  place-content: center;
  border-radius: 50%;
  background: conic-gradient(var(--champagne) 0 78%, rgba(255,255,255,.09) 78% 100%);
  text-align: center;
}

.rsvp-ring::before {
  position: absolute;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.rsvp-ring b,
.rsvp-ring small {
  position: relative;
  z-index: 2;
}

.rsvp-ring b {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.rsvp-ring small {
  color: rgba(255,255,255,.5);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.value-visual-logistics {
  align-content: center;
  gap: 10px;
}

.value-visual-logistics > span {
  display: grid;
  width: 100%;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  grid-template-columns: 38px 1fr auto;
}

.value-visual-logistics i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(205, 191, 157, .15);
  color: var(--champagne);
  font-style: normal;
}

.value-visual-logistics b {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}

.value-visual-logistics small {
  color: rgba(255, 255, 255, .48);
  font-size: 7px;
}

/* Bespoke */
.bespoke-section {
  padding: 150px 0;
  background: #e9e2d7;
}

.bespoke-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.03fr .97fr;
  gap: 115px;
}

.bespoke-art {
  position: relative;
  min-height: 670px;
}

.art-frame {
  position: absolute;
  top: 0;
  right: 8%;
  width: 66%;
  height: 610px;
  padding: 12px;
  border: 1px solid rgba(21,21,18,.16);
  background: rgba(255,255,255,.28);
}

.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.58) sepia(.06) contrast(.95);
}

.art-caption {
  position: absolute;
  right: -22px;
  bottom: 50px;
  color: rgba(21,21,18,.53);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.palette-card {
  position: absolute;
  z-index: 3;
  bottom: 13px;
  left: 0;
  display: flex;
  width: 240px;
  height: 100px;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.palette-card > span {
  width: 33px;
  height: 48px;
}

.palette-one { background: var(--forest); }
.palette-two { background: var(--porcelain); border: 1px solid var(--line); }
.palette-three { background: var(--bordeaux); }

.palette-card small {
  position: absolute;
  right: 20px;
  bottom: 9px;
  left: 20px;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.monogram-card {
  position: absolute;
  z-index: 3;
  top: 78px;
  left: 0;
  display: grid;
  width: 168px;
  height: 198px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  background: var(--bordeaux);
  color: #eadfce;
  font-family: var(--serif);
  font-size: 55px;
  box-shadow: var(--shadow-card);
}

.monogram-card span {
  margin: 0 2px;
  font-size: 21px;
  font-style: italic;
}

.bespoke-copy h2 {
  max-width: 600px;
  margin-bottom: 30px;
  font-size: clamp(48px, 5vw, 72px);
}

.bespoke-copy > p:not(.eyebrow) {
  max-width: 555px;
  color: var(--muted);
  line-height: 1.9;
}

.bespoke-points {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.bespoke-points > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 1fr;
}

.bespoke-points span {
  color: var(--bordeaux);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
}

.bespoke-points strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.bespoke-points p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
  grid-column: 2;
}

/* Process and demo journey */
.process-list {
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  min-height: 210px;
  align-items: center;
  padding: 36px 14px 36px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr 50px;
  transition: background .3s, padding .3s;
}

.process-step:hover {
  padding-left: 18px;
  background: rgba(103,44,56,.035);
}

.process-number {
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: 34px;
}

.process-step > div {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 45px;
}

.process-step .eyebrow {
  margin: 0;
}

.process-step h3 {
  margin: 0;
  font-size: 35px;
}

.process-step > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.process-arrow {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .25s, color .25s, transform .25s;
}

.process-step:hover .process-arrow {
  background: var(--bordeaux);
  color: white;
  transform: rotate(45deg);
}

.demo-journey {
  padding: 115px 0;
  background: var(--ink);
  color: var(--white);
}

.demo-journey-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
}

.journey-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(45px, 4.6vw, 66px);
}

.journey-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.57);
}

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

.journey-steps li {
  display: grid;
  min-height: 100px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 60px 1fr;
}

.journey-steps > li > span {
  color: var(--champagne);
  font-size: 8px;
  font-weight: 500;
}

.journey-steps div {
  display: flex;
  flex-direction: column;
}

.journey-steps strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.journey-steps small {
  color: rgba(255,255,255,.45);
  font-size: 9px;
}

/* Pilot form */
.pilot-section {
  padding: 145px 0;
  background:
    linear-gradient(120deg, rgba(103,44,56,.05), transparent 45%),
    var(--porcelain);
}

.pilot-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .84fr 1.16fr;
  gap: 115px;
}

.pilot-copy {
  position: sticky;
  top: 135px;
}

.pilot-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(50px, 5.4vw, 76px);
}

.pilot-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.9;
}

.pilot-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 42px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pilot-note > span {
  color: var(--bordeaux);
}

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

.pilot-note strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.lead-form {
  padding: 50px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 25px 70px rgba(44,34,26,.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: block;
  margin-bottom: 24px;
}

.field > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field > span small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 300;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c9c2b7;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 16px;
  transition: border-color .2s;
}

.field input,
.field select {
  height: 48px;
}

.field textarea {
  min-height: 95px;
  padding: 12px 0;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bordeaux);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7a197;
  opacity: 1;
}

.consent {
  display: grid;
  margin: 4px 0 28px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.consent input {
  width: 15px;
  height: 15px;
  margin: 3px 0 0;
  accent-color: var(--bordeaux);
}

.consent a {
  border-bottom: 1px solid;
  color: var(--ink);
}

.button-submit {
  width: 100%;
  justify-content: space-between;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-bottom: 28px;
  padding: 13px 15px;
  border-left: 3px solid var(--bordeaux);
  background: rgba(103,44,56,.07);
  color: var(--bordeaux-deep);
  font-size: 10px;
}

/* FAQ */
.home-faq,
.faq-page {
  padding: 140px 0;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .42fr .58fr;
  gap: 120px;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  margin-bottom: 35px;
  font-size: 64px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--serif);
  font-size: 20px;
  list-style: none;
}

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

.faq-plus {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 690px;
  padding: 0 55px 27px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.faq-answer p {
  margin: 0;
}

.faq-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding: 30px;
  background: #eae4da;
}

.faq-contact p {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
}

/* Footer */
.site-footer {
  padding: 80px 0 26px;
  background: #121b19;
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 75px;
  grid-template-columns: 1.55fr .65fr .65fr .9fr;
  gap: 60px;
}

.wordmark-footer .wordmark-name {
  color: var(--white);
  font-size: 26px;
}

.wordmark-footer small {
  color: var(--champagne);
}

.wordmark-footer .brand-mark {
  width: 43px;
  height: 43px;
  flex-basis: 43px;
}

.wordmark-footer .brand-mark-frame,
.wordmark-footer .brand-mark-axis {
  stroke: var(--champagne);
}

.wordmark-footer .brand-mark-fold {
  stroke: var(--white);
}

.wordmark-footer .brand-mark-seal {
  fill: var(--champagne);
}

.footer-intro > p {
  max-width: 340px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  line-height: 1.9;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column > a {
  color: rgba(255,255,255,.68);
  font-size: 9px;
  transition: color .2s;
}

.footer-column > a:hover {
  color: white;
}

.footer-label {
  margin-bottom: 11px;
  color: var(--champagne);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-contact > a {
  border-bottom: 1px solid rgba(255,255,255,.3);
}

.footer-contact > p:last-child {
  margin-top: 10px;
  color: rgba(255,255,255,.38);
  font-size: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.35);
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Generic pages */
.simple-hero,
.editorial-hero {
  padding: 190px 0 105px;
  background: #e9e3d8;
}

.simple-hero-inner {
  max-width: 850px;
  text-align: center;
}

.simple-hero h1 {
  margin-bottom: 27px;
  font-size: clamp(54px, 6.5vw, 86px);
}

.simple-hero-inner > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
}

.simple-hero-compact {
  padding-bottom: 90px;
}

.editorial-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr .9fr;
  gap: 100px;
}

.editorial-hero h1 {
  margin: 0;
  font-size: clamp(57px, 6.4vw, 88px);
}

.editorial-lead > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.editorial-body {
  padding: 110px 0 140px;
  background: var(--paper);
}

.feature-ledger {
  border-top: 1px solid var(--line);
}

.ledger-row {
  display: grid;
  min-height: 125px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr 50px;
}

.ledger-number {
  color: var(--bordeaux);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .13em;
}

.ledger-row h2 {
  margin: 0;
  font-size: 32px;
}

.ledger-mark {
  color: var(--bordeaux);
  font-size: 19px;
}

.editorial-cta {
  display: grid;
  align-items: end;
  margin-top: 100px;
  padding: 65px;
  background: var(--forest);
  color: white;
  grid-template-columns: 1fr auto;
  gap: 55px;
}

.editorial-cta h2 {
  max-width: 650px;
  margin: 0;
  font-size: 42px;
}

.legal-section {
  padding: 115px 0 145px;
  background: var(--paper);
}

.legal-grid {
  display: grid;
  grid-template-columns: .32fr .68fr;
  gap: 110px;
}

.legal-index {
  position: sticky;
  top: 130px;
  display: flex;
  align-self: start;
  flex-direction: column;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-index span {
  margin-bottom: 15px;
  color: var(--bordeaux);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-index a {
  color: var(--muted);
  font-size: 10px;
  line-height: 2.2;
}

.legal-copy article {
  margin-bottom: 65px;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 22px;
  font-size: 42px;
}

.legal-copy article > p:last-child {
  color: var(--muted);
  line-height: 1.95;
}

.legal-copy a {
  border-bottom: 1px solid;
}

.legal-note {
  padding: 25px;
  border-left: 3px solid var(--champagne);
  background: #eee9df;
  color: var(--muted);
  font-size: 10px;
}

.confirmation {
  display: grid;
  min-height: 760px;
  padding: 160px 25px 90px;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(205,191,157,.22), transparent 34%),
    var(--porcelain);
}

.confirmation-card {
  max-width: 700px;
  text-align: center;
}

.confirmation-mark {
  display: grid;
  width: 55px;
  height: 55px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid var(--bordeaux);
  border-radius: 50%;
  color: var(--bordeaux);
}

.confirmation h1 {
  margin-bottom: 26px;
  font-size: 68px;
}

.confirmation-card > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 35px;
  color: var(--muted);
}

/* Public demo dashboard */
.panel-intro {
  padding: 165px 0 76px;
  background: var(--paper);
}

.panel-intro-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.3fr .7fr;
  gap: 90px;
}

.panel-intro h1 {
  margin: 0;
  font-size: clamp(55px, 6.3vw, 86px);
}

.panel-intro h1 em {
  font-size: .78em;
}

.pilot-label-dark {
  border-color: var(--line);
}

.panel-intro-copy > p {
  color: var(--muted);
  line-height: 1.85;
}

.dashboard-section {
  padding: 0 0 125px;
  background:
    linear-gradient(to bottom, var(--paper) 0 155px, #dcd7cd 155px 100%);
}

.dashboard-notice {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 75px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(24,52,46,.18);
  background: #eef2ed;
  box-shadow: 0 13px 30px rgba(27,44,37,.08);
  grid-template-columns: 38px 1fr 30px;
  gap: 12px;
}

.dashboard-notice > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
}

.dashboard-notice > div {
  display: flex;
  flex-direction: column;
}

.dashboard-notice strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

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

.dashboard-notice button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
}

.app-frame {
  display: grid;
  min-height: 875px;
  overflow: hidden;
  border: 1px solid rgba(21,21,18,.15);
  border-radius: 13px;
  background: #f5f4f0;
  box-shadow: 0 38px 90px rgba(40,34,28,.17);
  grid-template-columns: 220px 1fr;
}

.app-sidebar {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px 17px 20px;
  background: #17241f;
  color: white;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 7px 31px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.app-brand > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 16px;
}

.app-brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 9px;
}

.app-brand-mark .brand-mark-frame,
.app-brand-mark .brand-mark-axis {
  stroke: var(--champagne);
}

.app-brand-mark .brand-mark-fold {
  stroke: var(--white);
}

.app-brand-mark .brand-mark-seal {
  fill: var(--champagne);
}

.app-brand > div {
  display: flex;
  flex-direction: column;
}

.app-brand strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

.app-brand small {
  color: rgba(255,255,255,.4);
  font-size: 6px;
  letter-spacing: .06em;
}

.app-sidebar nav {
  display: grid;
  margin-top: 25px;
  gap: 5px;
}

.app-sidebar nav button,
.app-sidebar-bottom > a {
  display: grid;
  min-height: 43px;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: rgba(255,255,255,.52);
  font-size: 8px;
  text-align: left;
  grid-template-columns: 27px 1fr auto;
  transition: background .2s, color .2s;
}

.app-sidebar nav button:hover,
.app-sidebar nav button.active,
.app-sidebar-bottom > a:hover {
  background: rgba(255,255,255,.09);
  color: white;
}

.app-sidebar nav i,
.app-sidebar-bottom > a i {
  font-style: normal;
  font-size: 12px;
}

.app-sidebar nav b {
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  font-size: 6px;
  font-weight: 500;
}

.app-sidebar-bottom {
  display: grid;
  margin-top: auto;
  gap: 20px;
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.app-profile > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--bordeaux);
  font-size: 7px;
  font-weight: 500;
}

.app-profile > div {
  display: flex;
  flex-direction: column;
}

.app-profile strong {
  font-size: 7px;
  font-weight: 500;
}

.app-profile small {
  color: rgba(255,255,255,.35);
  font-size: 6px;
}

.app-main {
  min-width: 0;
}

.app-topbar {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid #e3e0d9;
  background: rgba(255,255,255,.78);
}

.app-topbar > div:first-child {
  display: flex;
  flex-direction: column;
}

.app-topbar p {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
}

.app-topbar > div > span {
  color: #99958e;
  font-size: 6px;
}

.app-topbar b {
  font-weight: 400;
}

.app-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #e2ded7;
  border-radius: 20px;
  background: white;
  color: var(--forest);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3f7f65;
  box-shadow: 0 0 0 3px rgba(63,127,101,.13);
}

.app-export {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  border-radius: 3px;
  background: var(--ink);
  color: white;
  font-size: 7px;
  font-weight: 500;
}

.app-content {
  padding: 31px;
}

.app-welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.app-welcome p {
  margin-bottom: 2px;
  color: #8e8a83;
  font-size: 7px;
}

.app-welcome h2 {
  margin: 0;
  font-size: 27px;
}

.app-date {
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dashboard-loading {
  display: flex;
  min-height: 400px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--muted);
}

.dashboard-loading span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bordeaux);
  animation: loading-dot 1s infinite alternate;
}

.dashboard-loading span:nth-child(2) { animation-delay: .15s; }
.dashboard-loading span:nth-child(3) { animation-delay: .3s; }

.dashboard-loading p {
  margin: 0 0 0 8px;
  font-size: 8px;
}

@keyframes loading-dot {
  from { opacity: .25; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(-2px); }
}

.dashboard-error {
  min-height: 300px;
  padding-top: 100px;
  text-align: center;
}

.dashboard-error strong {
  display: block;
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.dashboard-metrics {
  display: grid;
  margin-bottom: 13px;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.dash-metric {
  min-height: 120px;
  padding: 16px;
  border: 1px solid #e3e0d9;
  border-radius: 5px;
  background: white;
}

.dash-metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-metric-head > span {
  color: #77736d;
  font-size: 7px;
}

.metric-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.metric-icon-burgundy { background: rgba(103,44,56,.1); color: var(--bordeaux); }
.metric-icon-green { background: rgba(24,52,46,.1); color: var(--forest); }
.metric-icon-sand { background: #efe9dd; color: #86775e; }
.metric-icon-ink { background: #eceae4; color: var(--ink); }

.dash-metric > strong {
  display: block;
  margin: 7px 0 3px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.dash-metric > small {
  color: #aaa69f;
  font-size: 6px;
}

.dash-metric > small b {
  color: var(--forest);
  font-weight: 500;
}

.dash-metric-logistics > div:last-child {
  display: grid;
  align-items: end;
  margin-top: 11px;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 5px;
}

.dash-metric-logistics strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.dash-metric-logistics small {
  padding-bottom: 4px;
  color: #aaa69f;
  font-size: 5px;
}

.dashboard-overview {
  display: grid;
  margin-bottom: 13px;
  grid-template-columns: 1.04fr .96fr;
  gap: 11px;
}

.response-card,
.logistics-card,
.guest-table-card {
  border: 1px solid #e3e0d9;
  border-radius: 5px;
  background: white;
}

.response-card,
.logistics-card {
  min-height: 248px;
  padding: 17px;
}

.card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

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

.card-title p {
  margin: 0;
  font-family: var(--serif);
  font-size: 13px;
}

.card-title span {
  color: #a09c94;
  font-size: 6px;
}

.card-title button,
.card-title a {
  border: 0;
  background: transparent;
  color: #858179;
  font-size: 7px;
}

.response-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 17px;
}

.large-donut {
  position: relative;
  display: grid;
  width: 135px;
  height: 135px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--bordeaux) 0 calc(var(--attending-share) * 1%),
    #d7c9ba calc(var(--attending-share) * 1%) 100%
  );
}

.large-donut::before {
  position: absolute;
  width: 97px;
  height: 97px;
  border-radius: 50%;
  background: white;
  content: "";
}

.large-donut > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.large-donut strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.large-donut small {
  color: #99958d;
  font-size: 5px;
}

.chart-legend {
  display: grid;
  min-width: 130px;
  gap: 14px;
}

.chart-legend > span {
  display: grid;
  align-items: center;
  grid-template-columns: 10px 1fr auto;
  gap: 8px;
}

.chart-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.legend-attending { background: var(--bordeaux); }
.legend-declined { background: #d7c9ba; }
.legend-pending { background: #ebe8e1; border: 1px solid #ddd9d0; }

.chart-legend b,
.chart-legend em {
  font-size: 6px;
  font-style: normal;
  font-weight: 400;
}

.chart-legend em {
  color: #858178;
}

.logistics-list {
  display: grid;
  margin: 17px 0 12px;
  gap: 7px;
}

.logistics-list button {
  display: grid;
  min-height: 61px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid #ebe7df;
  border-radius: 3px;
  background: #fbfaf7;
  text-align: left;
  grid-template-columns: 34px 1fr 35px 15px;
  transition: border-color .2s, transform .2s;
}

.logistics-list button:hover {
  border-color: #c5bdb2;
  transform: translateX(2px);
}

.logistics-symbol {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(103,44,56,.08);
  color: var(--bordeaux);
  font-style: normal;
}

.logistics-symbol-alt {
  background: rgba(24,52,46,.08);
  color: var(--forest);
}

.logistics-list button > span {
  display: flex;
  flex-direction: column;
}

.logistics-list b {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 400;
}

.logistics-list small {
  color: #a19d95;
  font-size: 5px;
}

.logistics-list strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.logistics-list em {
  color: #9a968f;
  font-size: 9px;
  font-style: normal;
}

.logistics-tip {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9a968e;
  font-size: 5px;
}

.logistics-tip > span {
  color: var(--bordeaux);
}

.logistics-tip p {
  margin: 0;
}

.logistics-tip strong {
  color: #6e6a64;
  font-weight: 500;
}

.guest-table-heading {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid #e9e5de;
}

.guest-table-heading > div:first-child {
  display: flex;
  flex-direction: column;
}

.guest-table-heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: 13px;
}

.guest-table-heading > div > span {
  color: #a19d95;
  font-size: 6px;
}

.table-tools {
  display: flex;
  gap: 7px;
}

.table-search {
  display: flex;
  width: 160px;
  height: 31px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #e2ded7;
  border-radius: 3px;
}

.table-search i {
  color: #97938c;
  font-style: normal;
}

.table-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 7px;
}

.filter-button {
  min-width: 66px;
  border: 1px solid #e2ded7;
  border-radius: 3px;
  background: white;
  font-size: 7px;
}

.filter-button span {
  display: inline-grid;
  width: 14px;
  height: 14px;
  margin-left: 3px;
  place-items: center;
  border-radius: 50%;
  background: var(--bordeaux);
  color: white;
  font-size: 5px;
}

.filter-bar {
  display: flex;
  padding: 10px 17px;
  border-bottom: 1px solid #ebe7e0;
  gap: 6px;
}

.filter-bar button {
  padding: 5px 9px;
  border: 1px solid #e1ddd5;
  border-radius: 20px;
  background: white;
  color: #7d7972;
  font-size: 6px;
}

.filter-bar button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.data-table-scroll {
  overflow-x: auto;
}

.guest-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.guest-table {
  min-width: 690px;
}

.guest-table th {
  height: 37px;
  padding: 0 13px;
  border-bottom: 1px solid #ebe7e0;
  color: #aaa69e;
  font-size: 5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guest-table td {
  height: 53px;
  padding: 7px 13px;
  border-bottom: 1px solid #f0ede7;
  color: #6f6b64;
  font-size: 6px;
}

.guest-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.guest-avatar {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #ece5db;
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: 9px;
}

.guest-name div {
  display: flex;
  flex-direction: column;
}

.guest-name strong {
  color: var(--ink);
  font-size: 7px;
  font-weight: 500;
}

.guest-name small {
  color: #aaa69e;
  font-size: 5px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border-radius: 12px;
  font-size: 5px;
  font-weight: 500;
}

.status-pill::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
}

.status-attending {
  background: #edf3ee;
  color: #35634f;
}

.status-attending::before { background: #4a856a; }

.status-declined {
  background: #f3eeec;
  color: #8a5c62;
}

.status-declined::before { background: #a96e77; }

.table-tag {
  display: inline-flex;
  padding: 3px 6px;
  border-radius: 10px;
  background: #f0ede6;
  color: #706b64;
  font-size: 5px;
}

.table-tag.is-needed {
  background: rgba(103,44,56,.08);
  color: var(--bordeaux);
}

.table-empty {
  padding: 30px;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.table-footer {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: #9d9991;
  font-size: 6px;
}

.table-footer small {
  font-size: inherit;
}

.panel-next {
  padding: 100px 0;
  background: var(--paper);
}

.panel-next-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.panel-next h2 {
  max-width: 730px;
  margin: 0;
  font-size: 50px;
}

/* Private validation dashboard */
.insights {
  min-height: 750px;
  padding: 160px 0 120px;
  background: var(--paper);
}

.insights-heading,
.table-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.insights-heading {
  margin-bottom: 55px;
}

.insights-heading h1 {
  margin: 0;
  font-size: 68px;
}

.metric-grid {
  display: grid;
  margin-bottom: 35px;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.metric-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  background: white;
}

.metric-grid span {
  font-family: var(--serif);
  font-size: 36px;
}

.metric-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.metric-grid .metric-primary {
  background: var(--bordeaux);
  color: white;
}

.metric-primary p {
  color: rgba(255,255,255,.6);
}

.insights-table-wrap {
  padding: 25px;
  border: 1px solid var(--line);
  background: white;
}

.table-heading {
  margin-bottom: 20px;
}

.table-heading h2 {
  margin: 0;
  font-size: 27px;
}

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

.data-table {
  min-width: 900px;
}

.data-table th,
.data-table td {
  padding: 12px;
  border-bottom: 1px solid #eeeae3;
  font-size: 8px;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  font-size: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.data-table td strong,
.data-table td small {
  display: block;
}

.data-table td small {
  color: var(--muted);
}

.empty-cell {
  padding: 40px !important;
  color: var(--muted);
  text-align: center;
}

/* Offer, presentation booking and validation CRM */
.offer-hero { padding-bottom: 95px; }
.offer-hero .simple-hero-inner { max-width: 900px; text-align: center; }
.offer-hero .simple-hero-inner > p { max-width: 720px; margin-inline: auto; }
.offer-section-main { padding: 110px 0; background: var(--paper); }
.offer-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offer-package { display: flex; min-height: 610px; padding: 36px; border: 1px solid var(--line); background: var(--white); flex-direction: column; }
.offer-package.is-featured { border-color: var(--bordeaux); box-shadow: 0 24px 70px rgba(65, 34, 39, .12); transform: translateY(-12px); }
.offer-package-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.offer-package-label span { color: var(--bordeaux); font-family: var(--serif); font-size: 20px; }
.offer-package-label small { color: var(--muted); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.offer-package h2 { margin: 0 0 18px; font-size: 37px; }
.offer-package > p { min-height: 78px; color: var(--muted); }
.offer-package ul { display: grid; padding: 25px 0; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; gap: 13px; }
.offer-package li { display: flex; align-items: center; font-size: 12px; gap: 10px; }
.offer-package li span { color: var(--bordeaux); }
.offer-package-fit { margin: 26px 0; }
.offer-package-fit small { color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.offer-package-fit p { margin: 7px 0 0; font-size: 12px; }
.offer-package .text-link { margin-top: auto; }
.offer-transparency { display: flex; max-width: 900px; align-items: flex-start; padding: 28px; margin: 55px auto 0; border: 1px solid var(--line); background: #f1ece3; gap: 20px; }
.offer-transparency > span { color: var(--bordeaux); font-size: 24px; }
.offer-transparency strong { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.offer-transparency p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.trust-section { padding: 120px 0; background: var(--porcelain); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust-grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid article > span { color: var(--bordeaux); font-family: var(--serif); }
.trust-grid h3 { margin: 55px 0 12px; font-size: 24px; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 11px; }
.offer-final { display: flex; align-items: flex-end; justify-content: space-between; padding: 55px; margin-top: 80px; background: var(--forest); color: white; gap: 50px; }
.offer-final h2 { max-width: 700px; margin: 8px 0 14px; font-size: 46px; }
.offer-final p { max-width: 690px; margin: 0; color: rgba(255,255,255,.65); }
.home-offer-band { padding: 85px 0; background: var(--forest); color: white; }
.home-offer-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 100px; }
.home-offer-grid h2 { margin: 10px 0 0; font-size: 48px; }
.home-offer-grid > div:last-child > p { color: rgba(255,255,255,.7); }

.booking-section { min-height: 900px; padding: 160px 0 110px; background: var(--paper); }
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 90px; }
.booking-copy { position: sticky; top: 130px; }
.booking-copy h1 { margin: 15px 0 25px; font-size: 63px; }
.booking-copy > p { max-width: 520px; color: var(--muted); }
.booking-copy ol { padding: 30px 0; margin: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.booking-copy li { display: grid; padding: 12px 0; grid-template-columns: 35px 1fr; gap: 10px; }
.booking-copy li span { color: var(--bordeaux); font-family: var(--serif); }
.booking-copy li p { margin: 0; color: var(--muted); font-size: 11px; }
.booking-copy li strong { display: block; color: var(--ink); font-size: 12px; }
.booking-copy .booking-note { padding: 18px; border-left: 2px solid var(--bordeaux); background: #f1ebe2; font-size: 11px; }
.booking-form { padding: 45px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow-card); }
.booking-form-head { display: flex; align-items: center; margin-bottom: 25px; gap: 14px; }
.booking-form-head p, .booking-form-head small { margin: 0; }
.booking-form-head p { font-family: var(--serif); font-size: 22px; }
.booking-form-head small { color: var(--muted); font-size: 9px; }

.insights-lead { margin: 10px 0 0; color: var(--muted); }
.metric-grid-core { grid-template-columns: repeat(6, 1fr); }
.pipeline-strip { display: grid; margin-bottom: 35px; border: 1px solid var(--line); background: #f1ede5; grid-template-columns: repeat(6, 1fr); }
.pipeline-strip div { padding: 16px 20px; border-right: 1px solid var(--line); }
.pipeline-strip div:last-child { border: 0; }
.pipeline-strip span { font-family: var(--serif); font-size: 24px; }
.pipeline-strip p { margin: 2px 0 0; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.table-heading p { margin: 6px 0 0; color: var(--muted); font-size: 10px; }
.lead-crm-list { display: grid; gap: 12px; }
.lead-crm-card { padding: 25px; border: 1px solid var(--line); background: var(--paper); }
.lead-crm-card header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.lead-crm-card h3 { margin: 8px 0 0; font-size: 25px; }
.lead-crm-card header a, .lead-crm-card time { color: var(--muted); font-size: 10px; }
.lead-status { display: inline-flex; padding: 4px 8px; border-radius: 20px; background: #e8e4dc; color: #4c4843; font-size: 7px; letter-spacing: .07em; text-transform: uppercase; }
.lead-status.status-won { background: #dceadf; color: #2b5b3b; }
.lead-status.status-lost { background: #eee0e2; color: #7a3542; }
.lead-crm-card dl { display: grid; padding: 18px 0; margin: 20px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); gap: 15px; }
.lead-crm-card dl div { min-width: 0; }
.lead-crm-card dt { color: var(--muted); font-size: 7px; letter-spacing: .06em; text-transform: uppercase; }
.lead-crm-card dd { margin: 4px 0 0; font-size: 10px; overflow-wrap: anywhere; }
.lead-crm-card dd small { display: block; color: var(--muted); }
.lead-message { padding: 14px; margin: 15px 0 0; background: white; font-size: 10px; white-space: pre-wrap; }
.lead-crm-form { display: grid; align-items: end; margin-top: 18px; grid-template-columns: 160px 1fr auto; gap: 10px; }
.lead-crm-form label { display: grid; gap: 4px; }
.lead-crm-form label > span { color: var(--muted); font-size: 7px; text-transform: uppercase; }
.lead-crm-form select, .lead-crm-form textarea { width: 100%; min-height: 43px; padding: 9px; border: 1px solid var(--line); background: white; font-size: 10px; resize: vertical; }
.lead-crm-form .button { min-height: 43px; }
.lead-delete { margin-top: 10px; color: var(--muted); font-size: 8px; }
.lead-delete form { display: flex; align-items: center; justify-content: space-between; padding: 12px; margin-top: 8px; border: 1px solid #e0c9cd; background: #f8edef; gap: 15px; }
.lead-delete p { margin: 0; }
.lead-delete button { border: 0; background: transparent; color: #843847; font-size: 9px; text-decoration: underline; }

@media (max-width: 960px) {
  .offer-package-grid { grid-template-columns: 1fr; }
  .offer-package { min-height: auto; }
  .offer-package.is-featured { transform: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .home-offer-grid, .booking-grid { grid-template-columns: 1fr; gap: 45px; }
  .booking-copy { position: static; }
  .booking-copy h1 { font-size: 50px; }
  .metric-grid-core { grid-template-columns: repeat(3, 1fr); }
  .pipeline-strip { grid-template-columns: repeat(3, 1fr); }
  .lead-crm-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offer-section-main, .trust-section { padding: 75px 0; }
  .offer-package, .booking-form { padding: 25px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 210px; }
  .trust-grid h3 { margin-top: 35px; }
  .offer-final { align-items: flex-start; padding: 35px 25px; flex-direction: column; }
  .offer-final h2, .home-offer-grid h2 { font-size: 36px; }
  .booking-section { padding: 120px 0 70px; }
  .booking-copy h1 { font-size: 42px; }
  .metric-grid-core, .pipeline-strip { grid-template-columns: repeat(2, 1fr); }
  .lead-crm-card { padding: 18px; }
  .lead-crm-card dl { grid-template-columns: 1fr 1fr; }
  .lead-crm-card header { flex-direction: column; }
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

/* Tablet */
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 50px, 1000px);
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: .85fr 1.15fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: 61px;
  }

  .dashboard-preview {
    width: 94%;
  }

  .phone-preview {
    left: -10px;
    width: 175px;
    height: 360px;
  }

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

  .value-card-large {
    grid-column: 1 / -1;
  }

  .value-card {
    min-height: 450px;
  }

  .bespoke-grid,
  .pilot-grid {
    gap: 65px;
  }

  .demo-journey-grid {
    gap: 70px;
  }

  .faq-grid {
    gap: 70px;
  }

  .app-frame {
    grid-template-columns: 70px 1fr;
  }

  .app-sidebar {
    align-items: center;
    padding-inline: 10px;
  }

  .app-brand > div,
  .app-sidebar nav span,
  .app-sidebar nav b,
  .app-sidebar-bottom > a span,
  .app-profile > div {
    display: none;
  }

  .app-brand {
    padding-inline: 0;
  }

  .app-sidebar nav button,
  .app-sidebar-bottom > a {
    width: 43px;
    padding: 0;
    place-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-profile > span {
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 75px;
  }

  body {
    font-size: 14px;
  }

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

  .site-header.is-scrolled,
  .site-header {
    background: rgba(243,239,231,.96);
    border-bottom-color: var(--line);
  }

  .wordmark-name {
    font-size: 18px;
  }

  .wordmark-lockup {
    gap: 8px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .nav-open .nav-toggle > span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle > span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px 30px 40px;
    background: var(--porcelain);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s, transform .25s;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    min-height: 50px;
    margin-top: 8px;
    padding-inline: 20px;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .button {
    min-height: 52px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 70px;
  }

  .hero-grid {
    display: block;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 67px);
  }

  .hero h1 em {
    display: block;
    max-width: 310px;
    font-size: .72em;
    white-space: normal;
  }

  .hero-lead {
    font-size: 13px;
  }

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

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

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

  .hero-product {
    min-height: 450px;
    margin-top: 50px;
  }

  .hero-monogram {
    top: 0;
    right: -40px;
    font-size: 260px;
  }

  .dashboard-preview {
    top: 33px;
    right: -55px;
    width: 105%;
    height: 310px;
    border-width: 5px;
  }

  .preview-body {
    grid-template-columns: 38px 1fr;
  }

  .preview-sidebar {
    gap: 11px;
  }

  .preview-content {
    padding: 12px;
  }

  .preview-metrics {
    margin-top: 12px;
  }

  .preview-metrics > div:nth-child(3) {
    display: none;
  }

  .preview-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .phone-preview {
    bottom: 0;
    left: 0;
    width: 143px;
    height: 292px;
    border-radius: 24px;
  }

  .phone-screen {
    border-radius: 18px;
  }

  .phone-overlay strong {
    font-size: 19px;
  }

  .note-rsvp {
    top: 70px;
    right: -10px;
    min-width: 165px;
  }

  .note-map {
    right: -8px;
    bottom: 13px;
    min-width: 155px;
  }

  .signal-grid {
    display: block;
    padding: 14px 0;
  }

  .signal-grid > div,
  .signal-grid > div:first-child {
    min-height: 68px;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .signal-grid strong {
    width: 44px;
    font-size: 27px;
  }

  .plush-story {
    padding: 10px;
  }

  .plush-story-frame {
    min-height: 700px;
  }

  .plush-story-frame > img {
    object-position: 63% center;
  }

  .plush-story-frame::after {
    background: linear-gradient(0deg, rgba(13,22,19,.88) 0, rgba(13,22,19,.08) 78%);
  }

  .plush-story-copy {
    right: 24px;
    bottom: 122px;
    left: 24px;
  }

  .plush-story-copy h2 {
    margin-bottom: 17px;
    font-size: 43px;
  }

  .plush-story-copy > p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .plush-story-meta {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .plush-story-meta > span {
    min-width: 0;
    flex: 1;
    padding: 11px 9px;
  }

  .plush-story-meta strong {
    font-size: 10px;
  }

  .product-section,
  .process-section,
  .platform-suite,
  .value-section,
  .bespoke-section,
  .pilot-section,
  .home-faq,
  .faq-page {
    padding: 90px 0;
  }

  .platform-suite-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .suite-card,
  .suite-card-budget,
  .suite-card-seating {
    min-height: 320px;
    grid-row: auto;
    grid-column: auto;
  }

  .suite-card-budget,
  .suite-card-seating {
    min-height: 450px;
  }

  .suite-budget-visual {
    margin-top: 38px;
  }

  .suite-budget-visual > strong {
    font-size: 43px;
  }

  .suite-table-visual {
    min-height: 275px;
    margin-top: 25px;
    transform: scale(.88);
  }

  .platform-suite-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .section-heading-split,
  .pilot-grid,
  .bespoke-grid,
  .demo-journey-grid,
  .faq-grid,
  .panel-intro-grid,
  .editorial-hero-grid,
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .bespoke-copy h2 {
    font-size: 48px;
  }

  .product-tabs button {
    min-height: 68px;
    font-size: 16px;
  }

  .product-tabs button + button {
    padding-left: 16px;
  }

  .product-panel {
    display: flex;
    flex-direction: column;
  }

  .product-story {
    padding: 50px 0;
  }

  .product-story h3 {
    font-size: 35px;
  }

  .guest-canvas,
  .couple-canvas {
    min-height: 480px;
    margin-inline: -18px;
  }

  .guest-phone {
    width: 166px;
    height: 350px;
  }

  .guest-phone-back {
    top: 79px;
    left: 20px;
  }

  .guest-phone-front {
    top: 45px;
    right: 20px;
  }

  .guest-card {
    right: 11px;
    bottom: 32px;
    min-width: 200px;
  }

  .couple-window {
    width: 93%;
  }

  .couple-window-body {
    grid-template-columns: 42px 1fr;
  }

  .couple-mini-main {
    padding: 20px 13px;
  }

  .couple-mini-stats span:nth-child(3) {
    display: none;
  }

  .couple-mini-stats {
    grid-template-columns: 1fr 1fr;
  }

  .value-grid {
    display: block;
  }

  .value-card {
    min-height: 430px;
    margin-bottom: 14px;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .bespoke-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .bespoke-art {
    width: 100%;
    min-height: 560px;
  }

  .art-frame {
    right: 0;
    width: 78%;
    height: 510px;
  }

  .monogram-card {
    top: 55px;
    width: 130px;
    height: 160px;
    font-size: 42px;
  }

  .palette-card {
    width: 210px;
  }

  .process-step {
    min-height: auto;
    padding: 28px 0;
    grid-template-columns: 45px 1fr 30px;
  }

  .process-step > div {
    display: block;
  }

  .process-step .eyebrow {
    margin-bottom: 7px;
  }

  .process-step h3 {
    margin-bottom: 10px;
    font-size: 27px;
  }

  .process-step:hover {
    padding-left: 0;
  }

  .demo-journey {
    padding: 85px 0;
  }

  .journey-copy h2 {
    font-size: 43px;
  }

  .pilot-copy,
  .faq-heading,
  .legal-index {
    position: static;
  }

  .lead-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-heading h2 {
    font-size: 50px;
  }

  .faq-item summary {
    min-height: 82px;
    font-size: 18px;
  }

  .faq-contact {
    align-items: stretch;
    flex-direction: column;
  }

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

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

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

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

  .simple-hero,
  .editorial-hero {
    padding: 135px 0 75px;
  }

  .simple-hero h1,
  .editorial-hero h1 {
    font-size: 49px;
  }

  .editorial-body,
  .legal-section {
    padding: 80px 0 95px;
  }

  .ledger-row {
    min-height: 105px;
    grid-template-columns: 35px 1fr 20px;
  }

  .ledger-row h2 {
    font-size: 24px;
  }

  .editorial-cta {
    padding: 35px 25px;
    grid-template-columns: 1fr;
  }

  .editorial-cta h2 {
    font-size: 34px;
  }

  .legal-index {
    display: none;
  }

  .confirmation h1 {
    font-size: 48px;
  }

  .panel-intro {
    padding: 130px 0 60px;
  }

  .panel-intro h1 {
    font-size: 49px;
  }

  .dashboard-section {
    padding-bottom: 80px;
    background: linear-gradient(to bottom, var(--paper) 0 80px, #dcd7cd 80px 100%);
  }

  .app-frame {
    display: block;
    min-height: 0;
    margin-inline: -12px;
    border-radius: 8px;
  }

  .app-sidebar {
    display: none;
  }

  .app-topbar {
    height: 65px;
    padding: 0 14px;
  }

  .live-pill {
    display: none;
  }

  .app-content {
    padding: 20px 12px;
  }

  .app-welcome {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .app-welcome h2 {
    font-size: 24px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .dash-metric {
    min-height: 112px;
  }

  .dashboard-overview {
    grid-template-columns: 1fr;
  }

  .response-chart {
    gap: 24px;
  }

  .guest-table-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  .table-search {
    flex: 1;
  }

  .panel-next {
    padding: 75px 0;
  }

  .panel-next-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .panel-next h2 {
    font-size: 39px;
  }

  .insights-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .insights-heading h1 {
    font-size: 48px;
  }

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

  .metric-grid article:last-child {
    grid-column: 1 / -1;
  }
}

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

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

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

/* Premium public demo control room */
.dashboard-section {
  padding-bottom: 132px;
  background:
    linear-gradient(to bottom, var(--paper) 0 150px, #d9d5cc 150px 100%);
}

.dashboard-section .shell,
.app-frame,
.app-main,
.app-content,
.dashboard-data,
.panel-view,
.panel-view > *,
.panel-module-card,
.panel-stack {
  min-width: 0;
}

.app-frame {
  position: relative;
  display: grid;
  min-height: 960px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 18, .15);
  border-radius: 14px;
  background: #f6f5f1;
  box-shadow: 0 42px 100px rgba(35, 30, 24, .2);
  grid-template-columns: 242px minmax(0, 1fr);
}

.app-sidebar {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 25px 16px 20px;
  background:
    radial-gradient(circle at 15% 5%, rgba(205, 191, 157, .09), transparent 28%),
    #15241f;
  color: var(--white);
}

.app-brand {
  gap: 11px;
  min-width: 0;
  padding: 0 7px 24px;
}

.app-brand > span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  font-size: 17px;
}

.app-brand > div {
  min-width: 0;
}

.app-brand strong {
  font-size: 15px;
  white-space: nowrap;
}

.app-brand small {
  overflow: hidden;
  font-size: 7px;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-sidebar nav {
  display: grid;
  margin-top: 20px;
  gap: 22px;
}

.app-nav-group {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.app-nav-group > p {
  margin: 0 0 6px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .3);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.app-sidebar nav button,
.app-sidebar-bottom > a {
  min-width: 0;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 400;
  grid-template-columns: 27px minmax(0, 1fr) auto;
}

.app-sidebar nav button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-sidebar nav button:hover,
.app-sidebar nav button.active,
.app-sidebar nav button[aria-current="page"],
.app-sidebar-bottom > a:hover {
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 2px 0 0 var(--champagne);
}

.app-sidebar nav i,
.app-sidebar-bottom > a i {
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
}

.app-sidebar nav b {
  min-width: 22px;
  height: 20px;
  font-size: 7px;
}

.app-sidebar-bottom {
  gap: 16px;
}

.app-profile strong {
  font-size: 8px;
}

.app-profile small {
  font-size: 7px;
}

.app-main {
  position: relative;
  background:
    radial-gradient(circle at 100% 0, rgba(205, 191, 157, .08), transparent 30%),
    #f6f5f1;
}

.app-topbar {
  position: relative;
  z-index: 3;
  height: 73px;
  padding: 0 27px;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.app-topbar p {
  font-size: 16px;
}

.app-topbar > div > span {
  font-size: 7px;
}

.live-pill {
  padding: 9px 12px;
  font-size: 7px;
}

.app-export {
  min-height: 35px;
  padding: 0 14px;
  font-size: 8px;
}

.app-demo-ribbon {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 27px;
  border-bottom: 1px solid rgba(103, 44, 56, .12);
  background: #f3ece9;
  color: #6f5e5f;
  gap: 11px;
}

.app-demo-ribbon > span {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 20px;
  background: var(--bordeaux);
  color: white;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.app-demo-ribbon p {
  margin: 0;
  font-size: 8px;
  line-height: 1.5;
}

.app-content {
  padding: 27px;
}

.dashboard-loading {
  min-height: 550px;
}

.dashboard-loading p {
  font-size: 9px;
}

.panel-view {
  animation: panel-view-in .28s var(--ease) both;
}

.panel-view.is-active {
  display: block;
}

@keyframes panel-view-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

.panel-view-heading {
  display: flex;
  min-height: 73px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 24px;
}

.panel-view-heading > div:first-child {
  min-width: 0;
}

.panel-view-kicker {
  margin: 0 0 4px;
  color: var(--bordeaux);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-view-heading h2 {
  margin: 0 0 4px;
  font-size: clamp(26px, 3vw, 34px);
}

.panel-view-heading > div:first-child > span {
  display: block;
  max-width: 580px;
  color: #858078;
  font-size: 9px;
}

.panel-heading-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.panel-button {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #dcd8cf;
  border-radius: 5px;
  background: white;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}

.panel-button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.panel-button-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.panel-button-primary:hover {
  border-color: var(--bordeaux);
  background: var(--bordeaux);
}

.panel-button-light {
  background: white;
}

.panel-text-action {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bordeaux);
  font-size: 8px;
  font-weight: 500;
}

.panel-card-badge {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding: 0 7px;
  border-radius: 20px;
  background: #f0ede6;
  color: #7c776f;
  font-family: var(--sans);
  font-size: 7px !important;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

.dashboard-metrics {
  margin-bottom: 12px;
  gap: 10px;
}

.dash-metric {
  min-width: 0;
  min-height: 124px;
  padding: 16px;
  border-radius: 7px;
  box-shadow: 0 7px 24px rgba(35, 30, 24, .025);
}

.dash-metric-head > span {
  font-size: 7px;
}

.dash-metric > strong {
  font-size: 31px;
}

.dash-metric > small {
  font-size: 7px;
}

.dash-metric-logistics small {
  font-size: 6px;
}

.dashboard-overview {
  margin-bottom: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.response-card,
.logistics-card,
.guest-table-card,
.panel-activity-card,
.panel-mini-table-card,
.panel-progress-card,
.panel-module-card,
.settings-list-card,
.settings-details-card,
.panel-domain-card,
.panel-reset-card,
.panel-quick-form {
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
  box-shadow: 0 7px 24px rgba(35, 30, 24, .025);
}

.response-card,
.logistics-card {
  min-height: 252px;
  padding: 18px;
}

.card-title p {
  font-size: 14px;
}

.card-title span {
  font-size: 7px;
}

.card-title button,
.card-title a {
  padding: 3px 0;
  font-size: 7px;
}

.response-chart {
  gap: 30px;
}

.large-donut {
  width: 138px;
  height: 138px;
}

.large-donut::before {
  width: 98px;
  height: 98px;
}

.large-donut small,
.chart-legend b,
.chart-legend em {
  font-size: 7px;
}

.logistics-list b {
  font-size: 11px;
}

.logistics-list small,
.logistics-tip {
  font-size: 6px;
}

.panel-activity-card {
  grid-column: 1 / -1;
  padding: 18px;
}

.panel-activity-list {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.panel-activity-list li {
  display: grid;
  min-width: 0;
  min-height: 67px;
  align-items: center;
  padding: 10px;
  border: 1px solid #ece8e0;
  border-radius: 5px;
  background: #fbfaf7;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 9px;
}

.panel-activity-list i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.activity-rsvp { background: #e8f0eb; color: var(--forest); }
.activity-note { background: #f2e9e9; color: var(--bordeaux); }
.activity-task { background: #eeeade; color: #7c714f; }

.panel-activity-list div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.panel-activity-list strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-activity-list span {
  color: #9b978f;
  font-size: 6px;
}

.panel-overview-bottom {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 10px;
}

.panel-mini-table-card,
.panel-progress-card {
  min-width: 0;
  padding: 18px;
}

.panel-mini-rows {
  display: grid;
  margin-top: 14px;
}

.panel-mini-rows > div {
  display: grid;
  min-width: 0;
  min-height: 53px;
  align-items: center;
  border-top: 1px solid #eeebe5;
  grid-template-columns: 31px minmax(0, 1fr) auto 37px;
  gap: 8px;
}

.panel-mini-rows p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.panel-mini-rows strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-mini-rows small,
.panel-mini-rows time {
  color: #9f9a92;
  font-size: 6px;
}

.panel-mini-rows em {
  font-style: normal;
}

.panel-progress-card .card-title > strong {
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.panel-progress-track,
.gift-progress,
.occupancy > div {
  height: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: #ebe8e1;
}

.panel-progress-track {
  margin: 17px 0;
}

.panel-progress-track span,
.gift-progress span,
.occupancy span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--bordeaux);
}

.panel-progress-card ul {
  display: grid;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  gap: 8px;
}

.panel-progress-card li {
  display: flex;
  align-items: center;
  color: #78736c;
  font-size: 7px;
  gap: 7px;
}

.panel-progress-card li > span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #d9d5ce;
  border-radius: 50%;
  color: #938e86;
  font-size: 6px;
}

.panel-progress-card li.is-done > span {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.guest-table-card {
  overflow: hidden;
}

.guest-table-heading {
  min-height: 72px;
  padding: 0 18px;
}

.guest-table-heading p {
  font-size: 14px;
}

.guest-table-heading > div > span {
  font-size: 7px;
}

.table-search {
  width: 180px;
  height: 35px;
}

.table-search input,
.filter-button {
  font-size: 8px;
}

.filter-button {
  min-width: 72px;
}

.filter-bar {
  overflow-x: auto;
  padding: 11px 18px;
}

.filter-bar button {
  flex: 0 0 auto;
  padding: 6px 10px;
  font-size: 7px;
}

.guest-table {
  min-width: 720px;
}

.guest-table th {
  height: 41px;
  font-size: 6px;
}

.guest-table td {
  height: 57px;
  font-size: 7px;
}

.guest-name strong {
  font-size: 8px;
}

.guest-name small {
  font-size: 6px;
}

.status-pill,
.table-tag {
  font-size: 6px;
}

.table-footer {
  min-height: 44px;
  font-size: 7px;
}

.panel-module-metrics,
.message-stats,
.gift-summary,
.quiz-summary-grid {
  display: grid;
  margin-bottom: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.panel-module-metrics > article,
.quiz-summary-grid > article {
  display: flex;
  min-width: 0;
  min-height: 100px;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
}

.panel-module-metrics span,
.quiz-summary-grid > article > span {
  color: #858078;
  font-size: 7px;
}

.panel-module-metrics strong,
.quiz-summary-grid > article > strong {
  overflow: hidden;
  margin: 2px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-module-metrics small,
.quiz-summary-grid > article > small {
  color: #a09b93;
  font-size: 6px;
}

.panel-split-layout,
.lodging-grid,
.planning-layout,
.invitation-settings-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.32fr) minmax(270px, .68fr);
  gap: 10px;
}

.panel-stack {
  display: grid;
  gap: 10px;
}

.panel-module-card {
  min-width: 0;
  overflow: hidden;
  padding: 18px;
}

.panel-module-card-head {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 15px;
}

.panel-module-card-head > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.panel-module-card-head p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.2;
}

.panel-module-card-head span {
  color: #9a958d;
  font-size: 7px;
}

.panel-module-card-head > strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.panel-module-card-head > button {
  flex: 0 0 auto;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--bordeaux);
  font-size: 7px;
}

.panel-inline-note {
  margin: 15px 0 0;
  padding: 11px 12px;
  border-left: 2px solid var(--champagne);
  background: #f6f3ed;
  color: #8b867e;
  font-size: 6px;
  line-height: 1.6;
}

.panel-inline-note-wide {
  margin-top: 12px;
}

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

.route-card {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 13px;
  border: 1px solid #e8e4dd;
  border-radius: 6px;
  background: #fbfaf7;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 13px;
}

.route-time {
  display: flex;
  flex-direction: column;
}

.route-time strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.route-time span {
  color: #9b968e;
  font-size: 6px;
}

.route-path {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 4px 8px;
}

.route-path::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 3px;
  width: 1px;
  background: #c9c2b5;
  content: "";
}

.route-path > i {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border: 2px solid var(--bordeaux);
  border-radius: 50%;
  background: white;
}

.route-path > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.route-path strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-path span {
  overflow: hidden;
  color: #9d9890;
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-card > button,
.assignment-list button {
  padding: 6px 8px;
  border: 1px solid #ddd8cf;
  border-radius: 4px;
  background: white;
  font-size: 6px;
}

.route-card > button:hover,
.assignment-list button:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.assignment-list {
  display: grid;
}

.assignment-list > div {
  display: grid;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  border-top: 1px solid #ece8e1;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 8px;
}

.assignment-list p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.assignment-list strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assignment-list small {
  color: #9c978f;
  font-size: 6px;
}

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

.lodging-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
}

.lodging-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bordeaux);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lodging-card-top i {
  color: #8c867d;
  font-size: 7px;
  font-style: normal;
}

.lodging-card h3 {
  margin: 14px 0 3px;
  font-size: 22px;
}

.lodging-card > p:not(.panel-inline-note) {
  margin-bottom: 16px;
  color: #918c84;
  font-size: 7px;
}

.occupancy {
  display: grid;
  align-items: center;
  margin-bottom: 15px;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.occupancy small {
  color: #8c877f;
  font-size: 6px;
}

.lodging-card ul {
  margin: 0 0 15px;
  padding: 0;
  border-top: 1px solid #ece8e1;
  list-style: none;
}

.lodging-card li {
  display: grid;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid #ece8e1;
  font-size: 7px;
  grid-template-columns: 55px 1fr auto;
  gap: 8px;
}

.lodging-card li span,
.lodging-card li em {
  color: #98938b;
  font-size: 6px;
  font-style: normal;
}

.lodging-card li strong {
  font-size: 7px;
  font-weight: 500;
}

.planning-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
}

.wedding-timeline {
  position: relative;
  display: grid;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.wedding-timeline::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 67px;
  width: 1px;
  background: #ddd8cf;
  content: "";
}

.wedding-timeline li {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 66px;
  align-items: center;
  grid-template-columns: 53px 17px minmax(0, 1fr) auto;
  gap: 7px;
}

.wedding-timeline time {
  font-family: var(--serif);
  font-size: 13px;
}

.wedding-timeline i {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin-left: 3px;
  border: 2px solid var(--bordeaux);
  border-radius: 50%;
  background: white;
}

.wedding-timeline li.is-complete i {
  background: var(--bordeaux);
  box-shadow: 0 0 0 4px rgba(103, 44, 56, .08);
}

.wedding-timeline div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.wedding-timeline strong {
  overflow: hidden;
  font-size: 8px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wedding-timeline span {
  color: #9b968e;
  font-size: 6px;
}

.wedding-timeline em {
  padding: 4px 6px;
  border-radius: 20px;
  background: #f0ede6;
  color: #7d7870;
  font-size: 5px;
  font-style: normal;
}

.task-list {
  display: grid;
}

.task-item {
  display: grid;
  min-width: 0;
  min-height: 55px;
  align-items: center;
  border-top: 1px solid #ece8e1;
  cursor: pointer;
  grid-template-columns: 19px minmax(0, 1fr) auto;
  gap: 8px;
}

.task-item > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.task-item > span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #cfc9bf;
  border-radius: 50%;
}

.task-item > input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
}

.task-item > input:checked + span::after {
  color: white;
  font-size: 7px;
  content: "✓";
}

.task-item p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.task-item strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-item small,
.task-item em {
  color: #9c978f;
  font-size: 6px;
  font-style: normal;
}

.task-item.is-done strong {
  color: #9b968e;
  text-decoration: line-through;
}

.panel-quick-form {
  padding: 18px;
}

.panel-quick-form > div:first-child {
  margin-bottom: 12px;
}

.panel-quick-form p {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
}

.panel-quick-form span {
  color: #9a958d;
  font-size: 7px;
}

.panel-quick-form input {
  width: 100%;
  height: 39px;
  padding: 0 11px;
  border: 1px solid #ddd8cf;
  border-radius: 4px;
  outline: 0;
  background: #fbfaf7;
  font-size: 8px;
}

.panel-quick-form input:focus {
  border-color: var(--bordeaux);
}

.panel-quick-form-row {
  display: grid;
  margin-top: 8px;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.message-stats > article {
  display: grid;
  min-width: 0;
  min-height: 92px;
  align-items: center;
  padding: 15px;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
}

.message-stats i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #f2ece7;
  color: var(--bordeaux);
  font-size: 11px;
  font-style: normal;
}

.message-stats div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.message-stats strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.message-stats span {
  color: #969189;
  font-size: 6px;
}

.message-stats em {
  color: var(--forest);
  font-size: 7px;
  font-style: normal;
}

.panel-segmented {
  display: flex !important;
  padding: 3px;
  border-radius: 5px;
  background: #f0ede7;
  flex-direction: row !important;
  gap: 2px;
}

.panel-segmented button {
  min-height: 25px;
  padding: 0 9px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #8f8a82;
  font-size: 6px;
}

.panel-segmented button.is-active {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(35, 30, 24, .06);
}

.campaign-list {
  display: grid;
}

.campaign-list > article {
  display: grid;
  min-width: 0;
  min-height: 79px;
  align-items: center;
  border-top: 1px solid #ece8e1;
  grid-template-columns: 34px minmax(0, 1fr) auto 45px;
  gap: 11px;
}

.campaign-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  font-size: 9px;
}

.campaign-icon.is-sent { background: #e8f0eb; color: var(--forest); }
.campaign-icon.is-planned { background: #eeeadd; color: #85784d; }
.campaign-icon.is-draft { background: #f2e9e9; color: var(--bordeaux); }

.campaign-list > article > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.campaign-list strong {
  font-size: 8px;
  font-weight: 500;
}

.campaign-list p {
  overflow: hidden;
  margin: 1px 0;
  color: #817c74;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.campaign-list small {
  color: #9f9a92;
  font-size: 6px;
}

.campaign-list em {
  font-style: normal;
}

.campaign-list > article > button {
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--bordeaux);
  font-size: 6px;
}

.status-planned {
  background: #f2eedf;
  color: #7d7148;
}

.status-draft {
  background: #efede8;
  color: #777169;
}

.gift-summary {
  grid-template-columns: .7fr .7fr 1.6fr;
}

.gift-summary > article {
  display: flex;
  min-width: 0;
  min-height: 87px;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
}

.gift-summary span {
  color: #8e8981;
  font-size: 7px;
}

.gift-summary strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gift-summary small {
  color: #9e9991;
  font-size: 6px;
}

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

.gift-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
}

.gift-visual {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, .18), transparent 30%),
    var(--forest);
  color: white;
}

.gift-visual span {
  font-family: var(--serif);
  font-size: 33px;
}

.gift-visual em {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 7px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .16);
  font-size: 6px;
  font-style: normal;
}

.gift-visual-home {
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, .18), transparent 30%),
    var(--bordeaux);
}

.gift-visual-charity {
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, .18), transparent 30%),
    #8b7755;
}

.gift-card > div:nth-child(2) {
  min-height: 170px;
  padding: 16px;
}

.gift-card h3 {
  margin: 10px 0 7px;
  font-size: 17px;
  line-height: 1.15;
}

.gift-card p {
  min-height: 44px;
  margin-bottom: 13px;
  color: #858078;
  font-size: 7px;
}

.gift-card small {
  display: block;
  margin-top: 7px;
  color: #969189;
  font-size: 6px;
}

.gift-card > button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: #f1eee8;
  color: #77726a;
  font-size: 7px;
}

.moderation-summary {
  display: flex;
  margin-bottom: 12px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
  gap: 3px;
}

.moderation-summary button {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #827d75;
  font-size: 7px;
  gap: 7px;
}

.moderation-summary button.is-active {
  background: var(--forest);
  color: white;
}

.moderation-summary b {
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, .13);
  font-size: 6px;
}

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

.moderation-list > article {
  display: grid;
  min-width: 0;
  align-items: start;
  padding: 18px;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 13px;
}

.moderation-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #ece5db;
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: 11px;
}

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

.moderation-copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.moderation-copy strong {
  font-size: 8px;
  font-weight: 500;
}

.moderation-copy time,
.moderation-copy > span {
  color: #a09b93;
  font-size: 6px;
}

.moderation-copy p {
  margin: 7px 0;
  color: #6f6a63;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.55;
}

.moderation-actions {
  display: flex;
  gap: 6px;
}

.moderation-actions button {
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid #ddd8cf;
  border-radius: 4px;
  background: white;
  font-size: 6px;
}

.moderation-actions button.is-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.quiz-total-card > div {
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 10px;
  background: #e9e5de;
}

.quiz-total-card > div i {
  display: block;
  height: 100%;
  background: var(--bordeaux);
}

.quiz-summary-grid > article > strong {
  font-size: 20px;
}

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

.quiz-result-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e1ddd5;
  border-radius: 7px;
  background: white;
}

.quiz-bars {
  display: grid;
  gap: 14px;
}

.quiz-bars > div {
  display: grid;
  gap: 5px;
}

.quiz-bars p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  font-size: 7px;
}

.quiz-bars p strong {
  font-weight: 500;
}

.quiz-bars > div > i {
  height: 6px;
  overflow: hidden;
  border-radius: 10px;
  background: #ece8e1;
}

.quiz-bars > div > i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bordeaux), #a87377);
}

.quiz-answers-card {
  grid-column: 1 / -1;
}

.quiz-answers-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.quiz-answers-card li {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 10px;
  border: 1px solid #ece8e1;
  border-radius: 5px;
  background: #fbfaf7;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 9px;
}

.quiz-answers-card li p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.quiz-answers-card li strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quiz-answers-card li small {
  color: #9b968e;
  font-size: 6px;
}

.invitation-preview-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9d3ca;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(35, 30, 24, .08);
}

.invitation-browser-bar {
  display: flex;
  height: 35px;
  align-items: center;
  padding: 0 11px;
  border-bottom: 1px solid #ebe7e0;
  background: #f4f2ed;
  gap: 5px;
}

.invitation-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbc5ba;
}

.invitation-browser-bar span {
  overflow: hidden;
  margin-left: 8px;
  color: #99948c;
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invitation-miniature {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  background:
    radial-gradient(circle at center, rgba(205, 191, 157, .2), transparent 31%),
    #f7f2e9;
  text-align: center;
}

.invitation-miniature p {
  margin: 0 0 25px;
  color: var(--bordeaux);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.invitation-miniature h3 {
  margin: 0 0 17px;
  font-size: clamp(31px, 4vw, 46px);
}

.invitation-miniature h3 em {
  color: var(--bordeaux);
  font-size: .72em;
  font-weight: 400;
}

.invitation-miniature > span {
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .22em;
}

.invitation-miniature > small {
  margin-top: 7px;
  color: #827c72;
  font-size: 7px;
}

.invitation-miniature > a {
  margin-top: 29px;
  padding-bottom: 3px;
  border-bottom: 1px solid;
  font-size: 7px;
}

.invitation-publish-status {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}

.invitation-publish-status > span {
  display: grid;
  min-width: 0;
  grid-template-columns: 10px 1fr;
}

.invitation-publish-status i {
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
  background: #4a856a;
  box-shadow: 0 0 0 3px rgba(74, 133, 106, .13);
  grid-row: 1 / span 2;
}

.invitation-publish-status strong {
  font-size: 7px;
  font-weight: 500;
}

.invitation-publish-status small {
  color: #9c978f;
  font-size: 6px;
}

.invitation-publish-status button {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid #ddd8cf;
  border-radius: 4px;
  background: white;
  font-size: 6px;
}

.settings-list-card {
  overflow: hidden;
}

.settings-list-card > button {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 68px;
  align-items: center;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid #ece8e1;
  background: white;
  text-align: left;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 10px;
}

.settings-list-card > button:last-child {
  border-bottom: 0;
}

.settings-list-card > button:hover {
  background: #fbfaf7;
}

.settings-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #f0ebe4;
  color: var(--bordeaux);
  font-size: 9px;
}

.settings-list-card p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.settings-list-card strong {
  font-size: 7px;
  font-weight: 500;
}

.settings-list-card small,
.settings-list-card em {
  color: #9a958d;
  font-size: 6px;
  font-style: normal;
}

.settings-details-card {
  padding: 15px;
}

.settings-details-card > div:not(.settings-links) {
  display: grid;
  padding: 9px 0;
  border-bottom: 1px solid #ede9e2;
  grid-template-columns: 80px 1fr;
  gap: 10px;
}

.settings-details-card span {
  color: #99948c;
  font-size: 6px;
}

.settings-details-card strong {
  font-size: 7px;
  font-weight: 500;
}

.settings-links {
  display: flex;
  flex-wrap: wrap;
  padding-top: 12px;
  gap: 7px;
}

.settings-links a {
  padding: 6px 8px;
  border: 1px solid #ddd8cf;
  border-radius: 4px;
  color: var(--bordeaux);
  font-size: 6px;
}

.panel-domain-card {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  gap: 10px;
}

.panel-domain-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.panel-domain-card span {
  color: #99948c;
  font-size: 6px;
}

.panel-domain-card strong {
  overflow: hidden;
  font-size: 7px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-domain-card em {
  flex: 0 0 auto;
  font-style: normal;
}

.panel-reset-card {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
  border-color: rgba(103, 44, 56, .18);
  background: #faf5f3;
  gap: 13px;
}

.panel-reset-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.panel-reset-card strong {
  color: var(--bordeaux);
  font-size: 7px;
  font-weight: 500;
}

.panel-reset-card span {
  color: #948483;
  font-size: 6px;
}

.panel-reset-card button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(103, 44, 56, .3);
  border-radius: 4px;
  background: white;
  color: var(--bordeaux);
  font-size: 6px;
}

.panel-drawer-backdrop {
  position: fixed;
  z-index: 210;
  inset: 0;
  background: rgba(14, 20, 18, .55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.panel-drawer {
  position: fixed;
  z-index: 220;
  top: 0;
  right: 0;
  width: min(470px, 100vw);
  height: 100dvh;
  overflow-y: auto;
  background: #fbfaf7;
  box-shadow: -30px 0 70px rgba(20, 18, 15, .2);
  animation: panel-drawer-in .3s var(--ease) both;
}

@keyframes panel-drawer-in {
  from { opacity: 0; transform: translateX(35px); }
  to { opacity: 1; transform: none; }
}

.panel-drawer > header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  min-height: 85px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 23px;
  border-bottom: 1px solid #e5e1d9;
  background: rgba(251, 250, 247, .94);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.panel-drawer > header > div {
  display: flex;
  flex-direction: column;
}

.panel-drawer > header span {
  color: var(--bordeaux);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-drawer > header h2 {
  margin: 2px 0 0;
  font-size: 25px;
}

.panel-drawer > header button {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid #ddd8cf;
  border-radius: 50%;
  background: white;
  font-size: 18px;
}

.panel-drawer-demo-note {
  display: flex;
  align-items: center;
  margin: 18px 23px 0;
  padding: 10px 11px;
  border: 1px solid rgba(103, 44, 56, .13);
  border-radius: 5px;
  background: #f5ece9;
  gap: 9px;
}

.panel-drawer-demo-note span {
  padding: 3px 6px;
  border-radius: 15px;
  background: var(--bordeaux);
  color: white;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.panel-drawer-demo-note p {
  margin: 0;
  color: #7e6d6c;
  font-size: 7px;
}

.panel-drawer-form {
  display: grid;
  padding: 22px 23px 28px;
  gap: 15px;
}

.panel-field {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.panel-field > span,
.panel-check-group legend,
.panel-style-picker legend {
  color: #77726a;
  font-size: 7px;
  font-weight: 500;
}

.panel-field input,
.panel-field select,
.panel-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dcd7ce;
  border-radius: 5px;
  outline: 0;
  background: white;
  font-size: 9px;
}

.panel-field input,
.panel-field select {
  height: 43px;
  padding: 0 12px;
}

.panel-field textarea {
  min-height: 85px;
  padding: 11px 12px;
  line-height: 1.6;
  resize: vertical;
}

.panel-field input:focus,
.panel-field select:focus,
.panel-field textarea:focus {
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(103, 44, 56, .07);
}

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

.panel-check-group,
.panel-style-picker {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid #dfdad2;
  border-radius: 6px;
  background: white;
}

.panel-check-group legend,
.panel-style-picker legend {
  padding: 0 5px;
}

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

.panel-check-group label {
  display: flex;
  min-width: 0;
  align-items: center;
  color: #6f6a63;
  font-size: 7px;
  gap: 7px;
}

.panel-check-group input,
.panel-switch > input,
.panel-style-picker input {
  position: absolute;
  opacity: 0;
}

.panel-check-group label > span {
  display: grid;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #cec8bd;
  border-radius: 4px;
}

.panel-check-group input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
}

.panel-check-group input:checked + span::after {
  color: white;
  font-size: 7px;
  content: "✓";
}

.panel-switch {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 13px;
  border: 1px solid #dfdad2;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
}

.panel-switch > span {
  position: relative;
  display: block;
  width: 34px;
  height: 20px;
  border-radius: 20px;
  background: #cbc6bd;
  transition: background .2s;
}

.panel-switch > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
  content: "";
  transition: transform .2s;
}

.panel-switch > input:checked + span {
  background: var(--forest);
}

.panel-switch > input:checked + span::after {
  transform: translateX(14px);
}

.panel-switch p {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.panel-switch strong {
  font-size: 7px;
  font-weight: 500;
}

.panel-switch small {
  color: #969189;
  font-size: 6px;
}

.panel-style-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.panel-style-picker label {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 8px;
  border: 1px solid #e2ded6;
  border-radius: 5px;
  cursor: pointer;
  flex-direction: column;
  text-align: center;
}

.panel-style-picker label:has(input:checked) {
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 2px rgba(103, 44, 56, .07);
}

.style-swatch {
  display: block;
  width: 100%;
  height: 42px;
  margin-bottom: 7px;
  border-radius: 3px;
}

.style-swatch-couture { background: linear-gradient(135deg, #672c38 0 50%, #f2eadc 50%); }
.style-swatch-botanical { background: linear-gradient(135deg, #405b46 0 50%, #ded5c3 50%); }
.style-swatch-noir { background: linear-gradient(135deg, #171714 0 50%, #cdbf9d 50%); }

.panel-style-picker strong {
  font-size: 7px;
  font-weight: 500;
}

.panel-style-picker small {
  overflow: hidden;
  width: 100%;
  color: #98938b;
  font-size: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-send-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-radius: 5px;
  background: #f0ede7;
}

.panel-send-summary span {
  color: #77726a;
  font-size: 7px;
}

.panel-send-summary strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

.panel-send-summary small {
  color: #958f87;
  font-size: 6px;
}

.panel-form-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  margin: 5px -23px -28px;
  padding: 15px 23px;
  border-top: 1px solid #e2ded6;
  background: rgba(251, 250, 247, .95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  gap: 8px;
}

.panel-toast {
  position: fixed;
  z-index: 230;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  min-height: 64px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(24, 52, 46, .2);
  border-radius: 7px;
  background: #f8fbf7;
  box-shadow: 0 20px 50px rgba(20, 30, 26, .18);
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  gap: 9px;
}

.panel-toast > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 9px;
}

.panel-toast p {
  margin: 0;
  color: #51635b;
  font-size: 8px;
}

.panel-toast button {
  border: 0;
  background: transparent;
  color: #7b867f;
  font-size: 17px;
}

/* Dashboard legibility: microcopy remains editorial, never microscopic. */
.app-topbar > div > span,
.app-demo-ribbon p,
.panel-view-heading > div:first-child > span,
.dash-metric-head > span,
.dash-metric > small,
.card-title span,
.large-donut small,
.chart-legend b,
.chart-legend em,
.logistics-list small,
.panel-activity-list span,
.panel-mini-rows small,
.panel-mini-rows time,
.panel-progress-card li,
.guest-table-heading > div > span,
.table-footer,
.panel-module-metrics span,
.panel-module-metrics small,
.quiz-summary-grid > article > span,
.quiz-summary-grid > article > small,
.panel-module-card-head span,
.route-time span,
.route-path span,
.assignment-list small,
.lodging-card > p:not(.panel-inline-note),
.occupancy small,
.task-item small,
.task-item em,
.panel-quick-form span,
.message-stats span,
.message-stats em,
.campaign-list p,
.campaign-list small,
.gift-summary span,
.gift-summary small,
.gift-card p,
.gift-card small,
.moderation-copy time,
.moderation-copy > span,
.quiz-answers-card li small,
.invitation-browser-bar span,
.invitation-miniature > small,
.invitation-publish-status small,
.settings-list-card small,
.settings-list-card em,
.settings-details-card span,
.panel-domain-card span,
.panel-reset-card span {
  font-size: 8px;
}

.panel-button,
.panel-text-action,
.table-search input,
.filter-button,
.guest-name strong,
.panel-module-card-head > button,
.route-path strong,
.assignment-list strong,
.lodging-card li strong,
.wedding-timeline strong,
.task-item strong,
.campaign-list strong,
.moderation-copy strong,
.quiz-bars p,
.quiz-answers-card li strong,
.invitation-publish-status strong,
.settings-list-card strong,
.settings-details-card strong,
.panel-domain-card strong,
.panel-reset-card strong {
  font-size: 9px;
}

.panel-view-kicker,
.panel-card-badge,
.route-card > button,
.assignment-list button,
.panel-inline-note,
.wedding-timeline span,
.wedding-timeline em,
.panel-segmented button,
.campaign-list > article > button,
.moderation-actions button,
.settings-links a,
.panel-reset-card button {
  font-size: 7px;
}

@media (max-width: 1100px) {
  .app-frame {
    grid-template-columns: 218px minmax(0, 1fr);
  }

  .app-sidebar {
    padding-inline: 13px;
  }

  .app-content {
    padding: 22px;
  }

  .app-demo-ribbon,
  .app-topbar {
    padding-inline: 22px;
  }

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

  .dashboard-overview,
  .panel-overview-bottom,
  .panel-split-layout,
  .planning-layout,
  .invitation-settings-layout {
    grid-template-columns: 1fr;
  }

  .panel-activity-list,
  .quiz-answers-card ul {
    grid-template-columns: 1fr;
  }

  .panel-activity-card {
    grid-column: auto;
  }

  .panel-activity-list li {
    min-height: 58px;
  }

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

@media (max-width: 760px) {
  .panel-intro {
    padding: 128px 0 55px;
  }

  .panel-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .panel-intro h1 {
    font-size: clamp(43px, 13vw, 57px);
  }

  .panel-intro-copy {
    max-width: 560px;
  }

  .dashboard-section {
    padding-bottom: 80px;
    background: linear-gradient(to bottom, var(--paper) 0 70px, #d9d5cc 70px 100%);
  }

  .app-frame {
    display: block;
    min-height: 0;
    margin-inline: -12px;
    border-radius: 9px;
  }

  .app-sidebar {
    display: block;
    min-height: auto;
    padding: 14px;
  }

  .app-brand {
    padding: 0 1px 12px;
    border-bottom: 0;
  }

  .app-brand > span {
    flex-basis: 33px;
    width: 33px;
    height: 33px;
    font-size: 14px;
  }

  .app-brand strong {
    font-size: 13px;
  }

  .app-brand small {
    font-size: 6px;
  }

  .app-sidebar nav {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 1px 0 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
    gap: 5px;
  }

  .app-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .app-nav-group {
    display: contents;
  }

  .app-nav-group > p {
    display: none;
  }

  .app-sidebar nav button {
    min-height: 37px;
    flex: 0 0 auto;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    scroll-snap-align: start;
    grid-template-columns: 18px auto auto;
    gap: 4px;
  }

  .app-sidebar nav button:hover,
  .app-sidebar nav button.active,
  .app-sidebar nav button[aria-current="page"] {
    border-color: rgba(205, 191, 157, .45);
    box-shadow: none;
  }

  .app-sidebar nav button span {
    overflow: visible;
  }

  .app-sidebar nav i {
    font-size: 11px;
  }

  .app-sidebar nav b {
    min-width: 18px;
    height: 17px;
  }

  .app-sidebar-bottom {
    display: none;
  }

  .app-topbar {
    height: 61px;
    padding-inline: 15px;
  }

  .app-topbar p {
    font-size: 14px;
  }

  .app-demo-ribbon {
    padding: 9px 15px;
  }

  .app-demo-ribbon p {
    font-size: 7px;
  }

  .app-content {
    padding: 18px 14px 22px;
  }

  .panel-view-heading {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 14px;
  }

  .panel-view-heading h2 {
    font-size: 29px;
  }

  .panel-view-heading > div:first-child > span {
    font-size: 8px;
  }

  .panel-heading-actions {
    align-self: stretch;
  }

  .panel-heading-actions .panel-button {
    flex: 1;
  }

  .dashboard-metrics,
  .panel-module-metrics,
  .message-stats,
  .gift-summary,
  .quiz-summary-grid,
  .dashboard-overview,
  .panel-overview-bottom,
  .panel-split-layout,
  .lodging-grid,
  .planning-layout,
  .gift-grid,
  .quiz-results-grid,
  .invitation-settings-layout {
    grid-template-columns: 1fr;
  }

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

  .panel-module-metrics,
  .message-stats,
  .quiz-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gift-summary article:last-child {
    grid-column: 1 / -1;
  }

  .panel-module-metrics > article,
  .quiz-summary-grid > article {
    min-height: 88px;
    padding: 12px;
  }

  .panel-module-metrics strong {
    font-size: 22px;
  }

  .quiz-summary-grid > article > strong {
    font-size: 14px;
  }

  .response-chart {
    gap: 22px;
  }

  .panel-activity-list,
  .quiz-answers-card ul {
    grid-template-columns: 1fr;
  }

  .guest-table-heading {
    align-items: stretch;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .table-tools,
  .table-search {
    width: 100%;
  }

  .table-search {
    flex: 1;
  }

  .panel-module-card,
  .lodging-card,
  .quiz-result-card {
    padding: 15px;
  }

  .route-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .route-card > button {
    grid-column: 2;
    justify-self: start;
  }

  .campaign-list > article {
    padding-block: 10px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .campaign-list > article > button {
    grid-column: 2;
    justify-self: start;
  }

  .moderation-list > article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .moderation-actions {
    grid-column: 2;
  }

  .invitation-miniature {
    min-height: 285px;
  }

  .panel-next {
    padding-block: 75px;
  }

  .panel-next h2 {
    font-size: 39px;
  }
}

@media (max-width: 460px) {
  .dashboard-notice {
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    padding-inline: 12px;
  }

  .dashboard-notice strong {
    font-size: 13px;
  }

  .dashboard-notice small {
    font-size: 7px;
    line-height: 1.4;
  }

  .app-topbar {
    gap: 8px;
  }

  .live-pill,
  .app-topbar .app-export {
    display: none;
  }

  .app-demo-ribbon {
    align-items: flex-start;
  }

  .app-demo-ribbon > span {
    margin-top: 1px;
  }

  .app-content {
    padding-inline: 12px;
  }

  .panel-view-heading {
    overflow-wrap: anywhere;
  }

  .panel-heading-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-heading-actions > :only-child {
    grid-column: 1 / -1;
  }

  .panel-button {
    min-width: 0;
    padding-inline: 10px;
  }

  .dashboard-metrics {
    gap: 8px;
  }

  .dash-metric {
    min-height: 111px;
    padding: 13px;
  }

  .dash-metric > strong {
    font-size: 27px;
  }

  .dash-metric-logistics > div:last-child {
    grid-template-columns: auto 1fr;
  }

  .panel-module-metrics,
  .message-stats,
  .quiz-summary-grid {
    grid-template-columns: 1fr;
  }

  .panel-module-metrics > article,
  .quiz-summary-grid > article {
    min-height: 77px;
  }

  .message-stats > article {
    min-height: 75px;
  }

  .response-card,
  .logistics-card {
    padding: 15px;
  }

  .response-chart {
    justify-content: flex-start;
    gap: 18px;
  }

  .large-donut {
    flex: 0 0 118px;
    width: 118px;
    height: 118px;
  }

  .large-donut::before {
    width: 82px;
    height: 82px;
  }

  .chart-legend {
    min-width: 0;
  }

  .panel-mini-rows > div {
    grid-template-columns: 31px minmax(0, 1fr) auto;
  }

  .panel-mini-rows .status-pill {
    display: none;
  }

  .panel-activity-list strong,
  .panel-mini-rows strong {
    white-space: normal;
  }

  .filter-bar {
    padding-inline: 14px;
  }

  .route-card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .route-card > button {
    grid-column: auto;
  }

  .route-path strong,
  .route-path span {
    white-space: normal;
  }

  .lodging-card li {
    grid-template-columns: 50px minmax(0, 1fr) auto;
  }

  .wedding-timeline::before {
    left: 54px;
  }

  .wedding-timeline li {
    grid-template-columns: 41px 17px minmax(0, 1fr);
  }

  .wedding-timeline em {
    display: none;
  }

  .wedding-timeline strong {
    white-space: normal;
  }

  .panel-quick-form-row {
    grid-template-columns: 1fr;
  }

  .campaign-list > article {
    align-items: start;
    grid-template-columns: 31px minmax(0, 1fr);
  }

  .campaign-list > article > em,
  .campaign-list > article > button {
    grid-column: 2;
    justify-self: start;
  }

  .campaign-list p {
    white-space: normal;
  }

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

  .moderation-list > article {
    padding: 14px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .moderation-avatar {
    width: 34px;
    height: 34px;
  }

  .moderation-copy > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .moderation-actions {
    width: 100%;
  }

  .moderation-actions button {
    flex: 1;
  }

  .quiz-answers-card li strong {
    white-space: normal;
  }

  .invitation-publish-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .settings-details-card > div:not(.settings-links) {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .panel-domain-card,
  .panel-reset-card {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-domain-card em,
  .panel-reset-card button {
    align-self: flex-start;
  }

  .panel-drawer > header {
    min-height: 75px;
    padding-inline: 18px;
  }

  .panel-drawer-demo-note {
    margin-inline: 18px;
  }

  .panel-drawer-form {
    padding: 20px 18px 26px;
  }

  .panel-field-row,
  .panel-check-group,
  .panel-style-picker {
    grid-template-columns: 1fr;
  }

  .panel-style-picker label {
    display: grid;
    grid-template-columns: 55px 1fr;
    text-align: left;
  }

  .style-swatch {
    height: 38px;
    margin: 0;
    grid-row: 1 / span 2;
  }

  .panel-style-picker small {
    white-space: normal;
  }

  .panel-send-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-form-actions {
    margin: 5px -18px -26px;
    padding: 13px 18px;
  }

  .panel-form-actions .panel-button {
    flex: 1;
  }

  .panel-toast {
    right: 16px;
    bottom: 16px;
  }
}

/* SEO landing pages and conversion journey */
.phone-screen > picture,
.guest-phone-screen > picture,
.art-frame > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.plush-story-frame > picture {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(1.006);
  transition: transform 1.2s var(--ease);
}

.plush-story-frame > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.plush-story-frame:hover > picture { transform: scale(1.025); }

.suite-card-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 8px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-hero-actions {
  align-items: center;
  margin-top: 30px;
}

.feature-proof,
.panel-intro-proof {
  margin-top: 16px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-page-body { padding-top: 90px; }

.feature-overview {
  display: grid;
  margin-bottom: 90px;
  grid-template-columns: .3fr .7fr;
  gap: 80px;
}

.feature-overview h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.15;
}

.feature-outcomes,
.feature-steps,
.feature-faq { padding-top: 120px; }

.feature-section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 52px;
  grid-template-columns: .3fr .7fr;
  gap: 80px;
}

.feature-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
}

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

.feature-outcome-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.46);
}

.feature-outcome-card > span {
  color: var(--bordeaux);
  font-size: 8px;
  letter-spacing: .12em;
}

.feature-outcome-card h3 {
  margin: 62px 0 16px;
  font-size: 27px;
}

.feature-outcome-card p { color: var(--muted); line-height: 1.7; }

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

.feature-steps li {
  display: grid;
  min-height: 105px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
}

.feature-steps li span { color: var(--bordeaux); font-size: 8px; letter-spacing: .13em; }
.feature-steps li p { margin: 0; font-family: var(--serif); font-size: 28px; }
.editorial-cta > div:first-child > p:last-child { max-width: 610px; color: rgba(255,255,255,.64); line-height: 1.7; }
.feature-faq .faq-list { max-width: 920px; margin-left: auto; }

.feature-final-cta {
  display: grid;
  align-items: end;
  margin-top: 120px;
  padding: 65px;
  border: 1px solid var(--line);
  background: #eee8dd;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
}

.feature-final-cta h2 { max-width: 650px; margin: 0; font-size: clamp(36px, 4vw, 58px); }
.feature-final-cta > div:last-child p { margin-bottom: 28px; color: var(--muted); line-height: 1.75; }

.panel-intro-actions { align-items: center; margin-top: 25px; }
.panel-next-inner > div > span { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; }

.demo-conversion {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  max-width: 410px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(25, 35, 31, .97);
  box-shadow: 0 22px 60px rgba(17,24,21,.26);
  color: #fff;
  grid-template-columns: 32px minmax(0,1fr) auto;
  gap: 12px;
}

.demo-conversion[hidden] { display: none; }
.demo-conversion-mark { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.demo-conversion div { display: grid; gap: 3px; }
.demo-conversion small { color: rgba(255,255,255,.54); font-size: 7px; letter-spacing: .07em; text-transform: uppercase; }
.demo-conversion strong { font-family: var(--serif); font-size: 16px; font-weight: 400; }
.demo-conversion > a { border-bottom: 1px solid rgba(255,255,255,.4); color: white; font-size: 8px; white-space: nowrap; }
.demo-conversion-close { position: absolute; top: 3px; right: 5px; padding: 4px; border: 0; background: transparent; color: rgba(255,255,255,.55); cursor: pointer; }

@media (max-width: 760px) {
  .plush-story-frame > picture > img { object-position: 63% center; }
  .feature-overview,
  .feature-section-heading,
  .feature-final-cta { grid-template-columns: 1fr; gap: 28px; }
  .feature-outcome-grid { grid-template-columns: 1fr; }
  .feature-outcome-card { min-height: 210px; }
  .feature-outcome-card h3 { margin-top: 35px; }
  .feature-outcomes,
  .feature-steps,
  .feature-faq { padding-top: 85px; }
  .feature-steps li { grid-template-columns: 55px 1fr; }
  .feature-steps li p { font-size: 22px; }
  .feature-final-cta { margin-top: 85px; padding: 38px 26px; }
  .demo-conversion { right: 12px; bottom: 12px; left: 12px; max-width: none; grid-template-columns: 30px minmax(0,1fr); }
  .demo-conversion > a { grid-column: 2; width: max-content; }
}

/* Production-scale dashboard typography and dynamic demo states. */
.app-brand small,
.app-profile strong,
.app-profile small,
.app-topbar > div > span,
.app-demo-ribbon p,
.panel-view-heading > div:first-child > span,
.dash-metric-head > span,
.dash-metric > small,
.card-title span,
.large-donut small,
.chart-legend b,
.chart-legend em,
.logistics-list small,
.panel-activity-list span,
.panel-mini-rows small,
.panel-mini-rows time,
.panel-progress-card li,
.guest-table-heading > div > span,
.table-footer,
.panel-module-metrics span,
.panel-module-metrics small,
.quiz-summary-grid > article > span,
.quiz-summary-grid > article > small,
.panel-module-card-head span,
.route-time span,
.route-path span,
.assignment-list small,
.lodging-card > p:not(.panel-inline-note),
.occupancy small,
.task-item small,
.task-item em,
.panel-quick-form span,
.message-stats span,
.message-stats em,
.campaign-list p,
.campaign-list small,
.gift-summary span,
.gift-summary small,
.gift-card p,
.gift-card small,
.moderation-copy time,
.moderation-copy > span,
.quiz-answers-card li small,
.invitation-browser-bar span,
.invitation-miniature > small,
.invitation-publish-status small,
.settings-list-card small,
.settings-list-card em,
.settings-details-card span,
.panel-domain-card span,
.panel-reset-card span,
.panel-field > span,
.panel-check-group legend,
.panel-style-picker legend,
.panel-style-picker small,
.panel-send-summary span,
.panel-send-summary small,
.panel-toast p {
  font-size: 11px;
}

.app-nav-group > p,
.app-sidebar nav b,
.live-pill,
.app-demo-ribbon > span,
.panel-view-kicker,
.panel-card-badge,
.route-card > button,
.assignment-list button,
.panel-inline-note,
.wedding-timeline span,
.wedding-timeline em,
.panel-segmented button,
.campaign-list > article > button,
.moderation-actions button,
.settings-links a,
.panel-reset-card button {
  font-size: 10px !important;
}

.app-sidebar nav button,
.app-sidebar-bottom > a,
.panel-button,
.panel-text-action,
.table-search input,
.filter-button,
.guest-name strong,
.panel-module-card-head > button,
.route-path strong,
.assignment-list strong,
.lodging-card li strong,
.wedding-timeline strong,
.task-item strong,
.campaign-list strong,
.moderation-copy strong,
.quiz-bars p,
.quiz-answers-card li strong,
.invitation-publish-status strong,
.settings-list-card strong,
.settings-details-card strong,
.panel-domain-card strong,
.panel-reset-card strong,
.panel-field input,
.panel-field select,
.panel-field textarea,
.panel-quick-form input,
.panel-send-summary {
  font-size: 12px;
}

.panel-button,
.app-export,
.filter-button,
.route-card > button,
.assignment-list button,
.campaign-list > article > button,
.moderation-actions button,
.panel-reset-card button {
  min-height: 42px;
}

.panel-action-select,
.panel-status-select {
  min-width: 120px;
  min-height: 36px;
  padding: 0 28px 0 10px;
  border: 1px solid #d9d4ca;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font: 500 11px/1 var(--sans);
}

.guest-table th,
.guest-table td,
.guest-name small,
.status-pill,
.table-tag,
.table-empty {
  font-size: 11px;
}

.guest-table button.table-tag {
  min-height: 34px;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}

.panel-style-picker label:has(input:disabled) {
  cursor: not-allowed;
  opacity: .5;
}

.route-card > .status-pill {
  justify-self: end;
}

.panel-empty-state {
  padding: 30px 18px;
  border: 1px dashed #d7d1c6;
  border-radius: 7px;
  color: #777168;
  background: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.panel-view button:disabled,
.panel-view input:disabled,
.panel-drawer button:disabled {
  cursor: wait;
  opacity: .58;
}

body.panel-drawer-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .app-brand > div {
    display: grid;
    gap: 2px;
  }

  .app-brand small {
    display: block;
  }

  .app-sidebar nav button span {
    display: block;
  }

  .app-sidebar nav button b {
    display: inline-flex;
  }

  .app-sidebar nav button {
    width: auto;
    min-width: max-content;
    min-height: 44px;
    place-items: center start;
    text-align: left;
    font-size: 12px;
  }

  .app-brand small,
  .app-demo-ribbon p,
  .panel-view-heading > div:first-child > span,
  .dashboard-notice small {
    font-size: 11px;
  }

  .route-card > .status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .panel-field input,
  .panel-field select,
  .panel-field textarea,
  .panel-quick-form input {
    min-height: 46px;
    font-size: 16px;
  }
}

@media (max-width: 460px) {
  .route-card > .status-pill {
    grid-column: auto;
  }
}

/* Public-site legibility: premium typography without micro-copy. */
:root {
  --muted: #5f5b53;
}

body {
  font-size: 17px;
  font-weight: 350;
  text-rendering: optimizeLegibility;
}

.wordmark small {
  color: #5c5851;
  font-size: 11px;
  font-weight: 650;
}

.site-nav > a,
.button,
.text-link {
  font-size: 12px;
  font-weight: 650;
}

.eyebrow {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.hero-proof,
.feature-proof,
.panel-intro-proof,
.panel-next-inner > div > span {
  color: #5d5951;
  font-size: 12px;
  line-height: 1.55;
}

.suite-card-link,
.feature-outcome-card > span,
.feature-steps li span {
  font-size: 12px;
  font-weight: 650;
}

.footer-intro > p {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.75;
}

.footer-column > a {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.55;
}

.wordmark-footer small {
  color: #ddd0aa;
}

.demo-conversion small {
  color: rgba(255,255,255,.76);
  font-size: 11px;
}

.demo-conversion > a {
  font-size: 12px;
  font-weight: 600;
}

.booking-form-head small,
.pipeline-strip p,
.lead-crm-card header a,
.lead-crm-card time,
.lead-crm-card dt,
.lead-crm-form label > span,
.offer-package-label small,
.offer-package-fit small {
  color: #5f5a53;
  font-size: 12px;
  line-height: 1.5;
}

.lead-crm-card dd,
.lead-message,
.lead-crm-form select,
.lead-crm-form textarea,
.lead-delete,
.lead-delete button {
  font-size: 13px;
  line-height: 1.55;
}

.lead-status {
  color: #3f3b36;
  font-size: 11px;
  font-weight: 650;
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-nav > a { font-size: 13px; }
  .button,
  .text-link { font-size: 12px; }
  input,
  select,
  textarea { font-size: 16px; }
}

/* Application-wide public UI scale: marketing, forms and product previews. */
.site-footer .footer-label,
.site-footer .footer-bottom,
.site-footer .footer-contact > p:last-child {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer .footer-label {
  color: #ded1ad;
  font-weight: 700;
}

.field > span,
.field > span small,
.consent,
.form-status,
.booking-copy li p,
.booking-copy li strong,
.booking-copy .booking-note,
.booking-form-head small {
  color: #514d47;
  font-size: 13px;
  line-height: 1.55;
}

.field > span {
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  color: #26231f;
  font-size: 17px;
}

.ledger-number,
.privacy-summary span,
.feature-outcome-card > span,
.feature-steps li span {
  font-size: 12px;
  font-weight: 700;
}

.hero-product :where(small, span),
.platform-suite-grid :where(small, span, em, time),
.product-switcher :where(small, span, time),
.guest-phone-caption :where(span, button) {
  font-size: 11px;
  line-height: 1.4;
}

.hero-product :where(small),
.platform-suite-grid :where(small, em),
.product-switcher :where(small) {
  color: #625d56;
}

.suite-card-link,
.product-tabs button,
.guest-phone-caption button {
  font-size: 12px;
}

.wordmark small,
.wordmark-footer small {
  font-size: 12px;
}

.site-nav .nav-cta {
  font-size: 12px !important;
}

.hero-product small,
.hero-product span {
  font-size: 10px !important;
}

.platform-suite-grid small,
.platform-suite-grid span,
.platform-suite-grid em,
.platform-suite-grid time,
.product-switcher small,
.product-switcher span,
.product-switcher time,
.plush-story-frame small,
.plush-story-frame span {
  font-size: 11px !important;
}

.pilot-label,
.signal-strip p,
.legal-summary span,
.legal-toc a,
.legal-note {
  color: #5c554e;
  font-size: 12px;
  line-height: 1.55;
}

.feature-faq p,
.trust-grid p,
.offer-package > p,
.offer-package-fit p,
.offer-transparency p {
  color: #565149;
  font-size: 13px;
  line-height: 1.65;
}

.feature-faq .faq-answer p,
.faq-page .faq-answer p {
  color: #565149;
  font-size: 13px;
  line-height: 1.65;
}

.legal-index span,
.legal-index a,
.legal-note {
  color: #565149;
  font-size: 12px;
  line-height: 1.55;
}

/* Text inside miniature product previews remains compact, but is no longer microscopic. */
.hero-product small,
.hero-product span,
.hero-product i,
.hero-product b,
.hero-product p,
.hero-product time,
.hero-product em,
.suite-budget-visual small,
.suite-budget-visual span,
.suite-budget-visual i,
.suite-budget-visual b,
.suite-budget-visual em,
.suite-vendor-list small,
.suite-vendor-list span,
.suite-vendor-list i,
.suite-vendor-list b,
.suite-vendor-list em,
.suite-table-visual small,
.suite-table-visual span,
.suite-table-visual i,
.suite-table-visual b,
.suite-timeline-mini small,
.suite-timeline-mini span,
.suite-timeline-mini i,
.suite-timeline-mini b,
.suite-timeline-mini time,
.suite-guest-pulse small,
.suite-guest-pulse span,
.suite-guest-pulse i,
.suite-guest-pulse b,
.guest-phone-screen small,
.guest-phone-screen span,
.guest-phone-screen i,
.guest-phone-screen b,
.guest-phone-screen time,
.guest-phone-screen p {
  font-size: 10px !important;
  line-height: 1.35;
}

.floating-note strong,
.signal-grid p,
.suite-avatars b,
.platform-suite-cta p span,
.section-kicker p,
.value-index,
.value-visual small,
.value-visual span,
.value-visual b,
.value-visual p,
.art-caption,
.palette-card small,
.palette-card span,
.bespoke-points span,
.bespoke-points small,
.journey-steps span,
.journey-steps small,
.journey-steps p {
  font-size: 11px !important;
  line-height: 1.4;
}

.signal-grid > div > span,
.platform-suite-cta > p,
.section-kicker > span {
  font-size: 11px !important;
  line-height: 1.4;
}

/* Simplified conversion-first homepage. */
.simple-home-hero {
  min-height: 820px;
  padding: 170px 0 105px;
  background:
    radial-gradient(circle at 82% 20%, rgba(205,191,157,.22), transparent 30%),
    var(--paper);
}

.simple-home-hero-grid {
  display: grid;
  min-height: 545px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr);
  gap: clamp(60px, 8vw, 130px);
}

.simple-home-copy {
  max-width: 760px;
}

.simple-home-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 88px);
}

.simple-home-lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: #555149;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}

.simple-home-actions {
  margin-top: 37px;
}

.simple-home-proof {
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  color: #5e5951;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  list-style: none;
  gap: 10px 22px;
}

.simple-home-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.simple-home-proof li::before {
  color: var(--olive);
  content: "✓";
}

.simple-home-visual {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  background: #ddd4c4;
  box-shadow: 0 32px 85px rgba(40,33,26,.18);
}

.simple-home-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(18,22,19,.48));
  content: "";
  pointer-events: none;
}

.simple-home-visual picture,
.simple-home-visual img {
  width: 100%;
  height: 100%;
}

.simple-home-visual picture {
  position: absolute;
  inset: 0;
}

.simple-home-visual img {
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}

.simple-home-visual:hover img {
  transform: scale(1.025);
}

.simple-home-visual-label,
.simple-home-visual-link {
  position: absolute;
  z-index: 1;
  right: 27px;
  left: 27px;
  color: #fff;
}

.simple-home-visual-label {
  bottom: 67px;
  display: grid;
}

.simple-home-visual-label small {
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.simple-home-visual-label strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.simple-home-visual-link {
  bottom: 26px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 600;
}

.simple-home-product,
.simple-home-offer {
  padding: 135px 0;
}

.simple-home-product {
  background: var(--porcelain);
}

.simple-home-heading {
  display: grid;
  max-width: 1080px;
  margin-bottom: 65px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 70px;
}

.simple-home-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -40px;
}

.simple-home-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 66px);
}

.simple-home-heading > p:last-child {
  align-self: end;
  margin: 0;
  color: #5b574f;
  font-size: 16px;
  line-height: 1.75;
}

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

.simple-home-product-card {
  display: grid;
  min-height: 520px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--line);
  background: var(--white);
  grid-template-columns: 48px minmax(0,1fr);
  gap: 26px;
}

.simple-home-product-card-couple {
  border-color: transparent;
  background: var(--forest);
  color: #fff;
}

.simple-home-card-number {
  padding-top: 6px;
  color: var(--bordeaux);
  font-size: 12px;
  font-weight: 700;
}

.simple-home-product-card-couple .simple-home-card-number,
.simple-home-product-card-couple .eyebrow {
  color: var(--champagne);
}

.simple-home-product-card h3 {
  max-width: 470px;
  margin: 0 0 22px;
  font-size: clamp(31px, 3vw, 43px);
}

.simple-home-product-card > div:last-child > p:not(.eyebrow) {
  max-width: 520px;
  color: #5c574f;
  font-size: 16px;
  line-height: 1.75;
}

.simple-home-product-card-couple > div:last-child > p:not(.eyebrow) {
  color: rgba(255,255,255,.76);
}

.simple-home-product-card ul {
  display: grid;
  margin: 35px 0 45px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.simple-home-product-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #47433e;
  font-size: 14px;
}

.simple-home-product-card li::before {
  margin-right: 10px;
  color: var(--bordeaux);
  content: "✓";
}

.simple-home-product-card-couple ul,
.simple-home-product-card-couple li {
  border-color: rgba(255,255,255,.15);
}

.simple-home-product-card-couple li {
  color: rgba(255,255,255,.84);
}

.simple-home-product-card-couple li::before {
  color: var(--champagne);
}

.simple-home-product-card .text-link {
  margin-top: auto;
}

.simple-home-product-card-couple .text-link {
  color: #fff;
}

.simple-home-process {
  padding: 135px 0;
  background: #14221e;
  color: #fff;
}

.simple-home-heading-light {
  display: block;
  margin-bottom: 65px;
}

.simple-home-heading-light .eyebrow {
  margin-bottom: 22px;
}

.simple-home-heading-light h2 {
  max-width: 780px;
}

.simple-home-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.17);
  grid-template-columns: repeat(3, minmax(0,1fr));
  list-style: none;
}

.simple-home-steps li {
  min-height: 285px;
  padding: 31px 38px 30px 0;
  border-right: 1px solid rgba(255,255,255,.17);
}

.simple-home-steps li + li {
  padding-left: 38px;
}

.simple-home-steps li:last-child {
  border-right: 0;
}

.simple-home-steps > li > span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
}

.simple-home-steps h3 {
  max-width: 330px;
  margin: 70px 0 17px;
  font-size: 27px;
}

.simple-home-steps p {
  max-width: 345px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}

.simple-home-offer {
  background: #ece6db;
}

.simple-home-offer-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(60px, 9vw, 145px);
}

.simple-home-offer h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 67px);
}

.simple-home-offer-grid > div:last-child > p {
  margin-bottom: 31px;
  color: #555149;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .simple-home-hero-grid {
    grid-template-columns: 1fr minmax(330px, .8fr);
    gap: 45px;
  }

  .simple-home-heading,
  .simple-home-offer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .simple-home-heading .eyebrow {
    margin-bottom: -8px;
  }

  .simple-home-product-card {
    padding: 34px;
    grid-template-columns: 36px minmax(0,1fr);
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .simple-home-hero {
    min-height: 0;
    padding: 130px 0 72px;
  }

  .simple-home-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .simple-home-copy h1 {
    font-size: clamp(48px, 14vw, 65px);
  }

  .simple-home-lead {
    margin-top: 25px;
    font-size: 17px;
  }

  .simple-home-actions {
    display: grid;
    align-items: stretch;
    gap: 18px;
  }

  .simple-home-actions .button,
  .simple-home-actions .text-link {
    width: 100%;
  }

  .simple-home-visual {
    min-height: 440px;
  }

  .simple-home-product,
  .simple-home-process,
  .simple-home-offer {
    padding: 88px 0;
  }

  .simple-home-heading {
    display: block;
    margin-bottom: 42px;
  }

  .simple-home-heading .eyebrow {
    margin-bottom: 18px;
  }

  .simple-home-heading h2,
  .simple-home-offer h2 {
    font-size: 42px;
  }

  .simple-home-heading > p:last-child {
    margin-top: 23px;
  }

  .simple-home-product-grid,
  .simple-home-steps {
    grid-template-columns: 1fr;
  }

  .simple-home-product-card {
    min-height: 0;
    padding: 30px 24px 36px;
    grid-template-columns: 1fr;
  }

  .simple-home-product-card h3 {
    font-size: 34px;
  }

  .simple-home-steps li,
  .simple-home-steps li + li {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.17);
  }

  .simple-home-steps li:last-child {
    border-bottom: 0;
  }

  .simple-home-steps h3 {
    margin-top: 32px;
  }

  .simple-home-offer-grid {
    gap: 34px;
  }

  .simple-home-offer .button-row {
    display: grid;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-label,
  .site-footer .footer-bottom,
  .site-footer .footer-contact > p:last-child { font-size: 12px; }
  .field > span,
  .field > span small,
  .consent,
  .form-status { font-size: 13px; }
}

/* Conversion continuity: pricing, product proof and flexible booking. */
.simple-home-ui-proof {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  width: min(250px, calc(100% - 48px));
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(18,34,30,.88);
  box-shadow: 0 16px 45px rgba(18,22,19,.22);
  color: #fff;
  gap: 8px;
}

.simple-home-ui-proof small {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.simple-home-ui-proof > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.simple-home-ui-proof b {
  margin-right: 7px;
  color: #fff;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.offer-package {
  min-height: 690px;
}

.offer-package > .offer-package-price {
  display: grid;
  min-height: 0;
  margin: 4px 0 25px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  gap: 4px;
}

.offer-package-price strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.offer-package-price span {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .simple-home-ui-proof {
    top: 16px;
    left: 16px;
    width: min(230px, calc(100% - 32px));
    padding: 14px 15px;
  }

  .offer-package {
    min-height: 0;
  }

  .offer-package-price strong {
    font-size: 27px;
  }
}

/* Product evidence used on SEO and feature pages. */
.feature-product-window {
  display: grid;
  max-width: 1180px;
  min-height: 520px;
  margin: 0 auto 110px;
  overflow: hidden;
  border: 1px solid #d8d3c9;
  background: #f8f6f1;
  box-shadow: 0 30px 90px rgba(40,33,26,.13);
  grid-template-columns: 230px minmax(0,1fr);
}

.feature-product-window > aside {
  display: flex;
  padding: 31px 22px;
  background: var(--forest);
  color: rgba(255,255,255,.66);
  flex-direction: column;
  gap: 6px;
}

.feature-window-brand {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
  color: #fff;
  gap: 11px;
}

.feature-window-brand > span {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid var(--champagne);
  font-family: var(--serif);
  font-size: 14px;
}

.feature-window-brand strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.feature-product-window > aside > small {
  margin: 0 10px 8px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-product-window > aside > span {
  min-height: 43px;
  padding: 12px 13px;
  border-radius: 5px;
  font-size: 13px;
}

.feature-product-window > aside > span.is-active {
  background: rgba(255,255,255,.11);
  color: #fff;
}

.feature-window-main {
  min-width: 0;
}

.feature-window-main > header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.84);
}

.feature-window-main > header > div {
  display: grid;
}

.feature-window-main > header small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.feature-window-main > header strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.feature-window-main > header > span {
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
}

.feature-window-main > header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a856a;
  box-shadow: 0 0 0 3px rgba(74,133,106,.13);
}

.feature-window-content {
  padding: clamp(30px, 5vw, 58px);
}

.feature-window-content h2 {
  max-width: 730px;
  margin: 13px 0 36px;
  font-size: clamp(34px, 4vw, 51px);
}

.feature-window-cards {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.feature-window-cards article {
  display: grid;
  min-height: 150px;
  padding: 21px;
  border: 1px solid var(--line);
  background: #fff;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.feature-window-cards article > span {
  color: var(--bordeaux);
  font-size: 11px;
  font-weight: 700;
}

.feature-window-cards p {
  align-self: end;
  margin: 0;
  color: #4d4942;
  font-size: 14px;
  line-height: 1.45;
  grid-column: 1 / -1;
}

.feature-window-cards i {
  color: #47745e;
  font-style: normal;
}

@media (max-width: 900px) {
  .feature-product-window {
    grid-template-columns: 170px minmax(0,1fr);
  }

  .feature-window-cards {
    grid-template-columns: 1fr;
  }

  .feature-window-cards article {
    min-height: 100px;
  }
}

@media (max-width: 650px) {
  .feature-product-window {
    min-height: 0;
    margin-bottom: 72px;
    grid-template-columns: 1fr;
  }

  .feature-product-window > aside {
    display: none;
  }

  .feature-window-main > header {
    min-height: 70px;
    padding: 0 18px;
  }

  .feature-window-main > header strong {
    font-size: 18px;
  }

  .feature-window-main > header > span {
    font-size: 10px;
  }

  .feature-window-content {
    padding: 27px 20px 34px;
  }

  .feature-window-content h2 {
    font-size: 34px;
  }
}

/* Slightly larger public typography and a more explicit pricing system. */
body {
  font-size: 18px;
}

.site-nav > a,
.button,
.text-link {
  font-size: 13px;
}

.simple-home-lead {
  font-size: clamp(18px, 1.4vw, 21px);
}

.simple-home-heading > p:last-child,
.simple-hero-inner > p:not(.eyebrow),
.section-heading-split > p,
.editorial-lead > p,
.booking-copy > p:not(.eyebrow):not(.booking-note),
.feature-final-cta p {
  font-size: 18px;
}

.simple-home-product-card > div:last-child > p:not(.eyebrow),
.simple-home-offer-grid > div:last-child > p {
  font-size: 17px;
}

.offer-package {
  min-height: 760px;
}

.offer-package > p:not(.offer-package-price),
.offer-package-fit p,
.trust-grid p,
.offer-transparency p,
.feature-faq .faq-answer p,
.faq-page .faq-answer p {
  font-size: 15px;
}

.offer-package li {
  font-size: 14px;
  line-height: 1.5;
}

.offer-package-price span {
  font-size: 13px;
}

.offer-package-price em {
  margin-top: 10px;
  color: #4f4a43;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.offer-price-rules {
  display: grid;
  margin: 0 0 38px;
  padding: 0;
  border: 1px solid var(--line);
  background: #f7f4ee;
  grid-template-columns: repeat(3, minmax(0,1fr));
  list-style: none;
}

.offer-price-rules li {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 22px 27px;
  border-right: 1px solid var(--line);
  gap: 7px;
}

.offer-price-rules li:last-child {
  border-right: 0;
}

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

.offer-price-rules span {
  color: #59544d;
  font-size: 14px;
  line-height: 1.5;
}

.field > span,
.field > span small,
.consent,
.form-status,
.booking-copy li p,
.booking-copy li strong,
.booking-copy .booking-note,
.booking-form-head small {
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  font-size: 18px;
}

.site-footer .footer-label,
.site-footer .footer-bottom,
.site-footer .footer-contact > p:last-child {
  font-size: 13px;
}

@media (max-width: 760px) {
  body {
    font-size: 18px;
  }

  .simple-home-lead,
  .simple-hero-inner > p:not(.eyebrow),
  .section-heading-split > p,
  .editorial-lead > p,
  .booking-copy > p:not(.eyebrow):not(.booking-note) {
    font-size: 18px;
  }

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

  .offer-price-rules li {
    min-height: 0;
    padding: 19px 21px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-price-rules li:last-child {
    border-bottom: 0;
  }

  .offer-package {
    min-height: 0;
  }
}
