:root {
  color-scheme: light;
  --rs-bg: oklch(98.5% 0.008 240);
  --rs-surface: oklch(99.2% 0.006 240);
  --rs-surface-soft: oklch(97.3% 0.016 236);
  --rs-surface-blue: oklch(95.8% 0.025 235);
  --rs-blue: oklch(49% 0.14 249);
  --rs-blue-strong: oklch(42% 0.125 249);
  --rs-blue-deep: oklch(32% 0.09 249);
  --rs-cyan: oklch(77% 0.09 220);
  --rs-text: oklch(31% 0.055 248);
  --rs-muted: oklch(50% 0.035 247);
  --rs-border: oklch(89% 0.018 242);
  --rs-white-72: oklch(99.2% 0.006 240 / 72%);
  --rs-white-82: oklch(99.2% 0.006 240 / 82%);
  --rs-white-92: oklch(99.2% 0.006 240 / 92%);
  --rs-shadow: 0 32px 80px oklch(31% 0.05 248 / 12%);
  --rs-shadow-soft: 0 18px 46px oklch(31% 0.05 248 / 8%);
  --rs-shadow-deep: 0 30px 90px oklch(31% 0.06 248 / 20%);
  --rs-radius-xl: 34px;
  --rs-radius-lg: 28px;
  --rs-radius-md: 22px;
  --rs-radius-sm: 18px;
  --rs-radius-pill: 999px;
  --rs-container: min(1320px, calc(100vw - 40px));
}

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

body.ridge-body {
  margin: 0;
  color: var(--rs-text);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 0% 18%, oklch(78% 0.06 220 / 24%), transparent 28%),
    radial-gradient(circle at 100% 12%, oklch(49% 0.11 249 / 16%), transparent 24%),
    linear-gradient(180deg, var(--rs-bg) 0%, oklch(99% 0.004 240) 52%, var(--rs-bg) 100%);
}

.rs-shell {
  overflow: clip;
}

.rs-home {
  padding-bottom: 88px;
}

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

.rs-section {
  position: relative;
  padding: 72px 0;
}

.rs-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 18px 0;
  background: oklch(99.4% 0.004 240);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px oklch(31% 0.05 248 / 10%);
  transition:
    padding 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.rs-header.is-top {
  padding: 28px 0 16px;
  background: transparent;
  backdrop-filter: blur(0);
  box-shadow: none;
}

.rs-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding-inline: 8px;
  transition:
    min-height 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    padding-inline 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.rs-header.is-top .rs-header-inner {
  min-height: 82px;
  padding-inline: 18px;
}

.rs-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  gap: 0;
  text-decoration: none;
}

.rs-brand--header,
.rs-brand--footer {
  flex-direction: row;
  align-items: center;
}

.rs-brand--header {
  gap: 0;
}

.rs-brand--footer {
  gap: 16px;
}

.rs-brand-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.rs-brand-logo--header {
  width: 52px;
  height: 52px;
}

.rs-brand-logo--footer {
  width: 75px;
  height: 75px;
}

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

.rs-brand-script {
  color: var(--rs-blue-deep);
  font-family: 'Marck Script', cursive;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 0.84;
}

