:root {
  --bg: #eef4fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fbfdff;
  --surface-dark: #152742;
  --text: #16233a;
  --muted: #5b6d89;
  --line: rgba(22, 35, 58, 0.12);
  --primary: #0f609c;
  --primary-deep: #0a4777;
  --secondary: #728fd4;
  --accent: #a261b2;
  --accent-soft: #eef1ff;
  --shadow: 0 24px 70px rgba(19, 47, 82, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(114, 143, 212, 0.28), transparent 34%),
    radial-gradient(circle at top right, rgba(162, 97, 178, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

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

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  z-index: -1;
}

.page-shell::before {
  width: 320px;
  height: 320px;
  top: 110px;
  left: -90px;
  background: rgba(114, 143, 212, 0.22);
}

.page-shell::after {
  width: 280px;
  height: 280px;
  top: 760px;
  right: -110px;
  background: rgba(162, 97, 178, 0.14);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: rgba(251, 253, 255, 0.72);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(17, 43, 72, 0.98), rgba(67, 56, 121, 0.95)),
    #1a3151;
  color: #f9f4ee;
}

.section-contact {
  padding-bottom: 6.25rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.hero-copy h1,
.process-copy h2,
.quote-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.section-heading p,
.process-copy p,
.contact-copy p,
.quote-panel p,
.hero-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 251, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(18, 47, 83, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 114px;
  height: 114px;
  padding: 0.2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 34px rgba(15, 96, 156, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  line-height: 0.88;
  white-space: nowrap;
}

.brand-invita {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #4b2f79;
}

.brand-todos {
  margin-left: -0.06em;
  font-family: "Allura", cursive;
  font-size: clamp(2rem, 2.9vw, 3.1rem);
  color: #ff5f9c;
}

.brand-copy small {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brand-copy small::before,
.brand-copy small::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d3a86f;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary);
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(18, 47, 83, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 7px;
}

.hero-section {
  padding: 3.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  margin-bottom: 1.2rem;
  max-width: 760px;
}

.hero-breadcrumb-shell {
  width: 100%;
  padding: 0.85rem 0 0.95rem;
  margin-bottom: 1.35rem;
  border-top: 1px solid rgba(15, 96, 156, 0.1);
  border-bottom: 1px solid rgba(15, 96, 156, 0.1);
}

.hero-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0;
}

.hero-breadcrumb-title {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-breadcrumb-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 1.15rem 0 0;
  margin-right: 0.95rem;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}

.hero-breadcrumb-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.55;
}

.hero-breadcrumb-item:last-child {
  margin-right: 0;
  padding-right: 0;
}

.hero-breadcrumb-item:last-child::after {
  display: none;
}

.hero-copy {
  width: 100%;
  max-width: none;
}

.hero-text {
  max-width: 620px;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  color: #fff9f4;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 30px rgba(15, 96, 156, 0.24);
}

.button-secondary {
  border-color: rgba(99, 91, 107, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.hero-highlights {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--primary), var(--accent));
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(100%, 460px);
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 245, 255, 0.62));
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
}

.floating-note {
  position: absolute;
  right: -1rem;
  bottom: 1.4rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(17, 39, 66, 0.96);
  color: #f9f4ee;
  box-shadow: 0 18px 30px rgba(31, 35, 48, 0.18);
}

.floating-note span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(249, 244, 238, 0.72);
}

.services-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card,
.feature-card,
.step-card,
.contact-form,
.quote-panel {
  border: 1px solid rgba(68, 48, 48, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 255, 0.84));
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(19, 47, 82, 0.14);
  border-color: rgba(15, 96, 156, 0.14);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(15, 96, 156, 0.12), rgba(162, 97, 178, 0.18));
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(15, 96, 156, 0.08);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(15, 96, 156, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3,
.feature-card h3,
.step-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.service-card p,
.feature-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.service-more-button {
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
}

.feature-card {
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(15, 96, 156, 0.12), rgba(162, 97, 178, 0.18));
  color: var(--primary);
  font-weight: 800;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.process-copy p,
.section-accent .eyebrow {
  color: rgba(249, 244, 238, 0.76);
}

.process-copy h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.5rem);
  margin-bottom: 1rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.step-card p {
  color: rgba(249, 244, 238, 0.7);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.88)),
    var(--surface-strong);
}

