/* ==========================================================================
   Osapire Enterprise Ltd — Design System
   Brand palette sampled from company logo (gold + sky blue).
   ========================================================================== */

:root {
  /* Brand — blue (from logo ring / water droplets, hue 199deg) */
  --blue-900: #1a4c63;
  --blue-800: #1f5d7a;
  --blue-700: #236a8b;
  --blue-600: #297da3;
  --blue-500: #2e8cb8;
  --blue-400: #70badb;
  --blue-300: #99cde6;
  --blue-100: #d6ebf5;
  --blue-50:  #eef7fb;

  /* Brand — gold (from logo ring / spray bottle) */
  --gold-700: #b28b01;
  --gold-600: #d19f01;
  --gold-500: #fec701;
  --gold-400: #fed234;
  --gold-300: #fedd67;
  --gold-100: #fff4cc;
  --gold-50:  #fffaea;

  /* Neutrals */
  --ink-900: #14181b;
  --ink-800: #20262b;
  --ink-700: #3c4247;
  --ink-500: #656d73;
  --ink-300: #c7cdd1;
  --ink-200: #dfe4e7;
  --ink-100: #eef1f3;
  --ink-50:  #f7f9fa;
  --white:   #ffffff;

  /* Semantic roles */
  --color-bg: var(--white);
  --color-bg-alt: var(--blue-50);
  --color-bg-warm: var(--gold-50);
  --color-text: var(--ink-900);
  --color-text-muted: var(--ink-500);
  --color-primary: var(--blue-800);
  --color-primary-hover: var(--blue-900);
  --color-accent: var(--gold-500);
  --color-border: var(--ink-200);
  --color-success: #1d7a4c;
  --color-focus: var(--blue-600);

  /* Typography */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --fs-900: clamp(2.6rem, 2rem + 2.6vw, 4.2rem);
  --fs-800: clamp(2.1rem, 1.7rem + 1.8vw, 3.1rem);
  --fs-700: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --fs-600: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
  --fs-500: 1.15rem;
  --fs-400: 1rem;
  --fs-300: 0.9rem;
  --fs-200: 0.8rem;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 6.5rem;

  /* Layout */
  --container-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 24, 27, 0.06), 0 1px 1px rgba(20, 24, 27, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 24, 27, 0.08), 0 2px 6px rgba(20, 24, 27, 0.05);
  --shadow-lg: 0 24px 60px rgba(20, 24, 27, 0.14), 0 8px 20px rgba(20, 24, 27, 0.08);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { min-height: 100svh; overflow-x: hidden; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

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

/* ---- Base ------------------------------------------------------------ */
body {
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink-900);
}
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
h4 { font-size: var(--fs-500); font-weight: 600; }

p { color: var(--color-text); }
p + p { margin-top: var(--sp-4); }
.lede { font-size: var(--fs-500); color: var(--ink-700); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Skip link --------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--ink-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- Layout helpers ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 640px) { .container { padding-inline: var(--sp-6); } }

.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-7); }
.section--alt { background: var(--color-bg-alt); }
.section--warm { background: var(--color-bg-warm); }
.section--dark { background: var(--ink-900); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: var(--ink-300); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--sp-7);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--sp-3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-200);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.grid { display: grid; gap: var(--sp-6); }
.grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
.contact-grid { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1.3fr 1fr; }
}

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

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-400);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-primary-hover); box-shadow: var(--shadow-md); }

.btn--accent {
  background: var(--gold-500);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--blue-300);
}
.btn--outline:hover { background: var(--blue-50); border-color: var(--color-primary); }

.btn--sm { padding: 0.6rem 1.15rem; font-size: var(--fs-300); }
.btn--block { width: 100%; }

