:root {
  --ink: #333333;
  --heading: #424746;
  --muted: #72827f;
  --mint: #9de3cd;
  --pale: #d5e1df;
  --light: #f7faf9;
  --white: #ffffff;
  --border: #d7e3e0;
  --shadow: 0 18px 45px rgba(45, 61, 58, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

p,
li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 7vw, 5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--heading);
  color: var(--white);
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 142px;
}

.brand-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.brand-first,
.brand-second {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-first {
  color: var(--mint);
}

.brand-second {
  color: var(--heading);
}

.tagline {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  color: var(--heading);
  font-size: 0.95rem;
  padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--muted);
  border-color: var(--muted);
}

.menu-button {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--heading);
  font-weight: 700;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-items: center;
  background: radial-gradient(circle at 80% 18%, rgba(157, 227, 205, 0.55), transparent 28%), linear-gradient(135deg, rgba(213, 225, 223, 0.9), rgba(255, 255, 255, 0.92)), url('/assets/img/susan_side.jpg');
  background-size: auto, auto, min(52vw, 640px);
  background-repeat: no-repeat;
  background-position: center, center, right bottom;
}

.hero-content {
  padding: 6rem 0;
  max-width: 720px;
}

.hero p {
  max-width: 620px;
  font-size: 1.18rem;
}

.eyebrow {
  font-family: Montserrat, Arial, sans-serif;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--heading);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--heading);
  font-family: Montserrat, Arial, sans-serif;
}

.button:hover {
  background: var(--muted);
  border-color: var(--muted);
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  color: var(--heading);
}

.text-link {
  color: var(--heading);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-muted {
  background: var(--light);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-heading .eyebrow {
  justify-content: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(45, 61, 58, 0.16);
}

.service-card img {
  height: 120px;
  margin: 0 auto 1.5rem;
}

.about-preview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.portrait {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.portrait-side {
  max-height: 520px;
}

.page-hero {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: linear-gradient(135deg, var(--pale), rgba(255, 255, 255, 0.95));
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.content-block p,
.content-block li {
  font-size: 1.06rem;
}

.content-block h2 {
  margin-top: 2.2rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block ul {
  padding-left: 1.2rem;
}

.content-block li + li {
  margin-top: 0.6rem;
}


.team-section {
  background: var(--white);
}

.team-profile {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
  align-items: start;
  padding: 0 0 4rem;
  margin: 0 0 4rem;
  border-bottom: 1px solid var(--border);
}

.team-profile:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.team-photo-wrap {
  position: sticky;
  top: 112px;
}

.team-photo {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.team-copy h3 {
  color: var(--heading);
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem;
}

.team-copy ul {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 2.4rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.section-muted .testimonial {
  background: var(--white);
}

.quote-mark {
  color: var(--mint);
  font-size: 4rem;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.testimonial p {
  margin: 0;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}

.client-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  min-height: 130px;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.client-logo img {
  max-height: 82px;
  width: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li + li {
  margin-top: 0.75rem;
}

.site-footer {
  background: var(--heading);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.site-footer .brand-second,
.site-footer h2 {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-note {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--mint);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 74px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 0.8rem;
  }

  .hero {
    min-height: auto;
    background-size: auto, auto, 0;
  }

  .service-grid,
  .testimonial-grid,
  .about-preview,
  .two-column,
  .team-profile,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .team-photo-wrap {
    position: static;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .client-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}