.rs-brand-block {
  color: oklch(27% 0.028 248 / 92%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.rs-header-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.rs-header-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto auto;
  align-items: center;
  justify-content: end;
  gap: 10px 28px;
}

.rs-header-meta-item {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.rs-header-meta-item a,
.rs-header-meta-links {
  color: oklch(25% 0.02 248 / 94%);
  font-size: 0.96rem;
  line-height: 1.2;
}

.rs-header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid oklch(84% 0.02 242 / 90%);
  border-radius: var(--rs-radius-pill);
  background: oklch(99.2% 0.006 240 / 88%);
  box-shadow: 0 12px 30px oklch(31% 0.05 248 / 8%);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

.rs-header-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rs-header-meta-links a {
  position: relative;
}

.rs-header-meta-links:not(.rs-header-meta-links--media) a + a::before {
  content: '·';
  margin-right: 8px;
  color: oklch(48% 0.025 247);
}

.rs-header-nav {
  column-gap: 0;
  row-gap: 6px;
}

.rs-header-nav a {
  white-space: nowrap;
}

.rs-header-meta-links--media {
  gap: 10px;
}

.rs-header-media-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.rs-header-media-link:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.rs-media-logo,
.rs-btn-logo {
  display: block;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.rs-media-logo {
  width: 36px;
  height: 36px;
}

.rs-btn-logo {
  width: 20px;
  height: 20px;
}

.rs-header-cta,
.rs-btn,
.rs-hero-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--rs-radius-pill);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.rs-header-cta {
  padding: 13px 28px;
  color: oklch(24% 0.018 248 / 94%);
  background: oklch(99.2% 0.006 240 / 88%);
  border: 1px solid oklch(84% 0.02 242 / 90%);
  box-shadow: 0 12px 30px oklch(31% 0.05 248 / 8%);
  font-size: 0.94rem;
  font-weight: 600;
}

.rs-btn:hover,
.rs-header-cta:hover,
.rs-header-phone:hover,
.rs-hero-order:hover,
.rs-hero-link:hover,
.rs-footer-links a:hover,
.rs-footer-contact a:hover,
.rs-footer-icon:hover {
  transform: translateY(-2px);
}

.rs-btn {
  padding: 16px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  white-space: nowrap;
}

.rs-btn--primary {
  color: var(--rs-surface);
  background: var(--rs-blue);
  box-shadow: 0 18px 40px oklch(49% 0.12 249 / 24%);
}

.rs-btn--secondary {
  color: var(--rs-blue-deep);
  background: var(--rs-surface);
  border: 1px solid oklch(86% 0.02 242);
  box-shadow: var(--rs-shadow-soft);
}

.rs-btn--ghost {
  color: var(--rs-surface);
  background: oklch(99.2% 0.006 240 / 10%);
  border: 1px solid oklch(99.2% 0.006 240 / 18%);
}

.rs-arrow-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rs-star-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.rs-kicker {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.rs-kicker--blue {
  color: var(--rs-blue);
}

.rs-kicker--light {
  color: var(--rs-white-72);
}

.rs-hero {
  position: relative;
  min-height: max(920px, 100svh);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.rs-hero-media,
.rs-compare-grid img,
.rs-showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rs-showcase-card img {
  transition: transform 0.28s ease;
}

.rs-hero-media {
  position: absolute;
  inset: 0;
  object-position: center center;
}

.rs-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(99.2% 0.006 240 / 84%) 0%, oklch(99.2% 0.006 240 / 48%) 15%, oklch(99.2% 0.006 240 / 10%) 36%, oklch(99.2% 0.006 240 / 0%) 62%),
    radial-gradient(circle at 50% 18%, oklch(99.2% 0.006 240 / 34%), transparent 22%),
    linear-gradient(90deg, oklch(99.2% 0.006 240 / 12%) 0%, oklch(99.2% 0.006 240 / 0%) 18%, oklch(99.2% 0.006 240 / 0%) 82%, oklch(99.2% 0.006 240 / 12%) 100%);
}

.rs-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(118px, 12vw, 168px);
  padding-bottom: clamp(120px, 10vw, 156px);
}

.rs-hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.rs-hero h1,
.rs-intro-copy h2,
.rs-services-head h2,
.rs-section-head h2,
.rs-review-headline h2,
.rs-contact-head h2,
.rs-form-heading h3,
.rs-contact-aside h3 {
  margin: 0;
  color: var(--rs-blue);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.rs-hero h1 {
  color: var(--rs-blue);
  font-family: 'Arsenal SC', serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.rs-hero-text,
.rs-intro-copy p,
.rs-services-head > p,
.rs-section-head p,
.rs-review-headline p,
.rs-contact-head p,
.rs-form-heading p,
.rs-form-actions p,
.rs-contact-aside p,
.rs-benefit-card p,
.rs-service-pill p,
.rs-review-copy,
.rs-footer-brand p,
.rs-footer-contact {
  color: var(--rs-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.rs-hero-text {
  max-width: 640px;
  margin: 18px auto 0;
  color: oklch(20% 0.02 248 / 90%);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.42;
}

.rs-hero-actions {
  display: grid;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.rs-hero-action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.rs-hero-action-row--primary {
  display: none;
}

.rs-hero-action-row .rs-btn {
  min-height: 66px;
  padding-inline: 24px;
}

.rs-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid oklch(88% 0.018 242 / 80%);
  border-radius: var(--rs-radius-pill);
  background: oklch(99.2% 0.006 240 / 82%);
  color: oklch(26% 0.028 248 / 88%);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 36px oklch(31% 0.05 248 / 10%);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.rs-hero-order {
  position: relative;
  min-height: 70px;
  padding: 18px 34px;
  overflow: hidden;
  color: var(--rs-surface);
  background: linear-gradient(140deg, oklch(37% 0.1 248) 0%, oklch(47% 0.14 248) 56%, oklch(68% 0.09 220) 100%);
  border: 1px solid oklch(92% 0.018 240 / 24%);
  box-shadow: 0 24px 60px oklch(34% 0.08 248 / 24%);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rs-hero-order::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, oklch(99.2% 0.006 240 / 20%) 0%, transparent 42%);
}

.rs-hero-order > * {
  position: relative;
  z-index: 1;
}

.rs-hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.rs-hero-facts span {
  padding: 10px 16px;
  border: 1px solid oklch(88% 0.018 242 / 80%);
  border-radius: 999px;
  background: oklch(99.2% 0.006 240 / 78%);
  color: oklch(26% 0.028 248 / 86%);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rs-compare-card,
.rs-review-card,
.rs-form-card,
.rs-contact-aside,
.rs-benefit-card,
.rs-showcase-card {
  border: 1px solid var(--rs-border);
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-soft);
}

.rs-intro-grid,
.rs-features-layout,
.rs-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 40px;
  align-items: start;
}

.rs-intro-visual {
  display: grid;
  gap: 18px;
}

.rs-intro-copy {
  max-width: 520px;
}

.rs-intro-copy h2,
.rs-services-head h2,
.rs-section-head h2,
.rs-review-headline h2,
.rs-contact-head h2 {
  font-size: clamp(2.45rem, 4vw, 3.85rem);
  line-height: 1.03;
}

.rs-review-headline-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.rs-showcase-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-auto-rows: 190px;
}

.rs-section--showcase {
  padding-top: 34px;
}

.rs-showcase-head,
.rs-studio-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.rs-showcase-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.rs-showcase-head h2,
.rs-studio-head h2 {
  margin: 0;
  color: var(--rs-blue);
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.85rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.rs-showcase-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.rs-showcase-count {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid oklch(82% 0.03 238);
  border-radius: 999px;
  background: oklch(98.7% 0.012 239);
  color: var(--rs-blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rs-showcase-grid--gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.rs-showcase-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.rs-showcase-grid--gallery .rs-showcase-card {
  min-height: 100%;
}

.rs-showcase-grid--gallery .rs-showcase-card img {
  aspect-ratio: 4 / 3;
}

.rs-showcase-card {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
}

.rs-showcase-card:hover img,
.rs-showcase-card:focus-within img {
  transform: scale(1.03);
}

.rs-showcase-card figcaption {
  position: absolute;
  inset: auto 10px 10px 10px;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.rs-showcase-card:hover figcaption,
.rs-showcase-card:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.rs-showcase-card span,
.rs-showcase-card strong {
  color: var(--rs-white-92);
}

.rs-showcase-card span {
  padding: 8px 10px;
  border-radius: 999px;
  background: oklch(22% 0.025 248 / 74%);
  backdrop-filter: blur(10px);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rs-showcase-card strong {
  display: none;
}

.rs-inline-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: var(--rs-surface-blue);
  color: var(--rs-blue-deep);
}

.rs-inline-note strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
}

.rs-inline-note span {
  color: var(--rs-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.rs-compare-card {
  padding: 18px;
  border-radius: 30px;
}

.rs-compare-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.rs-compare-head h3 {
  margin: 0;
  color: var(--rs-blue-deep);
  font-family: 'Syne', sans-serif;
  font-size: 1.36rem;
  line-height: 1.08;
}

.rs-compare-mark {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: var(--rs-radius-pill);
  background: var(--rs-surface-blue);
  color: var(--rs-blue-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.rs-compare-grid figure {
  margin: 0;
}

.rs-compare-grid img {
  aspect-ratio: 1 / 0.88;
  border-radius: 20px;
}

.rs-compare-label {
  margin-bottom: 10px;
  color: var(--rs-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rs-compare-label--after {
  color: var(--rs-blue-strong);
}

.rs-section--studio {
  padding-top: 18px;
}

.rs-studio-shell {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
  gap: 20px;
  align-items: stretch;
}

.rs-studio-head {
  max-width: 700px;
}

.rs-studio-head p:last-child {
  margin: 0;
  color: var(--rs-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.rs-intro-copy--narrow {
  max-width: 470px;
}

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

.rs-benefit-grid--large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  align-items: stretch;
}

.rs-benefit-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px 22px;
  border-radius: 26px;
}

.rs-benefit-grid--large .rs-benefit-card {
  gap: 14px;
  height: 100%;
  padding: 18px 16px;
  border-radius: 22px;
  align-content: start;
  background: oklch(99.4% 0.004 240 / 96%);
}

.rs-benefit-card h3,
.rs-service-pill h3,
.rs-review-head h3,
.rs-footer-grid h3 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
}

.rs-benefit-card h3 {
  color: var(--rs-blue-deep);
  font-size: 1.12rem;
}

.rs-benefit-card p {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.rs-benefit-copy {
  display: grid;
  align-content: start;
}

.rs-benefit-grid--large .rs-benefit-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}

.rs-benefit-grid--large .rs-benefit-card h3 {
  font-size: 1rem;
}

.rs-benefit-grid--large .rs-benefit-card p {
  margin-top: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.rs-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--rs-surface-blue);
  color: var(--rs-blue-strong);
}

.rs-benefit-grid--large .rs-benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.rs-benefit-icon-svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rs-benefit-grid--large .rs-benefit-icon-svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.rs-services-band {
  display: grid;
  align-content: start;
  padding: 24px clamp(20px, 3vw, 30px);
  border-radius: 30px;
  background: linear-gradient(180deg, var(--rs-blue-deep) 0%, var(--rs-blue-strong) 100%);
  box-shadow: var(--rs-shadow-deep);
}

.rs-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.rs-services-head--compact > p {
  max-width: 28ch;
  justify-self: end;
}

.rs-services-head h2,
.rs-services-head p,
.rs-service-pill h3,
.rs-service-pill p {
  color: var(--rs-white-92);
}

.rs-services-head--compact h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.04;
}

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

.rs-services-grid--spotlight {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  align-items: start;
}

.rs-section--faq {
  padding-top: 28px;
}

.rs-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 32px;
  align-items: start;
}

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

.rs-faq-item {
  overflow: hidden;
  border: 1px solid var(--rs-border);
  border-radius: 28px;
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-soft);
}

.rs-faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
}

.rs-faq-question::-webkit-details-marker {
  display: none;
}

.rs-faq-question span:first-child {
  color: var(--rs-blue-deep);
  font-family: 'Syne', sans-serif;
  font-size: 1.14rem;
  line-height: 1.18;
}

.rs-faq-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid oklch(88% 0.022 240);
  border-radius: 50%;
  background: var(--rs-surface-blue);
  color: var(--rs-blue-strong);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.rs-faq-toggle::before,
.rs-faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

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

.rs-faq-item[open] .rs-faq-toggle {
  transform: rotate(45deg);
}

.rs-faq-answer {
  margin: 0 24px 22px;
  padding-top: 18px;
  border-top: 1px solid oklch(92% 0.016 242);
}

.rs-faq-answer p {
  margin: 0;
  max-width: 58ch;
  color: var(--rs-muted);
  font-size: 0.97rem;
  line-height: 1.76;
}

.rs-faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.rs-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid oklch(88% 0.022 240);
  border-radius: 999px;
  background: var(--rs-surface-blue);
  color: var(--rs-blue-strong);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.rs-faq-link:hover {
  transform: translateY(-1px);
  border-color: oklch(74% 0.08 235);
  background: oklch(96% 0.02 234);
}

.rs-faq-link .rs-arrow-icon {
  width: 16px;
  height: 16px;
}

.rs-service-pill {
  padding: 22px 14px 14px;
  text-align: left;
}

.rs-services-grid--spotlight .rs-service-pill {
  padding: 18px 16px 14px;
  border: 1px solid oklch(99.2% 0.006 240 / 14%);
  border-radius: 20px;
  background: oklch(99.2% 0.006 240 / 8%);
}

.rs-service-pill h3 {
  font-size: 1.14rem;
}

.rs-services-grid--spotlight .rs-service-pill h3 {
  font-size: 1rem;
}

.rs-service-pill p {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--rs-white-72);
}

.rs-services-grid--spotlight .rs-service-pill p {
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.42;
}

.rs-section--before-after {
  padding-top: 54px;
}

.rs-section-head,
.rs-review-headline,
.rs-contact-head {
  display: grid;
  gap: 10px;
}

.rs-section-head p,
.rs-review-headline p,
.rs-contact-head p {
  margin: 0;
  max-width: 40ch;
}

.rs-section--reviews {
  background: linear-gradient(180deg, oklch(97.8% 0.015 236) 0%, oklch(99.1% 0.005 240) 100%);
}

.rs-review-headline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.rs-review-grid {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  padding: 2px 2px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: oklch(73% 0.04 239) oklch(95.8% 0.025 235);
}

.rs-review-grid::-webkit-scrollbar {
  height: 10px;
}

.rs-review-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: oklch(95.8% 0.025 235);
}

.rs-review-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: oklch(73% 0.04 239);
}

.rs-review-card {
  display: flex;
  flex: 0 0 min(360px, calc(100vw - 56px));
  flex-direction: column;
  min-width: 0;
  padding: 24px 22px;
  border-radius: 24px;
  scroll-snap-align: start;
}

.rs-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rs-review-head h3 {
  color: var(--rs-blue-deep);
  font-size: 1.08rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.rs-review-head p {
  margin: 4px 0 0;
  color: var(--rs-muted);
  font-size: 0.84rem;
}

.rs-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, oklch(83% 0.06 220) 0%, oklch(90% 0.025 241) 100%);
  color: var(--rs-blue-strong);
  font-weight: 700;
}

.rs-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: oklch(79% 0.16 86);
}

.rs-review-copy-shell {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  margin-top: 14px;
}

.rs-review-copy {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.72;
}

.rs-review-copy-shell--collapsible .rs-review-copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.rs-review-toggle-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.rs-review-toggle-input:checked ~ .rs-review-copy {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.rs-review-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--rs-blue);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.rs-review-toggle-less {
  display: none;
}

.rs-review-toggle-input:checked ~ .rs-review-toggle .rs-review-toggle-more {
  display: none;
}

.rs-review-toggle-input:checked ~ .rs-review-toggle .rs-review-toggle-less {
  display: inline;
}

.rs-section--contact {
  padding-top: 56px;
}

.rs-map-section {
  padding: 0 0 42px;
}

.rs-map-frame {
  overflow: hidden;
  border: 1px solid var(--rs-border);
  border-radius: 34px;
  background: var(--rs-surface);
  box-shadow: var(--rs-shadow-soft);
}

.rs-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 0;
}

