:root {
  --bg: #f6fbfb;
  --surface: #ffffff;
  --surface-alt: #eef7f5;
  --text: #24323a;
  --muted: #5d717a;
  --primary: #4998a5;
  --primary-dark: #367a86;
  --accent: #9acd5e;
  --line: #dbe8eb;
  --shadow: 0 18px 40px rgba(36, 50, 58, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 251, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 700; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span { line-height: 1.15; }
nav { display: flex; gap: 20px; align-items: center; }
nav a { color: var(--text); font-weight: 600; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--primary);
  box-shadow: var(--shadow);
}
.button:hover { text-decoration: none; filter: brightness(1.05); }
.button-secondary {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}
.button-secondary:hover { background: rgba(73, 152, 165, 0.08); }
.hero,
.intro,
.services,
.team,
.gallery,
.testimonials,
.contact,
.page-hero,
.service-detail,
.faq,
.notice { padding: 72px 0; }
.hero,
.page-hero { background: linear-gradient(135deg, #ffffff 0%, #ecf7f4 55%, #dff1f4 100%); }
.hero-grid,
.split,
.contact-grid,
.page-hero-grid { display: grid; gap: 36px; align-items: center; grid-template-columns: 1.15fr 1fr; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 16px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 58ch; }
.hero-actions,
.inline-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-image img,
.rounded,
.card img,
.map-frame { border-radius: 28px; box-shadow: var(--shadow); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.cards,
.faq-grid { display: grid; gap: 24px; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card.alt { background: var(--surface-alt); }
.icon { width: 72px; height: 72px; object-fit: contain; margin-bottom: 18px; }
.kicker { color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.bio-card img { width: 220px; height: 220px; object-fit: cover; border-radius: 50%; margin: 0 auto 22px; }
.bio-card { text-align: center; }
.role { color: var(--primary); font-weight: 700; margin-bottom: 16px; }
.quote p { font-size: 1.05rem; font-style: italic; }
.quote cite { display: block; margin-top: 18px; color: var(--muted); font-style: normal; font-weight: 700; }
.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-grid img { border-radius: 22px; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.notice-banner {
  border: 1px solid rgba(154, 205, 94, 0.35);
  background: #f7fbef;
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  margin-top: 20px;
}
.list,
.contact-list { list-style: none; padding: 0; margin: 0; }
.list li,
.contact-list li { margin-bottom: 12px; position: relative; padding-left: 18px; }
.list li::before,
.contact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 20px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.faq-answer { padding: 0 22px 22px; color: var(--muted); display: none; }
.faq-item.open .faq-answer { display: block; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.map-frame { width: 100%; min-height: 360px; border: 0; }
.site-footer { border-top: 1px solid var(--line); padding: 24px 0 40px; background: #fff; }
.footer-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.small { font-size: 0.95rem; color: var(--muted); }
.policy-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .three-up,
  .two-up,
  .gallery-grid,
  .page-hero-grid { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; padding: 12px 0; }
  nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .nav-actions { width: 100%; justify-content: center; }
  .footer-row { flex-direction: column; text-align: center; }
}
