:root {
  --bg: #f4efe6;
  --bg-soft: #fbf8f2;
  --ink: #231f1a;
  --muted: #645a4e;
  --line: rgba(35, 31, 26, 0.12);
  --card: rgba(255, 250, 241, 0.85);
  --accent: #c15c2d;
  --accent-soft: #efd7c3;
  --dark: #20242c;
  --shadow: 0 22px 55px rgba(34, 24, 16, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --scroll-progress: 0;
  --hero-copy-shift: 0px;
  --hero-panel-shift: 0px;
  --hero-panel-tilt: 0deg;
  --page-glow-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(177, 69, 47, 0.12), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(31, 36, 48, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f3ea 0%, #f2ebe0 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
  position: relative;
}

body.motion-enabled .page-shell::before {
  content: "";
  position: fixed;
  inset: 6% auto auto 74%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(193, 92, 45, 0.12), transparent 68%);
  pointer-events: none;
  transform: translate3d(0, var(--page-glow-shift), 0);
  filter: blur(6px);
  opacity: 0.9;
  z-index: 0;
}

.site-header,
.hero,
.proof-strip,
.template-card,
.pricing-card,
.process-grid article,
.contact-card,
.site-footer {
  backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(248, 240, 230, 0.74));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  position: sticky;
  top: 16px;
  z-index: 10;
  box-shadow:
    0 18px 44px rgba(34, 24, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  position: sticky;
  overflow: hidden;
  transition:
    padding 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

body.motion-enabled .site-header::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(193, 92, 45, 0.92), rgba(32, 36, 44, 0.72));
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  opacity: 0.78;
}

body.motion-enabled.is-scrolled .site-header {
  padding: 15px 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(248, 240, 230, 0.86));
  box-shadow:
    0 22px 52px rgba(34, 24, 16, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 50px;
  padding: 0 10px 0 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(32, 36, 44, 1), rgba(61, 35, 25, 0.96));
  color: #fff5eb;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 28px rgba(32, 36, 44, 0.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 11px;
  width: 14px;
  height: 21px;
  border-left: 2.5px solid currentColor;
  border-top: 2.5px solid currentColor;
  border-radius: 12px 0 0 0;
  opacity: 0.9;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 0 0 4px rgba(255, 245, 235, 0.12),
    0 0 16px rgba(255, 245, 235, 0.36);
}

.brand-monogram {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: translateX(6px);
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small,
.site-nav a,
.hero-text,
.section-heading p,
.template-copy p,
.pricing-card p,
.process-grid p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(35, 31, 26, 0.08);
  font-size: 0.95rem;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a.is-current,
.site-nav a[aria-current="true"] {
  color: var(--accent);
  background: rgba(193, 92, 45, 0.12);
  box-shadow: inset 0 0 0 1px rgba(193, 92, 45, 0.14);
}

.site-nav a:hover {
  color: var(--accent);
  background: rgba(193, 92, 45, 0.08);
  transform: translateY(-1px);
}

.header-cta {
  min-width: 158px;
  box-shadow: 0 18px 34px rgba(177, 69, 47, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:disabled,
.button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-dark {
  background: var(--dark);
  color: #fff7ee;
}

.button-accent {
  background: var(--accent);
  color: #fff7ee;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow);
}

body.motion-enabled .hero-copy {
  transform: translate3d(0, var(--hero-copy-shift), 0);
}

body.motion-enabled .hero-panel {
  transform: translate3d(0, var(--hero-panel-shift), 0) rotate(var(--hero-panel-tilt));
}

.eyebrow,
.template-tag,
.pricing-tier,
.process-grid span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.template-tag,
.pricing-tier {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5.3rem);
  max-width: 11ch;
  margin-top: 10px;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 20px 0 0;
}

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

.hero-indexing-note {
  margin: 14px 0 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(35, 31, 26, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li::before,
.template-copy li::before,
.pricing-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.hero-panel {
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(193, 92, 45, 0.94), rgba(74, 38, 24, 0.98)),
    #c15c2d;
  color: #fff4eb;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

body.motion-enabled .hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -14% -24% 38%;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 236, 222, 0.28), transparent 68%);
  pointer-events: none;
  animation: panelGlow 9s ease-in-out infinite;
}

body.motion-enabled .hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel-head {
  display: grid;
  gap: 8px;
}

.hero-panel-head p,
.hero-panel-foot span,
.hero-panel-card p,
.hero-panel-card span {
  color: rgba(255, 244, 235, 0.74);
}

.hero-panel-head strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.08;
}

.hero-panel-card {
  padding: 18px;
  background: rgba(255, 241, 233, 0.12);
  border: 1px solid rgba(255, 244, 235, 0.16);
  border-radius: var(--radius-lg);
}

.hero-panel-card p {
  margin: 0 0 10px;
}

.hero-panel-card strong {
  font-size: 1.1rem;
  line-height: 1.4;
}

.hero-panel-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}

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

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

.hero-panel-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel-foot span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 241, 233, 0.12);
  border: 1px solid rgba(255, 244, 235, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-screen {
  min-height: 190px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.94);
  position: relative;
  overflow: hidden;
}

body.motion-enabled .mini-screen {
  animation: ambientFloat 7s ease-in-out infinite;
}

body.motion-enabled .mini-screen-two {
  animation-delay: 1.3s;
}

body.motion-enabled .hero-badges span {
  animation: badgeDrift 6.4s ease-in-out infinite;
}

body.motion-enabled .hero-badges span:nth-child(2) {
  animation-delay: 0.7s;
}

body.motion-enabled .hero-badges span:nth-child(3) {
  animation-delay: 1.4s;
}

