:root {
  --cream: #fffaf5;
  --cream-deep: #fff2e7;
  --blush: #f4d5c9;
  --peach: #e8b499;
  --apricot: #d97d60;
  --butter: #f0dcaa;
  --sage: #dbe7d8;
  --mist: #d5e0ef;
  --ink: #37465a;
  --ink-soft: #667589;
  --ink-strong: #243144;
  --paper: rgba(255, 255, 255, 0.9);
  --line: rgba(86, 103, 126, 0.12);
  --shadow: rgba(96, 73, 52, 0.12);
  --shadow-strong: rgba(96, 73, 52, 0.18);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --suite-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(244, 213, 201, 0.8), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(240, 220, 170, 0.55), transparent 18%),
    radial-gradient(circle at 80% 74%, rgba(213, 224, 239, 0.45), transparent 20%),
    linear-gradient(180deg, #fffefb 0%, #fff7ef 45%, #fff2e5 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 96%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 56px;
}

.site-header,
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  align-items: flex-start;
  margin-bottom: 36px;
}

.site-footer {
  align-items: center;
  margin-top: 30px;
  padding: 6px 4px;
}

.header-copy {
  max-width: 560px;
}

.header-note {
  margin: 8px 0 0;
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.header-socials,
.closing-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.header-socials {
  margin-top: 14px;
}

.header-socials a,
.closing-socials a {
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(86, 103, 126, 0.2);
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 0.95;
}

.wordmark-small {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark-large {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 5vw, 4.45rem);
  font-weight: 700;
  color: var(--ink-strong);
}

.eyebrow,
.section-label,
.suite-label,
.suite-step-label,
.site-footer p:first-child {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.hero,
.contact-panel {
  display: grid;
  gap: 28px;
}

.hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.8fr);
  align-items: start;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: start;
  margin-top: 26px;
}

.hero-copy,
.card,
.launch-card,
.closing-copy,
.suite-story-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 243, 0.88));
  box-shadow:
    0 28px 76px -38px var(--shadow-strong),
    0 18px 42px -30px rgba(255, 255, 255, 0.95) inset;
}

.hero-copy::before,
.card::before,
.launch-card::before,
.closing-copy::before,
.suite-story-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(244, 213, 201, 0.28), transparent 26%),
    radial-gradient(circle at bottom left, rgba(213, 224, 239, 0.2), transparent 26%);
}

.hero-copy,
.card,
.launch-card,
.closing-copy {
  padding: 32px;
}

.card,
.launch-card,
.closing-copy {
  display: grid;
  gap: 18px;
}

.hero-aside {
  min-height: 100%;
}

.hero-chips,
.finish-chips,
.vibe-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chips {
  margin: 14px 0 14px;
}

.hero-chips span,
.finish-chips span,
.vibe-row span,
.consult-note span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(86, 103, 126, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.info-points,
.collection-notes,
.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.info-point,
.collection-note,
.process-step,
.signature-list > div,
.paper-group {
  padding: 17px 19px;
  border: 1px solid rgba(86, 103, 126, 0.11);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.88));
  box-shadow: 0 20px 36px -30px rgba(96, 73, 52, 0.18);
}

.info-point strong,
.collection-note strong,
.process-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-size: 0.98rem;
  line-height: 1.35;
}

.info-point span,
.collection-note span,
.process-step span {
  display: block;
  color: #5a687b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero h1,
.card h2,
.launch-card h3,
.closing-copy h2,
.suite-story-copy h2,
.suite-step h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 16px;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink-strong);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 4.6vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.card h2,
.closing-copy h2,
.suite-story-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 3.25vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.launch-card h3,
.suite-step h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.02;
}

.signature-list h3,
.paper-group-label {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.card p,
.launch-card p,
.closing-copy p,
.suite-story-copy p,
.suite-step p,
.site-footer p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 40rem;
}

.hero-text-soft {
  margin-top: 14px;
}

.hero-actions,
.closing-actions,
.form-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 30px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

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

.button-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #df8062, #cc6f53);
  box-shadow: 0 18px 34px -20px rgba(207, 109, 82, 0.9);
}