.quote-panel h2 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: start;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.contact-badges span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 96, 156, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-form {
  padding: 1.65rem;
  background: rgba(255, 255, 255, 0.86);
}

.field-group {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.field-group label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(99, 91, 107, 0.16);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.96);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: rgba(15, 96, 156, 0.38);
  box-shadow: 0 0 0 4px rgba(15, 96, 156, 0.12);
  background: #fff;
}

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

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

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.is-success {
  color: #0d5b91;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.xv-showcase-modal .modal-dialog {
  max-width: min(1320px, calc(100% - 1.5rem));
}

.xv-showcase-modal .modal-content {
  border: 1px solid rgba(15, 96, 156, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(250, 253, 255, 0.98), rgba(239, 246, 255, 0.96));
  box-shadow: 0 32px 70px rgba(19, 47, 82, 0.16);
}

.xv-showcase-modal .modal-header {
  align-items: flex-start;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(15, 96, 156, 0.08);
}

.xv-showcase-modal .btn-close {
  margin: 0;
}

.modal-kicker,
.xv-showcase-label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.xv-showcase-modal .modal-title,
.xv-showcase-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.xv-showcase-modal .modal-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.xv-showcase-modal .modal-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.xv-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 1.25rem;
}

.xv-showcase-preview,
.xv-showcase-sidebar {
  min-width: 0;
}

.xv-showcase-frame {
  overflow: hidden;
  border: 1px solid rgba(15, 96, 156, 0.08);
  border-radius: 26px;
  background: #edf5fd;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.xv-showcase-frame iframe {
  width: 100%;
  height: min(78vh, 820px);
  border: 0;
  background: white;
}

.xv-showcase-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.xv-showcase-copy {
  padding: 1.25rem;
  border: 1px solid rgba(15, 96, 156, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.xv-showcase-copy h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  margin-bottom: 0.7rem;
}

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

.xv-showcase-link {
  margin-top: 1rem;
  width: 100%;
}

.xv-design-list {
  display: grid;
  gap: 0.8rem;
}

.xv-design-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.85rem;
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(15, 96, 156, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.xv-design-item:hover,
.xv-design-item:focus-visible,
.xv-design-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(15, 96, 156, 0.26);
  box-shadow: 0 18px 34px rgba(19, 47, 82, 0.1);
}

.xv-design-thumb {
  width: 96px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 240, 251, 0.94));
}

.xv-design-thumb iframe {
  width: 300%;
  height: 300%;
  border: 0;
  transform: scale(0.3333);
  transform-origin: top left;
  pointer-events: none;
}

.xv-design-meta {
  min-width: 0;
}

.xv-design-meta strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.xv-design-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .process-layout,
  .contact-layout,
  .quote-panel,
  .services-grid,
  .feature-grid,
  .xv-showcase-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    order: -1;
  }

  .floating-note {
    right: 1rem;
  }

  .xv-showcase-frame iframe {
    height: 62vh;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    border: 1px solid rgba(68, 48, 48, 0.08);
    border-radius: 22px;
    background: rgba(249, 252, 255, 0.97);
    box-shadow: 0 18px 40px rgba(18, 47, 83, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(15, 96, 156, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

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

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero-section {
    padding-top: 2.2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-breadcrumb-shell {
    padding: 0.75rem 0 0.85rem;
  }

  .hero-breadcrumb-item {
    margin-right: 0.8rem;
    padding-right: 0.95rem;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .xv-design-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .xv-design-thumb {
    width: 84px;
    height: 108px;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 92px;
    height: 92px;
    padding: 0.18rem;
    border-radius: 24px;
  }

  .brand-mark img {
    border-radius: 18px;
  }

  .brand-invita {
    font-size: 1.55rem;
  }

  .brand-todos {
    font-size: 2rem;
  }

  .brand-copy small {
    gap: 0.45rem;
    font-size: 0.6rem;
    letter-spacing: 0.26em;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 16vw, 4.15rem);
  }

  .section-heading h2,
  .process-copy h2,
  .quote-panel h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .hero-actions,
  .contact-badges,
  .footer-inner {
    gap: 0.75rem;
  }

  .button,
  .button-full {
    width: 100%;
  }

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

  .floating-note {
    position: static;
    margin-top: 1rem;
  }

  .xv-showcase-modal .modal-header,
  .xv-showcase-modal .modal-body {
    padding-inline: 1rem;
  }

  .xv-showcase-copy,
  .xv-design-item {
    padding: 0.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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