:root {
  --rowash-ink: #15242c;
  --rowash-muted: #5d6d73;
  --rowash-line: #d9e2e4;
  --rowash-paper: #f4f0e8;
  --rowash-surface: #ffffff;
  --rowash-deep: #123843;
  --rowash-accent: #c36b2c;
  --rowash-shadow: 0 18px 50px rgba(18, 56, 67, 0.12);
}

* {
  box-sizing: border-box;
}

body.rowash-site-kit-body {
  margin: 0;
  color: var(--rowash-ink);
  background: linear-gradient(180deg, #f7f4ee 0%, #ffffff 30%, #f7fbfb 100%);
  font-family: Georgia, "Times New Roman", serif;
}

.rowash-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.rowash-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(21, 36, 44, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.rowash-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.rowash-header-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rowash-header-panel-top,
.rowash-menu-toggle,
.rowash-menu-close,
.rowash-menu-overlay {
  display: none;
}

.rowash-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--rowash-ink);
  text-decoration: none;
}

.rowash-brand strong,
.rowash-brand span {
  display: block;
}

.rowash-brand span span,
.rowash-brand > span > span {
  color: var(--rowash-muted);
  font-size: 13px;
  line-height: 1.3;
}

.rowash-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--rowash-deep);
  color: #fff;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.rowash-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.rowash-menu-toggle {
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 36, 44, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rowash-ink);
  font: 700 12px/1 Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rowash-menu-toggle-icon {
  display: grid;
  gap: 4px;
}

.rowash-menu-toggle-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.rowash-lang-switcher {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.rowash-lang-link {
  padding: 8px 10px;
  border: 1px solid var(--rowash-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rowash-ink);
  font: 600 12px/1 Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rowash-lang-link.is-active {
  border-color: var(--rowash-deep);
  background: var(--rowash-deep);
  color: #fff;
}

.rowash-nav a,
.rowash-inline-links a,
.rowash-card a,
.rowash-footer a {
  color: var(--rowash-ink);
  text-decoration: none;
}

.rowash-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 180ms ease;
}

.rowash-nav a::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 999px;
  background: var(--rowash-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.rowash-nav a.is-current {
  color: var(--rowash-accent);
}

.rowash-nav a:hover,
.rowash-inline-links a:hover,
.rowash-card a:hover,
.rowash-footer a:hover {
  color: var(--rowash-accent);
}

.rowash-nav a:hover::after,
.rowash-nav a.is-current::after {
  transform: scaleX(1);
}

.rowash-main {
  min-height: 60vh;
}

.rowash-hero {
  position: relative;
  padding: 88px 0 72px;
  background:
    linear-gradient(120deg, rgba(18, 56, 67, 0.92), rgba(18, 56, 67, 0.66)),
    var(--rowash-hero) center/cover no-repeat;
  color: #fff;
}

.rowash-home-hero {
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.rowash-hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
}

.rowash-home-hero-grid {
  position: relative;
  z-index: 2;
}

.rowash-home-hero-copy {
  max-width: 760px;
}

.rowash-hero-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.rowash-hero h1,
.rowash-section h1,
.rowash-section h2,
.rowash-section h3 {
  margin: 0 0 16px;
  line-height: 1.08;
}

.rowash-hero h1 {
  font-size: clamp(40px, 7vw, 78px);
}

.rowash-meta {
  margin-bottom: 12px;
  color: var(--rowash-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rowash-lead {
  max-width: 780px;
  color: inherit;
  font-size: 18px;
  line-height: 1.7;
}

.rowash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rowash-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--rowash-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.rowash-button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.rowash-stat-panel,
.rowash-cta-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--rowash-shadow);
}

.rowash-stat-panel strong {
  display: block;
  font-size: 42px;
}

.rowash-stat-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.rowash-home-carousel {
  position: relative;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.rowash-home-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.rowash-home-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 56, 67, 0.12), rgba(18, 56, 67, 0.78));
}

.rowash-home-hero-carousel::after {
  background: linear-gradient(110deg, rgba(6, 19, 22, 0.9) 0%, rgba(10, 29, 34, 0.58) 42%, rgba(10, 29, 34, 0.24) 66%, rgba(6, 19, 22, 0.76) 100%);
}

.rowash-home-carousel-track {
  position: absolute;
  inset: 0;
}

.rowash-home-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translate3d(16%, 0, 0) scale(1.08);
  transition: opacity 760ms ease, transform 1500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.rowash-home-carousel-slide.is-before {
  transform: translate3d(-10%, 0, 0) scale(1.02);
}

.rowash-home-carousel-slide.is-after {
  transform: translate3d(14%, 0, 0) scale(1.05);
}

.rowash-home-carousel-slide.is-hidden {
  transform: translate3d(20%, 0, 0) scale(1.08);
}

.rowash-home-carousel-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 1;
}

.rowash-home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 4200ms ease;
}

.rowash-home-carousel-slide.is-active img {
  transform: scale(1.01);
}

.rowash-home-carousel-stats {
  display: grid;
  gap: 16px;
}