.button-secondary,
.button-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(86, 103, 126, 0.1);
}

.button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.hero-list,
.expectation-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.expectation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.58;
}

.hero-list li {
  font-weight: 700;
  color: var(--ink-strong);
}

.hero-list li::before,
.expectation-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--apricot), var(--peach));
  box-shadow: 0 0 0 5px rgba(244, 213, 201, 0.28);
}

.suite-story {
  position: relative;
  min-height: 208vh;
  margin: 44px 0 40px;
}

.suite-story-shell {
  position: sticky;
  top: 24px;
  display: grid;
  grid-template-columns: minmax(320px, 0.43fr) minmax(420px, 0.57fr);
  gap: 38px;
  min-height: calc(100vh - 48px);
  align-items: center;
}

.suite-story-copy {
  display: grid;
  gap: 20px;
  align-self: stretch;
  padding: 24px 0;
}

.suite-progress {
  display: flex;
  gap: 10px;
  align-items: center;
}

.suite-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(86, 103, 126, 0.18);
  box-shadow: inset 0 0 0 1px rgba(86, 103, 126, 0.06);
  transition: width 320ms ease, transform 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.suite-progress-dot.is-active {
  width: 34px;
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(217, 125, 96, 0.94), rgba(232, 180, 153, 0.96));
  box-shadow: 0 10px 20px -14px rgba(217, 125, 96, 0.58);
}

.suite-steps {
  display: grid;
  gap: 12px;
}

.suite-step {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(86, 103, 126, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 42px -32px rgba(96, 73, 52, 0.18);
  opacity: 0.48;
  transform: translateY(8px);
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}

.suite-step.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(217, 125, 96, 0.26);
  box-shadow: 0 28px 52px -36px rgba(96, 73, 52, 0.2);
}

.suite-step-detail {
  color: #415064;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.suite-story-stage-wrap {
  position: relative;
  align-self: stretch;
}

.suite-story-stage {
  position: relative;
  min-height: 76vh;
  padding: 28px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(86, 103, 126, 0.1);
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 242, 233, 0.9), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(250, 231, 195, 0.5), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.96));
  box-shadow:
    0 36px 88px -44px rgba(96, 73, 52, 0.24),
    0 12px 24px -18px rgba(255, 255, 255, 0.92) inset;
}

.suite-story-stage::before {
  opacity: 0.48;
}

.suite-stage-glow,
.suite-floral,
.suite-piece {
  position: absolute;
  will-change: transform, opacity;
  transition:
    transform 680ms cubic-bezier(0.22, 0.9, 0.24, 1),
    opacity 520ms ease,
    filter 520ms ease;
}

.suite-stage-glow {
  border-radius: 50%;
  filter: blur(3px);
}

.suite-stage-glow-top {
  top: 22px;
  right: 36px;
  width: 188px;
  height: 188px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 222, 210, 0.9), rgba(232, 180, 153, 0.7));
  opacity: 0.4;
  transform: translate3d(0, -8px, 0) scale(0.94);
}

.suite-stage-glow-bottom {
  left: 34px;
  bottom: 36px;
  width: 144px;
  height: 144px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 243, 195, 0.78), rgba(240, 220, 170, 0.5));
  opacity: 0.28;
  transform: translate3d(-6px, 10px, 0) scale(0.92);
}

.suite-floral {
  z-index: 0;
  width: min(38vw, 430px);
  max-width: 430px;
  pointer-events: none;
  filter: drop-shadow(0 16px 28px rgba(112, 93, 72, 0.1));
}

.suite-floral-left {
  left: -26px;
  top: 8px;
  transform: translate3d(-18px, 8px, 0) rotate(-12deg) scale(0.82);
  opacity: 0.18;
}

.suite-floral-right {
  right: -18px;
  bottom: 58px;
  transform: translate3d(10px, 18px, 0) rotate(168deg) scale(0.56);
  opacity: 0.12;
}