.mini-screen::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 36px;
  background: rgba(31, 36, 48, 0.08);
}

.mini-screen span {
  display: block;
  border-radius: 999px;
}

.mini-screen-one {
  grid-column: span 2;
}

.mini-screen-one span:nth-child(1) {
  width: 54%;
  height: 18px;
  background: rgba(177, 69, 47, 0.5);
  margin-top: 48px;
}

.mini-screen-one span:nth-child(2) {
  width: 76%;
  height: 64px;
  background: rgba(31, 36, 48, 0.13);
  margin-top: 16px;
}

.mini-screen-one span:nth-child(3) {
  width: 38%;
  height: 14px;
  background: rgba(31, 36, 48, 0.11);
  margin-top: 14px;
}

.mini-screen-two span:nth-child(1),
.mini-screen-three span:nth-child(1) {
  width: 70%;
  height: 16px;
  background: rgba(31, 36, 48, 0.12);
  margin-top: 48px;
}

.mini-screen-two span:nth-child(2),
.mini-screen-three span:nth-child(2) {
  width: 100%;
  height: 52px;
  background: rgba(177, 69, 47, 0.22);
  margin-top: 14px;
}

.mini-screen-two span:nth-child(3),
.mini-screen-three span:nth-child(3) {
  width: 55%;
  height: 12px;
  background: rgba(31, 36, 48, 0.1);
  margin-top: 12px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 247, 0.65);
}

body.motion-enabled .proof-strip,
body.motion-enabled .templates-guide,
body.motion-enabled .pricing-proof-row,
body.motion-enabled .process-note-panel,
body.motion-enabled .faq-proof-row,
body.motion-enabled .contact-intro-grid {
  transform: translate3d(0, var(--scroll-float-y, 0px), 0);
  will-change: transform;
}

.proof-strip article {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(35, 31, 26, 0.08);
}

.proof-strip strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

.proof-strip p {
  margin: 10px 0 0;
  font-weight: 500;
  line-height: 1.65;
}

.studio-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.studio-standard-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow);
}

.studio-standard-card h3 {
  margin-top: 10px;
  font-size: 1.45rem;
}

.studio-standard-card p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.studio-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(248, 240, 230, 0.72));
  color: var(--muted);
  line-height: 1.7;
}

.studio-note strong {
  color: var(--ink);
}

.website-match {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top right, rgba(177, 69, 47, 0.1), transparent 24%),
    rgba(255, 250, 241, 0.78);
  box-shadow: var(--shadow);
}

.match-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
  margin-top: 22px;
}

.match-proof-row,
.templates-guide {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.match-proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.match-proof-card,
.templates-guide-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.match-proof-card strong,
.templates-guide-card h3 {
  display: block;
  font-family: "Fraunces", Georgia, serif;
}

.match-proof-card strong {
  font-size: 1.28rem;
}

.templates-guide-card h3 {
  margin-top: 8px;
  font-size: 1.5rem;
}

.match-proof-card p,
.templates-guide-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.match-controls,
.match-result,
.faq-item {
  padding: 22px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.match-controls {
  display: grid;
  gap: 16px;
}

.match-field {
  display: grid;
  gap: 10px;
}

.match-field span {
  font-weight: 700;
  color: var(--ink);
}

.match-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(31, 36, 48, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
}

.match-microcopy,
.match-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.match-microcopy span,
.match-reasons span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.06);
  font-size: 0.84rem;
  font-weight: 700;
}

.match-result {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(31, 36, 48, 0.96), rgba(72, 38, 28, 0.92));
  color: #fff8f1;
}

.match-result .eyebrow,
.match-price {
  color: rgba(255, 248, 241, 0.8);
}

.match-result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.match-result-top h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.match-price {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.match-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.match-description {
  margin: 0;
  color: rgba(255, 248, 241, 0.84);
  line-height: 1.75;
}

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

.match-actions .button {
  flex: 1 1 220px;
}

.section {
  padding: 84px 0 0;
  content-visibility: auto;
  contain-intrinsic-size: 860px;
}

.trust-strip.section {
  padding-top: 28px;
}

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

.trust-chip {
  padding: 18px 20px;
  border: 1px solid rgba(35, 31, 26, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(248, 240, 230, 0.76));
  box-shadow: var(--shadow);
}

.trust-chip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.trust-chip span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.section-heading p {
  margin: 0;
  line-height: 1.7;
}

.results-grid,
.testimonial-strip {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.result-card,
.testimonial-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(248, 240, 230, 0.7));
  box-shadow: var(--shadow);
}

.result-card h3,
.testimonial-card .quote {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
}

.result-card h3 {
  margin: 12px 0 10px;
  font-size: 1.55rem;
}

.result-card p {
  margin: 0;
  line-height: 1.72;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(193, 92, 45, 0.12);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.result-quote {
  margin-top: 14px !important;
  color: var(--ink);
  font-weight: 500;
}

.result-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.result-metrics span,
.testimonial-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.result-metrics span {
  background: rgba(31, 36, 48, 0.06);
  color: var(--ink);
}

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

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(32, 36, 44, 0.96), rgba(56, 34, 24, 0.92));
  color: #fff7ee;
}

.testimonial-card .quote {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.32;
  color: #fff7ee;
}

.testimonial-meta {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 247, 238, 0.88);
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.results-actions .button {
  min-width: 190px;
}

.process-lite-grid,
.fit-filter-grid,
.demo-honesty-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.process-lite-card,
.fit-list,
.demo-honesty-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(248, 240, 230, 0.7));
  box-shadow: var(--shadow);
}

