/* =========================================================
   DOC WASH — Premium Washing Machine Repair & Service
   style.css  |  Core design system (Vanilla CSS)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --c-primary: #103B73;
  --c-primary-2: #1D4E89;
  --c-accent: #47D7C4;
  --c-accent-2: #7EE9DD;
  --c-bg: #F7FBFD;
  --c-white: #FFFFFF;

  /* Derived */
  --c-ink: #0d2748;
  --c-body: #4a5b6e;
  --c-muted: #7d8da0;
  --c-line: #e4edf3;
  --c-dark: #0b2647;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #103B73 0%, #1D4E89 45%, #47D7C4 100%);
  --grad-accent: linear-gradient(135deg, #47D7C4 0%, #7EE9DD 100%);
  --grad-hero: linear-gradient(90deg, rgba(8,26,54,.55) 0%, rgba(10,31,60,.34) 26%, rgba(10,31,60,.14) 48%, rgba(10,31,60,.03) 66%, rgba(10,31,60,0) 82%);
  --grad-soft: linear-gradient(180deg, #F7FBFD 0%, #eafffb 100%);

  /* Typography */
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 2px 8px rgba(16,59,115,.06);
  --sh-sm: 0 6px 20px rgba(16,59,115,.08);
  --sh-md: 0 14px 40px rgba(16,59,115,.12);
  --sh-lg: 0 28px 70px rgba(16,59,115,.18);
  --sh-accent: 0 14px 34px rgba(71,215,196,.35);
  --sh-primary: 0 14px 34px rgba(16,59,115,.32);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 122px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .2s;
  --t: .35s;
  --t-slow: .6s;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--c-body);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--c-ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding: clamp(40px, 5.5vw, 72px) 0; position: relative; }
.section--tight { padding: clamp(28px, 3.5vw, 48px) 0; }
.section--alt { background: var(--c-white); }
.section--dark { background: var(--grad-brand); color: #dfeaf5; }
.section--dark h2, .section--dark h3 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.flex { display: flex; }
.center { display: grid; place-items: center; }
.text-center { text-align: center; }

/* ---------- Section Headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-primary-2);
  background: rgba(71,215,196,.14);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--c-accent-2); background: rgba(255,255,255,.1); }
.eyebrow::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--c-accent); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-title .hl { color: var(--c-accent); }
.section-lead {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--c-body);
}
.section-head { margin-bottom: clamp(22px, 3.2vw, 40px); }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }
.section--dark .section-lead { color: #cdddec; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--c-primary);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  will-change: transform;
  white-space: nowrap;
}
.btn svg, .btn i { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-primary); }
.btn:active { transform: translateY(-1px) scale(.99); }

.btn--primary { --btn-bg: var(--grad-brand); box-shadow: var(--sh-primary); }
.btn--accent { --btn-bg: var(--grad-accent); --btn-fg: #063a33; box-shadow: var(--sh-accent); font-weight: 700; }
.btn--accent:hover { box-shadow: 0 20px 44px rgba(71,215,196,.5); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; box-shadow: none; }
.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--c-primary);
  border: 2px solid var(--c-line);
}
.btn--outline:hover { border-color: var(--c-accent); color: var(--c-primary); box-shadow: var(--sh-sm); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* Ripple */
.btn .ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,.5); pointer-events: none;
  animation: ripple .6s var(--ease-out);
}
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transition: transform var(--t) var(--ease);
}
.topbar {
  background: var(--c-primary);
  color: #cfe0f0;
  font-size: .84rem;
  transition: max-height var(--t) var(--ease), opacity var(--t), padding var(--t);
  overflow: hidden;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 9px 0; flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color var(--t); }
.topbar a:hover { color: var(--c-accent-2); }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__right { display: flex; gap: 18px; align-items: center; }
.topbar .ico { color: var(--c-accent); }

.navbar {
  transition: background var(--t) var(--ease), box-shadow var(--t), padding var(--t);
  background: transparent;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 108px; width: auto; transition: height var(--t) var(--ease); }
