@font-face {
  font-family: "Figtree";
  src: url("figtree-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("figtree-latin-wght-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ink: #272329;
  --ink-soft: #5f5860;
  --plum: #4b123f;
  --plum-rich: #6b1458;
  --magenta: #e20b86;
  --blush: #f1dde9;
  --blush-soft: #fbf5f8;
  --paper: #f7f3ee;
  --white: #ffffff;
  --line: #dfd7dd;
  --success: #1f6b4a;
  --warning: #8a5816;
  --danger: #a22a3a;
  --shadow-sm: 0 10px 34px rgba(39, 35, 41, 0.08);
  --shadow-lg: 0 24px 70px rgba(39, 35, 41, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --site-width: 1248px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--plum);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(68px, 8vw, 112px);
}

.section-tight {
  padding-block: clamp(44px, 6vw, 76px);
}

.section-white {
  background: var(--white);
}

.section-plum {
  color: var(--white);
  background: var(--plum);
}

.section-blush {
  background: var(--blush-soft);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff8dcb;
}

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

h1,
h2,
h3 {
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 650;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 29px);
  font-weight: 680;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
}

.lead-light {
  color: rgba(255, 255, 255, 0.76);
}

.narrow {
  max-width: 760px;
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 14px;
  line-height: 1.5;
}

.text-link {
  color: var(--plum-rich);
  font-weight: 700;
}

.top-rail {
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.top-rail-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-rail-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-rail a {
  text-decoration: none;
}

.top-rail a:hover {
  color: #ff8dcb;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(75, 18, 63, 0.1);
  backdrop-filter: blur(14px);
}

.main-nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 94px;
  height: 78px;
  object-fit: contain;
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-link,
.nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-link::after,
.nav-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--magenta);
  transition: right 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.nav-button:hover::after,
.nav-button[aria-expanded="true"]::after {
  right: 0;
}

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: 310px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 9px;
  text-decoration: none;
}

.dropdown-panel a:hover {
  color: var(--plum);
  background: var(--blush-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  padding-inline: 6px;
  color: var(--white);
  background: var(--magenta);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 120px 28px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  color: var(--white);
  background: var(--plum);
  overflow-y: auto;
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

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

.mobile-menu a {
  padding: 13px 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 23px;
  font-weight: 650;
  text-decoration: none;
}

.mobile-menu .mobile-sub {
  padding-left: 20px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.76);
}

.mobile-menu-contact {
  margin-top: 32px;
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: #35102e;
  border-color: #35102e;
}

.button-magenta {
  color: var(--white);
  background: var(--magenta);
  border-color: var(--magenta);
}

.button-magenta:hover {
  background: #c90976;
  border-color: #c90976;
}

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

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

.button-light {
  color: var(--plum);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--blush);
  border-color: var(--blush);
}

.button-quiet {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--plum);
  background: var(--white);
  border-color: var(--line);
  font-size: 14px;
}

