/* ==========================================================================
   Scrublix — design system
   Turquoise primary, fresh lime accent, charcoal text, soft grey grounds.
   ========================================================================== */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-latin-800-normal.woff2') format('woff2');
}

:root {
  --ink: #16232a;
  --ink-2: #46606b;
  --ink-3: #5c747e;
  --ink-inverse: #ffffff;

  --teal-900: #084f4d;
  --teal-800: #0a6f6c;
  --teal-700: #06847f;
  --teal: #0e9e99;
  /* Fill used behind white button text — the brand turquoise itself only
     reaches 3.3:1 against white, which is below AA for button labels. */
  --teal-cta: #0b827e;
  --teal-400: #4cc2be;
  --teal-200: #a9e3e0;
  --teal-100: #d9f2f1;
  --teal-50: #eff9f8;

  --lime-700: #4e7d15;
  --lime-600: #6fa62c;
  --lime: #8cc63f;
  --lime-200: #d6ecb3;
  --lime-50: #f4faea;

  --bg: #ffffff;
  --bg-soft: #f5f8f8;
  --bg-warm: #f8f9f7;
  --line: #e2eaea;
  --line-strong: #cfdcdc;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(22, 35, 42, 0.05);
  --shadow: 0 8px 28px -14px rgba(22, 35, 42, 0.22);
  --shadow-lg: 0 28px 60px -30px rgba(10, 111, 108, 0.42);

  --container: 1180px;
  --gutter: 20px;
  --header-h: 68px;
  --mobile-bar-h: 68px;

  --font: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --header-h: 76px;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.1rem, 6.2vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.034em;
}
h2 {
  font-size: clamp(1.65rem, 3.9vw, 2.5rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.14rem, 1.9vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.3;
}
h4 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--teal-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--teal-900);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- layout primitives ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 780px;
}

.section {
  padding-block: clamp(56px, 8vw, 104px);
}
.section--tight {
  padding-block: clamp(40px, 5.5vw, 68px);
}
.section--soft {
  background: var(--bg-soft);
}
.section--teal {
  background: var(--teal-50);
}
.section--dark {
  background: var(--teal-900);
  color: #dff1f0;
}
.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 1.08rem;
}
.section--dark .section-head p {
  color: #b4dedc;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--lime);
  flex: none;
}
.section--dark .eyebrow {
  color: var(--lime-200);
}

.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  color: var(--ink-2);
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  min-height: 52px;
  text-align: center;
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--teal-cta);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  background: var(--teal-800);
  color: #fff;
}

.btn--lime {
  background: var(--lime);
  color: #17330a;
}
.btn--lime:hover {
  background: #7db733;
  color: #14300a;
}

.btn--outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal-900);
  background: var(--teal-50);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--sm {
  padding: 11px 18px;
  min-height: 44px;
  font-size: 0.93rem;
}
.btn--block {
  width: 100%;
}

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

/* Home: service and shop paths */
.brand-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.brand-path {
  min-width: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brand-path--shop {
  background: linear-gradient(145deg, var(--teal-50), #fff 70%);
  border-color: var(--teal-200);
}
.brand-path__label {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-path h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.brand-path p {
  max-width: 45ch;
  color: var(--ink-2);
}
.brand-path .btn {
  margin-top: 12px;
}
@media (max-width: 639px) {
  .brand-paths { grid-template-columns: 1fr; }
  .brand-path .btn { width: 100%; }
}

/* Phone link styled as a quiet tertiary action */
.call-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 13px 4px;
  min-height: 48px;
}
.call-link span.call-link__label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.call-link small {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.call-link:hover {
  color: var(--teal-900);
}
.call-link .icon {
  color: var(--teal);
  flex: none;
}

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.header__link:hover {
  color: var(--ink);
  background: var(--bg-soft);
}
.header__link.is-active {
  color: var(--teal-800);
  background: var(--teal-50);
}
.header__actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.header__cart {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  color: var(--teal-900);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.header__cart:hover {
  background: var(--teal-50);
  border-color: var(--teal);
}
.header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 21px;
  height: 21px;
  padding-inline: 5px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 21px;
  font-weight: 800;
  text-align: center;
}
.header__burger {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

@media (min-width: 1200px) {
  .header__nav,
  .header__actions {
    display: flex;
  }
  .header__link {
    padding-inline: 8px;
    font-size: 0.86rem;
  }
  .header__burger {
    display: none;
  }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer__top {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
  flex: none;
}
.drawer__close {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.drawer__body {
  padding: 12px var(--gutter) 32px;
}
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 2px;
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.drawer__link.is-active {
  color: var(--teal-800);
}
.drawer__link .icon {
  color: var(--ink-3);
}
.drawer__actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.drawer__contact {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-2);
}
.drawer__contact a {
  font-weight: 600;
  word-break: break-word;
}

/* ---------- logo ---------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.logo__mark {
  flex: none;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.022em;
}
.logo__tagline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-top: 4px;
}
.logo--inverse .logo__name {
  color: #fff;
}
.logo--inverse .logo__tagline {
  color: var(--teal-200);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 6.5vw, 86px) clamp(48px, 6vw, 84px);
  background: linear-gradient(180deg, var(--teal-50) 0%, #ffffff 62%);
}
.hero__wash {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 158, 153, 0.14), rgba(14, 158, 153, 0) 68%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 60px;
  }
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero__copy p {
  max-width: 34rem;
}
.hero__cta {
  margin-top: 30px;
}
.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero__assurances li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-2);
}
.hero__assurances .icon {
  color: var(--lime-600);
  flex: none;
}

/* hero flow card */
.flowcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-lg);
}
.flowcard::before {
  content: '';
  position: absolute;
  inset: auto -18px -18px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--lime-50);
  z-index: -1;
}
.flowcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.flowcard__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.flowcard__badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lime-700);
  background: var(--lime-50);
  border: 1px solid var(--lime-200);
  padding: 6px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.flowcard__list {
  list-style: none;
  display: grid;
  gap: 2px;
}
.flowcard__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.flowcard__item:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}
.flowcard__item > .flowcard__num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.83rem;
  font-weight: 800;
  background: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-100);
}
.flowcard__item strong {
  display: block;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: -0.012em;
}
.flowcard__item > div > span {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 2px;
}
.flowcard__foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  font-size: 0.86rem;
  color: var(--ink-3);
}

