/* ── Fonts ──────────────────────────────────────────────────── */
/* loaded via wp_enqueue_style in functions.php */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 18%, 12%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 18%, 12%);
  --primary: hsl(209, 100%, 36%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 40%, 96%);
  --secondary-foreground: hsl(220, 18%, 12%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(220, 10%, 38%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --ring: hsl(209, 100%, 36%);
  --radius: 1rem;
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 98%);
}

.dark {
  --background: hsl(220, 18%, 8%);
  --foreground: hsl(36, 20%, 94%);
  --card: hsl(220, 18%, 10%);
  --card-foreground: hsl(36, 20%, 94%);
  --primary: hsl(209, 100%, 60%);
  --primary-foreground: hsl(220, 18%, 10%);
  --secondary: hsl(220, 14%, 14%);
  --secondary-foreground: hsl(36, 20%, 94%);
  --muted: hsl(220, 14%, 14%);
  --muted-foreground: hsl(36, 10%, 72%);
  --border: hsl(220, 12%, 18%);
  --input: hsl(220, 12%, 18%);
  --ring: hsl(209, 100%, 60%);
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }
html { text-rendering: geometricPrecision; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1200px 600px at 20% -10%, hsl(209 100% 36% / 0.10), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, hsl(209 100% 36% / 0.06), transparent 60%);
  transition: background-color 0.3s, color 0.3s;
}
.dark body, body.dark {
  background-image:
    radial-gradient(1200px 600px at 20% -10%, hsl(209 100% 60% / 0.10), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, hsl(209 100% 60% / 0.06), transparent 60%);
}
h1, h2, h3 { letter-spacing: -0.025em; }
p { line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; font-family: inherit; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.py-section { padding-top: 2rem; padding-bottom: 2rem; }
@media (min-width: 640px) { .py-section { padding-top: 3rem; padding-bottom: 3rem; } }
@media (min-width: 1024px) { .py-section { padding-top: 4rem; padding-bottom: 4rem; } }

.section { position: relative; padding-top: 2rem; padding-bottom: 2rem; }
@media (min-width: 640px) { .section { padding-top: 3rem; padding-bottom: 3rem; } }
@media (min-width: 1024px) { .section { padding-top: 4rem; padding-bottom: 4rem; } }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }

/* ── Background blobs ───────────────────────────────────────── */
.site-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bg-base { position: absolute; inset: 0; background-color: var(--background); }
.bg-radials {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(900px circle at 20% 10%, hsl(209 100% 36% / 0.14), transparent 55%),
    radial-gradient(900px circle at 85% 85%, hsl(220 18% 12% / 0.06), transparent 55%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}
.blob-left {
  left: -6rem; top: 2.5rem;
  width: 18rem; height: 18rem;
  background: hsl(210 40% 96% / 0.3);
  animation: blobFloat 10s ease-in-out infinite;
}
.blob-right {
  right: -7rem; bottom: 0;
  width: 20rem; height: 20rem;
  background: hsl(209 100% 36% / 0.1);
  animation: blobFloat2 11s ease-in-out infinite;
}
.dark .blob-left { background: hsl(220 14% 14% / 0.3); }
.dark .blob-right { background: hsl(209 100% 60% / 0.1); }

@keyframes blobFloat {
  0%, 100% { transform: translateY(0); opacity: 0.22; }
  50% { transform: translateY(14px); opacity: 0.28; }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translateY(0); opacity: 0.18; }
  50% { transform: translateY(-12px); opacity: 0.24; }
}

/* Main content sits above blobs */
main, header, footer { position: relative; z-index: 10; }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.divider::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent);
  opacity: 0.8;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(214 32% 91% / 0.6);
  background: hsl(0 0% 100% / 0.7);
  backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}
