@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --color-sage-bg: #f2f5f3;
  --color-deep-sage: #3a4d43;
  --color-sage-border: #dce5df;
  --color-sage-accent: #8ea89b;
  --color-sage-light: #ecf1ef;
  --color-dusty-pink: #d4a29c;
  --color-dusty-dark: #c38e87;
  --color-text-body: #2d3a33;
  --color-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 0% 0%, rgba(142, 168, 155, 0.16) 0%, transparent 38%),
    radial-gradient(circle at 100% 20%, rgba(212, 162, 156, 0.14) 0%, transparent 30%),
    linear-gradient(180deg, #f7faf8 0%, var(--color-sage-bg) 44%, #edf2ef 100%);
  color: var(--color-text-body);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.13;
  font-family: var(--font-serif);
  color: var(--color-deep-sage);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 2.8rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(242, 245, 243, 0.9);
  border-bottom: 1px solid rgba(58, 77, 67, 0.1);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(247, 250, 248, 0.94);
  border-bottom-color: rgba(58, 77, 67, 0.14);
  box-shadow: 0 8px 24px rgba(58, 77, 67, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-deep-sage);
  letter-spacing: 0.03em;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
}

.brand-text {
  display: block;
}

.tagline {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--color-dusty-dark);
}

.site-nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(58, 77, 67, 0.82);
  transition: background 150ms ease, color 150ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--color-sage-light);
  color: var(--color-deep-sage);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-sage-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-deep-sage);
  transition: transform 170ms ease, opacity 170ms ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

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

.button-primary {
  color: var(--color-white);
  background: linear-gradient(130deg, var(--color-dusty-dark), var(--color-dusty-pink));
  box-shadow: 0 8px 24px rgba(195, 142, 135, 0.3);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--color-sage-border);
  color: var(--color-deep-sage);
}

.button.full {
  width: 100%;
}

.hero {
  padding: 5.8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-showcase {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.17;
  filter: saturate(0.7) contrast(0.9) brightness(1.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(242, 245, 243, 0.84));
  z-index: -1;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(242, 245, 243, 0.98), transparent 38%),
    radial-gradient(circle at 100% 40%, rgba(242, 245, 243, 0.97), transparent 37%);
  z-index: -1;
}

.hero-center {
  max-width: 900px;
  text-align: center;
  display: grid;
  gap: 1.2rem;
}

.hero-center .eyebrow {
  margin-bottom: 0;
}

.hero-center h1 {
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-center .lead {
  margin: 0 auto;
  max-width: 48ch;
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  line-height: 1.55;
  color: rgba(58, 77, 67, 0.92);
}

.hero-center .hero-actions {
  margin-top: 0.6rem;
  justify-content: center;
}

.hero-center .button {
  min-width: 190px;
  min-height: 50px;
  letter-spacing: 0.12em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-sage-accent);
  margin-bottom: 0.82rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.9rem);
}

.lead {
  margin-top: 1rem;
  font-size: 1.08rem;
  max-width: 63ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.microcopy {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: rgba(58, 77, 67, 0.76);
}

.hero-card,
.card,
.testimonial,
.blog-card,
.faq-block,
.contact-card,
.form-card,
.team-card,
.highlight-card,
.price-card,
.service-tile {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-sage-border);
  border-radius: 1.1rem;
  box-shadow: 0 14px 28px rgba(58, 77, 67, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-card:hover,
.card:hover,
.testimonial:hover,
.blog-card:hover,
.faq-block:hover,
.contact-card:hover,
.form-card:hover,
.team-card:hover,
.highlight-card:hover,
.price-card:hover,
.service-tile:hover,
.hero-card:focus-within,
.card:focus-within,
.testimonial:focus-within,
.blog-card:focus-within,
.faq-block:focus-within,
.contact-card:focus-within,
.form-card:focus-within,
.team-card:focus-within,
.highlight-card:focus-within,
.price-card:focus-within,
.service-tile:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px rgba(58, 77, 67, 0.12);
}

.hero-card {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(142, 168, 155, 0.1), transparent 80%);
  animation: shimmer 6s linear infinite;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.section {
  padding: 3.2rem 0;
}

.section-title {
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  margin-bottom: 0.8rem;
}

.section-intro {
  max-width: 70ch;
  margin-bottom: 1.4rem;
}

#about {
  background: #ffffff;
}

