:root {
  --ink: #173f3a;
  --muted: #5e746f;
  --paper: #fffaf2;
  --soft: #eef8f4;
  --mint: #cfeee5;
  --sage: #087566;
  --sage-dark: #064d47;
  --coral: #f1725f;
  --coral-dark: #c94d3f;
  --sun: #ffd166;
  --cream: #fff4dc;
  --sky: #d9f3ff;
  --line: rgba(23, 63, 58, 0.14);
  --shadow: 0 18px 52px rgba(13, 70, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(207, 238, 229, 0.2), rgba(255, 250, 242, 0) 520px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid rgba(8, 117, 102, 0.12);
  background: rgba(255, 250, 242, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  color: var(--sage-dark);
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sage), #18a890);
  color: white;
  font-size: 0.88rem;
  box-shadow: 0 10px 24px rgba(8, 117, 102, 0.24);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--sage);
}

.nav-links a {
  border-radius: 8px;
  padding: 9px 10px;
}

.nav-call {
  border: 1px solid rgba(8, 117, 102, 0.18);
  background: white;
  color: var(--sage-dark);
  box-shadow: 0 8px 20px rgba(13, 70, 63, 0.08);
}

.hero {
  position: relative;
  min-height: clamp(660px, 88vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 77, 71, 0.88), rgba(8, 117, 102, 0.54) 48%, rgba(255, 250, 242, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(6, 77, 71, 0.26));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: 104px clamp(18px, 4vw, 48px) 118px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 77, 71, 0.72), rgba(6, 77, 71, 0.28));
  box-shadow: 0 24px 70px rgba(6, 77, 71, 0.22);
  backdrop-filter: blur(2px);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.7vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.service-area-note {
  display: inline-flex;
  max-width: 680px;
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.17);
  color: white;
  font-weight: 800;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(255, 209, 102, 0.18);
  color: #fff8dc;
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  box-shadow: 0 12px 28px rgba(201, 77, 63, 0.24);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.service-area-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  padding: 20px clamp(18px, 4vw, 56px);
  background: var(--sage-dark);
  color: white;
}

.service-area-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.service-area-band div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.service-area-band span {
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--sun);
  font-size: 0.93rem;
  font-weight: 850;
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  margin: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-area-copy {
  font-weight: 800;
}

.service-grid,
.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.experience-list article,
.appointment-form,
.profile-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 210px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--sun), var(--coral));
}

.service-card p,
.experience-list p,
.profile-panel p {
  color: var(--muted);
}

.service-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), var(--sky));
  color: var(--sage);
  font-weight: 900;
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, white, #f8fffc);
  box-shadow: 0 12px 34px rgba(13, 70, 63, 0.08);
}

.process-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--sun);
  color: var(--sage-dark);
  font-weight: 950;
}

.process-grid p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(207, 238, 229, 0.82), rgba(255, 244, 220, 0.92)),
    var(--soft);
}

.appointment-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.form-notice {
  border: 1px solid rgba(8, 117, 102, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--mint);
  color: var(--sage);
  font-weight: 850;
}

.form-row {
  display: grid;
  gap: 8px;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 63, 58, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefb;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 120, 109, 0.24);
  border-color: var(--sage);
}

.form-button {
  width: fit-content;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 750;
}

.form-status a {
  color: var(--sage);
  font-weight: 900;
}

.experience-section {
  background:
    linear-gradient(180deg, #fffaf0, #fff5e3);
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.credential-strip span {
  border: 1px solid rgba(8, 117, 102, 0.24);
  border-radius: 8px;
  padding: 9px 12px;
  background: white;
  color: var(--sage);
  font-size: 0.92rem;
  font-weight: 850;
}

.experience-list article {
  min-height: 180px;
  padding: 24px;
}

.experience-date {
  margin: 10px 0 12px;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 850;
}

.strengths-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 30px);
  background: white;
  box-shadow: var(--shadow);
}

.strengths-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(8, 117, 102, 0.12), rgba(255, 209, 102, 0.24)),
    var(--mint);
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(210px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  width: min(1120px, 100%);
  margin: auto;
  padding: clamp(22px, 5vw, 44px);
}

.profile-photo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #f9dbc6, #d8ece2 62%, #f6edda);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 18%;
}

.profile-photo img:not([src]),
.profile-photo img[src=""] {
  display: none;
}

.profile-photo span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sage-dark);
  font-weight: 850;
}

.profile-panel .button.secondary {
  border-color: rgba(36, 48, 47, 0.2);
  background: white;
  color: var(--ink);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--sage-dark);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .service-grid,
  .experience-list,
  .process-grid,
  .split-section,
  .profile-panel,
  .strengths-panel ul {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    background: rgba(6, 77, 71, 0.66);
  }

  .service-area-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 0.96rem;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 72px 18px 84px;
  }

  h1 {
    font-size: 2.48rem;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .button,
  .form-button {
    width: 100%;
  }

  .profile-photo,
  .profile-photo img {
    min-height: 300px;
  }
}
