/* ===========================================================
   Erdem Cleaning LLC — Modern Design System
   =========================================================== */

:root {
  --brand-50:  #ecfbf6;
  --brand-100: #d3f5e9;
  --brand-200: #a7ead4;
  --brand-300: #6fd9b9;
  --brand-400: #34c099;
  --brand-500: #14a684;
  --brand-600: #0c8a6f;
  --brand-700: #0a6e5a;
  --brand-800: #0a5547;
  --brand-900: #093f37;

  --ink-900: #0c1f22;
  --ink-700: #2c4146;
  --ink-500: #50676c;
  --ink-400: #7a8e92;
  --ink-300: #a7b6b9;

  --line:    #e3ecec;
  --soft:    #f4faf8;
  --cream:   #fbfdfb;

  /* Semantic surfaces (theme-aware) */
  --surface-1: #ffffff;            /* cards, inputs */
  --surface-2: #fbfdfb;            /* page body */
  --surface-glass: rgba(251, 253, 251, .82);  /* sticky header */
  --hero-grad: radial-gradient(60% 70% at 80% 10%, rgba(20, 166, 132, .12), transparent 60%),
               radial-gradient(60% 60% at 10% 90%, rgba(244, 183, 64, .12), transparent 60%),
               linear-gradient(180deg, #f4faf8 0%, #fbfdfb 100%);

  --accent:       #f4b740;
  --accent-soft:  #fff3d6;
  --danger:       #d64545;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(12, 31, 34, .06);
  --shadow:    0 18px 38px -18px rgba(12, 31, 34, .22), 0 4px 14px rgba(12, 31, 34, .06);
  --shadow-lg: 0 32px 68px -28px rgba(12, 31, 34, .35), 0 12px 28px rgba(12, 31, 34, .08);

  --container: 1240px;
  --pad-x: clamp(18px, 4vw, 36px);
  --section-y: clamp(64px, 9vw, 120px);

  --ease: cubic-bezier(.2, .8, .2, 1);

  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face { font-family: "Inter"; font-style: normal; font-weight: 300 900; font-display: swap; src: local("Inter"); }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface-2);
  color: var(--ink-900);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-900);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(36px, 5.6vw, 64px); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; }
h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 800; }
h4 { font-size: 20px; font-weight: 700; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(20, 166, 132, .15);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--section-y) 0;
}

.section--soft { background: var(--soft); }
.section--ink  { background: var(--ink-900); color: #d7e6e7; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-500); max-width: 620px; }

/* ===== Top promo bar ===== */
.promobar {
  background: linear-gradient(95deg, var(--brand-800), var(--brand-700) 60%, var(--brand-600));
  color: #fff;
  font-size: 13.5px;
  position: relative;
  overflow: hidden;
}
.promobar::before,
.promobar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.12), transparent 30%);
  pointer-events: none;
}
.promobar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
}
.promobar strong { font-weight: 700; }
.promobar-pill {
  background: var(--accent);
  color: var(--ink-900);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--surface-glass);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  transition: background .25s var(--ease);
  pointer-events: none;
}
.site-header.is-scrolled::before { background: var(--surface-1); }
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 26px -18px rgba(12, 31, 34, .22);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: auto; }
.brand-text {
  display: none;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--ink-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 4px;
  justify-self: center;
  align-items: center;
}
.nav-links a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--brand-50);
  color: var(--brand-700);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-call {
  text-align: right;
  line-height: 1.1;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
  text-transform: uppercase;
}
.nav-call a {
  display: block;
  color: var(--ink-900);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-700);
  color: #fff;
  border: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  background: transparent;
  border: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.lang-switch button:hover { color: var(--brand-700); }
.lang-switch button.is-active {
  background: var(--surface-1);
  color: var(--brand-700);
  box-shadow: 0 2px 6px rgba(12, 31, 34, 0.08);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-align: center;
  transition: transform .15s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(12, 138, 111, .55);
}
.btn--primary:hover { background: var(--brand-700); }

.btn--accent {
  background: var(--accent);
  color: var(--ink-900);
  box-shadow: 0 12px 28px -10px rgba(244, 183, 64, .55);
}
.btn--accent:hover { background: #ecaa30; }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-900);
}
.btn--ghost:hover {
  background: var(--surface-1);
  border-color: var(--brand-300);
  color: var(--brand-700);
}

.btn--light {
  background: var(--surface-1);
  color: var(--ink-900);
  border-color: var(--line);
}
.btn--light:hover { border-color: var(--brand-300); color: var(--brand-700); }