.suite-piece {
  z-index: 1;
  margin: 0;
  filter: drop-shadow(0 34px 64px rgba(92, 69, 49, 0.15));
}

.suite-piece img {
  display: block;
  width: 100%;
  height: auto;
}

.suite-piece-envelope {
  aspect-ratio: 1120 / 860;
}

.suite-piece-main {
  aspect-ratio: 1200 / 820;
}

.suite-piece-rsvp {
  aspect-ratio: 720 / 520;
}

.suite-piece-details {
  aspect-ratio: 820 / 560;
}

.suite-piece-seal {
  aspect-ratio: 1 / 1;
}

.suite-piece-envelope {
  left: 112px;
  top: 126px;
  width: min(69%, 650px);
  transform: translate3d(18px, 14px, 0) rotate(8deg);
  opacity: 0.92;
}

.suite-piece-main {
  left: 34px;
  top: 58px;
  width: min(64%, 620px);
  transform: translate3d(-42px, 6px, 0) rotate(-7deg) scale(0.985);
  opacity: 0.14;
}

.suite-piece-rsvp {
  right: 30px;
  top: 210px;
  width: min(31%, 238px);
  transform: translate3d(38px, 22px, 0) rotate(7deg) scale(0.97);
  opacity: 0;
}

.suite-piece-details {
  right: 158px;
  bottom: 80px;
  width: min(37%, 298px);
  transform: translate3d(-34px, 26px, 0) rotate(-7deg) scale(0.97);
  opacity: 0;
}

.suite-piece-seal {
  right: 118px;
  top: 92px;
  width: min(15%, 112px);
  z-index: 2;
  transform: translate3d(18px, -14px, 0) rotate(12deg) scale(0.92);
  opacity: 0;
}

.suite-story[data-active-step="0"] .suite-piece-envelope {
  transform: translate3d(18px, 12px, 0) rotate(8deg);
  opacity: 0.98;
}

.suite-story[data-active-step="0"] .suite-piece-main {
  transform: translate3d(-42px, 10px, 0) rotate(-7deg) scale(0.985);
  opacity: 0.14;
}

.suite-story[data-active-step="1"] .suite-piece-envelope {
  transform: translate3d(12px, 8px, 0) rotate(6deg);
  opacity: 1;
}

.suite-story[data-active-step="1"] .suite-piece-main {
  transform: translate3d(-10px, -8px, 0) rotate(-3deg) scale(1);
  opacity: 1;
}

.suite-story[data-active-step="1"] .suite-floral-left {
  transform: translate3d(-8px, 0, 0) rotate(-11deg) scale(0.86);
  opacity: 0.28;
}

.suite-story[data-active-step="1"] .suite-stage-glow-top {
  opacity: 0.52;
  transform: translate3d(0, -14px, 0) scale(1);
}

.suite-story[data-active-step="2"] .suite-piece-envelope {
  transform: translate3d(8px, 4px, 0) rotate(5deg);
  opacity: 1;
}

.suite-story[data-active-step="2"] .suite-piece-main {
  transform: translate3d(0, -16px, 0) rotate(-2deg);
  opacity: 1;
}

.suite-story[data-active-step="2"] .suite-piece-rsvp {
  transform: translate3d(0, 0, 0) rotate(4deg) scale(1);
  opacity: 1;
}

.suite-story[data-active-step="2"] .suite-piece-details {
  transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  opacity: 1;
}

.suite-story[data-active-step="2"] .suite-floral-left {
  transform: translate3d(-4px, -4px, 0) rotate(-10deg) scale(0.9);
  opacity: 0.34;
}

.suite-story[data-active-step="2"] .suite-floral-right {
  transform: translate3d(0, 10px, 0) rotate(166deg) scale(0.6);
  opacity: 0.2;
}

.suite-story[data-active-step="3"] .suite-piece-envelope {
  transform: translate3d(4px, 2px, 0) rotate(4deg);
  opacity: 1;
}

.suite-story[data-active-step="3"] .suite-piece-main {
  transform: translate3d(0, -18px, 0) rotate(-2deg);
  opacity: 1;
}