.rowash-home-hero-panel {
  min-height: 360px;
  align-content: end;
  background: linear-gradient(180deg, rgba(7, 22, 26, 0.14), rgba(7, 22, 26, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.rowash-home-hero-panel-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.rowash-home-carousel-dots {
  display: flex;
  gap: 8px;
}

.rowash-home-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 22, 26, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.rowash-home-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.24);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.rowash-home-carousel-dot.is-active {
  border-color: var(--rowash-accent);
  background: var(--rowash-accent);
  transform: scale(1.12);
}

.rowash-section {
  padding: 72px 0;
}

.rowash-section-alt {
  background: rgba(18, 56, 67, 0.04);
}

.rowash-section-head {
  margin-bottom: 28px;
}

.rowash-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rowash-card {
  overflow: hidden;
  border: 1px solid var(--rowash-line);
  border-radius: 24px;
  background: var(--rowash-surface);
  box-shadow: var(--rowash-shadow);
}

.rowash-card img,
.rowash-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.rowash-hero-image {
  width: min(100%, 360px);
  justify-self: end;
  align-self: end;
}

.rowash-hero-image img {
  max-height: 260px;
  object-fit: contain;
}

.rowash-card-body {
  padding: 22px;
}

.rowash-solution-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.rowash-solution-summary p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.rowash-solution-summary span {
  color: var(--rowash-muted);
  font: 700 11px/1.2 Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rowash-solution-summary strong {
  color: var(--rowash-ink);
  font-size: 15px;
  line-height: 1.5;
}

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

.rowash-list {
  padding-left: 20px;
  margin: 0;
  line-height: 1.8;
}

.rowash-article {
  max-width: 900px;
}

.rowash-page-shell {
  min-height: 40vh;
}

.rowash-richtext {
  line-height: 1.8;
}

.rowash-shop-intro {
  padding-top: 36px;
}

.rowash-product-extras {
  margin-top: 28px;
}

.rowash-product-solutions {
  margin-top: 36px;
}

.rowash-product-solutions .rowash-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.rowash-footer {
  margin-top: 80px;
  padding: 48px 0 20px;
  border-top: 1px solid rgba(21, 36, 44, 0.08);
  background: #fbfcfc;
}

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

.rowash-footer-meta {
  padding-top: 20px;
  color: var(--rowash-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .rowash-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .rowash-hero-grid,
  .rowash-split,
  .rowash-footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .rowash-hero-image {
    width: min(100%, 280px);
    justify-self: start;
  }

  .rowash-home-hero {
    min-height: 560px;
    padding: 108px 0 64px;
  }

  .rowash-home-hero-panel {
    min-height: 0;
  }

  .rowash-home-hero-dots {
    bottom: 18px;
  }

  .rowash-header-inner {
    gap: 10px;
    padding: 10px 0;
  }

  .rowash-container {
    width: min(1180px, calc(100% - 24px));
  }

  .rowash-brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .rowash-brand > span {
    min-width: 0;
  }

  .rowash-brand-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    font-size: 15px;
  }

  .rowash-brand strong {
    max-width: min(54vw, 210px);
    overflow: hidden;
    font-size: 13px;
    line-height: 1.15;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .rowash-brand span span,
  .rowash-brand > span > span {
    display: none;
  }

  .rowash-menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    padding: 9px 12px;
    box-shadow: 0 8px 24px rgba(18, 56, 67, 0.08);
  }

  .rowash-header.is-menu-open {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(18, 56, 67, 0.08);
  }

  .rowash-header.is-menu-open .rowash-menu-toggle {
    background: var(--rowash-deep);
    border-color: var(--rowash-deep);
    color: #fff;
    transform: translateY(1px);
  }

  .rowash-header.is-menu-open .rowash-menu-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .rowash-header.is-menu-open .rowash-menu-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .rowash-header.is-menu-open .rowash-menu-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .rowash-header-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    width: min(360px, calc(100vw - 28px));
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 22px 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -18px 0 40px rgba(18, 56, 67, 0.18);
  }

  .rowash-header.is-menu-open .rowash-header-panel {
    display: flex;
  }

  .rowash-header-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(21, 36, 44, 0.08);
    font: 700 13px/1 Arial, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .rowash-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--rowash-line);
    border-radius: 999px;
    background: var(--rowash-surface);
    color: var(--rowash-ink);
    font: 700 12px/1 Arial, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .rowash-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .rowash-nav a {
    font-size: 22px;
    line-height: 1.2;
  }

  .rowash-nav a::after {
    bottom: -7px;
  }

  .rowash-header-panel-footer {
    margin-top: auto;
  }

  .rowash-lang-switcher {
    flex-wrap: wrap;
  }

  .rowash-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30;
    border: 0;
    padding: 0;
    background: rgba(18, 56, 67, 0.28);
  }

  .rowash-header.is-menu-open .rowash-menu-overlay {
    display: block;
  }

  body.rowash-menu-open {
    overflow: hidden;
  }

  .rowash-nav {
    gap: 12px;
  }

  .rowash-hero {
    padding-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rowash-header,
  .rowash-menu-toggle,
  .rowash-menu-toggle-icon span,
  .rowash-nav a {
    transition: none !important;
  }
}