.about-home {
  display: grid;
  gap: 1.4rem;
}

.about-header {
  margin-bottom: 0;
  text-align: center;
}

.about-header .eyebrow {
  margin-bottom: 0.2rem;
}

.about-header .section-title {
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  align-items: stretch;
}

.about-main {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.about-main {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.about-intro-wrap {
  display: flex;
  justify-content: center;
}

.about-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.5;
  color: var(--color-deep-sage);
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(212, 162, 156, 0.65);
  text-align: center;
  max-width: 54ch;
  margin: 0;
}

.about-main p {
  font-size: 1.02rem;
  max-width: 62ch;
  text-align: left;
  margin: 0;
}

.about-media {
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.about-media img {
  display: block;
  width: 82%;
  height: 82%;
  max-width: 420px;
  object-fit: contain;
  object-position: center 5%;
}

.section-divider {
  border-top: 1px solid rgba(58, 77, 67, 0.12);
}

.team-home {
  text-align: center;
}

.team-home .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.team-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 470px));
  column-gap: 1.9rem;
  row-gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  align-items: start;
}

.team-home .avatar {
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
}

.team-home .team-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 470px;
  margin: 0;
  justify-items: start;
  text-align: left;
  gap: 0.7rem;
}

.team-home .team-card > div,
.team-home .team-card > p {
  width: 100%;
  margin: 0;
  line-height: 1.55;
}

.team-home .team-card .role {
  margin-bottom: 0.2rem;
}

.team-home .team-card h3 {
  margin: 0;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.testimonial,
.blog-card,
.faq-block,
.contact-card,
.form-card,
.team-card,
.highlight-card,
.price-card {
  padding: 1.45rem;
}

.muted-bg {
  background: linear-gradient(180deg, rgba(236, 241, 239, 0.75), rgba(236, 241, 239, 0.34));
  border-top: 1px solid rgba(58, 77, 67, 0.08);
  border-bottom: 1px solid rgba(58, 77, 67, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1rem;
}

.check-list,
.steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li,
.steps li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.58rem;
}

.check-list li::before,
.steps li::before {
  content: "•";
  color: var(--color-dusty-dark);
  position: absolute;
  left: 0.22rem;
}

.text-link {
  color: var(--color-dusty-dark);
  font-weight: 700;
}

.intro {
  padding: 4.6rem 0 1.9rem;
}

.intro p {
  max-width: 70ch;
}

.intro-centered {
  text-align: center;
}

.intro-centered .container {
  width: min(760px, calc(100% - 2.8rem));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  justify-items: center;
}

.intro-centered p {
  margin-left: auto;
  margin-right: auto;
}

.services-main {
  padding-bottom: 0.9rem;
}

.services-intro {
  min-height: auto;
  display: block;
  text-align: center;
  padding: 4.6rem 0 1.9rem;
  margin-bottom: 2.5rem;
}

.services-intro .container {
  width: min(920px, calc(100% - 2.8rem));
}

.services-intro h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.9rem);
  font-weight: inherit;
  letter-spacing: normal;
  margin-bottom: 0;
}

.services-intro .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--color-sage-accent)
}

.services-title-rule {
  width: 80px;
  border: none;
  border-top: 2px solid var(--color-dusty-pink);
  margin: 1.2rem auto 0;
}

.services-intro p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  line-height: 1.72;
  color: rgba(58, 77, 67, 0.88);
}

.services-content {
  padding-top: 0;
}

.services-stack {
  width: min(1060px, calc(100% - 2.8rem));
  margin: 0 auto;
  display: grid;
  gap: 2.2rem;
}

.service-panel {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.85), rgba(247, 250, 248, 0.7));
  border: 1px solid rgba(58, 77, 67, 0.11);
  border-radius: 1.15rem;
  padding: clamp(1.25rem, 1.5vw, 2.15rem);
  box-shadow: 0 14px 24px rgba(58, 77, 67, 0.06);
  display: grid;
  gap: 1.45rem;
}

.service-panel-header {
  display: grid;
  gap: 0.7rem;
}

.service-kicker {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-sage-accent);
}