.suite-story[data-active-step="3"] .suite-piece-rsvp {
  transform: translate3d(-4px, -4px, 0) rotate(4deg);
  opacity: 1;
}

.suite-story[data-active-step="3"] .suite-piece-details {
  transform: translate3d(0, -2px, 0) rotate(-3deg);
  opacity: 1;
}

.suite-story[data-active-step="3"] .suite-piece-seal {
  transform: translate3d(0, 0, 0) rotate(8deg) scale(1);
  opacity: 1;
}

.suite-story[data-active-step="3"] .suite-floral-left {
  transform: translate3d(0, -6px, 0) rotate(-10deg) scale(0.92);
  opacity: 0.42;
}

.suite-story[data-active-step="3"] .suite-floral-right {
  transform: translate3d(4px, 6px, 0) rotate(166deg) scale(0.64);
  opacity: 0.26;
}

.suite-story[data-active-step="3"] .suite-stage-glow-top {
  opacity: 0.6;
  transform: translate3d(0, -16px, 0) scale(1.02);
}

.suite-story[data-active-step="3"] .suite-stage-glow-bottom {
  opacity: 0.4;
  transform: translate3d(0, 0, 0) scale(1);
}

.occasion-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.occasion-band p {
  margin: 0;
  padding: 16px 14px;
  text-align: center;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.45;
  border: 1px solid rgba(86, 103, 126, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 239, 0.9));
  box-shadow: 0 16px 30px -24px var(--shadow);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.card-signature {
  grid-column: span 2;
}

.signature-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.signature-list p {
  margin: 0;
}

.card-meta {
  color: #5f6d80;
  font-size: 0.9rem;
  line-height: 1.55;
}

.paper-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.finish-chips,
.vibe-row {
  margin-top: 18px;
}

.intake-column {
  display: grid;
  gap: 18px;
}

.closing-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #5f738a, #43576d);
  box-shadow: 0 30px 84px -38px rgba(47, 66, 88, 0.46);
}

.closing-copy .section-label,
.closing-copy h2,
.closing-copy p,
.closing-copy a {
  color: #fffaf2;
}

.closing-copy .info-point {
  border-color: rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.12);
  box-shadow: none;
}

.closing-copy .info-point strong,
.closing-copy .info-point span {
  color: #fffaf2;
}

.closing-socials {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.closing-socials a {
  border-bottom-color: rgba(255, 250, 242, 0.25);
}

.form-card {
  display: grid;
  gap: 14px;
}

.card-form {
  border-color: rgba(86, 103, 126, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(255, 251, 246, 0.97));
  box-shadow:
    0 26px 60px -38px rgba(96, 73, 52, 0.18),
    0 10px 22px -18px rgba(255, 255, 255, 0.96) inset;
}

.inquiry-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(86, 103, 126, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.99);
  color: #314055;
  font: inherit;
  box-shadow: 0 10px 18px -16px rgba(96, 73, 52, 0.12);
}

.inquiry-form textarea {
  min-height: 132px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #8a96a6;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(217, 125, 96, 0.22);
  border-color: rgba(217, 125, 96, 0.42);
}

.honeypot,
.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;
}

.form-status {
  min-height: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-status.is-error {
  color: #9e4f38;
}

.form-status.is-success {
  color: #4a6a54;
}

.expectation-card h3 {
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
  line-height: 1.04;
}

.expectation-card {
  border-color: rgba(86, 103, 126, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 244, 0.95));
  box-shadow: 0 24px 52px -36px rgba(96, 73, 52, 0.16);
}

.expectation-list {
  gap: 9px;
}

.expectation-list li {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.52;
}

.site-footer p:last-child {
  font-size: 0.95rem;
}

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