.btn--lg { min-height: 60px; padding: 0 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 8vw, 100px);
  background: var(--hero-grad);
}
.hero-grid {
  display: grid;
  gap: clamp(36px, 5vw, 60px);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.hero-copy h1 {
  margin: 14px 0 22px;
  max-width: 14ch;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--brand-600);
  position: relative;
}
.hero-copy h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.12em;
  background: var(--accent);
  opacity: .35;
  border-radius: 4px;
}
.hero-copy p {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-500);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  align-items: center;
  color: var(--ink-500);
  font-size: 14px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-700); }
.hero-trust svg { width: 18px; height: 18px; color: var(--brand-600); }

.hero-art {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--brand-100), var(--brand-50));
  isolation: isolate;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-art:hover img { transform: scale(1.04); }

.hero-badge {
  position: absolute;
  background: var(--surface-1);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
}
.hero-badge--top {
  top: 22px;
  left: 22px;
  color: var(--ink-700);
}
.hero-badge--bot {
  bottom: 22px;
  right: 22px;
  background: var(--ink-900);
  color: #fff;
  padding: 16px 20px;
}
.hero-badge-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
}
.hero-badge--bot .hero-badge-icon { background: var(--brand-700); color: #fff; }
.hero-badge strong { display: block; font-size: 16px; }
.hero-badge small { color: var(--ink-400); font-weight: 500; }
.hero-badge--bot small { color: rgba(255,255,255,.62); }

/* ===== Stats strip ===== */
.stats {
  margin-top: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: grid;
  gap: 6px;
  text-align: left;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
}
.stat::after {
  content: "";
  position: absolute;
  inset: -50% -30% auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(20, 166, 132, .12), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--brand-200);
}
.stat:hover::after { opacity: 1; }
.stat-ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.stat-ic svg { width: 20px; height: 20px; }
.stat strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
}
.stat strong em {
  font-style: normal;
  font-size: 0.55em;
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 0;
}
.stat .stat-label { font-size: 14.5px; color: var(--ink-700); font-weight: 700; }
.stat .stat-sub   { font-size: 12.5px; color: var(--ink-400); font-weight: 500; }

/* ===== Section header ===== */
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 4vw, 60px);
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { color: var(--ink-500); font-size: 17px; margin: 0; }
.section-head--start { text-align: left; margin-left: 0; }

/* ===== Service cards ===== */
.services {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-200);
}
.service-card .ic {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand-50);
  color: var(--brand-600);
  margin-bottom: 22px;
}
.service-card .ic svg { width: 28px; height: 28px; }
.service-card h3 { margin: 0 0 10px; font-size: 22px; }
.service-card p { color: var(--ink-500); font-size: 15px; margin: 0 0 18px; }
.service-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-700);
}
.service-card ul svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand-600);
  margin-top: 2px;
}
.service-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-700);
}
.service-card .more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.service-card:hover .more svg { transform: translateX(3px); }

/* Featured service variant */
.service-card--featured {
  background: linear-gradient(160deg, var(--brand-700), var(--brand-900));
  color: #d6efe6;
  border-color: transparent;
}
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,.78); }
.service-card--featured ul li { color: rgba(255,255,255,.86); }
.service-card--featured ul svg { color: var(--accent); }
.service-card--featured .ic { background: rgba(255,255,255,.1); color: var(--accent); }
.service-card--featured .more { color: var(--accent); }

/* ===== USP icon grid ===== */
.usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: left;
}
.usp .ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.usp .ic svg { width: 22px; height: 22px; }
.usp h4 { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: var(--ink-900); }
.usp p { margin: 0; font-size: 14px; color: var(--ink-500); }