.process-lite-card span,
.fit-list strong,
.demo-honesty-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-lite-card h3 {
  margin: 16px 0 10px;
  font-size: 1.5rem;
}

.process-lite-card p,
.demo-honesty-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.fit-filter-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(177, 69, 47, 0.08), transparent 26%),
    rgba(255, 251, 245, 0.78);
  box-shadow: var(--shadow);
}

.fit-filter-grid,
.demo-honesty-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-list ul,
.demo-honesty-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.fit-list li,
.demo-honesty-card li {
  color: var(--muted);
  line-height: 1.68;
}

.fit-list-good {
  border-color: rgba(35, 31, 26, 0.08);
}

.fit-list-bad {
  background:
    linear-gradient(180deg, rgba(31, 36, 48, 0.04), rgba(255, 251, 245, 0.8));
}

.demo-honesty-card {
  min-height: 100%;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-cta-left {
  justify-content: flex-start;
}

.section-cta .button {
  min-width: 190px;
}

.launch-guarantee-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(177, 69, 47, 0.1), transparent 28%),
    rgba(255, 251, 245, 0.74);
  box-shadow: var(--shadow);
}

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

.launch-guarantee-list {
  padding: 20px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.launch-guarantee-list strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}

.launch-guarantee-list ul {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.launch-guarantee-list li {
  color: var(--muted);
  line-height: 1.65;
}

.launch-guarantee-note {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.availability-card,
.decision-card {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(248, 240, 230, 0.78));
  box-shadow: var(--shadow);
}

.availability-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.availability-card h3 {
  margin: 10px 0 0;
  font-size: 1.6rem;
}

.decision-card {
  display: grid;
  gap: 24px;
}

.decision-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.decision-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.06);
  border: 1px solid rgba(31, 36, 48, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.decision-option {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.decision-option h3 {
  margin: 0;
  font-size: 1.45rem;
}

.decision-option p:last-of-type {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.decision-option .button {
  width: 100%;
}

.template-grid,
.demo-entry-grid,
.pricing-ladder,
.process-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

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

.demo-entry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.demo-entry-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 245, 0.76);
  box-shadow: var(--shadow);
}

.demo-entry-card .template-actions-row {
  margin-top: 16px;
  justify-content: flex-start;
}

.demo-entry-card h3 {
  margin: 12px 0 10px;
  font-size: 1.5rem;
}

.demo-entry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.styles-subhead,
.comparison-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}

.trust-strip-grid-compact {
  margin-bottom: 28px;
}

.styles-subhead p:last-child,
.comparison-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.extra-styles-head {
  margin-top: 42px;
}

.template-card,
.pricing-card,
.style-bank-card,
.process-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 245, 0.7);
  box-shadow: var(--shadow);
}

.template-card {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
  background-color 180ms ease;
}

body.motion-enabled .motion-card {
  position: relative;
  overflow: hidden;
}

body.motion-enabled .motion-card::after {
  content: "";
  position: absolute;
  inset: -24%;
  background:
    radial-gradient(
      circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
      rgba(255, 255, 255, 0.26),
      rgba(255, 255, 255, 0.08) 18%,
      transparent 54%
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

body.motion-enabled .motion-card.is-tilting::after {
  opacity: 1;
}

body.motion-enabled .motion-card > * {
  position: relative;
  z-index: 1;
}

.template-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(193, 92, 45, 0.86), rgba(32, 36, 44, 0.24));
}

.template-card:hover,
.template-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(193, 92, 45, 0.35);
  outline: none;
}

body.motion-enabled .match-result:hover,
body.motion-enabled .match-result:focus-within,
body.motion-enabled .studio-standard-card:hover,
body.motion-enabled .templates-guide-card:hover,
body.motion-enabled .pricing-proof-card:hover,
body.motion-enabled .pricing-card:hover,
body.motion-enabled .pricing-card:focus-within,
body.motion-enabled .contact-builder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(34, 24, 16, 0.16);
}

body.motion-enabled .motion-card.is-tilting {
  box-shadow: 0 30px 72px rgba(34, 24, 16, 0.18);
}

.template-card.is-recommended,
.pricing-card.is-recommended {
  border-color: rgba(193, 92, 45, 0.38);
  box-shadow: 0 0 0 4px rgba(193, 92, 45, 0.1), 0 26px 60px rgba(34, 24, 16, 0.14);
}

.template-card.is-active {
  border-color: rgba(193, 92, 45, 0.42);
  box-shadow: 0 26px 58px rgba(193, 92, 45, 0.18);
  transform: translateY(-4px);
}

.template-card[data-template-trigger="lite"] {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(248, 240, 229, 0.74));
}

.template-card[data-template-trigger="professional"] {
  background: linear-gradient(180deg, rgba(246, 252, 250, 0.94), rgba(232, 243, 239, 0.78));
}

.template-card[data-template-trigger="services"] {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.94), rgba(232, 240, 249, 0.78));
}

.template-card[data-template-trigger="lifestyle"] {
  background: linear-gradient(180deg, rgba(255, 250, 252, 0.94), rgba(245, 235, 240, 0.8));
}

.style-bank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.style-bank-card {
  padding: 22px;
}

.style-bank-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.style-bank-card h3 {
  margin-top: 8px;
  font-size: 1.5rem;
}

.page-ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.page-idea-card,
.page-ideas-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 245, 0.76);
  box-shadow: var(--shadow);
}

.page-idea-card p,
.page-ideas-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-idea-card h3 {
  margin-top: 8px;
  font-size: 1.55rem;
}