.service-panel h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.15rem);
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: var(--color-deep-sage);
  margin: 0;
}

.service-lead {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  line-height: 1.52;
  color: rgba(58, 77, 67, 0.92);
  max-width: none;
}

.service-subsection {
  border-top: 1px solid rgba(58, 77, 67, 0.1);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.service-subsection h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.82rem);
  line-height: 1.24;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.service-panel p,
.service-panel li {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.85;
  color: rgba(45, 58, 51, 0.96);
  max-width: none;
}

.service-list {
  margin: 0.15rem 0 0.15rem 1.15rem;
  padding: 0;
}

.service-list li + li {
  margin-top: 0.28rem;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.15rem 0;
}

.metric-item {
  border: 1px solid rgba(58, 77, 67, 0.14);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 0.85rem;
  display: grid;
  gap: 0.2rem;
}

.metric-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(58, 77, 67, 0.74);
}

.metric-item strong {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-deep-sage);
}

.service-panel a:not(.button) {
  color: var(--color-dusty-dark);
  font-weight: 700;
}

.service-cta-wrap {
  margin-top: 0.35rem;
}

.service-cta-wrap .button {
  min-width: 235px;
}

.assessment-panel {
  gap: 1.65rem;
}

.assessment-header {
  text-align: center;
}

.assessment-header .service-lead {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.assessment-process {
  gap: 1rem;
}

.assessment-process-label {
  margin-top: 0.45rem;
}

.assessment-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.2rem;
}

.assessment-card {
  border: 1px solid rgba(58, 77, 67, 0.12);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.86);
  padding: 1.15rem 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.assessment-card h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.24;
  color: var(--color-deep-sage);
}

.assessment-card p {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.55;
  color: rgba(45, 58, 51, 0.82);
}

.assessment-note {
  color: var(--color-dusty-dark);
  font-weight: 700;
}

.assessment-card-wide {
  grid-column: 1 / -1;
}

.assessment-fees {
  border: 1px solid rgba(58, 77, 67, 0.12);
  border-radius: 1rem;
  padding: 1.35rem 1.4rem;
  background: rgba(246, 250, 248, 0.56);
  display: grid;
  gap: 0.95rem;
}

.assessment-fees h3 {
  text-align: center;
}

.fee-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.fee-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(58, 77, 67, 0.1);
}

.fee-row:last-child {
  border-bottom: 0;
}

.fee-row dt,
.fee-row dd {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.fee-row dd {
  font-weight: 700;
  color: var(--color-deep-sage);
}

.fee-total {
  max-width: 400px;
  margin: 0.4rem auto 0;
  border: 1px solid rgba(212, 162, 156, 0.35);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 1rem;
  text-align: center;
}

.fee-total p {
  margin: 0;
  color: var(--color-dusty-dark);
}

.fee-total p:first-child {
  font-size: 1.35rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

.fee-total p:last-child {
  margin-top: 0.2rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.assessment-payment {
  border: 1px solid rgba(58, 77, 67, 0.12);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 1.25rem;
  text-align: center;
  display: grid;
  gap: 0.6rem;
}

.assessment-payment p {
  margin: 0;
}

.assessment-cta-wrap {
  margin-top: 0.5rem;
  justify-self: center;
}

.assessment-cta-wrap .button {
  min-width: 260px;
}

.service-journey {
  padding-top: 0.6rem;
}

.service-journey-inner {
  width: min(1060px, calc(100% - 2.8rem));
  margin: 0 auto;
  border-top: 1px solid rgba(58, 77, 67, 0.14);
  padding-top: 2.4rem;
  display: grid;
  gap: 1rem;
}

.service-journey-inner h2 {
  font-size: clamp(1.95rem, 3vw, 2.65rem);
}

.service-journey-inner ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.service-journey-inner li {
  font-size: 1.02rem;
  line-height: 1.76;
  max-width: 74ch;
}

.faq-intro .container {
  max-width: 760px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(58, 77, 67, 0.7);
  font-weight: 700;
}

.avatar {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  border-radius: 1.4rem;
  object-fit: cover;
  border: 1px solid var(--color-sage-border);
  background: linear-gradient(160deg, #f8fbf9, #edf3ef);
}

.team-card {
  display: grid;
  gap: 1rem;
}

.role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-dusty-dark);
  font-weight: 700;
}

.price-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(236, 241, 239, 0.8));
}