.dark .site-header {
  background: hsl(220 18% 8% / 0.7);
  border-bottom-color: hsl(220 12% 18% / 0.6);
}
.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-left { display: flex; align-items: center; gap: 1rem; }
.header-right { display: flex; align-items: center; gap: 0.5rem; }
.logo {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--foreground);
  font-family: 'Playfair Display', serif;
}
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link {
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--foreground); }
.desktop-cta { display: none; }
@media (min-width: 768px) { .desktop-cta { display: inline-flex; } }
.mobile-menu-toggle { display: flex; }
@media (min-width: 768px) { button.mobile-menu-toggle { display: none !important; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  max-width: 100vw;
  background: var(--background);
  border-left: 1px solid var(--border);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 1.5rem;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  background: hsl(0 0% 0% / 0.3);
}
.drawer-overlay.open { display: block; }
.drawer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.mobile-nav { display: grid; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--foreground);
  background: hsl(210 40% 96% / 0.2);
  border-color: var(--border);
}
.dark .mobile-nav-link:hover, .dark .mobile-nav-link.active {
  background: hsl(220 14% 14% / 0.2);
}
.drawer-cta { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.drawer-note { font-size: 0.75rem; line-height: 1.6; color: var(--muted-foreground); }
.w-full { width: 100%; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  height: 2.75rem;
  padding-inline: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 8px hsl(0 0% 0% / 0.10); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; pointer-events: none; }

.btn-default { background: var(--primary); color: var(--primary-foreground); }
.btn-default:hover { background: hsl(209 100% 36% / 0.92); }
.dark .btn-default:hover { background: hsl(209 100% 60% / 0.92); }

.btn-premium {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 8px hsl(0 0% 0% / 0.10);
}
.btn-premium:hover { background: hsl(209 100% 36% / 0.92); }
.dark .btn-premium:hover { background: hsl(209 100% 60% / 0.92); }

.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.btn-secondary:hover { background: hsl(210 40% 96% / 0.85); }
.dark .btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }

.btn-outline {
  background: var(--background);
  color: var(--foreground);
  border-color: hsl(214 32% 91% / 0.8);
}
.btn-outline:hover { background: hsl(210 40% 96% / 0.3); }
.dark .btn-outline { border-color: hsl(220 12% 18% / 0.8); }
.dark .btn-outline:hover { background: hsl(220 14% 14% / 0.3); }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--foreground);
  transition: background 0.15s;
  border: none;
}
.btn-icon:hover { background: hsl(210 40% 96% / 0.35); }
.dark .btn-icon:hover { background: hsl(220 14% 14% / 0.35); }

.btn-lg { height: 3rem; padding-inline: 1.5rem; font-size: 1rem; border-radius: 0.75rem; }

/* ── Section Header ──────────────────────────────────────────── */
.section-header { max-width: 42rem; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}
.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .section-desc { font-size: 1.125rem; } }

/* ── Card ────────────────────────────────────────────────────── */
.card {
  border-radius: var(--radius);
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
  padding: 1.5rem;
}
.dark .card {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
@media (min-width: 640px) { .card { padding: 2rem; } }
.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .card-title { font-size: 1.25rem; } }
.card-sub {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .card-sub { font-size: 1rem; } }
.card-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .card-actions { flex-direction: row; align-items: center; }
}

/* ── Img card ────────────────────────────────────────────────── */
.img-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  height: 100%;
  min-height: 280px;
}
.dark .img-card {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
.img-card-photo { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.img-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--background), transparent 70%);
  opacity: 0.75;
  transition: background 0.3s;
}
.img-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
}
.badge-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}
.badge-body {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 2.5rem;
  }
}
.hero-h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .hero-h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 3.75rem; } }
.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }
.hero-badges {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .hero-badges { flex-direction: row; flex-wrap: wrap; align-items: center; column-gap: 1.5rem; row-gap: 0.75rem; }
}
.badge-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
  flex-shrink: 0;
}
.dark .badge-icon {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
.badge-icon svg { color: var(--primary); }
.badge-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; } }

.hero-image-wrap { order: -1; }
@media (min-width: 1024px) { .hero-image-wrap { order: 0; } }
.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.7);
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  aspect-ratio: 4/3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-visual:hover { transform: translateY(-4px); box-shadow: 0 12px 32px hsl(0 0% 0% / 0.10); }
.dark .hero-visual {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.7);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-badge {
  position: absolute;
  inset-x: 0; bottom: 0;
  padding: 0.75rem;
}
.hero-visual-badge-inner {
  border-radius: 0.75rem;
  border: 1px solid hsl(214 32% 91% / 0.6);
  background: hsl(0 0% 100% / 0.55);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(8px);
}
.dark .hero-visual-badge-inner {
  border-color: hsl(220 12% 18% / 0.6);
  background: hsl(220 18% 10% / 0.55);
}

/* ── Two-col layouts ─────────────────────────────────────────── */
.two-col-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col-grid { grid-template-columns: 7fr 5fr; }
  .two-col-grid .col-5 { grid-column: 2; }
  .two-col-grid .col-7 { grid-column: 1; }
  .why-grid { grid-template-columns: 5fr 7fr; }
  .why-grid .col-5 { grid-column: 1; }
  .why-grid .col-7 { grid-column: 2; }
}