/* ---------- cards / grids ---------- */

.grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 640px) and (max-width: 899px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.6vw, 28px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.card--link:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-800);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex: none;
}
.card h3 {
  margin-bottom: 10px;
}
.card__summary {
  color: var(--ink-2);
  font-size: 0.97rem;
  line-height: 1.62;
}
.card__list {
  list-style: none;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.card__list .icon {
  color: var(--teal-400);
  flex: none;
  margin-top: 3px;
}
.card__cta {
  margin-top: 18px;
  padding-block: 11px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-800);
  text-decoration: none;
}
.card--link:hover .card__cta {
  gap: 12px;
}
.card__cta .icon {
  transition: transform 0.2s ease;
}
.card__spacer {
  flex: 1;
}

/* ---------- how it works ---------- */

.steps {
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 0 0 30px 60px;
}
.step:last-child {
  padding-bottom: 0;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--teal-800);
  background: #fff;
  border: 2px solid var(--teal-200);
}
.step::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 48px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-100), var(--line));
}
.step:last-child::after {
  display: none;
}
.step h3 {
  margin-bottom: 8px;
  padding-top: 7px;
}
.step p {
  color: var(--ink-2);
  font-size: 0.97rem;
}

@media (min-width: 880px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
  }
  .step {
    padding: 64px 0 0 0;
  }
  .step::after {
    left: 52px;
    right: -28px;
    top: 21px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-100), var(--line));
  }
  .step h3 {
    padding-top: 0;
  }
}

/* ---------- airbnb band ---------- */

.airbnb-band {
  background: var(--teal-900);
  color: #dff1f0;
  position: relative;
  overflow: hidden;
}
.airbnb-band::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.1);
  pointer-events: none;
}
.airbnb-band__grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 940px) {
  .airbnb-band__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 64px;
  }
}
.airbnb-band h2,
.airbnb-band h3 {
  color: #ffffff;
}
.airbnb-band .eyebrow {
  color: var(--lime-200);
}
.airbnb-band p {
  color: #b6dedc;
}
.airbnb-band .lede {
  color: #c7e6e5;
  margin-top: 16px;
}
.offer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
}
.offer__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17330a;
  background: var(--lime);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.offer__list {
  list-style: none;
  display: grid;
  gap: 0;
}
.offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.offer__list li:last-child {
  border-bottom: 0;
}
.offer__list .icon {
  color: var(--lime);
  flex: none;
  margin-top: 3px;
}
.offer__list strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.012em;
}
.offer__list span {
  display: block;
  font-size: 0.88rem;
  color: #a9d6d4;
  line-height: 1.5;
  margin-top: 1px;
}
.airbnb-band .offer__foot {
  margin-top: 18px;
  font-size: 0.86rem;
  color: #a6d4d2;
  line-height: 1.55;
}

/* ---------- service areas ---------- */

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--teal-100);
  border-radius: 100px;
  padding: 11px 20px 11px 15px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}
.area-chip .icon {
  color: var(--teal);
  flex: none;
}

/* ---------- gallery ---------- */

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--ink-2);
  font-weight: 600;
}

.photo-dropzone {
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: clamp(30px, 5vw, 52px) clamp(20px, 4vw, 44px);
  text-align: center;
}
.photo-dropzone__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid;
  place-items: center;
}
.photo-dropzone h3 {
  margin-bottom: 10px;
}
.photo-dropzone p {
  color: var(--ink-2);
  max-width: 50ch;
  margin-inline: auto;
  font-size: 0.98rem;
}

/* ---------- FAQ ---------- */