.rs-map-head h2 {
  margin: 0;
  color: var(--rs-blue);
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.rs-map-embed {
  display: block;
  width: 100%;
  height: 440px;
  margin-top: 22px;
  border: 0;
}

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

.rs-contact-head {
  margin-bottom: 24px;
}

.rs-contact-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
}

.rs-contact-panel {
  display: grid;
  gap: 18px;
}

.rs-contact-aside {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--rs-blue-deep) 0%, var(--rs-blue-strong) 100%);
  box-shadow: var(--rs-shadow-deep);
}

.rs-contact-aside h3,
.rs-contact-aside p,
.rs-contact-aside strong,
.rs-contact-points p,
.rs-contact-aside .rs-kicker {
  color: var(--rs-white-92);
}

.rs-contact-points {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.rs-contact-points p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
}

.rs-stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.rs-form-card {
  padding: 34px;
  border-radius: 30px;
  box-shadow: var(--rs-shadow);
}

.rs-form-heading h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.rs-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.rs-field {
  display: grid;
  gap: 8px;
}

.rs-field span {
  color: var(--rs-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.rs-field input,
.rs-field select,
.rs-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid oklch(85% 0.02 242);
  border-radius: 20px;
  outline: none;
  color: var(--rs-text);
  background: var(--rs-surface-soft);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.rs-field input:focus,
.rs-field select:focus,
.rs-field textarea:focus {
  border-color: oklch(60% 0.08 239);
  background: var(--rs-surface);
  box-shadow: 0 0 0 4px oklch(80% 0.06 220 / 30%);
}

.rs-field textarea {
  resize: vertical;
}

.rs-form-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.rs-form-actions p {
  margin: 0;
  max-width: 44ch;
  font-size: 0.92rem;
}

.rs-estimate-slot {
  margin-top: 18px;
}

.rs-estimate-response {
  padding: 16px 18px;
  border-radius: 20px;
  background: oklch(95% 0.03 155);
  color: oklch(34% 0.07 154);
  font-size: 0.92rem;
  line-height: 1.7;
}

.rs-estimate-response p {
  margin: 6px 0 0;
}

.rs-estimate-response-title {
  margin-top: 0;
  font-weight: 700;
}

.rs-footer {
  padding: 0 0 34px;
}

.rs-footer-band {
  padding: 42px 34px;
  border-radius: 30px;
  border: 1px solid oklch(99.2% 0.006 240 / 10%);
  background:
    radial-gradient(circle at 8% 14%, oklch(77% 0.05 220 / 12%), transparent 22%),
    linear-gradient(180deg, oklch(34% 0.088 249) 0%, oklch(32% 0.082 249) 100%);
  box-shadow: 0 28px 72px oklch(31% 0.06 248 / 16%);
}

.rs-footer-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr 0.96fr;
  gap: 36px;
  align-items: start;
}

.rs-footer-grid h3 {
  margin: 0 0 16px;
  color: var(--rs-white-92);
  font-size: 1.02rem;
}

.rs-brand--footer .rs-brand-script,
.rs-brand--footer .rs-brand-block,
.rs-footer-brand p,
.rs-footer-links a,
.rs-footer-contact,
.rs-footer-contact a,
.rs-footer-rail-label,
.rs-footer-rail-value {
  color: var(--rs-white-82);
}

.rs-brand--footer .rs-brand-script {
  font-size: clamp(2.3rem, 3vw, 3rem);
}

.rs-brand--footer .rs-brand-block {
  font-size: 0.72rem;
}

.rs-footer-brand p {
  max-width: 360px;
}

.rs-phone-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rs-footer-brand,
.rs-footer-column {
  display: grid;
  align-content: start;
}

.rs-footer-column {
  gap: 2px;
}

.rs-footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rs-footer-links a,
.rs-footer-contact a,
.rs-footer-contact p,
.rs-footer-rail-label,
.rs-footer-rail-value {
  font-size: 0.92rem;
  text-decoration: none;
}

.rs-footer-contact {
  display: grid;
  gap: 12px;
  max-width: 270px;
}

.rs-footer-contact a {
  line-height: 1.6;
}

.rs-footer-contact p,
.rs-footer-rail-item p {
  margin: 0;
}

.rs-footer-rail {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid oklch(99.2% 0.006 240 / 10%);
}

.rs-footer-rail-item {
  display: grid;
  gap: 4px;
  align-content: start;
}

.rs-footer-rail-label {
  color: var(--rs-white-72);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rs-footer-rail-value {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.rs-footer-panel-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  justify-self: end;
  width: min(520px, 100%);
}

.rs-footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid oklch(99.2% 0.006 240 / 14%);
  background: oklch(99.2% 0.006 240 / 6%);
  color: var(--rs-surface);
  text-decoration: none;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.rs-footer-action:hover {
  transform: translateY(-2px);
  background: oklch(99.2% 0.006 240 / 10%);
  box-shadow: 0 10px 22px oklch(20% 0.04 248 / 12%);
}

.rs-footer-action .rs-media-logo {
  width: 20px;
  height: 20px;
}

.rs-footer-action-label {
  font-size: 0.92rem;
  font-weight: 600;
}

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

body.is-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .reveal[data-reveal='left'] {
  transform: translate3d(-34px, 20px, 0);
}

body.is-ready .reveal[data-reveal='right'] {
  transform: translate3d(34px, 20px, 0);
}

body.is-ready .reveal[data-reveal='hero'] {
  transform: translate3d(0, 48px, 0) scale(1.01);
}

body.is-ready .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

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

  .reveal,
  .reveal[data-reveal],
  .rs-header,
  .rs-header-inner,
  .rs-btn,
  .rs-header-cta,
  .rs-hero-order,
  .rs-footer-icon {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

.rs-lightbox {
  width: fit-content;
  max-width: min(84vw, 920px);
  margin: auto;
  padding: 14px;
  border: 0;
  border-radius: 24px;
  background: oklch(99.2% 0.006 240 / 98%);
  box-shadow: 0 30px 100px oklch(18% 0.02 248 / 34%);
}

.rs-lightbox::backdrop {
  background: oklch(12% 0.015 248 / 72%);
  backdrop-filter: blur(6px);
}

.rs-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: oklch(22% 0.025 248 / 78%);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.rs-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 76vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 18px;
}

.rs-lightbox-caption {
  margin: 10px 4px 0;
  text-align: center;
  color: var(--rs-blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .rs-header-inner,
  .rs-intro-grid,
  .rs-features-layout,
  .rs-faq-layout,
  .rs-contact-layout,
  .rs-footer-grid,
  .rs-studio-shell {
    grid-template-columns: 1fr;
  }

  .rs-footer-rail {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rs-footer-panel-actions {
    justify-self: start;
    width: 100%;
  }

  .rs-header-side {
    flex-direction: column;
    align-items: flex-start;
  }

  .rs-header-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }

  .rs-map-head,
  .rs-review-headline {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .rs-showcase-head h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  }

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

  .rs-services-grid,
  .rs-review-grid,
  .rs-compare-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rs-services-head,
  .rs-review-headline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 88px;
  }

  .rs-header,
  .rs-header.is-top {
    padding: 12px 0;
    background: oklch(99.2% 0.006 240 / 94%);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 34px oklch(31% 0.05 248 / 10%);
  }

  .rs-header-inner,
  .rs-header.is-top .rs-header-inner {
    gap: 12px;
    min-height: 56px;
    padding-inline: 0;
  }

  .rs-header-side {
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .rs-header-meta {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .rs-header-meta-item--nav,
  .rs-header-meta-item--media,
  .rs-header-cta {
    display: none;
  }

  .rs-header-phone {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  .rs-brand-logo--header {
    width: 42px;
    height: 42px;
  }

  .rs-hero {
    min-height: auto;
    padding-bottom: 32px;
  }

  .rs-hero-overlay {
    background:
      linear-gradient(180deg, oklch(99.2% 0.006 240 / 92%) 0%, oklch(99.2% 0.006 240 / 66%) 22%, oklch(99.2% 0.006 240 / 18%) 48%, oklch(99.2% 0.006 240 / 0%) 72%),
      linear-gradient(90deg, oklch(99.2% 0.006 240 / 20%) 0%, oklch(99.2% 0.006 240 / 6%) 22%, oklch(99.2% 0.006 240 / 6%) 78%, oklch(99.2% 0.006 240 / 20%) 100%);
  }

  .rs-hero-content {
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .rs-hero-copy {
    max-width: none;
    text-align: left;
  }

  .rs-hero h1 {
    max-width: 8ch;
    font-size: clamp(2.7rem, 14vw, 4rem);
    line-height: 0.92;
    letter-spacing: 0.014em;
  }

  .rs-hero-text {
    max-width: 30ch;
    margin-left: 0;
    margin-right: 0;
    font-size: 1rem;
    line-height: 1.48;
  }

  .rs-hero-actions,
  .rs-hero-action-row {
    justify-content: stretch;
  }

  .rs-hero-action-row--primary {
    display: flex;
  }

  .rs-hero-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rs-hero-action-row .rs-btn,
  .rs-hero-link {
    width: 100%;
  }

  .rs-hero-link,
  .rs-hero-action-row .rs-btn {
    min-height: 58px;
  }

  .rs-hero-facts {
    gap: 8px;
    justify-content: flex-start;
  }

  .rs-hero-facts span {
    width: 100%;
    justify-content: center;
  }

  .rs-section {
    padding: 56px 0;
  }

  .rs-map-head {
    padding: 22px 22px 0;
  }

  .rs-map-embed {
    height: 360px;
  }

  .rs-showcase-grid,
  .rs-benefit-grid,
  .rs-services-grid,
  .rs-review-grid,
  .rs-compare-wall,
  .rs-compare-grid,
  .rs-footer-grid,
  .rs-footer-rail,
  .rs-footer-links,
  .rs-footer-panel-actions {
    grid-template-columns: 1fr;
  }

  .rs-showcase-grid--gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .rs-showcase-title-row {
    align-items: flex-start;
  }

  .rs-lightbox {
    max-width: calc(100vw - 20px);
    padding: 10px;
    border-radius: 20px;
  }

  .rs-compare-head,
  .rs-stack-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .rs-form-card,
  .rs-contact-aside,
  .rs-footer-band,
  .rs-services-band {
    padding: 24px;
  }

  .rs-faq-question {
    padding: 18px 18px;
  }

  .rs-faq-question span:first-child {
    font-size: 1.04rem;
  }

  .rs-faq-answer {
    margin: 0 18px 18px;
    padding-top: 16px;
  }

  .rs-faq-links {
    flex-direction: column;
  }

  .rs-faq-link {
    width: 100%;
    justify-content: space-between;
  }

  .rs-footer-band {
    border-radius: 28px;
  }
}
