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

:root {
  --pine:       #1A3A2A;
  --pine-mid:   #2C5F4A;
  --pine-dark:  #0F2318;
  --pine-tint:  #EFF6F2;
  --amber:      #C8922A;
  --amber-hover:#B07820;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --muted:      #555F5B;
  --border:     #DDE5E0;
  --green-tint: #E4F0EA;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
}

a { color: inherit; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── HEADER ── */
header {
  background: var(--pine);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.logo span { color: var(--amber); }

.header-phone {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.header-phone:hover { background: rgba(255,255,255,0.1); }

/* ── NAV ── */
nav {
  background: var(--pine-dark);
  padding: 0 2rem;
  display: flex;
}

nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.1rem;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover, nav a.active {
  color: white;
  border-bottom-color: var(--amber);
}

/* ── CREDENTIALS STRIP ── */
.creds-strip {
  background: var(--pine-tint);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2rem;
}

.creds-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.creds-exp {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pine);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.creds-exp span { color: var(--amber); }

.creds-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: var(--pine);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ── AREA BANNER ── */
.area-banner {
  background: var(--amber);
  padding: 0.65rem 2rem;
  text-align: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── HOME HERO ── */
.hero {
  background: var(--pine);
  padding: 5rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: 'MS';
  font-family: 'Playfair Display', serif;
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  font-size: 22rem;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--pine);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: attr(data-letter);
  font-family: 'Playfair Display', serif;
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  font-size: 16rem;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── SHARED TYPOGRAPHY ── */
.eyebrow {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1, .page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.hero p, .page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.cta-row {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--amber);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--amber-hover); }

.btn-ghost {
  background: transparent;
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
  display: inline-block;
}

.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-pine {
  background: var(--pine);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  display: inline-block;
}

.btn-pine:hover { background: var(--pine-mid); }

/* ── SECTION WRAPPER ── */
.section-wrap {
  padding: 4.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--pine);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(26,58,42,0.1);
  transform: translateY(-2px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pine);
  border-radius: 8px 8px 0 0;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--pine);
  margin-bottom: 0.65rem;
}

.service-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card .learn-more {
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ── CHECK LIST ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.check-list li {
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  color: var(--pine);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── PHOTO + TEXT SECTION ── */
.photo-section {
  background: var(--pine-tint);
  padding: 4.5rem 2rem;
}

.photo-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.photo-section img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 8px 32px rgba(26,58,42,0.12);
}

.photo-section-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--pine);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.photo-section-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cert-item {
  background: var(--pine);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ── WHY SECTION (light) ── */
.why-bg {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 2rem;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-inner .section-label { color: var(--pine); }
.why-inner .section-title { color: var(--pine); }
.why-inner .section-sub  { color: var(--muted); max-width: 100%; margin-bottom: 2rem; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-point {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.why-point-icon {
  width: 38px;
  height: 38px;
  background: var(--green-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.why-point h4 {
  color: var(--pine);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.why-point p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.stat-card {
  background: var(--pine-tint);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--pine);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ── TWO COLUMN CONTENT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--pine);
  margin-bottom: 1rem;
}

.content-block p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.detail-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--pine);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.detail-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── PAGE PHOTO ── */
.page-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 380px;
  box-shadow: 0 4px 20px rgba(26,58,42,0.1);
  margin-bottom: 1.5rem;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.faq-item h4 {
  font-family: 'Playfair Display', serif;
  color: var(--pine);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--pine);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

/* ── DIVIDER ── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 0.5rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--green-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item strong { display: block; }
.contact-item small  { color: var(--muted); font-size: 0.875rem; }

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.contact-form h4 {
  font-family: 'Playfair Display', serif;
  color: var(--pine);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--pine);
  outline-offset: 1px;
  border-color: var(--pine);
}

.form-group textarea { height: 100px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.btn-submit {
  width: 100%;
  background: var(--pine);
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.btn-submit:hover { background: var(--pine-mid); }

/* ── OTHER SERVICES STRIP ── */
.other-services {
  background: var(--pine-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}

.other-services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.other-services h3 {
  font-family: 'Playfair Display', serif;
  color: var(--pine);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.other-service-link {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.15s;
}

.other-service-link:hover {
  box-shadow: 0 4px 16px rgba(26,58,42,0.1);
  transform: translateY(-1px);
}

.other-service-link span:first-child { font-size: 1.25rem; }

.other-service-link div strong {
  display: block;
  font-size: 0.9rem;
  color: var(--pine);
  font-weight: 700;
}

.other-service-link div small {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: var(--pine-dark);
  color: rgba(255,255,255,0.5);
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.9;
}

footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .why-inner,
  .contact-grid,
  .two-col,
  .photo-section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  nav        { overflow-x: auto; flex-wrap: nowrap; }
  .hero::after, .page-hero::after { font-size: 8rem; }
  .creds-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  header { flex-direction: column; gap: 0.75rem; text-align: center; }
  .photo-section img { max-height: 280px; }
}