.faq {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq__item > summary::-webkit-details-marker {
  display: none;
}
.faq__item > summary:hover {
  color: var(--teal-800);
}
.faq__sign {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--teal-800);
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq__item[open] .faq__sign {
  transform: rotate(45deg);
  background: var(--teal-50);
  border-color: var(--teal-200);
}
.faq__answer {
  padding-bottom: 24px;
  color: var(--ink-2);
  max-width: 68ch;
  font-size: 0.99rem;
}

/* ---------- detail page bits ---------- */

.page-hero {
  background: linear-gradient(180deg, var(--teal-50), #fff);
  padding-block: clamp(40px, 5.5vw, 72px) clamp(34px, 4.5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 8px;
  list-style: none;
  font-size: 0.86rem;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.breadcrumb a {
  display: inline-block;
  padding-block: 8px;
  color: var(--ink-2);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--teal-800);
  text-decoration: underline;
}
.breadcrumb li[aria-current] {
  color: var(--ink);
  font-weight: 600;
}

.detail-grid {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 960px) {
  .detail-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
  }
}

.prose-block + .prose-block {
  margin-top: clamp(32px, 4vw, 44px);
}
.prose-block h2 {
  font-size: clamp(1.36rem, 2.4vw, 1.65rem);
  margin-bottom: 16px;
}
.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
}
.checklist .icon {
  color: var(--teal);
  flex: none;
  margin-top: 4px;
}
.checklist--lime .icon {
  color: var(--lime-600);
}

.sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
@media (min-width: 960px) {
  .sidebar-card {
    position: sticky;
    top: calc(var(--header-h) + 20px);
  }
}
.sidebar-card h3 {
  margin-bottom: 10px;
}
.sidebar-card p {
  font-size: 0.94rem;
  color: var(--ink-2);
}
.sidebar-card .btn {
  margin-top: 18px;
}
.sidebar-card__divider {
  margin: 20px 0 16px;
  border: 0;
  border-top: 1px solid var(--line);
}

.note {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: #d5e2e6;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4.4vw, 52px);
  display: grid;
  gap: 26px;
  align-items: center;
}
@media (min-width: 860px) {
  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
  }
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  margin-bottom: 12px;
}
.cta-band p {
  color: #9fb3ba;
  max-width: 46ch;
  font-size: 1rem;
}

/* ---------- forms ---------- */

.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.4vw, 44px);
  box-shadow: var(--shadow);
}
.fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.fieldset + .fieldset {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.fieldset > legend {
  padding: 0;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 18px;
}
.field-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 720px) {
  .field-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .field--full {
    grid-column: 1 / -1;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.field > label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.field__hint {
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.45;
}
.field .req {
  color: var(--teal-700);
}
.input,
.select,
.textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  width: 100%;
  min-height: 50px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  -webkit-appearance: none;
  appearance: none;
}
.textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.6;
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2346606b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 158, 153, 0.16);
}
.input[aria-invalid='true'],
.select[aria-invalid='true'],
.textarea[aria-invalid='true'] {
  border-color: #cf4444;
  box-shadow: 0 0 0 3px rgba(207, 68, 68, 0.12);
}
.field__error {
  font-size: 0.84rem;
  font-weight: 600;
  color: #b93232;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-2);
  cursor: pointer;
}
.consent input[type='checkbox'] {
  flex: none;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.uploader {
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  background: var(--bg-soft);
}
.uploader input[type='file'] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.uploader__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-800);
  cursor: pointer;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--teal-200);
  background: #fff;
}
.uploader__label:hover {
  background: var(--teal-50);
}
.uploader__hint {
  margin-top: 12px;
  font-size: 0.83rem;
  color: var(--ink-3);
}
.thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}
.thumb {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #fff;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: rgba(22, 35, 42, 0.82);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.form-alert {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.93rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-alert--error {
  background: #fdf1f1;
  border: 1px solid #f0cccc;
  color: #97302f;
}

.form-submit {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.form-submit .btn {
  width: 100%;
}
@media (min-width: 560px) {
  .form-submit .btn {
    width: auto;
    min-width: 260px;
  }
}
.form-submit__note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.55;
}