.page-idea-card ul {
  margin: 18px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-idea-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.page-ideas-note {
  margin-top: 22px;
}

.process-note-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.process-note-panel article {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.process-note-panel strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
}

.process-note-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.template-preview {
  height: 250px;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.preview-corporate {
  background: linear-gradient(180deg, #eef8f5, #cfe3dc);
}

.preview-corporate .preview-hero {
  background: linear-gradient(180deg, rgba(31, 122, 114, 0.24), rgba(255, 255, 255, 0.36));
}

.preview-services {
  background: linear-gradient(180deg, #edf4fb, #cdddf0);
}

.preview-services .preview-top {
  background: rgba(17, 38, 61, 0.18);
}

.preview-lifestyle {
  background: linear-gradient(180deg, #f8eff4, #e6cddd);
}

.preview-lifestyle .preview-gallery span:nth-child(1) {
  min-height: 72px;
}

.preview-lifestyle .preview-gallery span:nth-child(2) {
  min-height: 54px;
}

.preview-lite {
  background: linear-gradient(180deg, #fbf4e8, #e4d4b9);
}

.preview-lite .preview-hero {
  background: linear-gradient(180deg, rgba(210, 138, 44, 0.28), rgba(31, 36, 48, 0.1));
}

.preview-top,
.preview-hero,
.preview-columns span,
.preview-split span,
.preview-list span,
.preview-gallery span {
  border-radius: 14px;
}

.preview-top {
  height: 28px;
  background: rgba(23, 39, 58, 0.12);
}

.preview-hero {
  height: 92px;
  background: rgba(31, 122, 114, 0.24);
}

.preview-hero.short {
  height: 78px;
}

.preview-columns,
.preview-split,
.preview-list,
.preview-gallery {
  display: grid;
  gap: 10px;
}

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

.preview-columns span,
.preview-gallery span {
  min-height: 54px;
  background: rgba(17, 38, 61, 0.12);
}

.preview-split {
  grid-template-columns: 1.15fr 0.85fr;
}

.preview-split span {
  min-height: 70px;
  background: rgba(157, 79, 113, 0.2);
}

.preview-list span {
  min-height: 18px;
  background: rgba(31, 36, 48, 0.1);
}

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

.template-copy,
.pricing-card,
.process-grid article,
.contact-card {
  padding: 26px;
}

.template-copy p,
.pricing-card p,
.contact-card p {
  line-height: 1.7;
}

.template-copy h3 {
  font-size: 1.7rem;
}

.template-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.template-meta span,
.mock-badge,
.mock-inline-pills span,
.mock-stat-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.template-meta span {
  background: rgba(193, 92, 45, 0.1);
  color: var(--accent);
}

.template-fit-line {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(35, 31, 26, 0.08);
  color: var(--ink);
  font-weight: 600;
}

.template-copy ul,
.pricing-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.template-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.template-cta::after {
  content: "→";
}

.template-actions-row,
.showcase-actions,
.template-modal-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.template-actions-row {
  margin-top: 18px;
  justify-content: space-between;
}

.template-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.template-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(193, 92, 45, 0.12);
  border: 1px solid rgba(193, 92, 45, 0.2);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
}

.template-link-inline::after {
  content: "→";
  font-size: 0.95rem;
}

.template-link-inline:hover,
.template-link-inline:focus-visible {
  background: rgba(193, 92, 45, 0.18);
  border-color: rgba(193, 92, 45, 0.32);
  outline: none;
}

.template-showcase {
  margin-top: 28px;
  scroll-margin-top: 120px;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 6px);
  background: rgba(255, 251, 245, 0.84);
  box-shadow: 0 30px 80px rgba(34, 24, 16, 0.14);
}

.showcase-panel.is-active {
  animation: panelReveal 360ms ease;
}

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

.showcase-copy {
  display: grid;
  gap: 14px;
}

.showcase-fit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-fit-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(35, 31, 26, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
}

.showcase-copy h3 {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.showcase-actions {
  margin-top: 8px;
}

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

.showcase-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.showcase-browser {
  overflow: hidden;
  border-radius: 30px;
  background: #fffaf3;
  border: 1px solid rgba(31, 36, 48, 0.08);
  box-shadow: 0 30px 86px rgba(31, 36, 48, 0.16);
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.showcase-browser:hover,
.showcase-browser:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 36px 92px rgba(31, 36, 48, 0.2);
  outline: none;
}

.browser-chrome {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
  background: rgba(246, 238, 228, 0.9);
}

.showcase-panel[data-template-panel="lite"] {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(247, 239, 227, 0.8));
}

.showcase-panel[data-template-panel="professional"] {
  background: linear-gradient(180deg, rgba(247, 252, 250, 0.94), rgba(236, 246, 242, 0.82));
}

.showcase-panel[data-template-panel="services"] {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.94), rgba(233, 241, 250, 0.84));
}

.showcase-panel[data-template-panel="lifestyle"] {
  background: linear-gradient(180deg, rgba(255, 250, 252, 0.94), rgba(245, 236, 241, 0.84));
}

.showcase-panel[data-template-panel="lite"] .showcase-fit-row span,
.template-card[data-template-trigger="lite"] .template-fit-line {
  background: rgba(255, 255, 255, 0.7);
}

.showcase-panel[data-template-panel="professional"] .showcase-fit-row span,
.template-card[data-template-trigger="professional"] .template-fit-line {
  background: rgba(241, 249, 246, 0.86);
}

.showcase-panel[data-template-panel="services"] .showcase-fit-row span,
.template-card[data-template-trigger="services"] .template-fit-line {
  background: rgba(239, 246, 254, 0.88);
}

.showcase-panel[data-template-panel="lifestyle"] .showcase-fit-row span,
.template-card[data-template-trigger="lifestyle"] .template-fit-line {
  background: rgba(250, 243, 247, 0.9);
}

.browser-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.16);
}