/* ===== Split feature ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split-art {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  position: relative;
  box-shadow: var(--shadow);
}
.split-art img { width: 100%; height: 100%; object-fit: cover; }
.split-art .badge-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: var(--surface-1);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  font-weight: 600;
}
.split-art .badge-card svg { width: 22px; height: 22px; color: var(--brand-600); }
.split-art .badge-card small { color: var(--ink-400); font-weight: 500; display: block; font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; }
.split-art .badge-card strong { display: block; font-size: 15px; }

.feature-list {
  list-style: none;
  margin: 26px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink-700);
}
.feature-list .ic {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-700);
  display: grid;
  place-items: center;
}
.feature-list .ic svg { width: 16px; height: 16px; }
.feature-list strong { display: block; color: var(--ink-900); margin-bottom: 2px; }

/* ===== Service areas ===== */
.areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  position: relative;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-200);
}
.area-card .pin {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.area-card .pin svg { width: 20px; height: 20px; }
.area-card h4 { margin: 0 0 6px; font-size: 18px; }
.area-card p { margin: 0; color: var(--ink-500); font-size: 13.5px; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: var(--soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 31, 34, .55));
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.gallery-item .tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 18, 20, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}
.lightbox-btn:hover { background: rgba(255,255,255,.2); }
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--brand-100);
  font-weight: 700;
}
.testimonial-stars { color: var(--accent); margin-bottom: 14px; display: flex; gap: 2px; }
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial p { font-size: 15.5px; color: var(--ink-700); margin: 0 0 22px; }
.testimonial-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-meta img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--brand-100);
}
.testimonial-meta strong { display: block; font-size: 15px; }
.testimonial-meta span { color: var(--ink-400); font-size: 13px; }