.site-header.scrolled .brand img, .site-header.solid .brand img { height: 92px; }
/* Badge logo pops on both the dark video hero and the solid header */
.brand__logo { filter: drop-shadow(0 3px 10px rgba(0,0,0,.35)); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: #eaf2fb;
  padding: 10px 15px;
  border-radius: var(--r-pill);
  position: relative;
  transition: color var(--t), background var(--t);
}
.nav-links a::after {
  content:""; position:absolute; left:15px; right:15px; bottom:6px; height:2px;
  background: var(--c-accent); border-radius:2px; transform: scaleX(0); transform-origin:left;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; color:#eaf2fb; font-family: var(--font-head); font-weight:600; }
.nav-phone .circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); display: grid; place-items: center; color: var(--c-accent-2);
}

/* Scrolled state */
.site-header.scrolled .navbar { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--sh-sm); }
.site-header.scrolled .topbar { max-height: 0; opacity: 0; padding: 0; }
.site-header.scrolled .nav-links a { color: var(--c-ink); }
.site-header.scrolled .nav-links a.active { color: var(--c-primary); }
.site-header.scrolled .nav-phone { color: var(--c-ink); }
.site-header.scrolled .nav-phone .circle { background: rgba(16,59,115,.08); color: var(--c-primary); }

/* Inner-page header (no video hero) always solid */
.site-header.solid .navbar { background: rgba(255,255,255,.95); backdrop-filter: blur(14px); box-shadow: var(--sh-sm); }
.site-header.solid .nav-links a { color: var(--c-ink); }
.site-header.solid .nav-links a.active { color: var(--c-primary); }
.site-header.solid .nav-phone { color: var(--c-ink); }
.site-header.solid .nav-phone .circle { background: rgba(16,59,115,.08); color: var(--c-primary); }

/* Hamburger */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; z-index: 1002; }
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 2px;
  background: #fff; transition: transform var(--t) var(--ease), opacity var(--t), background var(--t);
}
.hamburger span:nth-child(1){ top: 15px; }
.hamburger span:nth-child(2){ top: 22px; }
.hamburger span:nth-child(3){ top: 29px; }
.site-header.scrolled .hamburger span, .site-header.solid .hamburger span { background: var(--c-ink); }
.hamburger.open span { background: #fff; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); z-index: 1001;
  background: var(--grad-brand); color: #fff;
  transform: translateX(100%); transition: transform var(--t-slow) var(--ease-out);
  padding: calc(var(--header-h) + 20px) 30px 40px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: -30px 0 80px rgba(0,0,0,.3); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 1.08rem;
  padding: 14px 16px; border-radius: var(--r-md); display: flex; align-items: center; gap: 12px;
  transition: background var(--t), padding-left var(--t);
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,.12); padding-left: 22px; }
.mobile-nav .btn { margin-top: 14px; }
.mobile-nav__contact { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); font-size: .92rem; color:#cfe0f0; display:grid; gap:10px; }
.mobile-nav__contact a { padding: 6px 0; }
.overlay {
  position: fixed; inset: 0; background: rgba(6,20,40,.55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; z-index: 1000; transition: opacity var(--t), visibility var(--t);
}
.overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video,
.hero__media img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: center;
    animation: none;
}
.hero__overlay { position: absolute; inset: 0; z-index: -1; background: var(--grad-hero); }
.hero__overlay::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(6,18,38,.55) 0%, rgba(6,18,38,.12) 26%, transparent 46%);
}
.hero__inner { padding-top: calc(var(--header-h) + 38px); padding-bottom: 48px; }
/* Cap the text width so it stays in the left zone; the block itself stays full-width & left-aligned (not centered) */
.hero__badge, .hero h1, .hero__actions, .hero__trust { max-width: 560px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px; border-radius: var(--r-pill); font-size: .85rem; font-weight: 500;
  backdrop-filter: blur(10px);
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 4px rgba(71,215,196,.3); }
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; margin-bottom: 16px; }
.hero h1 .hl { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.15rem); color: #e6eef7; max-width: 520px; margin-bottom: 24px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
/* Subtle dark backing keeps the outline CTA readable over any (incl. bright) video frame */
.hero__actions .btn--ghost { background: rgba(8,24,48,.34); }
.hero__actions .btn--ghost:hover { background: rgba(8,24,48,.5); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: #eaf3fb; font-weight: 500; }
.hero__trust .tick {
  width: 22px; height: 22px; border-radius: 50%; background: var(--grad-accent);
  display: grid; place-items: center; color: #063a33; font-size: 12px; flex-shrink: 0;
}
.scroll-ind {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.75);
}
.scroll-ind .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative;
}
.scroll-ind .mouse::after {
  content:""; position: absolute; left: 50%; top: 7px; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scrollDot 1.6s infinite;
}