.mock-site {
  display: grid;
  gap: 18px;
  padding: 18px;
  min-height: 520px;
}

.showcase-panel.is-active .mock-site > * {
  animation: blockLift 520ms ease both;
}

.showcase-panel.is-active .mock-site > *:nth-child(1) {
  animation-delay: 20ms;
}

.showcase-panel.is-active .mock-site > *:nth-child(2) {
  animation-delay: 60ms;
}

.showcase-panel.is-active .mock-site > *:nth-child(3) {
  animation-delay: 100ms;
}

.showcase-panel.is-active .mock-site > *:nth-child(4) {
  animation-delay: 140ms;
}

.showcase-panel.is-active .mock-site > *:nth-child(5) {
  animation-delay: 180ms;
}

.showcase-panel.is-active .mock-site > *:nth-child(6) {
  animation-delay: 220ms;
}

.showcase-panel.is-active .mock-site > *:nth-child(7) {
  animation-delay: 260ms;
}

.mock-site h4,
.mock-site p {
  margin: 0;
}

.mock-header,
.mock-hero,
.mock-row span,
.mock-contact-strip span,
.mock-testimonial span,
.mock-review-band span,
.mock-form-card,
.gallery-tile,
.gallery-stack span,
.mock-card-tall {
  border-radius: 24px;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
}

.mock-header strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
}

.mock-header small {
  color: var(--muted);
}

.mock-badge {
  background: rgba(193, 92, 45, 0.12);
  color: var(--accent);
}

.mock-header nav {
  display: flex;
  gap: 10px;
}

.mock-header nav span {
  width: 52px;
  height: 10px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.14);
}

.mock-header.strong {
  background: rgba(32, 36, 44, 0.94);
  color: #fffaf3;
}

.mock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf3;
  font-weight: 700;
  width: fit-content;
}

.mock-button.light {
  background: rgba(255, 250, 243, 0.84);
  color: var(--ink);
}

.mock-hero {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 22px;
}

.mock-hero h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1.04;
  max-width: 12ch;
}

.mock-hero p,
.mock-editorial p {
  color: rgba(35, 31, 26, 0.72);
  line-height: 1.7;
}

.mock-inline-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.mock-inline-pills span {
  background: rgba(255, 255, 255, 0.62);
  color: rgba(35, 31, 26, 0.82);
}

.mock-hero.wide,
.mock-hero.service {
  grid-template-columns: 1.05fr 0.95fr;
}

.mock-card-tall {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.72);
}

.mock-row {
  display: grid;
  gap: 14px;
}

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

.mock-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-row.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mock-row span {
  min-height: 120px;
  background: rgba(255, 255, 255, 0.72);
}

.mock-contact-strip,
.mock-testimonial,
.mock-review-band,
.mock-editorial,
.mock-stat-strip,
.mock-mini-proof,
.mock-step-row {
  display: grid;
  gap: 14px;
}

.mock-stat-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-stat-strip span {
  justify-content: center;
  min-height: 38px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(35, 31, 26, 0.8);
}

.mock-stat-strip.soft span {
  background: rgba(255, 250, 243, 0.86);
}

.mock-stat-strip.dark span {
  background: rgba(32, 36, 44, 0.82);
  color: #fffaf3;
}

.mock-contact-strip {
  grid-template-columns: 1.2fr 0.8fr;
}

.mock-contact-strip span {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.72);
}

.mock-testimonial {
  grid-template-columns: 0.8fr 1.2fr;
}

.mock-testimonial span,
.mock-review-band span {
  min-height: 90px;
  background: rgba(255, 255, 255, 0.76);
}

.mock-form-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.mock-form-card span {
  min-height: 16px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.12);
}

.mock-form-card .fill {
  min-height: 46px;
  background: rgba(193, 92, 45, 0.22);
}

.mock-review-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.mock-mini-proof div,
.mock-step-row div,
.mock-footer-strip span {
  min-height: 78px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.mock-step-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-footer-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.mock-footer-strip span {
  min-height: 56px;
}

.mock-gallery-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.gallery-tile.large {
  min-height: 260px;
}

.gallery-tile,
.gallery-stack span {
  background: rgba(255, 255, 255, 0.76);
}

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

.gallery-stack span {
  min-height: 123px;
  border-radius: 24px;
}

.mock-editorial {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  padding: 22px;
  border-radius: 28px;
}

.mock-editorial h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1.06;
  margin-bottom: 10px;
}