.price {
  display: block;
  margin-top: 0.52rem;
  font-weight: 700;
  color: var(--color-dusty-dark);
}

.services-eyebrow {
  text-align: center;
  margin-bottom: 0.45rem;
}

#services {
  margin-top: 1.1rem;
  background: #fff;
  border-top: 1px solid rgba(58, 77, 67, 0.08);
  border-bottom: 1px solid rgba(58, 77, 67, 0.08);
  box-shadow: 0 -10px 20px rgba(58, 77, 67, 0.04), 0 10px 20px rgba(58, 77, 67, 0.04);
}

.services-title {
  text-align: center;
  margin-bottom: 2.4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-tile {
  border-radius: 1rem;
  min-height: 292px;
  padding: 2rem 2.2rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 10px 20px rgba(58, 77, 67, 0.08);
}

.service-tile h3 {
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  margin-bottom: 0.5rem;
}

.service-tile p {
  max-width: 28ch;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.service-link {
  font-size: 0.8rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-tile-light {
  background: var(--color-sage-light);
  border-color: rgba(122, 145, 134, 0.7);
}

.service-tile-light h3 {
  color: var(--color-deep-sage);
}

.service-tile-light p {
  color: rgba(58, 77, 67, 0.7);
}

.service-tile-light .service-icon {
  background: rgba(255, 255, 255, 0.18);
}

.service-tile-light .service-icon {
  color: var(--color-deep-sage);
}

.service-tile-light .service-link {
  color: var(--color-deep-sage);
}

.service-tile-rose {
  background: #c99a95;
  border-color: rgba(201, 154, 149, 0.75);
}

.service-tile-rose h3,
.service-tile-rose p,
.service-tile-rose .service-link {
  color: #fff;
}

.service-tile-rose .service-icon {
  background: rgba(255, 255, 255, 0.17);
}

.service-tile-rose .service-icon {
  color: #fff;
}

.faq-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-sage-border);
  border-bottom: 1px solid var(--color-sage-border);
}

.faq-grid .faq-block {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 1.05rem 0;
  border-top: 1px solid var(--color-sage-border);
}

.faq-grid .faq-block:first-child {
  border-top: 0;
}

.faq-grid .faq-block:hover,
.faq-grid .faq-block:focus-within {
  transform: none;
  box-shadow: none;
}

.faq-grid .faq-block h2 {
  color: var(--color-dusty-dark);
}

.faq-question {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
  color: var(--color-deep-sage);
}

.faq-grid .faq-block > p {
  margin: 0;
}

.faq-block details {
  border-top: 0;
  padding: 0.35rem 0 0;
}

.faq-block details:first-of-type {
  border-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-deep-sage);
}

.blog-meta {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-sage-accent);
  font-weight: 700;
}

.article {
  display: grid;
  gap: 0.65rem;
}

.article-date {
  font-size: 0.77rem;
  color: rgba(58, 77, 67, 0.7);
}

.blog-editorial {
  padding-top: 4rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 2.2rem;
  align-items: start;
}

.blog-sidebar h1 {
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  margin-bottom: 0.7rem;
  max-width: 15ch;
  font-weight: 600;
}

.blog-sidebar-intro {
  max-width: 28ch;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  font-weight: 400;
}

.blog-topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.blog-topic-list li {
  font-size: 1.02rem;
  font-family: var(--font-sans);
  color: var(--color-deep-sage);
  font-weight: 600;
}

.blog-feed {
  display: grid;
  gap: 1.25rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding-bottom: 0.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
  border-radius: 1.1rem;
}

.blog-row:hover,
.blog-row:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(58, 77, 67, 0.10);
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.7rem;
  object-fit: cover;
}

.blog-row-content {
  display: grid;
  gap: 0.32rem;
}

.blog-row-meta {
  margin: 0;
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-deep-sage);
  font-weight: 600;
}

.blog-row h2 {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.18;
  font-weight: 600;
}

.blog-row p {
  margin: 0;
}

.read-article-btn {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-dusty-dark);
  cursor: pointer;
  text-decoration: none;
}