/* ---------- Cards (generic) ---------- */
.card {
  background: var(--c-white); border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--sh-sm); border: 1px solid var(--c-line);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(71,215,196,.4); }

.glass {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px); border-radius: var(--r-lg);
}

/* ---------- About Preview ---------- */
.about { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); width: 100%; object-fit: cover; aspect-ratio: 4/4.4; }
.about__media .badge-float {
  position: absolute; background: var(--c-white); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.about__media .badge-float.b1 { left: -22px; bottom: 40px; }
.about__media .badge-float.b2 { right: -14px; top: 34px; }
.badge-float .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-accent); color:#063a33; display: grid; place-items: center; font-size: 22px; }
.badge-float .num { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--c-primary); line-height: 1; }
.badge-float .lbl { font-size: .78rem; color: var(--c-muted); }
.about__list { display: grid; gap: 14px; margin: 26px 0 32px; }
.about__list li { display: flex; align-items: flex-start; gap: 13px; font-weight: 500; color: var(--c-ink); }
.about__list .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(71,215,196,.18); color: var(--c-primary); display: grid; place-items: center; flex-shrink: 0; font-size: 13px; }

/* Counters */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 20px; }
.counter { text-align: center; }
.counter .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--c-primary); line-height: 1; }
.counter .n .plus { color: var(--c-accent); }
.counter .l { font-size: .86rem; color: var(--c-muted); margin-top: 6px; }
.counters--dark .counter .n { color: #fff; }
.counters--dark .counter .n .plus { color: var(--c-accent-2); }
.counters--dark .counter .l { color: #bcd0e4; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(20px, 2.4vw, 30px); }
.service-card {
  background: var(--c-white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--c-line);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.service-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.09); }
.service-card__img::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(16,59,115,.55), transparent 55%); }
.service-card__icon {
  position: absolute; left: 20px; bottom: -24px; width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-accent); color: #063a33; display: grid; place-items: center; font-size: 24px;
  box-shadow: var(--sh-accent); z-index: 2;
}
.service-card__body { padding: 40px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { font-size: .95rem; margin-bottom: 20px; flex: 1; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600;
  color: var(--c-primary); font-size: .95rem; transition: gap var(--t), color var(--t);
}
.service-card__link:hover { gap: 14px; color: var(--c-accent); }

/* Compact service chips (services page full list) */
.service-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.service-chip {
  display: flex; align-items: center; gap: 14px; background: var(--c-white); padding: 18px 20px;
  border-radius: var(--r-md); border: 1px solid var(--c-line); box-shadow: var(--sh-xs);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-chip:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(71,215,196,.5); }
.service-chip .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(71,215,196,.16); color: var(--c-primary); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.service-chip h4 { font-size: 1rem; margin-bottom: 2px; }
.service-chip span { font-size: .82rem; color: var(--c-muted); }

/* ---------- Why Choose Us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: clamp(18px, 2.2vw, 26px); }
.why-card {
  background: var(--c-white); border-radius: var(--r-lg); padding: 32px 26px;
  border: 1px solid var(--c-line); box-shadow: var(--sh-xs); position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t), color var(--t);
}
.why-card::before {
  content:""; position: absolute; inset: 0; background: var(--grad-brand); opacity: 0;
  transition: opacity var(--t); z-index: 0;
}
.why-card > * { position: relative; z-index: 1; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.why-card:hover::before { opacity: 1; }
.why-card:hover h3, .why-card:hover p { color: #fff; }
.why-card:hover p { color: #d6e5f3; }
.why-card .ic {
  width: 60px; height: 60px; border-radius: 18px; background: var(--grad-accent); color: #063a33;
  display: grid; place-items: center; font-size: 26px; margin-bottom: 20px; transition: transform var(--t) var(--ease);
}
.why-card:hover .ic { transform: rotate(-8deg) scale(1.06); }
.why-card h3 { font-size: 1.14rem; margin-bottom: 9px; transition: color var(--t); }
.why-card p { font-size: .92rem; transition: color var(--t); }

/* ---------- Working Process ---------- */
.process { position: relative; }
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; counter-reset: step; }
.process-step { position: relative; text-align: center; padding-top: 20px; }
.process-step .circle {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px; position: relative; z-index: 2;
  background: var(--c-white); border: 2px solid var(--c-line); display: grid; place-items: center;
  font-size: 28px; color: var(--c-primary); box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), background var(--t), color var(--t);
}
.process-step:hover .circle { background: var(--grad-brand); color: #fff; transform: translateY(-6px) scale(1.05); border-color: transparent; }
.process-step .circle img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
.process-step .step-no {
  position: absolute; top: 8px; left: 50%; transform: translateX(24px);
  width: 26px; height: 26px; border-radius: 50%; background: var(--c-accent); color: #063a33;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; display: grid; place-items: center; z-index: 3;
}
.process-step h4 { font-size: 1.02rem; margin-bottom: 6px; }
.process-step p { font-size: .84rem; color: var(--c-muted); }
.process-line { position: absolute; top: 58px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--c-accent) 0 12px, transparent 12px 24px); z-index: 0; }