/* confirmation panel */
.confirm {
  text-align: left;
}
.confirm__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--lime-50);
  border: 2px solid var(--lime-200);
  color: var(--lime-700);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.confirm h2 {
  font-size: clamp(1.44rem, 2.8vw, 1.95rem);
  margin-bottom: 14px;
}
.confirm__ref {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-800);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.confirm__summary {
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.confirm__row {
  display: grid;
  gap: 2px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
@media (min-width: 620px) {
  .confirm__row {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    align-items: baseline;
  }
}
.confirm__row:last-child {
  border-bottom: 0;
}
.confirm__row dt {
  font-weight: 700;
  color: var(--ink-3);
  font-size: 0.86rem;
}
.confirm__row dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.demo-notice {
  background: #fffaf0;
  border: 1px solid #f2e0bd;
  border-left: 4px solid #e2a93b;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #6b5220;
}
.demo-notice strong {
  color: #4d3a13;
}

/* ---------- contact ---------- */

.contact-methods {
  display: grid;
  gap: 16px;
  list-style: none;
}
@media (min-width: 720px) {
  .contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}
.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}
a.contact-method:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow);
}
.contact-method__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-800);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-method h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.contact-method p {
  font-size: 0.95rem;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: #a8bcc3;
  padding-block: clamp(48px, 6vw, 72px) 0;
  font-size: 0.95rem;
}
.footer__grid {
  display: grid;
  gap: 36px;
}
@media (min-width: 760px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 1040px) {
  .footer__grid {
    grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  }
}
.footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 800;
}
.footer__about p {
  margin-top: 18px;
  max-width: 34ch;
  line-height: 1.65;
  color: #94aab2;
}
.footer__list {
  list-style: none;
  display: grid;
  gap: 2px;
}
.footer__list a {
  display: inline-block;
  padding-block: 8px;
  color: #c2d3d8;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer__list a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer__list li {
  line-height: 1.5;
}
.footer__bottom {
  margin-top: clamp(38px, 5vw, 54px);
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: #7e959d;
}
.footer__bottom p {
  margin: 0;
}

/* ---------- mobile action bar ---------- */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px -16px rgba(22, 35, 42, 0.45);
}
.mobile-bar .btn {
  min-height: 50px;
  padding-inline: 18px;
}
.mobile-bar .btn--outline {
  padding-inline: 20px;
}
@media (min-width: 1200px) {
  .mobile-bar {
    display: none;
  }
}
body.has-mobile-bar {
  padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom));
}
@media (min-width: 1200px) {
  body.has-mobile-bar {
    padding-bottom: 0;
  }
}

/* ---------- misc ---------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: block;
}

.notfound {
  text-align: center;
  padding-block: clamp(70px, 12vw, 140px);
}
.notfound .btn-row {
  justify-content: center;
  margin-top: 28px;
}

/* ========================================================================== 
   Client-content polish — genuine Scrublix branding and project photography
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo {
  min-width: 0;
}
.logo__official-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}
.logo__official {
  width: clamp(126px, 15vw, 166px);
  height: auto;
  max-height: 50px;
  object-fit: contain;
}
.logo--inverse .logo__official-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  height: 54px;
}

.hero {
  background:
    radial-gradient(circle at 82% 10%, rgba(140, 198, 63, .11), transparent 28%),
    linear-gradient(180deg, var(--teal-50) 0%, #fff 66%);
}
.hero__grid {
  align-items: center;
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding: 10px 0 30px 10px;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  right: -6%;
  top: -5%;
  border-radius: 50%;
  background: var(--lime-50);
  border: 1px solid var(--lime-200);
  z-index: 0;
}
.hero-visual__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px 30px 76px 30px;
  box-shadow: 0 30px 70px -34px rgba(8, 79, 77, .48);
  border: 6px solid rgba(255,255,255,.9);
}
.hero-visual__label {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.hero-visual__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px var(--lime-50);
}
.hero-visual__card {
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: 0;
  width: min(310px, 72%);
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--teal-900);
  color: #fff;
  box-shadow: 0 24px 50px -24px rgba(8,79,77,.7);
}
.hero-visual__card > span {
  display: block;
  color: var(--teal-200);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-visual__card strong {
  display: block;
  margin: 4px 0 10px;
  font-size: 1rem;
  line-height: 1.35;
}
.hero-visual__card a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.service-card {
  padding: 0;
  overflow: hidden;
}
.service-card__image {
  display: block;
  overflow: hidden;
  background: var(--teal-50);
  text-decoration: none;
}
.service-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-card:hover .service-card__image img {
  transform: scale(1.035);
}
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 2.5vw, 27px);
}
.service-card__body .card__icon {
  margin-top: -44px;
  position: relative;
  z-index: 2;
  border: 5px solid #fff;
  width: 56px;
  height: 56px;
  box-shadow: var(--shadow-sm);
}
.service-card:not(:has(.service-card__image)) .service-card__body .card__icon {
  margin-top: 0;
  border: 0;
}

.page-hero__grid {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.service-hero-photo {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
}
.service-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-hero-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  }
}

.gallery-grid--projects {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.gallery-grid--projects .gallery-item {
  position: relative;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
}
.gallery-grid--projects .gallery-item img {
  aspect-ratio: 4 / 3;
  transition: transform .35s ease;
}
.gallery-grid--projects .gallery-item:hover img {
  transform: scale(1.025);
}
.gallery-grid--projects .gallery-item figcaption {
  font-weight: 700;
}
@media (min-width: 900px) {
  .gallery-grid--projects {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-grid--projects .gallery-item:nth-child(1),
  .gallery-grid--projects .gallery-item:nth-child(6),
  .gallery-grid--projects .gallery-item:nth-child(10) {
    grid-column: span 2;
  }
  .gallery-grid--projects .gallery-item:nth-child(1) img,
  .gallery-grid--projects .gallery-item:nth-child(6) img,
  .gallery-grid--projects .gallery-item:nth-child(10) img {
    aspect-ratio: 2 / 1;
  }
}

.brand-path--services {
  position: relative;
  overflow: hidden;
}
.brand-path--services::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -46px;
  top: -44px;
  background: var(--teal-50);
  pointer-events: none;
}

@media (max-width: 979px) {
  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }
}
@media (max-width: 639px) {
  .hero-visual {
    padding-left: 0;
    padding-bottom: 72px;
  }
  .hero-visual__image {
    border-radius: 22px 22px 50px 22px;
  }
  .hero-visual__label {
    left: 10px;
    top: 20px;
    font-size: .7rem;
  }
  .hero-visual__card {
    right: 10px;
    bottom: 8px;
    width: calc(100% - 34px);
  }
  .gallery-grid--projects {
    grid-template-columns: 1fr;
  }
  .logo__official {
    width: 132px;
  }
}

/* ---------- Scrublix brand film ---------- */
.brand-film {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(140, 198, 63, .11), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(14, 158, 153, .12), transparent 30%),
    #f8fbfa;
}
.brand-film__shell {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(10, 111, 108, .14);
  border-radius: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 34px 80px -48px rgba(8, 79, 77, .48);
}
.brand-film__media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 16 / 9;
  border-radius: clamp(18px, 2.4vw, 28px);
  background: var(--teal-900);
  isolation: isolate;
}
.brand-film__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-film__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 45, 44, .10), transparent 45%),
    linear-gradient(0deg, rgba(7, 45, 44, .40), transparent 40%);
}
.brand-film__badge,
.brand-film__control {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand-film__badge {
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(8, 79, 77, .72);
  border: 1px solid rgba(255,255,255,.24);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-film__control {
  right: 16px;
  bottom: 16px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  background: rgba(8, 79, 77, .78);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,.55);
}
.brand-film__control:hover {
  background: rgba(8, 79, 77, .92);
}
.brand-film__control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: .8rem;
  line-height: 1;
}
.brand-film__copy {
  padding: clamp(4px, 2vw, 18px) clamp(2px, 1vw, 10px);
}
.brand-film__copy h2 {
  max-width: 18ch;
  margin-bottom: 18px;
}
.brand-film__copy > p:not(.brand-film__caption) {
  max-width: 58ch;
  color: var(--ink-2);
}
.brand-film__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}
.brand-film__notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 700;
}
.brand-film__notes .icon {
  color: var(--lime-600);
}
.brand-film__actions {
  margin-top: 28px;
}
.brand-film__caption {
  margin-top: 16px;
  color: var(--ink-3);
  font-size: .76rem;
  line-height: 1.55;
}
@media (min-width: 980px) {
  .brand-film__shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  }
}
@media (max-width: 639px) {
  .brand-film__shell {
    padding: 10px;
    border-radius: 22px;
  }
  .brand-film__media {
    min-height: 210px;
    border-radius: 16px;
  }
  .brand-film__badge {
    top: 10px;
    left: 10px;
    font-size: .65rem;
  }
  .brand-film__control {
    right: 10px;
    bottom: 10px;
  }
  .brand-film__copy {
    padding: 12px 8px 16px;
  }
  .brand-film__actions .btn {
    width: 100%;
  }
}