/* ---- Header / Nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink-900);
  flex-shrink: 0;
}
.brand img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--color-text-muted); letter-spacing: 0.03em; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a {
  position: relative;
  padding: 0.4rem 0.1rem;
  color: var(--ink-700);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a[aria-current="page"] { color: var(--color-primary); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--gold-500);
}
.nav-cta { display: none; align-items: center; gap: var(--sp-3); }
.nav-cta .phone { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--ink-800); }
.nav-cta .phone span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; color: var(--color-text-muted); }

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 980px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-border);
  background: var(--white);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; padding: var(--sp-4) var(--sp-5); gap: var(--sp-1); }
.mobile-nav a {
  display: block;
  padding: var(--sp-3) var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--ink-800);
}
.mobile-nav a[aria-current="page"] { color: var(--color-primary); background: var(--blue-50); }
.mobile-nav .btn { width: calc(100% - 1rem); margin: var(--sp-2); }
@media (min-width: 980px) { .mobile-nav { display: none !important; } }

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-8) var(--sp-8);
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--blue-100), transparent 60%),
    radial-gradient(700px 400px at -5% 110%, var(--gold-100), transparent 55%),
    var(--white);
}
.hero-grid {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero h1 { margin-bottom: var(--sp-4); }
.hero .lede { margin-bottom: var(--sp-6); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.hero-trust .stat { font-family: var(--font-display); }
.hero-trust .stat b { display: block; font-size: 1.5rem; color: var(--color-primary); }
.hero-trust .stat span { font-size: var(--fs-300); color: var(--color-text-muted); }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 250px;
}
.hero-badge .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-700);
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.hero-badge span { font-size: var(--fs-300); color: var(--color-text-muted); }

/* Before / after compare */
.ba-compare {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
}
.ba-compare img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ba-compare .ba-after { clip-path: inset(0 0 0 50%); }
.ba-compare .ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; margin-left: -2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  cursor: ew-resize;
}
.ba-compare .ba-handle {
  position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.ba-compare .ba-tag {
  position: absolute; top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(20,24,27,0.65);
  color: var(--white);
}
.ba-compare .tag-before { left: 12px; }
.ba-compare .tag-after { right: 12px; }
.ba-compare input[type="range"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

/* ---- Logo strip ------------------------------------------------------------ */
.marquee-strip {
  padding-block: var(--sp-5);
  border-block: 1px solid var(--color-border);
  background: var(--ink-50);
}
.marquee-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--ink-500);
  text-align: center;
}
.marquee-strip li { display: flex; align-items: center; gap: 0.5rem; }
.marquee-strip svg { width: 18px; height: 18px; color: var(--blue-600); flex-shrink: 0; }

/* ---- Cards ------------------------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.service-card { display: flex; flex-direction: column; gap: var(--sp-4); }
.service-card .thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/11;
}
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .icon-badge {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.25rem; }
.service-card li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--fs-300); color: var(--ink-700); }
.service-card li svg { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; margin-top: 2px; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

.feature-card { text-align: left; }
.feature-card .icon-badge {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  color: var(--gold-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.feature-card h3 { margin-bottom: var(--sp-2); font-size: var(--fs-500); }
.feature-card p { color: var(--color-text-muted); font-size: var(--fs-300); }

/* ---- Process steps ------------------------------------------------------------ */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: var(--fs-500); margin-bottom: var(--sp-2); }
.step p { color: var(--color-text-muted); font-size: var(--fs-300); }