/* ===== Process / Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  padding: 30px;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.step-num {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-600);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.step h4 { margin: 12px 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--ink-500); font-size: 14.5px; }

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(40px, 6vw, 70px);
  background:
    linear-gradient(110deg, rgba(10, 78, 64, .96) 0%, rgba(10, 78, 64, .75) 60%, rgba(10, 78, 64, .25) 100%),
    url("/assets/img/gallery-5.jpg") center / cover no-repeat;
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 0; max-width: 56ch; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, .72);
  padding: clamp(56px, 7vw, 90px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand p { color: rgba(255, 255, 255, .6); font-size: 14.5px; max-width: 38ch; }
.footer-col h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col a, .footer-col li {
  display: block;
  padding: 5px 0;
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  transition: color .15s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.footer-contact-row svg { width: 18px; height: 18px; color: var(--brand-400); flex: none; margin-top: 3px; }
.footer-contact-row span { font-size: 14.5px; color: rgba(255,255,255,.72); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.48);
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom-center {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}
.powered-by a {
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  border-bottom: 1px dotted rgba(255, 255, 255, .3);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.powered-by a:hover { color: var(--accent); border-color: var(--accent); }
.powered-by .heart {
  display: inline-flex;
  align-items: center;
  color: #ff5b6c;
  width: 14px;
  height: 14px;
  animation: heartBeat 1.6s ease-in-out infinite;
  transform-origin: center;
}
.powered-by .heart svg { width: 100%; height: 100%; fill: currentColor; }
@keyframes heartBeat {
  0%, 50%, 100% { transform: scale(1); }
  10%, 30%      { transform: scale(1.22); }
  20%           { transform: scale(0.95); }
}

.qr-powered {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-500);
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.qr-powered a {
  color: var(--brand-700);
  font-weight: 700;
  border-bottom: 1px dotted rgba(10, 110, 90, .35);
  padding-bottom: 1px;
}
.qr-powered a:hover { color: var(--brand-800); }
.qr-powered .heart {
  display: inline-flex;
  color: #ff5b6c;
  width: 13px;
  height: 13px;
  animation: heartBeat 1.6s ease-in-out infinite;
}
.qr-powered .heart svg { width: 100%; height: 100%; fill: currentColor; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .2s var(--ease);
}
.footer-social a:hover { background: var(--brand-600); }
.footer-social svg { width: 18px; height: 18px; }

/* ===== Floating contact ===== */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 36px -10px rgba(0, 0, 0, .35);
  transition: transform .2s var(--ease);
  position: relative;
}
.fab:hover { transform: scale(1.06); }
.fab--call { background: var(--brand-600); }
.fab--wa { background: #25d366; }
.fab svg { width: 26px; height: 26px; }
.fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid currentColor;
  opacity: .35;
  animation: pulse 2.1s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===== Sub-page hero ===== */
.page-hero {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0 clamp(50px, 6vw, 90px);
  background:
    linear-gradient(160deg, rgba(10, 78, 64, .8), rgba(10, 78, 64, .55) 60%, rgba(10, 78, 64, .25)),
    var(--brand-800);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 80% 20%, rgba(244, 183, 64, .22), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; max-width: 18ch; margin: 14px 0 18px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 64ch; margin: 0; }
.page-hero .eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
}
.page-hero .eyebrow::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(244, 183, 64, .25); }
.breadcrumbs {
  position: relative;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs a { color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: #fff; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contact-card {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-channels {
  display: grid;
  gap: 14px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-channel:hover { border-color: var(--brand-300); background: var(--surface-1); }
.contact-channel .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--surface-1);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.contact-channel .ic svg { width: 22px; height: 22px; }
.contact-channel small { color: var(--ink-400); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.contact-channel strong { display: block; font-size: 16px; color: var(--ink-900); margin-top: 2px; }
.contact-channel:hover .ic { background: var(--brand-50); }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font: inherit;
  color: var(--ink-900);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--brand-400);
  background: var(--surface-1);
  box-shadow: 0 0 0 4px rgba(20, 166, 132, .12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
}
.form-status.is-error {
  color: var(--danger);
  background: rgba(214, 69, 69, .06);
  border: 1px solid rgba(214, 69, 69, .24);
}
.form-note { font-size: 13px; color: var(--ink-400); margin-top: 14px; }

/* Math captcha */
.captcha-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.captcha-label svg { width: 14px; height: 14px; color: var(--brand-600); }
.captcha-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.captcha-field:focus-within {
  border-color: var(--brand-400);
  background: var(--surface-1);
  box-shadow: 0 0 0 4px rgba(20, 166, 132, .12);
}
.captcha-field.is-error {
  border-color: var(--danger);
  background: rgba(214, 69, 69, .06);
  animation: shake .35s var(--ease);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.captcha-q {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  user-select: none;
  -webkit-user-select: none;
  font-variant-numeric: tabular-nums;
}
.captcha-q [data-op],
.captcha-q .eq { color: var(--brand-600); font-weight: 700; }
.captcha-field input.captcha-input {
  border: 0;
  background: transparent;
  min-height: 40px;
  padding: 0 4px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink-900);
  text-align: left;
  font-variant-numeric: tabular-nums;
  width: 100%;
}
.captcha-field input.captcha-input:focus {
  outline: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.captcha-refresh {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-1);
  border: 1px solid var(--line);
  color: var(--ink-500);
  display: grid;
  place-items: center;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .5s var(--ease), background .2s var(--ease);
}
.captcha-refresh:hover {
  color: var(--brand-700);
  border-color: var(--brand-300);
  background: var(--brand-50);
}
.captcha-refresh.is-spinning { transform: rotate(360deg); }
.captcha-refresh svg { width: 16px; height: 16px; }
.captcha-error {
  font-size: 13px;
  color: var(--danger);
  margin: 8px 0 0;
  display: none;
  align-items: center;
  gap: 6px;
}
.captcha-error.is-visible { display: inline-flex; }
.captcha-error svg { width: 14px; height: 14px; }

[data-theme="dark"] .captcha-field { background: #0a1f1d; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .captcha-field:focus-within { background: var(--surface-1); border-color: var(--brand-400); box-shadow: 0 0 0 4px rgba(52, 192, 153, .14); }
[data-theme="dark"] .captcha-field.is-error { background: rgba(255, 118, 118, .08); border-color: rgba(255, 118, 118, .45); }
[data-theme="dark"] .captcha-refresh { background: var(--surface-1); border-color: rgba(255,255,255,.06); color: var(--ink-500); }
[data-theme="dark"] .captcha-refresh:hover { color: var(--brand-300); border-color: var(--brand-400); background: rgba(52, 192, 153, .12); }
[data-theme="dark"] .captcha-error { color: #ffa5a5; }

/* ===== Hours card ===== */
.hours-card {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
}
.hours-card--dark {
  background: linear-gradient(155deg, var(--brand-800), var(--ink-900));
  color: #d7e6e7;
  border-color: transparent;
}
.hours-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hours-head h3 { margin: 0; font-size: 22px; }
.hours-card--dark .hours-head h3 { color: #fff; }
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink-500);
  border: 1px solid var(--line);
}
.hours-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink-400);
  box-shadow: 0 0 0 4px rgba(122, 142, 146, 0.18);
}
.hours-status.is-open {
  background: rgba(20, 166, 132, 0.12);
  color: var(--brand-700);
  border-color: rgba(20, 166, 132, 0.25);
}
.hours-status.is-open::before {
  background: #14a684;
  box-shadow: 0 0 0 4px rgba(20, 166, 132, 0.22);
  animation: pulseDot 2.2s ease-in-out infinite;
}
.hours-status.is-closed {
  background: rgba(214, 69, 69, 0.1);
  color: var(--danger);
  border-color: rgba(214, 69, 69, 0.22);
}
.hours-status.is-closed::before { background: var(--danger); box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.18); }
.hours-card--dark .hours-status { background: rgba(255,255,255,.08); color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.14); }
.hours-card--dark .hours-status.is-open { background: rgba(52, 192, 153, 0.18); color: #6fd9b9; border-color: rgba(52, 192, 153, 0.32); }
.hours-card--dark .hours-status.is-closed { background: rgba(214, 69, 69, 0.2); color: #ffb1b1; border-color: rgba(214, 69, 69, 0.32); }
@keyframes pulseDot { 50% { box-shadow: 0 0 0 7px rgba(20, 166, 132, 0); } }

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.hours-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-card--dark .hours-list li { border-bottom-color: rgba(255,255,255,.1); }
.hours-list li.is-today {
  background: var(--brand-50);
  border-radius: 12px;
  padding: 10px 14px;
  border-bottom-color: transparent;
}
.hours-card--dark .hours-list li.is-today {
  background: rgba(52, 192, 153, 0.14);
}
.hours-list .day { font-weight: 700; color: var(--ink-900); display: flex; align-items: center; gap: 10px; }
.hours-card--dark .hours-list .day { color: #fff; }
.hours-list .day .today-pill {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-600);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}
.hours-list .time {
  color: var(--ink-500);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.hours-card--dark .hours-list .time { color: rgba(255,255,255,.72); }
.hours-list li.closed .time { color: var(--ink-400); }
.hours-card--dark .hours-list li.closed .time { color: rgba(255,255,255,.5); }
.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0;
  padding: 14px 16px;
  background: var(--soft);
  border-radius: 12px;
}
.hours-card--dark .hours-note { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); }
.hours-note svg { width: 18px; height: 18px; flex: none; color: var(--brand-600); margin-top: 1px; }
.hours-card--dark .hours-note svg { color: var(--brand-300); }

.hours-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
}