/* ---------- welcome booking modal ---------- */

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 38, 42, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: welcomeFade 0.24s ease both;
}

.welcome-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.35fr);
  width: min(1020px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 26px;
  box-shadow: 0 34px 90px -36px rgba(0, 28, 31, 0.75);
  animation: welcomeRise 0.3s cubic-bezier(.2,.8,.2,1) both;
}

.welcome-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.welcome-modal__close:hover {
  background: #fff;
  color: var(--teal-900);
}

.welcome-modal__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 25px 0 0 25px;
  background: var(--teal-900);
}

.welcome-modal__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-modal__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 57, 56, 0.05) 20%, rgba(4, 51, 50, 0.9) 100%),
    linear-gradient(90deg, rgba(3, 57, 56, 0.18), transparent 62%);
}

.welcome-modal__visual-copy {
  position: absolute;
  inset: auto 26px 28px;
  z-index: 2;
  color: #fff;
}

.welcome-modal__visual-copy strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.welcome-modal__visual-copy p {
  margin-top: 12px;
  color: #d9f4f1;
  font-size: 0.95rem;
  line-height: 1.55;
}

.welcome-modal__kicker {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.welcome-modal__mini-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #edfffd;
}

.welcome-modal__mini-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.welcome-modal__content {
  min-width: 0;
  padding: 44px 44px 30px;
}

.welcome-modal__heading {
  padding-right: 46px;
  margin-bottom: 24px;
}

.welcome-modal__heading .eyebrow {
  margin-bottom: 9px;
}

.welcome-modal__heading h2 {
  font-size: clamp(1.72rem, 3vw, 2.35rem);
}

.welcome-modal__heading p {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.6;
}

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

.welcome-modal__field {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.81rem;
  font-weight: 700;
}

.welcome-modal__field--wide {
  grid-column: 1 / -1;
}

.welcome-modal__field > span small {
  color: var(--ink-3);
  font-weight: 500;
}