/* ---- Gallery ------------------------------------------------------------------ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-300);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--white);
  color: var(--ink-700);
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--blue-300); }
.chip[aria-pressed="true"] {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink-100);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  background: linear-gradient(to top, rgba(20,24,27,0.85), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-300);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s var(--ease);
}
.gallery-item:hover .cap, .gallery-item:focus-within .cap { opacity: 1; transform: translateY(0); }
.gallery-item[hidden] { display: none; }

/* ---- Testimonials ------------------------------------------------------------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  height: 100%;
}
.testimonial .stars { display: flex; gap: 2px; color: var(--gold-500); }
.testimonial .stars svg { width: 18px; height: 18px; }
.testimonial p { font-size: var(--fs-400); color: var(--ink-800); }
.testimonial footer { display: flex; align-items: center; gap: var(--sp-3); margin-top: auto; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  flex-shrink: 0;
}
.testimonial cite { font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; display: block; }
.testimonial .role { font-size: var(--fs-200); color: var(--color-text-muted); }

/* ---- CTA band ------------------------------------------------------------------ */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  padding: var(--sp-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(254,199,1,0.18);
}
.cta-band h2 { color: var(--white); font-size: var(--fs-700); margin-bottom: var(--sp-2); }
.cta-band p { color: var(--blue-100); }
.cta-band .actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- Pricing ------------------------------------------------------------------- */
.price-table {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-table__head {
  background: var(--blue-800);
  color: var(--white);
  padding: var(--sp-6);
}
.price-table__head h3 { color: var(--white); }
.price-table__head p { color: var(--blue-100); font-size: var(--fs-300); margin-top: var(--sp-1); }
.price-table table { width: 100%; }
.price-table th, .price-table td {
  text-align: left;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-300);
}
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table th { font-weight: 600; color: var(--ink-800); }
.price-table td { text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--blue-700); }
.price-note {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  font-size: var(--fs-300);
  color: var(--ink-700);
}
.price-note svg { width: 22px; height: 22px; color: var(--gold-700); flex-shrink: 0; }

/* ---- Forms ---------------------------------------------------------------------- */
.form-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-300); color: var(--ink-800); }
.field .req { color: var(--color-primary); }
.field input,
.field textarea,
.field select {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: var(--fs-400);
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--blue-300); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--blue-100);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .hint { font-size: var(--fs-200); color: var(--color-text-muted); }
.checkbox-field { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-field input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--color-primary); }
.checkbox-field label { font-family: var(--font-body); font-weight: 400; font-size: var(--fs-300); color: var(--ink-700); }

.form-status {
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-300);
  margin-top: var(--sp-5);
  display: none;
}
.form-status.is-success { display: block; background: #e7f6ee; color: var(--color-success); border: 1px solid #b7e3cb; }
.form-status.is-error { display: block; background: #fdeceb; color: #b3261e; border: 1px solid #f3bcb8; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Contact info cards ----------------------------------------------------------- */
.contact-card { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-card .icon-badge {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
}
.contact-card > div { min-width: 0; }
.contact-card h3 { font-size: var(--fs-500); margin-bottom: 0.2rem; }
.contact-card p, .contact-card a { color: var(--color-text-muted); font-size: var(--fs-300); overflow-wrap: break-word; word-break: break-word; }
.contact-card a:hover { color: var(--color-primary); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/10;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ------------------------------------------------------------------------ */
.site-footer {
  background: var(--ink-50);
  border-top: 1px solid var(--color-border);
  padding-block: var(--sp-8) var(--sp-6);
}
.footer-grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
}
.footer-brand .brand { margin-bottom: var(--sp-4); }
.footer-brand p { color: var(--color-text-muted); font-size: var(--fs-300); max-width: 34ch; }
.footer-col h4 { font-size: var(--fs-300); text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-500); margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: var(--fs-300); color: var(--ink-700); transition: color 0.2s; }
.footer-col a:hover { color: var(--color-primary); }
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-700);
  transition: all 0.2s var(--ease);
}
.footer-social a:hover { background: var(--color-primary); color: var(--white); border-color: var(--color-primary); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  font-size: var(--fs-200);
  color: var(--color-text-muted);
}
.footer-bottom nav { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--color-primary); }