/* ---------- Brands ---------- */
.brands { overflow: hidden; }
.marquee { display: flex; gap: 0; overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 22px; padding: 6px 11px; animation: marquee 32s linear infinite; }
.brands:hover .marquee__track { animation-play-state: paused; }
.brand-logo {
  flex: 0 0 auto; width: 170px; height: 92px; border-radius: var(--r-md); background: var(--c-white);
  border: 1px solid var(--c-line); box-shadow: var(--sh-xs); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--c-primary-2);
  transition: transform var(--t), box-shadow var(--t), color var(--t);
}
.brand-logo:hover { transform: translateY(-4px); box-shadow: var(--sh-md); color: var(--c-accent); }
.brand-logo small { display:block; font-size:.6rem; letter-spacing:.12em; color:var(--c-muted); font-weight:500; text-align:center; margin-top:2px; text-transform:uppercase; }

/* ---------- Testimonials ---------- */
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; transition: transform var(--t-slow) var(--ease-out); }
.testi-slide { flex: 0 0 100%; padding: 6px; }
.testi-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 46px);
  max-width: 820px; margin-inline: auto; text-align: center;
}
.testi-card .stars { color: #ffd166; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-card blockquote { font-size: clamp(1.05rem, 2vw, 1.4rem); color: #fff; font-weight: 500; line-height: 1.5; margin-bottom: 26px; font-family: var(--font-head); }
.testi-card__person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-card__person img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-accent); }
.testi-card__person .nm { font-family: var(--font-head); font-weight: 600; color: #fff; }
.testi-card__person .ci { font-size: .84rem; color: var(--c-accent-2); }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 30px; align-items: center; }
.testi-nav button {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.24); display: grid; place-items: center; font-size: 18px;
  transition: background var(--t), transform var(--t);
}
.testi-nav button:hover { background: var(--c-accent); color: #063a33; transform: scale(1.08); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all var(--t); }
.testi-dots span.active { background: var(--c-accent); width: 26px; border-radius: 6px; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.gallery-filters button {
  font-family: var(--font-head); font-weight: 500; font-size: .9rem; padding: 10px 20px; border-radius: var(--r-pill);
  background: var(--c-white); border: 1px solid var(--c-line); color: var(--c-body); transition: all var(--t);
}
.gallery-filters button.active, .gallery-filters button:hover { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-sm); }
.masonry { columns: 3; column-gap: 18px; }
.masonry .g-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--r-md); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--sh-xs); }
.masonry .g-item img { width: 100%; transition: transform var(--t-slow) var(--ease); }
.masonry .g-item:hover img { transform: scale(1.08); }
.masonry .g-item::after {
  content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(to top, rgba(16,59,115,.7), rgba(16,59,115,.15)); color:#fff;
  opacity: 0; transition: opacity var(--t);
}
.masonry .g-item:hover::after { opacity: 1; }
.g-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .95rem; opacity: 0; transform: translateY(8px); transition: all var(--t); }
.masonry .g-item:hover .g-cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(6,16,32,.92); display: none; place-items: center; padding: 30px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 86vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.14); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 22px; transition: background var(--t); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--c-accent); color:#063a33; }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: clamp(22px, 2.6vw, 32px); }
.blog-card { background: var(--c-white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--c-line); transition: transform var(--t) var(--ease), box-shadow var(--t); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.07); }
.blog-card__cat { position: absolute; top: 14px; left: 14px; background: var(--grad-accent); color: #063a33; font-family: var(--font-head); font-weight: 600; font-size: .72rem; padding: 6px 13px; border-radius: var(--r-pill); }
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; gap: 16px; font-size: .8rem; color: var(--c-muted); margin-bottom: 12px; }
.blog-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-card h3 { font-size: 1.16rem; margin-bottom: 12px; line-height: 1.35; }
.blog-card h3 a { transition: color var(--t); }
.blog-card:hover h3 a { color: var(--c-primary); }
.blog-card p { font-size: .92rem; margin-bottom: 18px; flex: 1; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq-item.open { box-shadow: var(--sh-md); border-color: rgba(71,215,196,.5); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.03rem; color: var(--c-ink); }
.faq-q .icn { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(71,215,196,.16); color: var(--c-primary); display: grid; place-items: center; transition: transform var(--t), background var(--t), color var(--t); }
.faq-item.open .faq-q .icn { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: .96rem; color: var(--c-body); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; color: #fff; border-radius: var(--r-xl); padding: clamp(44px, 6vw, 80px) var(--gutter); background: var(--grad-brand); }
.cta-band::before, .cta-band::after { content:""; position: absolute; border-radius: 50%; background: rgba(71,215,196,.22); filter: blur(20px); }
.cta-band::before { width: 300px; height: 300px; top: -120px; right: -80px; }
.cta-band::after { width: 240px; height: 240px; bottom: -120px; left: -60px; background: rgba(126,233,221,.18); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.cta-band p { color: #d7e6f4; max-width: 560px; margin: 0 auto 30px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0a2549; color: #b6c7da; padding-top: clamp(38px, 5vw, 60px); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: clamp(26px, 3vw, 44px); padding-bottom: 34px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-about img { height: 132px; margin-bottom: 18px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.35)); }
.footer-about p { font-size: .92rem; margin-bottom: 20px; max-width: 320px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: .93rem; transition: color var(--t), padding-left var(--t); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content:"›"; color: var(--c-accent); font-size: 1.1rem; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact { display: grid; gap: 14px; font-size: .92rem; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .ic { color: var(--c-accent); margin-top: 3px; flex-shrink: 0; }
.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input { flex: 1; min-width: 0; padding: 13px 16px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; }
.newsletter input::placeholder { color: #8ba3bd; }
.newsletter button { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-accent); color: #063a33; display: grid; place-items: center; flex-shrink: 0; transition: transform var(--t); }
.newsletter button:hover { transform: scale(1.08); }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe0f0; transition: background var(--t), transform var(--t), color var(--t); }
.social a:hover { background: var(--grad-accent); color: #063a33; transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Floating actions ---------- */
.floaters { position: fixed; right: 18px; bottom: 20px; z-index: 800; display: flex; flex-direction: column; gap: 12px; }
.floaters a, .floaters button { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 22px; box-shadow: var(--sh-md); transition: transform var(--t), box-shadow var(--t); position: relative; }
.floaters a:hover, .floaters button:hover { transform: translateY(-4px) scale(1.06); }
.fl-wa { background: #25D366; }
.fl-call { background: var(--grad-brand); }
.fl-book { background: var(--grad-accent); color: #063a33; }
.fl-top { background: #0a2549; opacity: 0; visibility: hidden; transform: translateY(12px); }
.fl-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.floaters .pulse::before { content:""; position: absolute; inset: 0; border-radius: 50%; background: inherit; z-index: -1; animation: pulseRing 2s ease-out infinite; }

/* Sticky mobile CTA bar */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 790; display: none; grid-template-columns: repeat(3, 1fr); background: var(--c-white); box-shadow: 0 -8px 30px rgba(16,59,115,.14); border-top: 1px solid var(--c-line); }
.mobile-cta a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 4px; font-family: var(--font-head); font-weight: 600; font-size: .72rem; color: var(--c-primary); }
.mobile-cta a span { font-size: 19px; }
.mobile-cta a.hl { background: var(--grad-brand); color: #fff; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { position: relative; padding: calc(var(--header-h) + 44px) 0 48px; color: #fff; overflow: hidden; text-align: center; }
.page-banner__media { position: absolute; inset: 0; z-index: -2; }
.page-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(16,59,115,.94), rgba(29,78,137,.82) 55%, rgba(71,215,196,.5)); }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 12px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; color: #d7e6f4; }
.breadcrumb a:hover { color: var(--c-accent-2); }
.breadcrumb .sep { opacity: .6; }

/* ---------- Forms ---------- */
.form-card { background: var(--c-white); border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: clamp(26px, 4vw, 46px); border: 1px solid var(--c-line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .88rem; color: var(--c-ink); }
.field label .req { color: #e5484d; }
.field input, .field select, .field textarea {
  padding: 14px 16px; border-radius: var(--r-md); border: 1.5px solid var(--c-line); background: var(--c-bg);
  transition: border-color var(--t), box-shadow var(--t), background var(--t); font-size: .96rem; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 4px rgba(71,215,196,.16); }
.field .err { font-size: .78rem; color: #e5484d; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e5484d; }
.field.invalid .err { display: block; }
.field label .opt { color: var(--c-muted); font-weight: 400; }

/* Related-image upload (booking form) */
.file-drop { position: relative; border: 1.5px dashed var(--c-line); border-radius: var(--r-md); background: var(--c-bg); transition: border-color var(--t), background var(--t); }
.file-drop:hover, .file-drop.dragover { border-color: var(--c-accent); background: #fff; }
.file-drop input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-drop__hint { display: flex; align-items: center; gap: 12px; padding: 16px; font-size: .92rem; color: var(--c-body); pointer-events: none; }
.file-drop__hint .file-drop__icon { font-size: 22px; flex-shrink: 0; }
.file-drop__hint small { display: block; color: var(--c-muted); font-size: .78rem; margin-top: 2px; }
.file-drop__preview { display: flex; align-items: center; gap: 14px; padding: 12px 16px; }
.file-drop__preview img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--c-line); background: #fff; }
.file-drop__preview span { font-size: .88rem; color: var(--c-ink); word-break: break-all; flex: 1; }
.file-drop__remove { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: #fff; border: 1px solid var(--c-line); color: #e5484d; font-size: 14px; cursor: pointer; display: grid; place-items: center; position: relative; z-index: 2; }
.file-drop__remove:hover { background: #fdeaea; }
.field .form-note { font-size: .8rem; color: var(--c-muted); }
.field .form-note.form-note--error { color: #e5484d; }

/* Success popup */
.modal { position: fixed; inset: 0; z-index: 1300; display: none; place-items: center; padding: 24px; background: rgba(6,16,32,.6); backdrop-filter: blur(5px); }
.modal.open { display: grid; animation: fadeIn .3s ease; }
.modal__box { background: #fff; border-radius: var(--r-xl); padding: clamp(30px, 5vw, 48px); max-width: 460px; width: 100%; text-align: center; box-shadow: var(--sh-lg); animation: popIn .4s var(--ease-out); position: relative; }
.modal__icon { width: 84px; height: 84px; border-radius: 50%; background: var(--grad-accent); color: #063a33; display: grid; place-items: center; font-size: 40px; margin: 0 auto 22px; }
.modal__box h3 { font-size: 1.5rem; margin-bottom: 10px; }
.modal__box p { margin-bottom: 24px; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; background: var(--c-bg); color: var(--c-ink); display: grid; place-items: center; font-size: 18px; }

/* Info list (contact) */
.info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-xs); transition: transform var(--t), box-shadow var(--t); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.info-card .ic { width: 54px; height: 54px; border-radius: 15px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.info-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .93rem; color: var(--c-body); }
.info-card a:hover { color: var(--c-primary); }

/* Map */
.map-embed { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--c-line); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* Blog sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(30px, 4vw, 50px); align-items: start; }
.sidebar { display: grid; gap: 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.widget { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-xs); }
.widget h4 { font-size: 1.1rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--c-line); position: relative; }
.widget h4::after { content:""; position: absolute; left: 0; bottom: -2px; width: 46px; height: 2px; background: var(--c-accent); }
.search-box { display: flex; gap: 8px; }
.search-box input { flex: 1; min-width: 0; padding: 12px 15px; border-radius: var(--r-md); border: 1.5px solid var(--c-line); background: var(--c-bg); }
.search-box input:focus { outline: none; border-color: var(--c-accent); }
.search-box button { width: 46px; border-radius: var(--r-md); background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.cat-list li a { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--c-line); font-size: .95rem; transition: color var(--t), padding-left var(--t); }
.cat-list li:last-child a { border-bottom: 0; }
.cat-list li a:hover { color: var(--c-primary); padding-left: 6px; }
.cat-list .count { background: rgba(71,215,196,.16); color: var(--c-primary); font-size: .76rem; padding: 2px 10px; border-radius: var(--r-pill); }
.recent-post { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px dashed var(--c-line); }
.recent-post:last-child { border-bottom: 0; }
.recent-post img { width: 72px; height: 66px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.recent-post h5 { font-family: var(--font-head); font-size: .92rem; color: var(--c-ink); line-height: 1.35; margin-bottom: 4px; transition: color var(--t); }
.recent-post:hover h5 { color: var(--c-primary); }
.recent-post span { font-size: .76rem; color: var(--c-muted); }

/* Article body */
.article { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm); }
.article__hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.article__body { padding: clamp(24px, 4vw, 46px); }
.article__body h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 34px 0 14px; }
.article__body h3 { font-size: 1.3rem; margin: 26px 0 12px; }
.article__body p { margin-bottom: 18px; }
.article__body ul { display: grid; gap: 10px; margin: 0 0 20px; }
.article__body ul li { display: flex; gap: 12px; align-items: flex-start; padding-left: 2px; }
.article__body ul li::before { content:"✓"; color: var(--c-accent); font-weight: 700; }
.article__body blockquote { border-left: 4px solid var(--c-accent); background: var(--c-bg); padding: 20px 24px; border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; color: var(--c-ink); margin: 22px 0; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.tag-row a { font-size: .82rem; padding: 7px 15px; border-radius: var(--r-pill); background: var(--c-bg); border: 1px solid var(--c-line); transition: all var(--t); }
.tag-row a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* Loader */
.loader { position: fixed; inset: 0; z-index: 2000; background: var(--grad-brand); display: grid; place-items: center; transition: opacity .5s ease, visibility .5s; }
.loader.hide { opacity: 0; visibility: hidden; }
.loader__spin { width: 74px; height: 74px; }
.loader__ring { width: 74px; height: 74px; border: 4px solid rgba(255,255,255,.2); border-top-color: var(--c-accent); border-radius: 50%; animation: spin 1s linear infinite; }
.loader__txt { margin-top: 18px; font-family: var(--font-head); font-weight: 600; letter-spacing: .2em; color: #fff; text-align: center; }

/* Utility */
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.split-cta { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px,4vw,60px); align-items: center; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { background: rgba(71,215,196,.14); color: var(--c-primary); font-weight: 600; font-family: var(--font-head); font-size: .85rem; padding: 8px 16px; border-radius: var(--r-pill); }
.section--dark .pill-list li { background: rgba(255,255,255,.12); color: #fff; }

/* 404 */
.err-page { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px 20px 60px; background: var(--grad-brand); color: #fff; }
.err-page .code { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 18vw, 12rem); line-height: 1; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.err-page h1 { color: #fff; margin: 8px 0 14px; }
.err-page p { color: #cdddec; max-width: 460px; margin: 0 auto 30px; }