.welcome-modal__field input,
.welcome-modal__field select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 13px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.welcome-modal__field input:focus,
.welcome-modal__field select:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(14, 158, 153, 0.12);
}

.welcome-modal__field input[aria-invalid='true'],
.welcome-modal__field select[aria-invalid='true'] {
  border-color: #b84646;
}

.welcome-modal__error {
  color: #a23838;
  font-size: 0.74rem;
  font-weight: 600;
}

.welcome-modal__submit {
  width: 100%;
  margin-top: 18px;
}

.welcome-modal__browse {
  display: block;
  margin: 10px auto 0;
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.welcome-modal__contact {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.welcome-modal__contact-head strong,
.welcome-modal__contact-head span {
  display: block;
}

.welcome-modal__contact-head strong {
  font-size: 0.88rem;
}

.welcome-modal__contact-head span {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 0.76rem;
}

.welcome-modal__contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.welcome-modal__contact-link {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  text-decoration: none;
  background: var(--bg-soft);
}

.welcome-modal__contact-link:hover {
  border-color: var(--teal-200);
  background: var(--teal-50);
}

.welcome-modal__contact-link > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.76rem;
  font-weight: 700;
}

.welcome-modal__contact-link small {
  display: block;
  color: var(--ink-3);
  font-size: 0.65rem;
  font-weight: 600;
}

.welcome-modal__contact-icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--teal-100);
  color: var(--teal-900);
}