/* ── Icon rows ───────────────────────────────────────────────── */
.icon-list { margin-top: 1.5rem; display: grid; gap: 1rem; }
.icon-row {
  display: flex;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
  padding: 1rem;
}
.dark .icon-row {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
}
.dark .icon-circle {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
.icon-circle svg { color: var(--primary); }
.icon-row-title { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
@media (min-width: 640px) { .icon-row-title { font-size: 1rem; } }
.icon-row-body { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

/* ── Check list ──────────────────────────────────────────────── */
.check-list { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .check-item { font-size: 1rem; } }
.check-item svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); }

/* ── Services ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
}
.dark .service-card {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
.service-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: hsl(210 40% 96% / 0.2);
}
.service-img { width: 100%; height: 100%; object-fit: cover; }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--background), transparent 60%);
  opacity: 0.7;
}
.service-body { padding: 1.5rem; }
@media (min-width: 640px) { .service-body { padding: 1.75rem; } }
.service-title { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.025em; }
.service-divider { margin-top: 1rem; height: 1px; background: hsl(214 32% 91% / 0.7); }
.dark .service-divider { background: hsl(220 12% 18% / 0.7); }
.service-list { margin-top: 1rem; display: grid; gap: 0.5rem; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 640px) { .service-list li { font-size: 1rem; } }
.service-list svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); }
.services-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .services-actions { flex-direction: row; align-items: center; justify-content: center; }
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 7fr 5fr; }
}
.contact-side { display: grid; gap: 1.5rem; align-content: start; }

.contact-form { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.form-row-2 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-row-3 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .form-row-3 { grid-template-columns: 1fr 1fr 1fr; } }
.form-field { display: grid; gap: 0.375rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-input {
  width: 100%;
  height: 2.75rem;
  border-radius: 0.625rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  padding-inline: 0.875rem;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(209 100% 36% / 0.15);
}
.dark .form-input:focus {
  box-shadow: 0 0 0 2px hsl(209 100% 60% / 0.15);
}
.form-textarea { height: auto; resize: vertical; padding-block: 0.75rem; }
.field-error { font-size: 0.75rem; color: var(--destructive); min-height: 1rem; }
.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .form-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
.error-box {
  border-radius: 0.75rem;
  border: 1px solid hsl(0 84.2% 60.2% / 0.3);
  background: hsl(0 84.2% 60.2% / 0.05);
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--destructive);
}

.side-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
}
.side-card-head p { color: var(--foreground); }
.side-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  padding-left: 1rem;
}
ol.side-list { list-style: decimal; }
.side-list.plain { list-style: disc; }
.shield-note {
  margin-top: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.5);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.dark .shield-note {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.5);
}
.shield-note svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--primary); }
.shield-note p { font-size: 0.75rem; line-height: 1.65; color: var(--muted-foreground); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid hsl(214 32% 91% / 0.6);
  position: relative;
  z-index: 10;
}
.dark .site-footer { border-top-color: hsl(220 12% 18% / 0.6); }
.footer-top {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr auto; align-items: center; }
}
.footer-tagline { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ── Animation ───────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease both; }

/* ── Loading button state ────────────────────────────────────── */
.btn[aria-busy="true"] { opacity: 0.75; pointer-events: none; }
.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   FULL-WIDTH SECTION BREAKOUT
   Makes every .bpi-section span the full viewport width,
   then .bpi-container re-constrains content to 1400px.
   ══════════════════════════════════════════════════════════════ */

/* When inside the WP block editor content area */
.wp-block-group.bpi-section,
.entry-content .wp-block-group.bpi-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

/* Frontend: if the theme wraps content, also break out */
.site main .wp-block-group.bpi-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Inner container always constrains to 1400px, centered */
.wp-block-group.bpi-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════════════
   WORDPRESS BLOCK EDITOR COMPATIBILITY
   These rules make wp:group, wp:columns, wp:image, etc. look
   exactly right when used inside the patterns below.
   ══════════════════════════════════════════════════════════════ */

/* Remove default WP block margins on the page */
.entry-content > * + * { margin-block-start: 0; }

/* ── Section wrapper ─────────────────────────────────────────── */
.wp-block-group.bpi-section-wrap { padding: 0; }
.wp-block-group.bpi-py {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 640px) { .wp-block-group.bpi-py { padding-top: 3rem; padding-bottom: 3rem; } }
@media (min-width: 1024px) { .wp-block-group.bpi-py { padding-top: 4rem; padding-bottom: 4rem; } }

/* ── Hero grid via wp:group ──────────────────────────────────── */
.wp-block-group.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .wp-block-group.hero-grid { grid-template-columns: 7fr 5fr; }
}