.mock-card-lines {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.mock-card-lines span {
  min-height: 14px;
  border-radius: 999px;
  background: rgba(35, 31, 26, 0.12);
}

.mock-card-lines span:first-child {
  min-height: 70px;
  border-radius: 20px;
  background: rgba(193, 92, 45, 0.14);
}

.mock-lite {
  background: linear-gradient(180deg, #f4e8d3, #e5d2ae);
}

.mock-lite .mock-hero {
  background: rgba(27, 42, 56, 0.08);
}

.mock-professional {
  background: linear-gradient(180deg, #e7f3ef, #d2e4de);
}

.mock-professional .mock-hero,
.mock-professional .mock-testimonial {
  background: rgba(31, 122, 114, 0.1);
}

.mock-services {
  background: linear-gradient(180deg, #e2edf8, #ccdbef);
}

.mock-services .mock-hero {
  background: rgba(17, 38, 61, 0.1);
}

.mock-lifestyle {
  background: linear-gradient(180deg, #f2e6ed, #ddc4d3);
}

.mock-lifestyle .mock-editorial {
  background: rgba(157, 79, 113, 0.12);
}

.template-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.template-modal[hidden] {
  display: none;
}

.template-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 14, 0.56);
  backdrop-filter: blur(12px);
}

.template-modal-dialog {
  position: relative;
  width: min(1180px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  margin: 14px auto;
  padding: 22px;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 34px;
  background: rgba(31, 36, 44, 0.78);
  color: #fffaf3;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: modalEnter 260ms ease;
}

.template-modal-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.template-modal-topbar .eyebrow,
.template-modal-topbar p {
  color: rgba(255, 250, 243, 0.74);
}

.template-modal-topbar h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 6px;
}

.modal-close {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.12);
  color: #fffaf3;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.template-modal-frame {
  overflow: auto;
  max-height: calc(100vh - 180px);
  padding-right: 6px;
}

.template-modal-frame.is-embedded {
  overflow: hidden;
  padding-right: 0;
}

.template-modal-iframe {
  width: 100%;
  height: min(76vh, 900px);
  border: 0;
  border-radius: 28px;
  background: #fffaf3;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.template-modal-frame .showcase-browser {
  cursor: default;
  transform: none;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.template-modal-frame .showcase-browser:hover,
.template-modal-frame .showcase-browser:focus-visible {
  transform: none;
}

.template-modal-frame .browser-chrome {
  position: sticky;
  top: 0;
  z-index: 1;
}

.template-modal-frame .mock-site {
  min-height: 880px;
  gap: 22px;
  padding: 22px;
}

.template-modal-frame .mock-hero h4,
.template-modal-frame .mock-editorial h4 {
  font-size: 2.35rem;
}

.template-modal-frame .mock-row span {
  min-height: 150px;
}

.template-modal-frame .gallery-tile.large {
  min-height: 340px;
}

body.motion-enabled .reveal-scroll {
  --reveal-distance: 28px;
  --reveal-delay: 0ms;
  --reveal-start-scale: 1;
  --reveal-blur: 0px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(var(--reveal-start-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 760ms ease;
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

body.motion-enabled .reveal-scroll.reveal-soft {
  --reveal-distance: 18px;
  --reveal-blur: 5px;
}

body.motion-enabled .reveal-scroll.reveal-rise {
  --reveal-distance: 26px;
}

body.motion-enabled .reveal-scroll.reveal-scale {
  --reveal-distance: 18px;
  --reveal-start-scale: 0.985;
}

body.motion-enabled .reveal-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

@keyframes badgeDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes panelGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(-18px, -14px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blockLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-ladder {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pricing-proof-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.pricing-proof-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
}

.pricing-proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-card h3 {
  font-size: 3rem;
  margin-top: 14px;
}

.pricing-fit-line {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(35, 31, 26, 0.08);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 600;
  color: var(--ink);
}

.pricing-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pricing-mini-label,
.pricing-flag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 36, 48, 0.08);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-mini-label {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.pricing-callout {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.pricing-callout strong {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pricing-actions .button {
  flex: 1 1 180px;
}

.pricing-card-recommended {
  position: relative;
  border-color: rgba(31, 36, 48, 0.18);
  box-shadow: 0 24px 60px rgba(31, 36, 48, 0.08);
}

.pricing-card-recommended .pricing-flag {
  background: rgba(31, 36, 48, 0.1);
  color: var(--ink);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(177, 69, 47, 0.96), rgba(104, 44, 31, 0.98));
  color: #fff5ec;
  box-shadow: 0 30px 84px rgba(104, 44, 31, 0.28);
}

.pricing-card.featured p,
.pricing-card.featured .pricing-tier,
.pricing-card.featured .pricing-mini-label,
.pricing-card.featured li::before,
.pricing-card.featured .pricing-fit-line {
  color: inherit;
}

.pricing-card.featured .pricing-mini-label,
.pricing-card.featured .pricing-callout,
.pricing-card.featured .pricing-fit-line {
  background: rgba(255, 245, 236, 0.12);
  border-color: rgba(255, 245, 236, 0.16);
}

.pricing-card.featured .pricing-actions .button-ghost {
  background: rgba(255, 245, 236, 0.14);
  border-color: rgba(255, 245, 236, 0.16);
  color: inherit;
}

.pricing-card-growth,
.pricing-card-signature {
  position: relative;
  overflow: hidden;
  border-color: rgba(193, 92, 45, 0.22);
}

.pricing-card-growth::before,
.pricing-card-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pricing-card-growth::before {
  background: linear-gradient(180deg, rgba(193, 92, 45, 0.08), transparent 45%);
}

.pricing-card-signature {
  background: linear-gradient(180deg, rgba(31, 36, 48, 0.96), rgba(67, 37, 27, 0.92));
  color: #fff8f1;
  box-shadow: 0 28px 80px rgba(31, 36, 48, 0.22);
}

.pricing-card-signature::before {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%);
}

.pricing-card-growth .pricing-flag {
  background: rgba(193, 92, 45, 0.14);
  color: var(--accent);
}

.pricing-card-growth .pricing-mini-label,
.pricing-card-growth .pricing-callout {
  background: rgba(255, 255, 255, 0.58);
}

.pricing-card-signature .pricing-tier,
.pricing-card-signature p,
.pricing-card-signature li::before {
  color: inherit;
}

.pricing-card-signature .pricing-flag {
  background: rgba(255, 248, 241, 0.12);
  color: #fff8f1;
}

.pricing-comparison {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-upgrade-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.pricing-baseline,
.pricing-options {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: var(--shadow);
}

.baseline-grid,
.options-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.baseline-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

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

.option-card {
  padding: 20px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.72);
}

.option-card h3 {
  font-size: 1.35rem;
  margin-top: 0;
}

.option-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.upgrade-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: var(--shadow);
}

.upgrade-card-growth {
  border-color: rgba(193, 92, 45, 0.2);
  background: linear-gradient(180deg, rgba(193, 92, 45, 0.08), rgba(255, 250, 243, 0.82));
}

.upgrade-card-signature {
  border-color: rgba(31, 36, 48, 0.22);
  background: linear-gradient(180deg, rgba(31, 36, 48, 0.94), rgba(76, 40, 28, 0.92));
  color: #fff8f1;
}

.upgrade-card-signature .eyebrow,
.upgrade-card-signature p:last-child {
  color: rgba(255, 248, 241, 0.78);
}

.upgrade-card h3 {
  font-size: 1.55rem;
  margin-top: 10px;
}

.upgrade-card p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.comparison-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 18px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
  text-align: left;
  font-size: 0.94rem;
}

.comparison-table th {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink);
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  background: rgba(255, 248, 240, 0.96);
  z-index: 1;
}

.comparison-table tbody td:first-child,
.comparison-table thead th:first-child {
  min-width: 190px;
}

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

.process-grid span {
  display: inline-block;
  margin-bottom: 18px;
}

.process-grid h3 {
  font-size: 1.45rem;
}

.process-grid p {
  margin: 14px 0 0;
  line-height: 1.7;
}

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

.faq-proof-row,
.contact-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.faq-proof-card,
.contact-intro-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 31, 26, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.faq-proof-card strong,
.contact-intro-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
}

.faq-proof-card p,
.contact-intro-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item {
  margin: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.15;
  padding-right: 36px;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: -2px;
  right: 0;
  color: var(--accent);
  font-size: 1.7rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(380px, 0.98fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 36px;
  background:
    radial-gradient(circle at left top, rgba(177, 69, 47, 0.11), transparent 26%),
    rgba(255, 250, 241, 0.78);
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-copy {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  max-width: none;
}

.contact-proof-row,
.contact-brief-grid {
  display: grid;
  gap: 14px;
}

.contact-proof-row {
  grid-template-columns: repeat(3, minmax(96px, 1fr));
}

.contact-proof-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.contact-brief-grid {
  grid-template-columns: 1fr;
}

.contact-brief-card {
  min-height: 100%;
}

.contact-intro-card {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(248, 240, 230, 0.68));
}

.contact-brief-card,
.contact-response-card {
  padding: 20px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-brief-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-brief-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.contact-builder-card {
  display: grid;
  gap: 16px;
}

.contact-option-box {
  padding: 14px 16px 16px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.contact-option-box summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.contact-option-box summary::-webkit-details-marker {
  display: none;
}

.contact-option-box[open] summary {
  margin-bottom: 14px;
}

.builder-topline,
.contact-estimate-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.builder-topline span,
.contact-estimate-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.builder-topline span {
  background: rgba(31, 36, 48, 0.06);
  color: var(--ink);
}

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

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field span {
  font-weight: 700;
  color: var(--ink);
}

.contact-field input,
.contact-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(31, 36, 48, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
}

.contact-field textarea {
  width: 100%;
  min-height: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 36, 48, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.contact-field:first-child {
  grid-column: span 2;
}

.contact-field-full {
  grid-column: span 2;
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: rgba(177, 69, 47, 0.72);
  box-shadow: 0 0 0 3px rgba(177, 69, 47, 0.12);
}

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

.contact-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-check input {
  margin: 0;
  accent-color: var(--accent);
}

.contact-estimate-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(177, 69, 47, 0.1), transparent 28%),
    rgba(31, 36, 48, 0.04);
  border: 1px solid rgba(31, 36, 48, 0.08);
}

.contact-estimate-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.contact-estimate-top strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.contact-estimate-breakdown {
  display: grid;
  gap: 10px;
}

.estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 36, 48, 0.08);
}

.estimate-row span {
  color: var(--muted);
  font-weight: 600;
}

.estimate-row strong {
  color: var(--ink);
  font-size: 1rem;
}

.estimate-row-total {
  background: rgba(177, 69, 47, 0.08);
  border-color: rgba(177, 69, 47, 0.18);
}

.estimate-row-total span,
.estimate-row-total strong {
  color: var(--ink);
}

.estimate-row-total strong {
  font-size: 1.08rem;
}

.estimate-row-monthly strong {
  color: var(--accent);
}

.contact-error,
.contact-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-error {
  border: 1px solid rgba(177, 69, 47, 0.24);
  background: rgba(177, 69, 47, 0.08);
  color: #8c3e22;
}

.contact-success {
  border: 1px solid rgba(31, 36, 48, 0.12);
  background: rgba(31, 36, 48, 0.06);
  color: var(--ink);
}

.contact-side {
  display: grid;
  gap: 14px;
  min-width: 0;
  align-content: start;
}

.contact-message {
  margin: 12px 0 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(31, 36, 48, 0.06);
  color: var(--ink);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 270px;
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.contact-direct-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 20px;
  margin-top: 32px;
  padding: 22px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.64);
}

.site-footer-block {
  display: grid;
  gap: 8px;
}

.site-footer-block strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}

.site-footer-block p {
  margin: 0;
  line-height: 1.65;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.legal-shell {
  padding-bottom: 40px;
}

.legal-header {
  margin-bottom: 22px;
}

.legal-page {
  display: grid;
  gap: 22px;
}

.checkout-shell {
  padding-bottom: 40px;
}

.checkout-page {
  display: grid;
  gap: 22px;
}

.checkout-hero,
.checkout-card,
.checkout-summary,
.checkout-terms-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 245, 0.76);
  box-shadow: var(--shadow);
}