/* ===== QR Card page ===== */
.qr-page {
  min-height: 100vh;
  background:
    radial-gradient(60% 70% at 20% 10%, rgba(20, 166, 132, .22), transparent 60%),
    radial-gradient(60% 60% at 80% 90%, rgba(244, 183, 64, .15), transparent 60%),
    var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.qr-card {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  width: 100%;
  padding: 32px 26px;
  text-align: center;
}
.qr-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  display: grid;
  place-items: center;
  padding: 12px;
}
.qr-avatar img { width: 100%; height: 100%; object-fit: contain; }
.qr-card h1 { font-size: 28px; margin: 0 0 6px; }
.qr-card .role { color: var(--ink-500); font-size: 14px; margin: 0 0 8px; }
.qr-card .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-700);
  background: var(--brand-50);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 4px 0 22px;
}
.qr-card .verified svg { width: 14px; height: 14px; }
.qr-links { display: grid; gap: 10px; margin-bottom: 18px; }
.qr-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform .15s var(--ease), border-color .2s var(--ease);
}
.qr-link:hover { transform: translateY(-1px); border-color: var(--brand-300); }
.qr-link .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-1);
  display: grid;
  place-items: center;
  flex: none;
  color: var(--brand-600);
  border: 1px solid var(--line);
}
.qr-link .ic svg { width: 22px; height: 22px; }
.qr-link .meta { flex: 1; min-width: 0; }
.qr-link small { display: block; font-size: 11.5px; color: var(--ink-400); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.qr-link strong { display: block; color: var(--ink-900); font-size: 15px; margin-top: 1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.qr-link .arrow { color: var(--ink-400); }
.qr-link.featured {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  border-color: transparent;
  color: #fff;
}
.qr-link.featured strong { color: #fff; }
.qr-link.featured small { color: rgba(255,255,255,.72); }
.qr-link.featured .ic { background: rgba(255,255,255,.12); border-color: transparent; color: #fff; }
.qr-link.featured .arrow { color: rgba(255,255,255,.7); }
.qr-foot { color: var(--ink-400); font-size: 13px; margin-top: 8px; }

/* ===== Animations ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-anim].is-visible { opacity: 1; transform: translateY(0); }
[data-anim-delay="1"] { transition-delay: .08s; }
[data-anim-delay="2"] { transition-delay: .16s; }
[data-anim-delay="3"] { transition-delay: .24s; }
[data-anim-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .fab::after { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .usps { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  body { overflow-x: hidden; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 60; }
  .nav-cta .nav-call,
  .nav-cta .btn--primary { display: none; }
  .nav-cta { gap: 8px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    background: var(--surface-1);
    flex-direction: column;
    align-items: stretch;
    padding: 92px var(--pad-x) 28px;
    gap: 6px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility 0s linear .35s;
    box-shadow: -20px 0 60px rgba(12, 31, 34, .2);
    overflow-y: auto;
    z-index: 50;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .35s var(--ease), visibility 0s linear;
  }
  .nav-links a {
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a[aria-current="page"],
  .nav-links a:hover { background: var(--brand-50); }
  /* Backdrop behind drawer */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 23, 26, .5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility 0s linear .3s;
    z-index: 45;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s var(--ease), visibility 0s linear;
  }
  body.nav-open { overflow: hidden; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { aspect-ratio: 4 / 3; max-width: 520px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hours-feature { grid-template-columns: 1fr; }
}

@media (min-width: 861px) {
  .nav-backdrop { display: none !important; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .services, .usps, .steps { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-badge--top, .hero-badge--bot { left: 12px; right: 12px; max-width: calc(100% - 24px); }
  .hero-badge--top { top: 12px; }
  .hero-badge--bot { bottom: 12px; }
  .promobar-pill { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .fab { width: 52px; height: 52px; }
}

/* =====================================================================
   THEME TOGGLE (sun / moon)
   ===================================================================== */
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-700);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.theme-toggle:hover { border-color: var(--brand-300); color: var(--brand-700); }
.theme-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: transform .45s var(--ease), opacity .25s var(--ease);
}
.theme-toggle .ic-sun  { opacity: 0; transform: rotate(80deg) scale(.55); }
.theme-toggle .ic-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle .ic-sun  { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle .ic-moon { opacity: 0; transform: rotate(-80deg) scale(.55); }

/* =====================================================================
   DARK THEME — overrides via [data-theme="dark"]
   ===================================================================== */
[data-theme="dark"] {
  /* Brand tints flipped: brand-50/100 become dark teal surfaces, brand-700 becomes light teal text */
  --brand-50:  rgba(52, 192, 153, 0.10);
  --brand-100: rgba(52, 192, 153, 0.18);
  --brand-200: rgba(52, 192, 153, 0.30);
  --brand-300: #6fd9b9;
  --brand-400: #34c099;
  --brand-500: #1fbf95;
  --brand-600: #20c4a0;
  --brand-700: #6fd9b9;
  --brand-800: #0a5547;
  --brand-900: #062a25;

  --ink-900: #eaf3f1;
  --ink-700: #c2d2cf;
  --ink-500: #94a8a6;
  --ink-400: #748d8c;
  --ink-300: #4f6366;

  --line:    rgba(255, 255, 255, 0.07);
  --soft:    #0f2421;
  --cream:   #08171a;

  --surface-1: #112e2a;
  --surface-2: #08171a;
  --surface-glass: rgba(8, 23, 26, .78);
  --hero-grad:
    radial-gradient(60% 70% at 80% 10%, rgba(52, 192, 153, .12), transparent 60%),
    radial-gradient(60% 60% at 10% 90%, rgba(244, 183, 64, .08), transparent 60%),
    linear-gradient(180deg, #0a1d1d 0%, #08171a 100%);

  --accent:       #f4b740;
  --accent-soft:  rgba(244, 183, 64, .18);
  --danger:       #ff7676;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .35);
  --shadow:    0 18px 38px -18px rgba(0, 0, 0, .65), 0 4px 14px rgba(0, 0, 0, .4);
  --shadow-lg: 0 32px 68px -28px rgba(0, 0, 0, .85), 0 12px 28px rgba(0, 0, 0, .45);
}

/* Dark-specific tweaks for elements that use hardcoded #fff or rely on light bg */
[data-theme="dark"] body { background: var(--surface-2); }
[data-theme="dark"] .site-header.is-scrolled::before { background: rgba(8, 23, 26, .92); }
[data-theme="dark"] .site-header.is-scrolled { border-bottom-color: rgba(255,255,255,.06); }
[data-theme="dark"] .nav-links a { color: var(--ink-700); }
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a[aria-current="page"] { color: var(--brand-300); background: rgba(52, 192, 153, .12); }
[data-theme="dark"] .nav-call a { color: var(--ink-900); }

[data-theme="dark"] .lang-switch button.is-active {
  background: rgba(52, 192, 153, .18);
  color: var(--brand-300);
  box-shadow: none;
}

[data-theme="dark"] .btn--ghost { color: var(--ink-900); border-color: rgba(255,255,255,.12); }
[data-theme="dark"] .btn--ghost:hover { background: rgba(52, 192, 153, .12); color: var(--brand-300); border-color: var(--brand-400); }

[data-theme="dark"] .btn--light { background: var(--surface-1); color: var(--ink-900); border-color: rgba(255,255,255,.12); }
[data-theme="dark"] .btn--light:hover { background: rgba(52, 192, 153, .12); border-color: var(--brand-400); color: var(--brand-300); }

[data-theme="dark"] .btn--primary { background: var(--brand-500); color: #051f1c; box-shadow: 0 12px 28px -10px rgba(31, 191, 149, .35); }
[data-theme="dark"] .btn--primary:hover { background: var(--brand-400); }

[data-theme="dark"] .hero-badge {
  background: var(--surface-1);
  color: var(--ink-900);
  border: 1px solid rgba(255,255,255,.06);
}
[data-theme="dark"] .hero-badge small { color: var(--ink-400); }
[data-theme="dark"] .hero-badge--bot { background: #021614; color: #fff; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .hero-badge-icon { background: rgba(52, 192, 153, .15); color: var(--brand-300); }
[data-theme="dark"] .hero-badge--bot .hero-badge-icon { background: rgba(52, 192, 153, .2); }

[data-theme="dark"] .stat { background: var(--surface-1); border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .stat:hover { border-color: rgba(52, 192, 153, .35); }
[data-theme="dark"] .stat strong { color: var(--ink-900); }
[data-theme="dark"] .stat-ic { background: rgba(52, 192, 153, .15); color: var(--brand-300); }

[data-theme="dark"] .section--soft { background: #0a1f1d; }
[data-theme="dark"] .section--ink { background: #061214; }

[data-theme="dark"] .service-card, [data-theme="dark"] .usp, [data-theme="dark"] .area-card,
[data-theme="dark"] .step, [data-theme="dark"] .testimonial, [data-theme="dark"] .hours-card,
[data-theme="dark"] .contact-card {
  background: var(--surface-1);
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .service-card:hover, [data-theme="dark"] .area-card:hover {
  border-color: rgba(52, 192, 153, .35);
}
[data-theme="dark"] .service-card .ic, [data-theme="dark"] .usp .ic,
[data-theme="dark"] .area-card .pin, [data-theme="dark"] .contact-channel .ic,
[data-theme="dark"] .feature-list .ic {
  background: rgba(52, 192, 153, .15);
  color: var(--brand-300);
  border-color: rgba(255,255,255,.06);
}

[data-theme="dark"] .service-card--featured {
  background: linear-gradient(160deg, #0e3c34, #062a25);
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .service-card--featured .ic { background: rgba(244, 183, 64, .15); color: var(--accent); }
[data-theme="dark"] .testimonial::before { color: rgba(52, 192, 153, .15); }
[data-theme="dark"] .testimonial p { color: var(--ink-700); }

[data-theme="dark"] .contact-channel {
  background: #0a1f1d;
  border-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .contact-channel:hover { background: var(--surface-1); border-color: var(--brand-400); }
[data-theme="dark"] .contact-channel .ic { background: var(--surface-1); border-color: rgba(255,255,255,.06); color: var(--brand-300); }

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: #0a1f1d;
  border-color: rgba(255,255,255,.08);
  color: var(--ink-900);
}
[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form select:focus,
[data-theme="dark"] .contact-form textarea:focus {
  background: var(--surface-1);
  border-color: var(--brand-400);
  box-shadow: 0 0 0 4px rgba(52, 192, 153, .14);
}
[data-theme="dark"] .form-status.is-success {
  color: var(--brand-300);
  background: rgba(52, 192, 153, .12);
  border-color: rgba(52, 192, 153, .28);
}
[data-theme="dark"] .form-status.is-error {
  color: #ffa5a5;
  background: rgba(255, 118, 118, .08);
  border-color: rgba(255, 118, 118, .28);
}

[data-theme="dark"] .hours-status {
  background: rgba(255,255,255,.05);
  color: var(--ink-500);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .hours-status.is-open {
  background: rgba(52, 192, 153, .18);
  color: var(--brand-300);
  border-color: rgba(52, 192, 153, .30);
}
[data-theme="dark"] .hours-status.is-closed {
  background: rgba(255, 118, 118, .12);
  color: #ffa5a5;
  border-color: rgba(255, 118, 118, .25);
}
[data-theme="dark"] .hours-list li { border-bottom-color: rgba(255,255,255,.06); }
[data-theme="dark"] .hours-list li.is-today { background: rgba(52, 192, 153, .12); }
[data-theme="dark"] .hours-list .day { color: var(--ink-900); }
[data-theme="dark"] .hours-list .time { color: var(--ink-500); }
[data-theme="dark"] .hours-note { background: rgba(255,255,255,.04); color: var(--ink-500); }

[data-theme="dark"] .promobar { background: linear-gradient(95deg, #062a25, #0a5547 60%, #0c8a6f); }

[data-theme="dark"] .page-hero {
  background:
    linear-gradient(160deg, rgba(6, 42, 37, .96), rgba(6, 42, 37, .85) 60%, rgba(6, 42, 37, .5)),
    #062a25;
}

[data-theme="dark"] .cta-banner {
  background:
    linear-gradient(110deg, rgba(6, 42, 37, .98), rgba(6, 42, 37, .82) 60%, rgba(6, 42, 37, .55)),
    url("/assets/img/gallery-5.jpg") center / cover no-repeat;
}

[data-theme="dark"] .gallery-item { background: rgba(255,255,255,.04); }
[data-theme="dark"] .filter-bar button { background: var(--surface-1); border-color: rgba(255,255,255,.06); color: var(--ink-700); }
[data-theme="dark"] .filter-bar button:hover { color: var(--brand-300); border-color: var(--brand-400); }
[data-theme="dark"] .filter-bar button.is-active { background: var(--brand-500); border-color: var(--brand-500); color: #051f1c; }

[data-theme="dark"] .lightbox { background: rgba(0, 0, 0, .96); }

[data-theme="dark"] .site-footer { background: #04100f; }

[data-theme="dark"] .qr-page {
  background:
    radial-gradient(60% 70% at 20% 10%, rgba(52, 192, 153, .12), transparent 60%),
    radial-gradient(60% 60% at 80% 90%, rgba(244, 183, 64, .08), transparent 60%),
    #08171a;
}
[data-theme="dark"] .qr-card { background: var(--surface-1); border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .qr-card h1 { color: var(--ink-900); }
[data-theme="dark"] .qr-card .role { color: var(--ink-500); }
[data-theme="dark"] .qr-card .verified { background: rgba(52, 192, 153, .15); color: var(--brand-300); }
[data-theme="dark"] .qr-avatar { background: linear-gradient(135deg, rgba(52, 192, 153, .15), rgba(52, 192, 153, .05)); }
[data-theme="dark"] .qr-link { background: #0a1f1d; border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .qr-link .ic { background: var(--surface-1); border-color: rgba(255,255,255,.06); color: var(--brand-300); }
[data-theme="dark"] .qr-link strong { color: var(--ink-900); }
[data-theme="dark"] .qr-link small { color: var(--ink-400); }
[data-theme="dark"] .qr-link.featured { background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); color: #051f1c; }
[data-theme="dark"] .qr-link.featured strong { color: #051f1c; }
[data-theme="dark"] .qr-link.featured small { color: rgba(5, 31, 28, .65); }
[data-theme="dark"] .qr-link.featured .ic { background: rgba(255,255,255,.18); color: #051f1c; }
[data-theme="dark"] .qr-link.featured .arrow { color: rgba(5, 31, 28, .7); }
[data-theme="dark"] .qr-powered a { color: var(--brand-300); border-bottom-color: rgba(111, 217, 185, .35); }

[data-theme="dark"] .breadcrumbs a:hover { color: var(--brand-300); }
[data-theme="dark"] .hero-art { background: linear-gradient(135deg, rgba(52, 192, 153, .15), rgba(52, 192, 153, .05)); }
[data-theme="dark"] .split-art .badge-card { background: var(--surface-1); border: 1px solid rgba(255,255,255,.06); color: var(--ink-900); }
[data-theme="dark"] .split-art .badge-card small { color: var(--ink-400); }
[data-theme="dark"] .step-num { background: var(--brand-500); color: #051f1c; }

/* Smooth theme transition on key surfaces */
.site-header, .service-card, .usp, .area-card, .step, .testimonial,
.hours-card, .contact-card, .qr-card, .qr-link, .contact-channel,
.btn, .filter-bar button, .lang-switch button, .stats, .stat,
.feature-list .ic, .contact-form input, .contact-form select, .contact-form textarea,
.gallery-item, .hero-badge, .promobar, .page-hero, .section--soft,
.site-footer, .hours-status, .hours-list li {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: .25s;
  transition-timing-function: var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle svg { transition: none; }
}