.read-article-btn span {
  font-size: 1.25rem;
  line-height: 0;
  margin-left: 0.2rem;
}

.blog-article-view {
  padding-top: 0.2rem;
}

.article-page {
  padding-top: 2.1rem;
}

.article-page .container {
  width: min(900px, calc(100% - 2.8rem));
  margin-left: auto;
  margin-right: auto;
}

.blog-article-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.article-back-btn {
  border: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(58, 77, 67, 0.65);
  cursor: pointer;
  text-decoration: none;
}

.article-page .blog-row-meta {
  display: none;
}

.blog-article-panel h1,
.blog-article-panel h2 {
  margin-top: 0;
  margin-bottom: 1.4rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(58, 77, 67, 0.16);
  font-size: clamp(2.7rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.article-author {
  margin: -0.65rem 0 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(58, 77, 67, 0.72);
  font-weight: 700;
}

.blog-article-body {
  display: grid;
  gap: 1rem;
  max-width: 62ch;
}

.blog-article-body p {
  margin: 0;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  color: rgba(45, 58, 51, 0.96);
}

.blog-article-body p.article-subheading-line {
  margin-top: 0.45rem;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.25vw, 2.2rem);
  line-height: 1.2;
  color: var(--color-deep-sage);
}

.blog-article-body p.article-question-line {
  font-weight: 700;
}

.contact-showcase {
  padding-top: 2.2rem;
}

.contact-showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(320px, 1fr);
  gap: 2.4rem;
  align-items: stretch;
}

.contact-left h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.9rem);
  font-weight: inherit;
  line-height: 0.96;
  margin-bottom: 2rem;
}

.contact-detail-list {
  display: grid;
  gap: 1.3rem;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.contact-detail-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-deep-sage);
  opacity: 0.86;
}

.contact-detail-item h2 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-deep-sage);
}

.contact-detail-item p {
  margin: 0;
  font-size: 1.06rem;
}

.contact-detail-item a {
  color: var(--color-deep-sage);
  text-decoration: none;
}

.contact-divider {
  border: 0;
  border-top: 1px solid rgba(58, 77, 67, 0.55);
  margin: 1.6rem 0;
}

.contact-emergency {
  font-size: 0.98rem;
}

.contact-emergency p {
  margin: 0 0 0.65rem;
}

.contact-emergency ul {
  margin: 0.25rem 0 0;
  padding-left: 1.2rem;
}

.contact-emergency li {
  margin-bottom: 0.25rem;
}

.contact-form-shell {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(58, 77, 67, 0.48);
  border-radius: 2.8rem;
  box-shadow: 0 10px 24px rgba(58, 77, 67, 0.11);
  padding: 2.2rem;
  height: 100%;
  align-self: stretch;
}

.contact-showcase-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-showcase-form label {
  margin: 0;
  font-size: 0.79rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-showcase-form .span-all {
  grid-column: 1 / -1;
}

.contact-showcase-form input,
.contact-showcase-form select,
.contact-showcase-form textarea {
  margin-top: 0.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(58, 77, 67, 0.7);
  background: transparent;
  padding: 0.85rem 1rem;
}

.contact-showcase-form textarea {
  min-height: 220px;
}

.contact-submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(58, 77, 67, 0.13);
  color: var(--color-deep-sage);
  padding: 0.95rem 1.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.careers-showcase {
  padding-top: 2rem;
}

.careers-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.95fr);
  gap: 2.6rem;
  align-items: start;
}

.careers-intro h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.9rem);
  font-weight: inherit;
  line-height: 0.98;
  margin-bottom: 1.8rem;
}

.careers-intro p {
  margin: 0 0 1.05rem;
  max-width: 47ch;
  font-size: 1.02rem;
  line-height: 1.62;
}

.careers-form-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(58, 77, 67, 0.65);
  border-radius: 2.2rem;
  box-shadow: 0 12px 26px rgba(58, 77, 67, 0.12);
  padding: 2rem;
}

.careers-form-shell h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.careers-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.careers-form label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-deep-sage);
}

.careers-form .span-all {
  grid-column: 1 / -1;
}

.careers-form input,
.careers-form select {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(58, 77, 67, 0.72);
  background: transparent;
  color: var(--color-text-body);
  padding: 0.8rem 0.95rem;
  font-size: 1.02rem;
}