@keyframes welcomeFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (max-width: 820px) {
  .welcome-modal {
    align-items: start;
    padding: 10px;
    overflow-y: auto;
  }

  .welcome-modal__dialog {
    grid-template-columns: 1fr;
    max-height: none;
    margin-block: 8px;
    border-radius: 20px;
    overflow: visible;
  }

  .welcome-modal__visual {
    min-height: 178px;
    border-radius: 19px 19px 0 0;
  }

  .welcome-modal__visual > img {
    object-position: center 34%;
  }

  .welcome-modal__visual-copy {
    inset: auto 20px 18px;
  }

  .welcome-modal__visual-copy strong {
    font-size: 1.35rem;
  }

  .welcome-modal__visual-copy p,
  .welcome-modal__mini-assurances {
    display: none;
  }

  .welcome-modal__content {
    padding: 24px 20px 22px;
  }

  .welcome-modal__heading {
    padding-right: 34px;
    margin-bottom: 18px;
  }

  .welcome-modal__heading h2 {
    font-size: 1.65rem;
  }

  .welcome-modal__fields {
    gap: 12px;
  }

  .welcome-modal__contact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 540px) {
  .welcome-modal__fields,
  .welcome-modal__contact-actions {
    grid-template-columns: 1fr;
  }

  .welcome-modal__field--wide {
    grid-column: auto;
  }

  .welcome-modal__contact-link > span:last-child {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-modal,
  .welcome-modal__dialog {
    animation: none;
  }
}
/* Scrublix shop: extends the site's existing type, colors and spacing. */
.shop-hero {
  background: radial-gradient(circle at 85% 15%, rgba(140, 198, 63, .13), transparent 32%), linear-gradient(180deg, var(--teal-50), #fff);
}
.shop-hero__lede,
.product-detail-hero__lede,
.shop-page-hero__lede {
  max-width: 52rem;
  margin-top: 18px;
}
.shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.shop-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.shop-intro p { color: var(--ink-2); margin-top: 12px; }
.shop-intro__count { color: var(--ink-3); font-size: .88rem; font-weight: 700; white-space: nowrap; }
.shop-category-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 30px; }
.shop-category-chip { color: var(--teal-900); background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: 999px; padding: 8px 14px; font-size: .82rem; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-3px); border-color: var(--teal-200); box-shadow: var(--shadow); }
.product-card__image { display: block; background: var(--teal-50); border-bottom: 1px solid var(--line); }
.product-card__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.product-card__category,
.product-purchase__category,
.cart-item__category { color: var(--teal-800); font-size: .75rem; font-weight: 800; line-height: 1.35; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3 { margin-top: 8px; }
.product-card h3 a,
.cart-item h3 a { color: var(--ink); text-decoration: none; }
.product-card h3 a:hover,
.cart-item h3 a:hover { color: var(--teal-800); }
.product-card__summary { font-size: .92rem; line-height: 1.55; color: var(--ink-2); margin-top: 10px; }
.product-card__meta { display: flex; flex-direction: column; gap: 2px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.product-card__meta strong { color: var(--teal-900); font-size: 1.1rem; }
.product-card__meta span { color: var(--ink-3); font-size: .79rem; }
.product-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 18px; }
.product-card__actions .btn { min-width: 0; padding: 10px 8px; font-size: .82rem; white-space: nowrap; }
.product-card__feedback { min-height: 21px; margin-top: 8px; font-size: .79rem; color: var(--teal-800); font-weight: 600; }
.product-card__feedback a { font-weight: 800; }
.shop-catalog-note { font-size: .86rem; color: var(--ink-3); line-height: 1.6; margin-top: 26px; }

.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.product-gallery__main { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--teal-50); }
.product-gallery__main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery__thumb { border: 2px solid var(--line); background: #fff; border-radius: var(--radius-sm); padding: 0; cursor: pointer; overflow: hidden; width: 88px; height: 68px; }
.product-gallery__thumb.is-active { border-color: var(--teal-700); box-shadow: 0 0 0 2px var(--teal-100); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__disclaimer { color: var(--ink-3); font-size: .79rem; margin-top: 12px; }
.product-purchase { min-width: 0; }
.product-purchase h2 { margin-top: 8px; }
.product-purchase__price { color: var(--teal-900); font-size: clamp(1.3rem, 2.4vw, 1.65rem); font-weight: 800; margin-top: 20px; margin-bottom: 0; }
.product-purchase__availability { color: var(--ink-3); font-size: .87rem; font-weight: 600; margin: 2px 0 18px; }
.product-purchase__summary { color: var(--ink-2); font-size: .98rem; line-height: 1.7; padding-top: 18px; border-top: 1px solid var(--line); }
.product-purchase__quantity-label { display: block; margin-top: 24px; margin-bottom: 10px; color: var(--ink); font-weight: 700; font-size: .9rem; }
.quantity-control { display: inline-grid; grid-template-columns: 40px 54px 40px; height: 42px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.quantity-control button { border: 0; background: #fff; color: var(--teal-900); cursor: pointer; font: inherit; font-size: 1.25rem; font-weight: 700; line-height: 1; }
.quantity-control button:hover:not(:disabled) { background: var(--teal-50); }
.quantity-control button:disabled { color: var(--line-strong); cursor: not-allowed; }
.quantity-control input,
.quantity-control output { width: 100%; min-width: 0; height: 100%; display: grid; place-items: center; text-align: center; color: var(--ink); border: 0; border-inline: 1px solid var(--line); font: inherit; font-size: .95rem; font-weight: 700; background: #fff; appearance: textfield; }
.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.product-purchase__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.product-purchase__actions .btn { flex: 1 1 180px; }
.product-purchase__feedback { min-height: 26px; color: var(--teal-800); font-size: .88rem; font-weight: 700; margin-top: 12px; }
.product-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-facts > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; min-width: 0; }
.product-facts dt { color: var(--ink); font-weight: 800; margin-bottom: 6px; }
.product-facts dd { margin: 0; color: var(--ink-2); font-size: .94rem; line-height: 1.6; }

.shop-page-hero { padding-block: 38px 40px; }
.shop-page-section { min-height: 420px; }
.shop-empty { max-width: 560px; text-align: center; margin: 10px auto; padding: clamp(28px, 5vw, 56px); border-radius: var(--radius-xl); border: 1px solid var(--line); background: var(--bg-soft); }
.shop-empty__mark { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: var(--teal-800); background: var(--teal-100); font-size: 1.8rem; margin: 0 auto 20px; }
.shop-empty p { color: var(--ink-2); margin-top: 12px; }
.shop-empty .btn { margin-top: 18px; }
.cart-layout,
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 4vw, 48px); align-items: start; }
.cart-list-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.cart-list-head h2 { font-size: 1.35rem; }
.cart-list-head span { color: var(--ink-3); font-size: .9rem; font-weight: 700; white-space: nowrap; }
.cart-list { border-top: 1px solid var(--line); }
.cart-item { display: grid; grid-template-columns: 120px minmax(0, 1fr) 136px; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start; min-width: 0; }
.cart-item__image { display: block; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--teal-50); }
.cart-item__image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.cart-item__details { min-width: 0; }
.cart-item h3 { font-size: 1rem; margin-top: 6px; }
.cart-item__details p { color: var(--ink-3); font-size: .84rem; margin-top: 7px; }
.cart-item__remove { border: 0; background: none; padding: 2px 0; color: var(--teal-800); cursor: pointer; font: inherit; font-size: .84rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cart-item__controls { grid-column: 3; grid-row: 1; justify-self: end; }
.cart-item__label { display: block; color: var(--ink-3); font-size: .78rem; margin-bottom: 7px; }
.cart-item__subtotal { grid-column: 3; grid-row: 1; justify-self: end; text-align: right; margin-top: 73px; line-height: 1.4; }
.cart-item__subtotal span { display: block; color: var(--ink-3); font-size: .78rem; }
.cart-item__subtotal strong { color: var(--ink); font-size: .86rem; }
.cart-continue { display: inline-block; margin-top: 22px; font-weight: 700; text-decoration: none; }
.shop-summary { min-width: 0; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-soft); }
.shop-summary h2 { font-size: 1.2rem; margin-bottom: 20px; }
.shop-summary__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: .92rem; }
.shop-summary__row strong { color: var(--ink); text-align: right; }
.shop-summary__note { margin: 15px 0 22px; color: var(--ink-2); font-size: .85rem; line-height: 1.55; }
.shop-summary__demo { color: var(--ink-3); font-size: .78rem; text-align: center; line-height: 1.5; margin-top: 12px; }

