/* ===== Brand tokens ===== */
:root {
  --navy: #2B2D87;
  --navy-dark: #1F2069;
  --cream: #F5F1E8;
  --gray-bg: #E8E8E5;
  --white: #ffffff;
  --ink: #111111;
  --muted: #555555;
  --border: rgba(43, 45, 135, 0.25);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --radius: 22px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --max: 1180px;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; letter-spacing: 1px;
  color: var(--navy); font-size: 22px;
}
.primary-nav { flex: 1; }
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; justify-content: center; gap: 32px;
}
.primary-nav a {
  text-decoration: none; color: var(--ink); font-weight: 500;
  padding: 8px 4px; border-bottom: 2px solid transparent; transition: 0.2s;
}
.primary-nav a:hover { color: var(--navy); border-color: var(--navy); }

.phone-pill {
  background: var(--ink); color: #fff;
  padding: 10px 20px; border-radius: var(--radius-pill);
  text-decoration: none; line-height: 1.2;
  display: flex; flex-direction: column; align-items: center;
  font-size: 14px;
}
.phone-pill .tty { font-size: 11px; opacity: 0.8; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--navy);
  margin: 5px 0; border-radius: 2px; transition: 0.2s;
}

/* ===== Hero ===== */
.hero {
  background: var(--gray-bg);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(36px, 5.5vw, 64px);
  color: var(--navy); line-height: 1.05; margin: 0 0 16px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.hero h1 span { color: var(--ink); }
.lede { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 600; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: 0.2s; font-size: 15px;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  background: #fff; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 13px; color: var(--navy); font-weight: 500;
}

.hero-art { position: relative; height: 360px; }
.hero-card {
  position: absolute; border-radius: var(--radius);
  border: 2px solid var(--border); background: #fff;
  box-shadow: var(--shadow-md);
}
.hero-card-1 { width: 60%; height: 60%; top: 0; left: 10%; transform: rotate(-4deg); background: linear-gradient(135deg, #fff, #f3f4ff); }
.hero-card-2 { width: 55%; height: 55%; bottom: 0; right: 0; transform: rotate(3deg); background: linear-gradient(135deg, #fff, #efeee8); }
.hero-card-3 { width: 35%; height: 35%; top: 30%; right: 20%; background: var(--navy); }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section.services, .section.visit, .section.quote { background: var(--gray-bg); }
.section.about, .section.why-us { background: var(--cream); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy); text-align: center; margin: 0 0 12px; letter-spacing: 1px;
}
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--muted); margin: 0 auto 48px; max-width: 640px; }

/* ===== Services grid ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: 0.2s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.service-icon { font-size: 32px; margin-bottom: 12px; }
.service-card h3 { color: var(--navy); margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card { text-align: center; padding: 24px; }
.why-icon {
  width: 72px; height: 72px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.why-card h3 { color: var(--navy); margin: 0 0 8px; font-size: 18px; }
.why-card p { color: var(--muted); margin: 0; }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-sub { font-size: 22px; color: var(--ink); font-weight: 400; margin: 0 0 16px; }
.about-name { font-weight: 700; color: var(--navy); font-size: 20px; margin: 0 0 16px; }
.about-copy p { color: #333; margin: 0 0 16px; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; font-size: 13px;
}
.photo-frame {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px; background: #fff;
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
.photo-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f3f4ff, #e2e3f5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--navy); text-align: center; padding: 20px;
}
.photo-placeholder span { font-weight: 700; font-size: 18px; line-height: 1.4; }
.photo-placeholder small { display: block; margin-top: 8px; color: var(--muted); }

/* ===== Office gallery ===== */
.section.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-card {
  margin: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
.gallery-card.empty {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4ff, #e2e3f5);
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}
.gallery-card.empty::after {
  content: "Add photo to assets/";
  font-size: 14px;
}
.gallery-card.empty img { display: none; }

/* ===== Visit ===== */
.visit-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  min-height: 380px;
  background: #fff;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.visit-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; color: var(--navy);
  font-size: 22px; margin: 0 0 12px; letter-spacing: 1px;
}
.hours { list-style: none; padding: 0; margin: 0 0 8px; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px dashed var(--border);
}
.hours-note { color: var(--muted); font-size: 13px; margin: 0 0 24px; }
.find-us { display: flex; gap: 10px; flex-wrap: wrap; }
.find-link {
  background: #fff; border: 1px solid var(--border);
  padding: 10px 18px; border-radius: var(--radius-pill);
  text-decoration: none; color: var(--navy); font-weight: 600;
  transition: 0.2s;
}
.find-link:hover { background: var(--navy); color: #fff; }

/* ===== Quote form ===== */
.quote-form {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; max-width: 760px; margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.quote-form label { display: block; }
.quote-form label span { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px;
  background: #fafafa; transition: 0.15s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none; border-color: var(--navy);
  background: #fff; box-shadow: 0 0 0 3px rgba(43,45,135,0.12);
}
.quote-form .full { display: block; margin-bottom: 16px; }
.form-note { font-size: 12px; color: var(--muted); margin: 12px 0 0; }
.form-status { margin: 12px 0 0; font-weight: 600; }
.form-status.success { color: #1a7a3a; }
.form-status.error { color: #b3261e; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #fff; padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-icon {
  width: 36px; height: 36px; border: 2px solid #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 24px;
}
.footer-left h3 { font-size: 26px; line-height: 1.3; margin: 0 0 24px; font-weight: 700; }
.qr-block {
  display: inline-block;
  background: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.qr-code {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 4px;
}
.qr-caption {
  margin: 8px 0 0;
  text-align: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.mission { margin: 0 0 24px; line-height: 1.6; opacity: 0.95; }
.contact-pills { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.contact-pill {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 10px 20px; border-radius: var(--radius-pill);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: 0.2s;
}
.contact-pill:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 18px 0; text-align: center; font-size: 13px; opacity: 0.8;
}

/* ===== Sticky mobile call button ===== */
.sticky-call {
  display: none;
  position: fixed; bottom: 18px; right: 18px;
  background: var(--navy); color: #fff;
  padding: 14px 22px; border-radius: var(--radius-pill);
  text-decoration: none; font-weight: 700; font-size: 15px;
  box-shadow: var(--shadow-md); z-index: 60;
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .primary-nav.open {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 24px;
  }
  .primary-nav.open ul { flex-direction: column; gap: 12px; }
  .nav-toggle { display: block; }
  .phone-pill { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-call { display: inline-block; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 56px; }
}