.careers-divider {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(58, 77, 67, 0.45);
  margin: 0.25rem 0 0.1rem;
}

.file-upload-label {
  display: grid;
  gap: 0.35rem;
}

.file-drop {
  position: relative;
  margin-top: 0;
  border: 1px dashed rgba(58, 77, 67, 0.72);
  border-radius: 0.92rem;
  min-height: 106px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
  color: rgba(45, 58, 51, 0.88);
  padding: 0.8rem;
  gap: 0.25rem;
}

.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.file-drop span:last-child {
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.careers-submit {
  grid-column: 1 / -1;
  margin-top: 0.65rem;
  border: 0;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(58, 77, 67, 0.14);
  color: var(--color-deep-sage);
  padding: 0.92rem 1.1rem;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.booking-page {
  padding-top: 2.1rem;
}

.booking-wrap {
  max-width: 980px;
}

.booking-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.booking-header h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  margin-bottom: 0.8rem;
}

.booking-header p {
  max-width: 44ch;
  margin: 0 auto;
}

.booking-shell {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(58, 77, 67, 0.24);
  border-radius: 1.2rem;
  padding: 1.45rem;
}

.booking-toggle {
  background: rgba(58, 77, 67, 0.08);
  border-radius: 0.8rem;
  padding: 0.28rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.booking-toggle-btn {
  border: 0;
  background: transparent;
  border-radius: 0.62rem;
  padding: 0.75rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(58, 77, 67, 0.6);
  cursor: pointer;
}

.booking-toggle-btn.active {
  background: linear-gradient(130deg, var(--color-dusty-dark), var(--color-dusty-pink));
  color: #fff;
  box-shadow: 0 4px 12px rgba(195, 142, 135, 0.35);
}

.booking-panel {
  padding: 1.35rem 0 0;
}

.booking-panel h2 {
  margin-bottom: 0.6rem;
}

.booking-intro {
  margin: 0 0 1.1rem;
  max-width: 72ch;
}

.triage-form {
  display: grid;
  gap: 1rem;
}

.triage-grid {
  display: grid;
  gap: 0.85rem;
}

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

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.triage-group {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.68rem;
}

.triage-group legend,
.group-label {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(58, 77, 67, 0.8);
  font-weight: 600;
}

.choice-grid {
  display: grid;
  gap: 0.6rem;
}

.choice-chip {
  border: 1px solid rgba(58, 77, 67, 0.28);
  border-radius: 0.62rem;
  background: transparent;
  min-height: 44px;
  padding: 0.68rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-deep-sage);
  cursor: pointer;
}

.choice-chip.active {
  background: linear-gradient(130deg, var(--color-dusty-dark), var(--color-dusty-pink));
  border-color: var(--color-dusty-dark);
  color: #fff;
}

.upload-caption {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(58, 77, 67, 0.72);
}

.upload-dropzone {
  border: 1px dashed rgba(58, 77, 67, 0.34);
  border-radius: 0.78rem;
  min-height: 96px;
  padding: 1.1rem;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

.upload-dropzone input {
  display: none;
}

.upload-dropzone span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.upload-dropzone small {
  display: block;
  margin-top: 0.32rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(58, 77, 67, 0.58);
}

.safety-card {
  border: 1px solid rgba(58, 77, 67, 0.2);
  border-radius: 0.65rem;
  padding: 0.9rem;
}

.emergency-choices {
  width: min(200px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.safety-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(58, 77, 67, 0.22);
  margin: 0.45rem 0;
}

.safety-card p {
  margin: 0;
}

.safety-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.triage-submit {
  border: 0;
  border-radius: 0.56rem;
  padding: 0.85rem 1rem;
  background: rgba(212, 162, 156, 0.72);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.existing-booking {
  display: grid;
  gap: 1.2rem;
}

.existing-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.step-item {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(58, 77, 67, 0.46);
  font-weight: 600;
}

.step-dot {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(58, 77, 67, 0.26);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
}

.step-item.active {
  color: var(--color-deep-sage);
}

.step-item.active .step-dot {
  border-color: rgba(195, 142, 135, 0.8);
}

.step-item.complete .step-dot {
  border-color: rgba(195, 142, 135, 0.5);
  color: var(--color-dusty-dark);
}

.existing-step-panel {
  display: grid;
  gap: 0.95rem;
}

.existing-step-panel[hidden] {
  display: none !important;
}

.existing-step-panel h2 {
  margin: 0;
}

.existing-service-list {
  display: grid;
  gap: 0.7rem;
}

.existing-service-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: 1px solid rgba(58, 77, 67, 0.24);
  border-radius: 0.7rem;
  background: transparent;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.existing-service-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-deep-sage);
}

.existing-service-card small {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(58, 77, 67, 0.62);
}

.existing-service-card .arrow {
  font-size: 1.5rem;
  color: rgba(58, 77, 67, 0.35);
}

.date-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(135px, 1fr);
  gap: 0.52rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.date-chip,
.time-chip {
  border: 1px solid rgba(58, 77, 67, 0.26);
  background: transparent;
  border-radius: 0.65rem;
  min-height: 42px;
  padding: 0.64rem 0.8rem;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(58, 77, 67, 0.72);
  cursor: pointer;
}

.date-chip.active,
.time-chip.active,
.existing-service-card.active {
  background: linear-gradient(130deg, var(--color-dusty-dark), var(--color-dusty-pink));
  border-color: var(--color-dusty-dark);
  color: #fff;
}

.existing-service-card.active strong,
.existing-service-card.active small,
.existing-service-card.active .arrow {
  color: #fff;
}

.existing-subtitle {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(58, 77, 67, 0.72);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.existing-details-form {
  display: grid;
  gap: 0.72rem;
}

.existing-details-form input,
.existing-details-form textarea {
  border: 1px solid rgba(58, 77, 67, 0.24);
  border-radius: 0.7rem;
  background: transparent;
  padding: 0.78rem 0.9rem;
}

.existing-details-form textarea {
  min-height: 120px;
}

.existing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.existing-back {
  border: 0;
  background: transparent;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(58, 77, 67, 0.56);
  cursor: pointer;
}

.existing-next {
  border: 0;
  border-radius: 999px;
  min-width: 150px;
  padding: 0.8rem 1.1rem;
  background: rgba(58, 77, 67, 0.5);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.existing-next.submit {
  background: rgba(212, 162, 156, 0.82);
}

.existing-note {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: rgba(58, 77, 67, 0.68);
}

.contact-layout,
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
}

.form-card,
.contact-card {
  padding: 1.5rem;
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  font-size: 0.85rem;
  color: var(--color-deep-sage);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.32rem;
  border: 1px solid var(--color-sage-border);
  border-radius: 0.72rem;
  background: #fff;
  padding: 0.74rem 0.84rem;
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  background: var(--color-sage-light);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-deep-sage);
}

.notice {
  border-left: 4px solid var(--color-dusty-pink);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.7rem;
  padding: 0.9rem 1rem;
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(58, 77, 67, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.footer-top {
  padding: 1.8rem 0 1.2rem;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 1.4rem;
  align-items: start;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.footer-col p {
  margin: 0 0 0.42rem;
  color: rgba(58, 77, 67, 0.88);
}

.footer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.site-footer a:hover,
.footer-col a:hover,
.footer-col p a:hover {
  color: var(--color-dusty-pink);
}

.footer-form textarea {
  grid-column: 1 / -1;
  min-height: 100px;
}

.footer-submit {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--color-dusty-dark), var(--color-dusty-pink));
  color: #fff;
  padding: 0.72rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(58, 77, 67, 0.12);
  padding: 0.9rem 0 1.2rem;
}

.footer-note {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(58, 77, 67, 0.8);
}

.footer-note a {
  color: var(--color-dusty-dark);
  font-weight: 700;
}

.fade-up {
  animation: fadeUp 650ms ease both;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 520ms ease;
}

.js-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback {
  margin-top: 0.35rem;
  font-size: 0.76rem;
  color: var(--color-deep-sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.stagger-1 {
  animation: fadeUp 650ms ease both;
  animation-delay: 90ms;
}

.stagger-2 {
  animation: fadeUp 650ms ease both;
  animation-delay: 170ms;
}

.stagger-3 {
  animation: fadeUp 650ms ease both;
  animation-delay: 250ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-48%);
  }

  to {
    transform: translateX(48%);
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.72rem 0;
    gap: 0.6rem;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-toggle {
    order: 2;
    display: inline-flex;
  }

  .site-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.35rem 0;
  }

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

  .site-nav a {
    width: 100%;
    text-align: left;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
  }

  .site-header .button {
    order: 4;
    width: 100%;
    display: none;
  }

  .site-header.nav-open .button {
    display: inline-flex;
  }

  .hero-grid,
  .cards.three,
  .cards.two,
  .services-grid,
  .team-home-grid,
  .about-layout,
  .split,
  .faq-grid,
  .contact-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .blog-sidebar h1 {
    max-width: none;
  }

  .blog-sidebar-intro {
    max-width: none;
    margin-bottom: 1rem;
  }

  .blog-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-topic-list li {
    font-size: 1.16rem;
  }

  .blog-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid var(--color-sage-border);
  }

  .blog-thumb {
    max-width: 280px;
  }

  .blog-row h2 {
    font-size: clamp(1.8rem, 6.2vw, 2.35rem);
  }

  .contact-showcase-grid,
  .contact-showcase-form,
  .careers-grid,
  .careers-form {
    grid-template-columns: 1fr;
  }

  .booking-shell {
    padding: 1rem;
  }

  .two-col,
  .three-col,
  .booking-toggle {
    grid-template-columns: 1fr;
  }

  .existing-steps,
  .time-grid {
    grid-template-columns: 1fr;
  }

  .step-item {
    justify-content: flex-start;
  }

  .existing-next {
    min-width: 132px;
  }

  .contact-left h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    margin-bottom: 1.35rem;
  }

  .contact-form-shell {
    padding: 1.2rem;
    border-radius: 2rem;
  }

  .careers-form-shell {
    padding: 1.25rem;
    border-radius: 1.6rem;
  }

  .careers-intro h1 {
    font-size: clamp(2.55rem, 10.6vw, 3.6rem);
    margin-bottom: 1.1rem;
  }

  .careers-intro p {
    max-width: 100%;
  }

  .file-drop {
    min-height: 94px;
  }

  .blog-article-panel h1,
  .blog-article-panel h2 {
    font-size: clamp(2.05rem, 8vw, 2.75rem);
    padding-bottom: 0.85rem;
    margin-bottom: 0.95rem;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-showcase {
    min-height: auto;
    padding-bottom: 3.2rem;
  }

  .hero-center .lead {
    max-width: 38ch;
    font-size: 1.02rem;
  }

  .about-main p {
    max-width: 100%;
  }

  .about-media {
    min-height: 0;
    height: auto;
  }

  .about-media img {
    height: auto;
    max-height: 360px;
  }

  .footer-top,
  .footer-form {
    grid-template-columns: 1fr;
  }

  /* Override inline footer grid styles used in page templates on mobile. */
  .site-footer .footer-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 1.2rem 0 0.9rem;
  }

  .site-footer .footer-top .footer-col {
    justify-self: stretch !important;
    width: 100%;
  }

  .services-intro {
    min-height: auto;
    padding: 3.8rem 0 1rem;
    margin-bottom: 1.4rem;
  }

  .services-content {
    padding-top: 0;
  }

  .services-stack {
    gap: 1.35rem;
  }

  .service-panel {
    padding: 1.2rem;
    gap: 1.05rem;
  }

  .service-panel h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
  }

  .service-lead {
    font-size: clamp(1.12rem, 4.8vw, 1.34rem);
  }

  .service-subsection {
    padding-top: 1rem;
  }

  .service-subsection h3 {
    font-size: clamp(1.2rem, 5.2vw, 1.46rem);
  }

  .service-metrics {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .assessment-cards {
    grid-template-columns: 1fr;
  }

  .assessment-card-wide {
    grid-column: auto;
  }

  .assessment-fees {
    padding: 1.1rem;
  }

  .fee-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .fee-row dd {
    justify-self: start;
  }

  .fee-total p:first-child {
    font-size: 1.14rem;
  }

  .service-cta-wrap .button {
    width: 100%;
    min-width: 0;
  }

  .service-journey-inner {
    padding-top: 1.8rem;
  }
}