.reveal.is-animated {
  animation: rise-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .contact-panel,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .card-signature {
    grid-column: auto;
  }

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

  .suite-story {
    min-height: 192vh;
  }

  .suite-story-shell {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: 26px;
    min-height: calc(100vh - 28px);
  }

  .suite-story-stage {
    min-height: 70vh;
  }

  .suite-piece-envelope {
    left: 90px;
    top: 134px;
    width: min(72%, 560px);
  }

  .suite-piece-main {
    width: min(68%, 520px);
  }

  .suite-piece-rsvp {
    right: 18px;
    top: 224px;
    width: min(34%, 208px);
  }

  .suite-piece-details {
    right: 114px;
    bottom: 74px;
    width: min(40%, 264px);
  }

  .suite-piece-seal {
    right: 86px;
    top: 108px;
    width: min(16%, 96px);
  }

  .occasion-band {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 900px) {
  .suite-story {
    min-height: auto;
    margin-top: 30px;
  }

  .suite-story-shell {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
  }

  .suite-story-stage-wrap {
    order: -1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 18px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .wordmark {
    align-items: flex-start;
  }

  .hero-copy,
  .card,
  .launch-card,
  .closing-copy,
  .suite-story-stage {
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .card h2,
  .closing-copy h2,
  .suite-story-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .suite-story-stage {
    min-height: 620px;
    padding: 20px;
  }

  .suite-story-copy {
    padding: 0;
  }

  .suite-steps {
    gap: 12px;
  }

  .suite-step {
    opacity: 1;
    transform: none;
  }

  .suite-progress {
    gap: 8px;
  }

  .suite-progress-dot,
  .suite-progress-dot.is-active {
    width: 24px;
  }

  .suite-stage-glow-top {
    width: 120px;
    height: 120px;
    top: 10px;
    right: 16px;
    transform: translate3d(0, -6px, 0) scale(1);
    opacity: 0.52;
  }

  .suite-stage-glow-bottom {
    width: 92px;
    height: 92px;
    left: 18px;
    bottom: 18px;
    transform: none;
    opacity: 0.36;
  }

  .suite-floral {
    width: 260px;
    transition-duration: 320ms;
  }

  .suite-floral-left {
    left: -20px;
    top: -10px;
    transform: translate3d(0, -4px, 0) rotate(-10deg) scale(0.88);
    opacity: 0.38;
  }

  .suite-floral-right {
    right: -30px;
    bottom: 84px;
    transform: translate3d(0, 6px, 0) rotate(160deg) scale(0.62);
    opacity: 0.24;
  }

  .suite-piece-envelope {
    left: 58px;
    top: 166px;
    width: calc(100% - 82px);
    transform: translate3d(0, 0, 0) rotate(6deg);
    opacity: 1;
  }

  .suite-piece-main {
    left: 0;
    top: 48px;
    width: calc(100% - 84px);
    transform: translate3d(0, -8px, 0) rotate(-4deg);
    opacity: 1;
  }

  .suite-piece-rsvp {
    top: 232px;
    right: 2px;
    width: 164px;
    transform: translate3d(0, 0, 0) rotate(4deg);
    opacity: 1;
  }

  .suite-piece-details {
    right: 40px;
    bottom: 84px;
    width: 196px;
    transform: translate3d(0, 0, 0) rotate(-3deg);
    opacity: 1;
  }

  .suite-piece-seal {
    right: 50px;
    top: 116px;
    width: 88px;
    transform: translate3d(0, 0, 0) rotate(10deg);
    opacity: 1;
  }

  .occasion-band {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .header-note,
  .hero-text,
  .card p,
  .launch-card p,
  .closing-copy p,
  .suite-story-copy p,
  .suite-step p {
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .suite-story-stage {
    min-height: 520px;
  }

  .suite-piece-envelope {
    left: 38px;
    top: 154px;
    width: calc(100% - 56px);
  }

  .suite-piece-main {
    width: calc(100% - 54px);
    top: 52px;
  }

  .suite-piece-rsvp {
    width: 134px;
    top: 220px;
  }

  .suite-piece-details {
    right: 24px;
    width: 158px;
  }

  .suite-piece-seal {
    right: 34px;
    width: 74px;
  }

  .occasion-band {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .reveal.is-animated {
    animation: none;
  }

  .suite-step,
  .suite-piece,
  .suite-floral,
  .suite-stage-glow,
  .suite-progress-dot {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}
