:root {
  --primary: #123A5C;
  --primary-dark: #0B2740;
  --accent: #C9982E;
  --bg: #FFFFFF;
  --surface: #F6F8FA;
  --text: #1A2332;
  --text-light: #5A6B7E;
  --border: #E2E8F0;
  --radius: 12px;
  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

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

/* Skip link */
.skip-link {
  position: absolute;
  right: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 2147483002;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { right: 8px; top: 0; }

/* Focus visible everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
}
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex: 0 0 46px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-text .name { font-weight: 800; font-size: 1.05rem; color: var(--primary); }
.logo-text .role { font-size: 0.78rem; color: var(--text-light); }

nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
nav.main-nav a:hover { background: var(--surface); color: var(--primary); }
nav.main-nav a.current { color: var(--primary); background: var(--surface); }

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  margin-right: 8px;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.hamburger svg { width: 26px; height: 26px; color: var(--primary); }

@media (max-width: 860px) {
  nav.main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none;
    gap: 4px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { text-align: center; padding: 14px 16px; }
  .nav-cta { margin-right: 0; }
  .hamburger { display: flex; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(201,152,46,0.25), transparent 45%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 46ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-primary { background: var(--accent); color: #1a1204; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,152,46,0.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-solid { background: var(--primary); color: #fff; }
.btn-solid:hover { background: var(--primary-dark); }

.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.hero-card h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 16px; }
.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hero-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.hero-card li svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-card { order: -1; }
}

/* Sections */
section { padding: 72px 0; }
.section-surface { background: var(--surface); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 0.04em; font-size: 0.85rem; text-transform: uppercase; }
.section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--primary); margin: 10px 0 12px; }
.section-head p { color: var(--text-light); }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(18,58,92,0.1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.08rem; color: var(--primary); margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* About / split */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.about-visual {
  background: linear-gradient(150deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  padding: 44px 32px;
  color: #fff;
  text-align: center;
}
.about-visual .monogram {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem; font-weight: 800;
  margin: 0 auto 18px;
}
.about-visual .stat-row { display: flex; justify-content: center; gap: 28px; margin-top: 26px; }
.about-visual .stat b { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.about-visual .stat span { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; }
.checklist li svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 12px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align: center; }
.team-avatar {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--surface); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem; margin: 0 auto 14px;
}
.team-card h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; }
.team-card p { color: var(--text-light); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
}
.contact-info-card h3 { color: var(--primary); margin-bottom: 18px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-row svg { width: 22px; height: 22px; color: var(--primary); flex: 0 0 22px; margin-top: 2px; }
.contact-row a { text-decoration: none; font-weight: 600; color: var(--text); }
.contact-row a:hover { color: var(--primary); }
.contact-row .label { display: block; font-size: 0.78rem; color: var(--text-light); margin-bottom: 2px; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
}
.map-embed iframe { display: block; width: 100%; height: 220px; border: 0; }

form.site-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.98rem;
  background: #fff;
  color: var(--text);
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--primary); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; text-align: center; }

/* GMB reviews section wrapper */
.reviews-section { padding: 72px 0; }

/* Footer */
footer.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.12); }
footer.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
footer.site-footer p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* FAB (WhatsApp + Call) */
.fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.fab {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary); }
.fab svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
}
@media print { .fab-container { display: none; } }

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* 404 page */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-page .code { font-size: 5rem; font-weight: 800; color: var(--primary); }
.error-page h1 { font-size: 1.6rem; color: var(--text); margin: 10px 0 16px; }
.error-page p { color: var(--text-light); margin-bottom: 28px; }