.checkout-hero,
.checkout-summary,
.checkout-terms-card {
  padding: 26px;
}

.checkout-hero {
  background:
    radial-gradient(circle at top left, rgba(177, 69, 47, 0.12), transparent 28%),
    rgba(255, 251, 245, 0.8);
}

.checkout-hero p:last-child {
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
}

.checkout-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.checkout-summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.checkout-summary-head strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.checkout-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.checkout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 36, 48, 0.08);
}

.checkout-row span {
  color: var(--muted);
  font-weight: 600;
}

.checkout-row strong {
  color: var(--ink);
  text-align: right;
}

.checkout-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 36, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.checkout-check + .checkout-check {
  margin-top: 12px;
}

.checkout-check input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.checkout-check span {
  color: var(--ink);
  line-height: 1.65;
}

.checkout-check a,
.checkout-links a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.checkout-actions {
  margin-top: 18px;
}

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

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.checkout-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
}

.legal-hero,
.legal-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 245, 0.74);
  box-shadow: var(--shadow);
}

.legal-hero {
  background:
    radial-gradient(circle at top left, rgba(177, 69, 47, 0.12), transparent 28%),
    rgba(255, 251, 245, 0.78);
}

.legal-hero h1 {
  margin-top: 10px;
}

.legal-hero p:last-child {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card h2 {
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p + p,
.legal-card ul {
  margin-top: 12px;
}

.legal-card ul {
  padding-left: 18px;
}

@media (max-width: 1080px) {
  .hero,
  .template-grid,
  .results-grid,
  .testimonial-strip,
  .match-layout,
  .match-proof-row,
  .templates-guide,
  .showcase-panel,
  .pricing-proof-row,
  .pricing-ladder,
  .process-grid,
  .process-note-panel,
  .faq-grid,
  .faq-proof-row,
  .proof-strip,
  .contact-intro-grid,
  .studio-standard-grid,
  .contact-card,
  .contact-proof-row,
  .contact-brief-grid,
  .site-footer,
  .process-lite-grid,
  .fit-filter-grid,
  .demo-honesty-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    display: grid;
  }

  .template-grid,
  .results-grid,
  .launch-guarantee-grid,
  .checkout-card,
  .trust-strip-grid,
  .testimonial-strip,
  .pricing-ladder,
  .pricing-upgrade-note,
  .baseline-grid,
  .options-grid,
  .style-bank-grid,
  .page-ideas-grid,
  .contact-form-grid,
  .contact-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .styles-subhead,
  .comparison-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .availability-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .template-modal-dialog {
    width: min(100% - 20px, 1180px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 20px);
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .website-match,
  .template-copy,
  .showcase-panel,
  .pricing-card,
  .style-bank-card,
  .process-grid article,
  .contact-card,
  .process-lite-card,
  .fit-filter-card,
  .fit-list,
  .demo-honesty-card,
  .decision-option {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.1rem, 13vw, 3.1rem);
    max-width: none;
  }

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

  .hero-badges,
  .hero-panel-foot {
    gap: 8px;
  }

  .mock-hero.wide,
  .mock-hero.service,
  .mock-row.two,
  .mock-row.three,
  .mock-row.four,
  .mock-stat-strip,
  .mock-mini-proof,
  .mock-step-row,
  .mock-footer-strip,
  .mock-contact-strip,
  .mock-testimonial,
  .mock-review-band,
  .mock-gallery-hero,
  .mock-editorial {
    grid-template-columns: 1fr;
  }

  .template-grid,
  .results-grid,
  .trust-strip-grid,
  .testimonial-strip,
  .pricing-ladder,
  .decision-grid,
  .pricing-upgrade-note,
  .baseline-grid,
  .options-grid,
  .style-bank-grid,
  .page-ideas-grid,
  .faq-grid,
  .contact-form-grid,
  .contact-extra-grid {
    grid-template-columns: 1fr;
  }

  .mock-site {
    min-height: auto;
  }

  .mock-hero h4,
  .mock-editorial h4 {
    font-size: 1.6rem;
  }

  .template-modal-dialog {
    padding: 18px;
    border-radius: 26px;
  }

  .template-modal-topbar {
    flex-direction: column;
  }

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

  .template-modal-frame {
    max-height: calc(100vh - 210px);
  }

  .template-modal-iframe {
    height: min(64vh, 680px);
  }

  .template-modal-frame .mock-site {
    min-height: auto;
    padding: 18px;
  }

  .template-modal-frame .mock-hero h4,
  .template-modal-frame .mock-editorial h4 {
    font-size: 1.9rem;
  }

  .mini-screen-one {
    grid-column: span 1;
  }

  .contact-actions {
    min-width: 0;
    width: 100%;
  }

  .contact-field:first-child {
    grid-column: span 1;
  }

  .contact-field-full {
    grid-column: span 1;
  }

  .contact-estimate-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .match-result-top {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  body.motion-enabled .reveal-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  body.motion-enabled .page-shell::before,
  body.motion-enabled .site-header::after,
  body.motion-enabled .hero-copy,
  body.motion-enabled .hero-panel,
  body.motion-enabled .proof-strip,
  body.motion-enabled .templates-guide,
  body.motion-enabled .pricing-proof-row,
  body.motion-enabled .process-note-panel,
  body.motion-enabled .faq-proof-row,
  body.motion-enabled .contact-intro-grid {
    transform: none;
    animation: none;
  }
}