/* Hero text column */
.wp-block-group.hero-text { display: flex; flex-direction: column; }
.wp-block-group.hero-text > * + * { margin-top: 0; }
.wp-block-group.hero-text .wp-block-heading { margin-top: 0; }

/* Hero image wrap reorder */
.wp-block-group.hero-image-wrap { order: -1; }
@media (min-width: 1024px) { .wp-block-group.hero-image-wrap { order: 0; } }

/* Hero visual (image container) */
.wp-block-group.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.7);
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  aspect-ratio: 4/3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wp-block-group.hero-visual:hover { transform: translateY(-4px); box-shadow: 0 12px 32px hsl(0 0% 0% / 0.10); }
.dark .wp-block-group.hero-visual {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.7);
}
/* Make the WP image block fill the hero visual */
.wp-block-group.hero-visual .wp-block-image {
  position: absolute !important;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.wp-block-group.hero-visual .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-block-group.hero-visual .wp-block-image figcaption { display: none; }

/* Hero badges via wp:group */
.wp-block-group.hero-badges {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .wp-block-group.hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
  }
}

/* Hero heading & sub spacing */
.wp-block-group.hero-text .hero-h1 { margin-top: 0 !important; }
.wp-block-group.hero-text .hero-sub { margin-top: 1.5rem !important; }

/* Hero action buttons */
.wp-block-buttons.hero-actions { margin-top: 2rem !important; gap: 0.75rem; flex-wrap: wrap; }

/* WP button → premium style */
.wp-block-button.bpi-btn-premium .wp-block-button__link {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border-radius: 0.75rem !important;
  height: 3rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 4px 8px hsl(0 0% 0% / 0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.wp-block-button.bpi-btn-premium .wp-block-button__link:hover {
  background: hsl(209 100% 36% / 0.92) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px hsl(0 0% 0% / 0.12);
}

/* WP button → secondary style */
.wp-block-button.bpi-btn-secondary .wp-block-button__link {
  background: var(--secondary) !important;
  color: var(--secondary-foreground) !important;
  border-color: transparent !important;
  border-radius: 0.75rem !important;
  height: 3rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.wp-block-button.bpi-btn-secondary .wp-block-button__link:hover {
  background: hsl(210 40% 96% / 0.85) !important;
  transform: translateY(-1px);
}

/* WP button → outline style */
.wp-block-button.bpi-btn-outline .wp-block-button__link {
  background: var(--background) !important;
  color: var(--foreground) !important;
  border: 1px solid hsl(214 32% 91% / 0.8) !important;
  border-radius: 0.75rem !important;
  height: 2.75rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.wp-block-button.bpi-btn-outline .wp-block-button__link:hover {
  background: hsl(210 40% 96% / 0.3) !important;
  transform: translateY(-1px);
}

/* ── Two-column grid via wp:columns ──────────────────────────── */
.wp-block-columns.two-col-grid {
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .wp-block-columns.two-col-grid { flex-wrap: nowrap; }
  .wp-block-columns.why-grid { flex-direction: row-reverse; }
}

/* ── Image card via wp:group ─────────────────────────────────── */
.wp-block-group.img-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  min-height: 280px;
}
.dark .wp-block-group.img-card {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
.wp-block-group.img-card .wp-block-image {
  position: absolute !important;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.wp-block-group.img-card .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-block-group.img-card .wp-block-image figcaption { display: none; }

/* ── Card via wp:group ───────────────────────────────────────── */
.wp-block-group.card { padding: 1.5rem; }
@media (min-width: 640px) { .wp-block-group.card { padding: 2rem; } }

/* Headings inside cards */
.wp-block-group.card .wp-block-heading { margin-top: 0; letter-spacing: -0.025em; }
.wp-block-group.card .wp-block-heading + p { margin-top: 0.75rem; color: var(--muted-foreground); }

/* ── Services grid via wp:columns ────────────────────────────── */
.wp-block-columns.services-grid {
  gap: 1.5rem;
  flex-wrap: wrap;
}
.wp-block-columns.services-grid > .wp-block-column { flex-basis: 100% !important; }
@media (min-width: 768px) {
  .wp-block-columns.services-grid > .wp-block-column { flex-basis: calc(50% - 0.75rem) !important; }
}
@media (min-width: 1024px) {
  .wp-block-columns.services-grid > .wp-block-column { flex-basis: calc(33.33% - 1rem) !important; }
}

/* Service card via wp:group */
.wp-block-group.service-card {
  padding: 0;
  overflow: hidden;
}
.wp-block-group.service-card .wp-block-group.service-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: hsl(210 40% 96% / 0.2);
  border-radius: 0;
  border: none;
}
.wp-block-group.service-card .wp-block-group.service-img-wrap .wp-block-image {
  position: absolute !important;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.wp-block-group.service-card .wp-block-group.service-img-wrap .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-block-group.service-card .wp-block-group.service-img-wrap .wp-block-image figcaption { display: none; }
.wp-block-group.service-card .wp-block-group.service-body { padding: 1.5rem; border-radius: 0; border: none; background: none; }
@media (min-width: 640px) { .wp-block-group.service-card .wp-block-group.service-body { padding: 1.75rem; } }

/* Service list via wp:list */
.wp-block-group.service-body .wp-block-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  list-style: none !important;
  padding: 0;
}
.wp-block-group.service-body .wp-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  padding-left: 0 !important;
}
.wp-block-group.service-body .wp-block-list li::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a6cc4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.dark .wp-block-group.service-body .wp-block-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
}

/* Check list via wp:list in Why Us */
.wp-block-group.card .bpi-check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  list-style: none !important;
  padding: 0;
}
.wp-block-group.card .bpi-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  padding-left: 0 !important;
}
@media (min-width: 640px) { .wp-block-group.card .bpi-check-list li { font-size: 1rem; } }
.wp-block-group.card .bpi-check-list li::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a6cc4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.dark .wp-block-group.card .bpi-check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E");
}