/* ---- Prose (legal / long-form content) ------------------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--fs-600); margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-500); margin-top: var(--sp-6); margin-bottom: var(--sp-2); }
.prose p { margin-bottom: var(--sp-4); color: var(--ink-700); }
.prose ul { margin: var(--sp-4) 0 var(--sp-5); display: flex; flex-direction: column; gap: 0.6rem; }
.prose li { position: relative; padding-left: 1.4rem; color: var(--ink-700); }
.prose li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.prose a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink-900); }
.updated-note { font-size: var(--fs-300); color: var(--color-text-muted); margin-bottom: var(--sp-7); }

/* ---- Split media/content rows (services page) ----------------------------------------- */
.split-row {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
  padding-block: var(--sp-8);
}
.split-row:not(:last-child) { border-bottom: 1px solid var(--color-border); }
@media (min-width: 900px) {
  .split-row { grid-template-columns: 1fr 1fr; }
  .split-row--reverse .split-row__media { order: 2; }
}
.split-row__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-row__media img { width: 100%; height: 100%; object-fit: cover; }
.split-row__media.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  box-shadow: none;
  aspect-ratio: auto;
}
.split-row__media.two-up img { aspect-ratio: 4/5; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.split-row__content h2 { margin-bottom: var(--sp-4); }
.split-row__content .lede { margin-bottom: var(--sp-5); }
.split-row__content ul { display: grid; gap: 0.75rem; margin-bottom: var(--sp-6); }
.split-row__content li { display: flex; align-items: flex-start; gap: 0.7rem; }
.split-row__content li svg { width: 20px; height: 20px; color: var(--color-success); flex-shrink: 0; margin-top: 2px; }

/* ---- Page hero (interior pages) ------------------------------------------------------ */
.page-hero {
  padding-block: var(--sp-7) var(--sp-6);
  background:
    radial-gradient(900px 400px at 90% 0%, var(--blue-100), transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumbs { display: flex; gap: 0.5rem; align-items: center; font-size: var(--fs-200); color: var(--color-text-muted); margin-bottom: var(--sp-4); }
.breadcrumbs a:hover { color: var(--color-primary); }
.page-hero h1 { font-size: var(--fs-800); margin-bottom: var(--sp-3); }
.page-hero .lede { max-width: 60ch; }

/* ---- Misc utility -------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.stack { display: flex; flex-direction: column; gap: var(--sp-4); }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); }
.divider { border: none; border-top: 1px solid var(--color-border); margin-block: var(--sp-6); }

.badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.badge-row .pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-200);
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--color-border); color: var(--ink-700);
}
.badge-row .pill svg { width: 15px; height: 15px; color: var(--color-success); }

/* ---- Lightbox ------------------------------------------------------------------------- */
.lightbox-trigger {
  all: unset;
  display: block;
  cursor: zoom-in;
  position: relative;
  width: 100%;
  height: 100%;
}
.lightbox-trigger:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}
.gallery-item .lightbox-trigger { border-radius: var(--radius-md); overflow: hidden; }
.split-row__media.two-up .lightbox-trigger { display: block; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(12, 15, 17, 0.92);
  padding: var(--sp-5);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--ink-800);
}
.lightbox-caption {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-300);
  text-align: center;
}
.lightbox-counter {
  color: var(--ink-300);
  font-size: var(--fs-200);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; }
.lightbox-close { top: 0; right: 0; }
.lightbox-nav--prev { left: -4px; top: 50%; transform: translateY(-50%); }
.lightbox-nav--next { right: -4px; top: 50%; transform: translateY(-50%); }
.lightbox-nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-nav--next:hover { transform: translateY(-50%) translateX(2px); }
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }

@media (max-width: 640px) {
  .lightbox-nav { position: fixed; top: auto; bottom: var(--sp-5); transform: none; }
  .lightbox-nav--prev { left: var(--sp-5); }
  .lightbox-nav--next { right: var(--sp-5); }
  .lightbox-nav--prev:hover, .lightbox-nav--next:hover { transform: none; }
  .lightbox-close { top: var(--sp-4); right: var(--sp-4); }
}

/* Cookie / consent banner */
.consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 200;
  background: var(--ink-900);
  color: var(--white);
  padding: var(--sp-5);
  display: none;
}
.consent-banner.is-visible { display: block; }
.consent-banner .inner {
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.consent-banner p { font-size: var(--fs-300); color: var(--ink-300); max-width: 60ch; min-width: 0; flex: 1 1 260px; }
.consent-banner .actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