.checkout-form { min-width: 0; }
.checkout-form > .demo-notice,
.checkout-form > .form-alert { margin-bottom: 20px; }
.checkout-panel { padding: clamp(22px, 3vw, 34px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.checkout-panel .fieldset + .fieldset { margin-top: 28px; padding-top: 26px; }
.checkout-fieldset-intro { color: var(--ink-2); font-size: .88rem; line-height: 1.55; margin: -4px 0 16px; }
.payment-options { display: grid; gap: 10px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer; color: var(--ink); font-size: .91rem; font-weight: 700; }
.payment-option:has(input:checked) { border-color: var(--teal-700); background: var(--teal-50); }
.payment-option input { accent-color: var(--teal-800); width: 18px; height: 18px; flex: none; }
.checkout-items { list-style: none; margin-bottom: 20px; }
.checkout-items li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 10px; align-items: center; padding: 11px 0; border-top: 1px solid var(--line); }
.checkout-items img { width: 46px; height: 46px; border-radius: 7px; object-fit: cover; border: 1px solid var(--line); }
.checkout-items li > div { min-width: 0; }
.checkout-items strong { display: block; color: var(--ink); font-size: .8rem; line-height: 1.4; overflow-wrap: anywhere; }
.checkout-items span { display: block; color: var(--ink-3); font-size: .75rem; line-height: 1.4; margin-top: 3px; }
.checkout-items b { grid-column: 2; justify-self: start; color: var(--teal-900); font-size: .78rem; }
.checkout-summary .btn:disabled { opacity: .65; cursor: wait; }
.checkout-back { display: block; text-align: center; font-size: .84rem; font-weight: 700; text-decoration: none; margin-top: 14px; }

.order-confirmation-section { background: linear-gradient(180deg, var(--teal-50), #fff 270px); }
.order-confirmation { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: clamp(26px, 5vw, 52px); }
.order-confirmation__mark { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; color: var(--lime-700); background: var(--lime-50); border: 2px solid var(--lime-200); font-size: 1.5rem; font-weight: 800; }
.order-confirmation .lede { margin-top: 16px; }
.order-confirmation__reference { display: inline-block; max-width: 100%; overflow-wrap: anywhere; margin: 12px 0 24px; padding: 9px 14px; border-radius: 999px; background: var(--teal-50); border: 1px solid var(--teal-100); color: var(--teal-900); font-size: .86rem; }
.order-confirmation__summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-top: 24px; }
.order-confirmation__summary h2 { font-size: 1.12rem; margin-bottom: 12px; }
.order-confirmation__summary ul { list-style: none; }
.order-confirmation__summary li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .88rem; color: var(--ink-2); }
.order-confirmation__summary li strong { white-space: nowrap; }
.order-confirmation__summary p { color: var(--ink-2); font-size: .85rem; margin-top: 16px; }
.order-confirmation__foot { color: var(--ink-3); font-size: .84rem; margin-top: 18px; }
.order-confirmation .btn-row { margin-top: 28px; }

@media (max-width: 980px) {
  .cart-layout,
  .checkout-layout { grid-template-columns: minmax(0, 1fr); }
  .shop-summary { max-width: 100%; }
}
@media (max-width: 850px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-grid { grid-template-columns: minmax(0, 1fr); }
  .product-gallery { max-width: 680px; }
}
@media (max-width: 600px) {
  .shop-intro { display: block; }
  .shop-intro__count { display: inline-block; margin-top: 8px; }
  .product-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .product-card__image img { aspect-ratio: 5 / 3; }
  .product-facts { grid-template-columns: minmax(0, 1fr); }
  .cart-item { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
  .cart-item__controls { grid-column: 2; grid-row: 2; justify-self: start; }
  .cart-item__subtotal { grid-column: 1 / -1; grid-row: 3; margin-top: 0; justify-self: stretch; display: flex; justify-content: space-between; gap: 12px; text-align: left; border-top: 1px solid var(--line); padding-top: 10px; }
  .cart-item__subtotal span { display: inline; }
  .cart-item__image img { aspect-ratio: 1 / 1; }
  .shop-hero__actions .btn { flex: 1 1 100%; }
  .product-purchase__actions .btn { flex-basis: 100%; }
}

/* Client-content shop polish */
.shop-hero__grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.shop-hero__visual {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.shop-hero__visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.shop-hero__visual span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.product-grid--featured {
  grid-template-columns: minmax(0, 430px);
}
.catalog-next {
  margin-top: 36px;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-50), #fff 75%);
}
.catalog-next h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  max-width: 28ch;
}
.catalog-next p {
  margin-top: 10px;
  max-width: 64ch;
  color: var(--ink-2);
}
.product-card__image img,
.product-gallery__main img {
  object-fit: contain;
  background: #fff;
}
@media (min-width: 900px) {
  .shop-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  }
}
@media (max-width: 640px) {
  .catalog-next {
    display: block;
  }
  .catalog-next .btn {
    width: 100%;
    margin-top: 18px;
  }
}