/* ── Contact section ─────────────────────────────────────────── */
.wp-block-columns.contact-grid {
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .wp-block-columns.contact-grid { flex-wrap: nowrap; }
  .wp-block-columns.contact-grid > .wp-block-column:first-child { flex-basis: 58.33% !important; }
  .wp-block-columns.contact-grid > .wp-block-column:last-child { flex-basis: 41.67% !important; }
}

/* ── Section header block ────────────────────────────────────── */
.wp-block-group.section-header { max-width: 42rem; padding: 0; border: none; background: none; }
.wp-block-group.section-header .wp-block-heading { margin-top: 0.75rem; }
.wp-block-group.section-header p { margin-top: 1rem; color: var(--muted-foreground); }

/* ── Card actions (buttons row) ──────────────────────────────── */
.wp-block-buttons.bpi-card-actions { margin-top: 2rem !important; gap: 0.75rem; flex-wrap: wrap; }

/* ── Remove default block outer padding from page ─────────────── */
.wp-site-blocks { padding: 0 !important; }
.entry-content { padding: 0; }
.entry-content > .alignfull { margin-inline: 0; }

/* ── Legal page (TOS / Privacy Policy) ──────────────────────── */
.bpi-legal-wrap {
  max-width: 780px;
}
.bpi-legal-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.bpi-legal-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
@media (min-width: 640px) { .bpi-legal-title { font-size: 2.75rem; } }
.bpi-legal-updated {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Prose content */
.bpi-legal-content { font-size: 1rem; line-height: 1.75; color: var(--foreground); }
.bpi-legal-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.bpi-legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.bpi-legal-content p { margin-bottom: 1.25rem; color: var(--muted-foreground); }
.bpi-legal-content ul,
.bpi-legal-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.bpi-legal-content ol { list-style: decimal; }
.bpi-legal-content li { margin-bottom: 0.4rem; color: var(--muted-foreground); }
.bpi-legal-content a { color: var(--primary); text-decoration: underline; }
.bpi-legal-content strong { color: var(--foreground); }

/* ── Gallery ─────────────────────────────────────────────────── */
.bpi-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .bpi-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .bpi-gallery { grid-template-columns: repeat(3, 1fr); }
}

.bpi-gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(214 32% 91% / 0.7);
  background: hsl(0 0% 100% / 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark .bpi-gallery-item {
  border-color: hsl(220 12% 18% / 0.7);
  background: hsl(220 18% 10% / 0.6);
}
.bpi-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px hsl(0 0% 0% / 0.10);
}
.bpi-gallery-item--wide {
  grid-column: span 1;
}
@media (min-width: 768px) {
  .bpi-gallery-item--wide {
    grid-column: span 2;
  }
}

/* Gallery image fill */
.wp-block-group.bpi-gallery-item .wp-block-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.wp-block-group.bpi-gallery-item .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wp-block-group.bpi-gallery-item .wp-block-image figcaption {
  display: none;
}
.bpi-gallery-caption {
  padding: 0.75rem 1rem;
}
.bpi-gallery-caption p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* ── WordPress admin bar offset ──────────────────────────────── */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
