/* Self-hosted, so this page makes no third-party request either. */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/nunito-400.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/nunito-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/nunito-700.woff2") format("woff2");
}

/* A perfectly ordinary independent practice website. Deliberately nothing like
   estimate.vet, so the embed can be judged sitting inside somebody else's
   design rather than our own. */
:root {
  --green: #0d7561;
  --green-dk: #08594a;
  --sand: #fdfaf4;
  --ink: #24303a;
  --soft: #5d6b76;
  --line: #e6e2d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

.shell {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 22px;
}

.topbar {
  background: var(--green-dk);
  color: #dff0ea;
  font-size: 13.5px;
}
.topbar .shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 7px;
  flex-wrap: wrap;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
}
.logo em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 15px;
}
nav a {
  color: var(--soft);
  text-decoration: none;
  padding-block: 4px;
}
nav a:hover,
nav a.on {
  color: var(--green);
  font-weight: 600;
}
.book {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
}

.hero {
  background: linear-gradient(180deg, #eaf4f0, var(--sand));
  padding-block: 62px;
  border-bottom: 1px solid var(--line);
}
.kicker {
  margin: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 10px 0 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  max-width: 17ch;
}
.sub {
  margin: 14px 0 0;
  font-size: 18px;
  color: var(--soft);
  max-width: 52ch;
}
.hero-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn.ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-block: 48px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.card p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
}
.card a {
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 860px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* fees page */
.page-head {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding-block: 40px;
}
.crumb {
  font-size: 13.5px;
  color: var(--soft);
  margin: 0 0 8px;
}
.crumb a {
  color: var(--green);
}
.page-head h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
}
.page-head p {
  margin: 12px 0 0;
  color: var(--soft);
  max-width: 60ch;
  font-size: 17px;
}
.fees-body {
  padding-block: 36px 60px;
}
.notice {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 26px;
}
.notice h2 {
  margin: 0 0 6px;
  font-size: 17px;
}
.notice p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
}

footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-block: 40px;
  margin-top: 20px;
}
.foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  font-size: 14.5px;
  color: var(--soft);
}
.foot p {
  margin: 0 0 4px;
}
.fname {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px !important;
}
.tiny {
  font-size: 12.5px;
  margin-top: 10px !important;
}
@media (max-width: 860px) {
  .foot {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Demonstration marker. This site is fictional and must never be mistaken for
   a real practice, so the bar stays visible on every page. */
.demobar {
  background: #24303a;
  color: #e6ebee;
  font-size: 13px;
  line-height: 1.5;
  padding: 9px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.demobar strong {
  color: #ffd9a8;
}
.demobar a {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
