:root{
  --teal:#188181;
  --blue:#507683;
  --gray:#EAEAEA;
  --blush:#F7D9CF;
  --cream:#FDF6EC;
  --ink:#26332F;
}

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

html { scroll-behavior: smooth; }

body{
  margin:0;
  font-family:'Work Sans', sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.5;
}

h1, h2, h3 { font-family:'Fraunces', serif; margin:0 0 .5em; line-height:1.2; }

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

a { color:inherit; }

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:#fff;
  color:var(--teal);
  padding:12px 20px;
  z-index:200;
  border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

.wrap{ max-width:1120px; margin:0 auto; padding:0 24px; }

.site-header{
  display:flex;
  align-items:center;
  padding:16px 0 0;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  width:100%;
}
.brand{ display:flex; align-items:center; gap:20px; text-decoration:none; }
.brand img{ height:140px; width:140px; object-fit:contain; }
.brand-name{ font-family:'Fraunces', serif; font-weight:600; font-size:3rem; color:var(--teal); line-height:1.1; }
.header-ctas{ display:flex; gap:12px; flex-wrap:wrap; }

.btn{
  display:inline-block;
  background:var(--teal);
  color:#fff;
  text-decoration:none;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  border:2px solid var(--teal);
  cursor:pointer;
  transition:opacity .15s ease;
}
.btn:hover{ opacity:.9; }
.btn:focus-visible{ outline:3px solid var(--blue); outline-offset:2px; }
.btn.secondary{ background:transparent; color:var(--teal); }
.btn.btn-outline-light{ background:rgba(255,255,255,.12); border-color:#fff; color:#fff; }
.btn.link{
  background:none;
  color:var(--blue);
  border:none;
  text-decoration:underline;
  padding:0;
  font-weight:500;
  border-radius:0;
}

section{ padding:72px 0; }
section.alt{ background:var(--gray); }

.hero{ text-align:center; padding-top:0; }
.eyebrow{
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.8rem;
  font-weight:600;
  margin:0 0 14px;
}
.hero h1{ font-size:2.6rem; max-width:820px; margin-left:auto; margin-right:auto; }
.hero-body{ max-width:640px; margin:20px auto 32px; font-size:1.1rem; line-height:1.6; }
.hero-ctas{ display:flex; gap:20px; justify-content:center; align-items:center; flex-wrap:wrap; }

.section-head{ text-align:center; max-width:640px; margin:0 auto 40px; }

.services-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
  max-width:900px;
  margin:0 auto;
}
.card{
  background:#fff;
  border-radius:14px;
  padding:36px 28px;
  text-align:left;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.card .icon{ display:flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:50%; background:var(--blush); color:var(--teal); margin-bottom:16px; }
.card h3{ font-size:1.25rem; color:var(--teal); }
.card p{ font-size:.97rem; line-height:1.6; }

.about{ max-width:720px; margin:0 auto; text-align:center; }
.about .standout{
  font-family:'Fraunces', serif;
  font-size:1.4rem;
  font-weight:600;
  color:var(--teal);
  line-height:1.4;
  max-width:560px;
  margin:32px auto;
  padding-top:24px;
  border-top:2px solid var(--blush);
}

.testimonial{
  max-width:600px;
  margin:0 auto;
  background:#fff;
  border-radius:14px;
  padding:32px;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.testimonial p{ font-size:1.15rem; font-style:italic; line-height:1.6; margin:0 0 16px; }
.testimonial footer{ font-size:.95rem; color:var(--blue); }

.final-cta{
  text-align:center;
  background:var(--teal);
  color:#fff;
  border-radius:20px;
  padding:56px 32px;
}
.final-cta h2{ color:#fff; }
.final-cta p{ max-width:520px; margin:16px auto 28px; opacity:.95; }
.final-cta .btn{ background:#fff; color:var(--teal); border-color:#fff; }

.site-footer{
  padding:40px 0;
  text-align:center;
  font-size:.85rem;
  color:var(--blue);
}
.site-footer .wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.site-footer img{ height:32px; width:32px; object-fit:contain; }
.site-footer a{ color:var(--blue); text-decoration:underline; }
.accessibility-note{ max-width:480px; margin:12px auto 0; font-size:.78rem; }

@media (max-width:700px){
  .services-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:1.9rem; }
  .site-header .wrap{ flex-direction:column; gap:14px; }
  .header-ctas{ justify-content:center; width:100%; }
  section{ padding:56px 0; }
  .site-header{ padding-bottom:16px; }
  .brand{ flex-direction:column; gap:2px; }
  .brand img{ height:96px; width:96px; }
  .brand-name{ font-size:2.4rem; text-align:center; }
}
