/* Rachelle's Pristine Clean (RPC) — theme (swap colors in :root) */
:root {
  --color-bg: #0b0f14;
  --color-surface: #0f1621;
  --color-text: rgba(255, 255, 255, 0.92);
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --color-primary: #ffffff;
  --color-primary-hover: rgba(255, 255, 255, 0.86);
  --color-accent: rgba(255, 255, 255, 0.92);
  --color-border: rgba(255, 255, 255, 0.12);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --shadow: 0 14px 50px rgba(0, 0, 0, 0.4);
  --max: 1120px;
  --header-h: 90px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-primary-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--color-text);
  color: #fff;
}

.skip-link:focus {
  left: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 15, 20, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.1;
}

.brand:hover {
  color: var(--color-primary);
}

.brand__logo {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: #ffffff;
  object-fit: cover;
  flex-shrink: 0;
  padding: 0;
  image-rendering: -webkit-optimize-contrast;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand__text {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
  position: relative;
  padding-bottom: 0.3rem;
}

.brand__short {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.brand__text {
  text-transform: none;
}

.brand__text,
.brand__short {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.brand__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: min(180px, 100%);
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
}

.brand:focus-visible,
.nav a:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
  border-radius: 10px;
}

.logo {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
}

.logo:hover {
  color: var(--color-primary);
}

.logo span {
  color: var(--color-primary);
  font-weight: 600;
}

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

.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.965rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--color-text);
}

.nav .btn {
  margin-left: 0.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.32rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: #ffffff;
  color: #0b0f14;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn--primary:hover {
  background: rgba(255, 255, 255, 0.86);
  color: #0b0f14;
}

.nav a.btn--primary {
  color: #0b0f14;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav a.btn--primary:hover {
  color: #0b0f14;
  background: rgba(255, 255, 255, 0.86);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(180deg, #0b0f14 0%, #0f1621 70%, #0b0f14 100%);
  color: #fff;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: clamp(3.5rem, 10vw, 6rem) 0;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  max-width: 40ch;
  opacity: 0.98;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn--primary {
  background: #fff;
  color: #0b0f14;
}

.hero .btn--primary:hover {
  background: rgba(255, 255, 255, 0.86);
  color: #0b0f14;
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section--alt {
  background: rgba(15, 22, 33, 0.75);
  border-block: 1px solid var(--color-border);
}

.section__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section__head {
  margin-bottom: 2rem;
}

.section__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 52ch;
}

/* Cards grid */
.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Why list */
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.why-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.why-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.why-item__mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0b0f14;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Locations */
.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.locations li {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Process */
.process {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}

.process__step {
  position: relative;
  padding: 1.5rem;
  padding-top: 1.4rem;
  padding-left: 3.9rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.process__step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.92);
  color: #0b0f14;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  display: grid;
  place-items: center;
}

.process__step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.process__step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Contact */
.contact-wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

@media (max-width: 800px) {
  :root {
    --header-h: 80px;
  }

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

  .nav {
    gap: 0.5rem 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand__logo {
    width: 64px;
    height: 64px;
  }

  .brand__text::after {
    width: min(120px, 100%);
  }

  .nav .btn {
    display: none;
  }
}

.contact-block h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.contact-list a {
  font-weight: 600;
  color: var(--color-text);
}

.contact-list a:hover {
  color: var(--color-primary);
}

.contact-form {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form select option {
  background: #0b0f14;
  color: rgba(255, 255, 255, 0.92);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 1px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: #05080c;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
  font-size: 0.9375rem;
}

.site-footer a {
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer strong {
  color: #fff;
}

.bilingual-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.85;
}