.button-danger {
  color: var(--danger);
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero {
  background: var(--paper);
}

.hero-grid {
  min-height: 632px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(34px, 5vw, 68px);
}

.hero-copy {
  align-self: center;
  padding-block: 72px;
}

.hero-copy h1 {
  max-width: 670px;
}

.hero-copy .lead {
  max-width: 610px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 0 52px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 300px;
  padding: 14px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.proof-rail {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.proof-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: grid;
  align-content: center;
  padding: 20px 30px;
  border-left: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-kicker {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-value {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 700;
}

.intro-grid,
.split-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

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

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

.card {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(39, 35, 41, 0.045);
}

.card-quiet {
  box-shadow: none;
}

.card-plum {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
}

.card-magenta {
  color: var(--white);
  background: var(--magenta);
  border-color: var(--magenta);
}

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

.number-chip,
.icon-chip {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--plum);
  background: var(--blush);
  border-radius: 13px;
  font-weight: 850;
}

.feature-list,
.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding: 11px 0 11px 31px;
  border-bottom: 1px solid rgba(75, 18, 63, 0.11);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
  transform: rotate(-45deg);
}

.feature-list li:last-child,
.check-list li:last-child {
  border-bottom: 0;
}

.plain-list li + li {
  margin-top: 9px;
}

.photo-frame {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--blush);
  border-radius: var(--radius-lg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.window-motif {
  position: relative;
  min-height: 430px;
  padding: 48px;
  overflow: hidden;
  background: var(--plum);
  border-radius: var(--radius-lg);
}

.window-motif::before,
.window-motif::after {
  content: "";
  position: absolute;
  border: 14px solid rgba(255, 255, 255, 0.88);
}

.window-motif::before {
  inset: 54px 48px 90px;
}

.window-motif::after {
  top: 54px;
  bottom: 90px;
  left: 50%;
  width: 0;
  border-width: 0 7px;
}

.window-motif-copy {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.callout {
  padding: clamp(34px, 6vw, 66px);
  color: var(--white);
  background: var(--plum);
  border-radius: var(--radius-lg);
}

.callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 36px;
  align-items: center;
}

.page-hero {
  padding-block: clamp(72px, 9vw, 124px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(226, 11, 134, 0.22), transparent 26%),
    linear-gradient(135deg, var(--plum) 0%, #35102e 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 64px;
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-aside {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.price-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--plum);
  background: var(--blush);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.honest-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.honest-table th,
.honest-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.honest-table th {
  color: var(--plum);
  background: var(--blush-soft);
  font-size: 14px;
}

.honest-table tr:last-child td {
  border-bottom: 0;
}

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

.finance-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.finance-amount {
  margin: 18px 0 8px;
  color: var(--plum);
  font-size: 36px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.partner-logo {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.partner-logo img {
  max-height: 84px;
  width: auto;
  object-fit: contain;
}

.location-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-cloud span {
  padding: 10px 14px;
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 142px;
  padding: 34px;
  color: var(--white);
  background: var(--plum);
  border-radius: var(--radius-lg);
}

.contact-line {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line a {
  color: var(--white);
  font-size: 20px;
  font-weight: 720;
  text-decoration: none;
}

.form-card {
  padding: clamp(26px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.field-help {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfc5cc;
  border-radius: 9px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--magenta);
  outline: 3px solid rgba(226, 11, 134, 0.14);
}

.checkbox,
.radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox input,
.radio input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--magenta);
}

.notice {
  padding: 16px 18px;
  color: var(--ink);
  background: var(--blush-soft);
  border-left: 4px solid var(--magenta);
  border-radius: 4px 9px 9px 4px;
  font-size: 14px;
}

.notice-success {
  color: var(--success);
  background: #edf8f2;
  border-left-color: var(--success);
}

.notice-warning {
  color: #66400f;
  background: #fff6e8;
  border-left-color: #d08a28;
}

.notice-danger {
  color: var(--danger);
  background: #fff0f2;
  border-left-color: var(--danger);
}

.designer-shell {
  width: min(1460px, calc(100% - 40px));
  margin-inline: auto;
}

.designer-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.1fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.designer-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(39, 35, 41, 0.045);
}

.designer-panel-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.designer-panel-head h2,
.designer-panel-head h3 {
  margin-bottom: 4px;
}

.designer-panel-body {
  padding: 22px 24px 26px;
}

.designer-controls {
  display: grid;
  gap: 20px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4px;
  background: var(--blush-soft);
  border-radius: 10px;
}

.segmented button {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.segmented button.active {
  color: var(--plum);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(39, 35, 41, 0.08);
}

.style-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-chip {
  padding: 7px 11px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.filter-chip.active {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
}

.style-picker {
  max-height: 490px;
  display: grid;
  gap: 10px;
  padding-right: 4px;
  overflow-y: auto;
}

.style-choice {
  width: 100%;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
}

.style-choice:hover,
.style-choice.active {
  border-color: var(--magenta);
  background: var(--blush-soft);
}

.style-choice strong {
  display: block;
  line-height: 1.25;
}

.style-choice small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.mini-window {
  position: relative;
  height: 68px;
  background: #eaf6fb;
  border: 5px solid var(--plum);
  border-radius: 2px;
  overflow: hidden;
}

.design-stage-wrap {
  position: sticky;
  top: 136px;
}

.design-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 52px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 30% 20%, #ffffff 0, #f0e7ec 55%, #e4d8df 100%);
  border-radius: var(--radius-md);
}

.designed-window {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: var(--window-ratio, 1.32);
  min-height: 240px;
  max-height: 470px;
  background: #dff2fb;
  border: clamp(12px, 2vw, 21px) solid var(--frame-color, #f7f6f1);
  box-shadow:
    inset 0 0 0 3px rgba(39, 35, 41, 0.28),
    0 28px 65px rgba(39, 35, 41, 0.18);
  transition: aspect-ratio 180ms ease, border-color 180ms ease;
}

.designed-window::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(to top, rgba(150, 202, 224, 0.18), transparent 55%);
  pointer-events: none;
}

.window-pane {
  position: absolute;
  z-index: 1;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: calc(var(--w) * 1%);
  height: calc(var(--h) * 1%);
  background: rgba(196, 229, 242, 0.42);
  border: clamp(4px, 0.8vw, 9px) solid var(--frame-color, #f7f6f1);
  box-shadow: inset 0 0 0 1px rgba(39, 35, 41, 0.26);
  cursor: default;
}

.window-pane.editable {
  cursor: pointer;
}

.window-pane.editable:hover {
  background: rgba(226, 11, 134, 0.13);
}

.window-pane::before,
.window-pane::after {
  content: "";
  position: absolute;
  display: none;
  height: 2px;
  background: rgba(75, 18, 63, 0.64);
  transform-origin: left center;
  pointer-events: none;
}

.window-pane.type-side::before {
  display: block;
  left: 5%;
  top: 50%;
  width: 95%;
  transform: rotate(29deg);
}

.window-pane.type-side::after {
  display: block;
  left: 5%;
  bottom: 50%;
  width: 95%;
  transform: rotate(-29deg);
}

.window-pane.type-top::before {
  display: block;
  left: 50%;
  top: 6%;
  width: 55%;
  transform: rotate(70deg);
}

.window-pane.type-top::after {
  display: block;
  right: 50%;
  top: 6%;
  width: 55%;
  transform: rotate(110deg);
  transform-origin: right center;
}

.window-pane.safety {
  background: rgba(226, 11, 134, 0.12);
}

.pane-badge {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 3;
  display: none;
  padding: 2px 5px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 850;
}

.window-pane.safety .pane-badge {
  display: block;
}

.dimension {
  position: absolute;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.dimension-width {
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
}

.dimension-height {
  top: 50%;
  right: -56px;
  transform: translateY(-50%) rotate(90deg);
}

.stage-legend {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-line {
  width: 24px;
  height: 2px;
  background: var(--plum);
}

.legend-safety {
  width: 15px;
  height: 15px;
  background: rgba(226, 11, 134, 0.18);
  border: 1px solid var(--magenta);
}

.summary-stack {
  display: grid;
  gap: 14px;
}

.price-summary {
  padding: 20px;
  color: var(--white);
  background: var(--plum);
  border-radius: 13px;
}

.price-summary-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-summary-value {
  margin: 5px 0 4px;
  font-size: 42px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1;
}

.price-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span:first-child {
  color: var(--ink-soft);
}

.summary-row strong {
  text-align: right;
}

.custom-builder {
  display: none;
  padding: 16px;
  background: var(--blush-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.custom-builder.active {
  display: grid;
  gap: 14px;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 40px minmax(45px, 1fr) 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.stepper button {
  height: 40px;
  color: var(--plum);
  background: var(--white);
  border: 0;
  cursor: pointer;
}

.stepper output {
  display: grid;
  place-items: center;
  height: 40px;
  background: var(--white);
  font-weight: 750;
}

.advanced {
  border: 1px solid var(--line);
  border-radius: 11px;
}

.advanced summary {
  padding: 14px 16px;
  color: var(--plum);
  font-weight: 750;
  cursor: pointer;
}

.advanced-content {
  display: grid;
  gap: 16px;
  padding: 0 16px 18px;
}

.quote-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--plum);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 760;
  text-decoration: none;
}

.basket-list {
  display: grid;
  gap: 14px;
}

.basket-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.basket-item-copy h3 {
  margin-bottom: 5px;
  font-size: 19px;
}

.basket-item-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.basket-item-price {
  text-align: right;
}

.basket-item-price strong {
  display: block;
  color: var(--plum);
  font-size: 22px;
}

.basket-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 9px;
}

.quote-totals {
  margin-top: 22px;
  padding: 24px;
  color: var(--white);
  background: var(--plum);
  border-radius: 14px;
}

.quote-total-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}

.quote-total-line.grand {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 25px;
  font-weight: 780;
}

.quote-empty {
  padding: 36px;
  text-align: center;
  background: var(--blush-soft);
  border: 1px dashed #cdbfc8;
  border-radius: var(--radius-md);
}

.admin-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-quote {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.admin-quote + .admin-quote {
  margin-top: 14px;
}

.admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 48px;
  padding-block: 68px;
}

.footer-brand img {
  width: 118px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-heading {
  margin-bottom: 14px;
  color: #ff8dcb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.79);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  padding-block: 24px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.footer-legal p {
  margin: 0 0 9px;
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 17px;
  }

  .nav-link,
  .nav-button {
    font-size: 14px;
  }

  .header-actions .button {
    padding-inline: 16px;
  }

  .designer-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  }

  .designer-layout > .designer-panel:last-child {
    grid-column: 1 / -1;
  }

  .design-stage-wrap {
    top: 132px;
  }
}

@media (max-width: 980px) {
  .top-rail .top-rail-group:first-child {
    display: none;
  }

  .top-rail-inner {
    justify-content: flex-end;
  }

  .desktop-nav,
  .header-actions .button-outline {
    display: none;
  }

  .main-nav {
    min-height: 86px;
  }

  .brand img {
    width: 78px;
    height: 64px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .intro-grid,
  .split-grid,
  .feature-grid,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 64px 0 8px;
  }

  .hero-visual {
    min-height: 480px;
    border-radius: 28px 28px 0 0;
  }

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

  .proof-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .cards-3,
  .finance-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-panel,
  .design-stage-wrap {
    position: static;
  }

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

  .designer-layout > .designer-panel:last-child {
    grid-column: auto;
  }

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

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

  .shell,
  .designer-shell {
    width: min(100% - 28px, var(--site-width));
  }

  .top-rail-inner {
    min-height: 34px;
  }

  .top-rail-group {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .main-nav {
    min-height: 78px;
  }

  .brand img {
    width: 68px;
    height: 56px;
  }

  .header-actions .button {
    min-height: 44px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero-copy {
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .proof-grid,
  .cards-4,
  .partner-logos,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-item:first-child {
    border-top: 0;
  }

  .card,
  .form-card,
  .contact-panel {
    padding: 24px;
  }

  .honest-table {
    display: block;
    overflow-x: auto;
  }

  .page-hero-aside {
    display: none;
  }

  .designer-panel-body {
    padding: 18px;
  }

  .design-stage {
    min-height: 400px;
    padding: 28px 18px 50px;
  }

  .designed-window {
    min-height: 190px;
    max-height: 340px;
  }

  .dimension-height {
    right: -49px;
  }

  .basket-item {
    grid-template-columns: 72px 1fr;
  }

  .basket-item-price {
    grid-column: 1 / -1;
    text-align: left;
  }

  .basket-actions {
    justify-content: flex-start;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .quote-drawer {
    right: 12px;
    bottom: 12px;
  }
}

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

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