:root {
  --green: #062f28;
  --green-2: #0c4a3f;
  --mint: #dbeae2;
  --mint-soft: #edf5f0;
  --white: #fbfcf8;
  --soft-white: #f4f7f1;
  --beige: #f8faf4;
  --band-a: var(--soft-white);
  --band-b: var(--beige);
  --wood: #b58963;
  --wood-dark: #7d5b3f;
  --ink: #082a35;
  --muted: rgba(8, 42, 53, 0.64);
  --faint: rgba(8, 42, 53, 0.42);
  --glass: rgba(255, 255, 255, 0.56);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --border: rgba(6, 47, 40, 0.1);
  --shadow: 0 24px 70px rgba(6, 47, 40, 0.1);
  --radius: 8px;
  --section: clamp(76px, 9vw, 128px);
  --content-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--band-a);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

main,
.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 clamp(16px, 4vw, 56px);
  pointer-events: none;
}

.nav-panel {
  width: min(var(--content-max), 100%);
  height: 70px;
  margin: 0 auto;
  padding: 0 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(251, 252, 248, 0.76);
  box-shadow: 0 14px 46px rgba(6, 47, 40, 0.08);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled .nav-panel {
  background: rgba(251, 252, 248, 0.6);
  box-shadow: 0 18px 54px rgba(6, 47, 40, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 144px;
  min-width: 116px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.78rem;
  color: rgba(8, 42, 53, 0.68);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 220ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--wood);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: var(--soft-white);
  color: var(--green);
  box-shadow:
    5px 5px 12px rgba(6, 47, 40, 0.08),
    -5px -5px 12px rgba(255, 255, 255, 0.68),
    inset 1px 1px 0 rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 300;
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--green-2);
  box-shadow:
    6px 6px 14px rgba(6, 47, 40, 0.1),
    -6px -6px 14px rgba(255, 255, 255, 0.7),
    0 0 16px rgba(200, 231, 223, 0.4);
}

.btn i {
  font-size: 1.1rem;
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.76rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(6, 47, 40, 0.1);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    4px 4px 10px rgba(6, 47, 40, 0.08),
    -4px -4px 10px rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.35rem;
}

.mobile-tray,
.menu-backdrop {
  display: none;
}

.section {
  width: min(var(--content-max), calc(100% - 32px));
  margin: 0 auto;
  padding: var(--section) 0;
  scroll-margin-top: 108px;
}

.hero,
.experience-section,
.process-section,
.contact-section {
  background: var(--band-a);
  box-shadow: 0 0 0 100vmax var(--band-a);
  clip-path: inset(0 -100vmax);
}

.service-section,
.team-section,
.faq-section {
  background: var(--band-b);
  box-shadow: 0 0 0 100vmax var(--band-b);
  clip-path: inset(0 -100vmax);
}

.hero {
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  grid-template-areas:
    "copy photo"
    "form .";
  align-items: start;
  align-content: center;
  column-gap: clamp(42px, 6vw, 86px);
  row-gap: clamp(28px, 4vw, 42px);
  padding-top: 160px;
  padding-bottom: 68px;
}

.hero-copy {
  grid-area: copy;
  min-width: 0;
  width: 100%;
  max-width: 540px;
  display: grid;
  gap: 20px;
  align-self: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(6, 47, 40, 0.74);
  font-size: 0.76rem;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(3.15rem, 5vw, 4.75rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.8rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.03rem, 1.35vw, 1.26rem);
  line-height: 1.12;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-lede {
  max-width: 390px;
  margin: 0;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.text-link {
  color: rgba(8, 42, 53, 0.64);
  font-size: 0.9rem;
  transition: color 220ms ease;
}

.text-link:hover {
  color: var(--green);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.appointment-card {
  grid-area: form;
  min-width: 0;
  width: min(100%, 470px);
  max-width: 470px;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 30px);
  align-self: start;
  scroll-margin-top: 128px;
}

.appointment-card h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(8, 42, 53, 0.58);
  font-size: 0.72rem;
}

input,
select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(6, 47, 40, 0.08);
  border-radius: 8px;
  outline: none;
  color: rgba(8, 42, 53, 0.72);
  background-color: rgba(255, 255, 255, 0.58);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input::placeholder {
  color: rgba(8, 42, 53, 0.34);
}

select {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23082a35' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px 16px;
}

select::-ms-expand {
  display: none;
}

input[type="date"] {
  color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.72;
}

input:focus,
select:focus {
  border-color: rgba(181, 137, 99, 0.48);
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(181, 137, 99, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.hero-photo,
.experience-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 36px;
  box-shadow: 0 18px 48px rgba(6, 47, 40, 0.1);
}

.hero-photo {
  grid-area: photo;
  min-width: 0;
  width: min(100%, 600px);
  aspect-ratio: 1.72;
  min-height: 0;
  height: auto;
  background: var(--mint);
  align-self: start;
  justify-self: end;
  margin-top: 0;
}

.hero-photo img,
.experience-media img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
}

.service-section {
  width: min(var(--content-max), calc(100% - 32px));
  padding-top: clamp(52px, 6vw, 88px);
}

.service-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 28px;
  margin-bottom: clamp(42px, 5vw, 64px);
}

.service-header h2 {
  max-width: 660px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.service-header p {
  max-width: 620px;
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.service-cta {
  min-width: 190px;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.7);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.service-card {
  position: relative;
  min-height: clamp(205px, 19vw, 238px);
  padding: clamp(26px, 3vw, 38px);
  display: grid;
  grid-template-rows: 58px 48px minmax(58px, 1fr);
  align-content: stretch;
  gap: 20px;
  overflow: hidden;
  border: 0;
  background: rgba(211, 234, 228, 0.58);
  box-shadow:
    0 24px 62px rgba(6, 47, 40, 0.09),
    inset -1px -1px 0 rgba(6, 47, 40, 0.04);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.service-card::before {
  content: "\e9cc";
  position: absolute;
  top: -18px;
  right: 22px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.24);
  font-family: "Phosphor-Light";
  font-size: clamp(7rem, 12vw, 10rem);
  line-height: 1;
  transform: rotate(-12deg);
  pointer-events: none;
}

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

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(221, 241, 236, 0.7);
  box-shadow:
    0 26px 68px rgba(6, 47, 40, 0.12),
    0 0 30px rgba(200, 231, 223, 0.46);
}

.service-card img {
  display: none;
}

.icon-bubble {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.icon-bubble i {
  font-size: 1.4rem;
}

.service-card h3 {
  align-self: end;
}

.service-card p {
  margin: 0;
  max-width: 280px;
  color: rgba(8, 42, 53, 0.62);
  font-size: 0.95rem;
  line-height: 1.45;
  align-self: start;
}

.team-card p,
.process-item p,
.faq-item p,
.contact-panel p,
.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
}

.experience-section {
  width: min(var(--content-max), calc(100% - 32px));
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.experience-media {
  aspect-ratio: 1.75;
  background: var(--mint);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 20px rgba(6, 47, 40, 0.14);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 0 18px rgba(200, 231, 223, 0.44);
}

.play-button i {
  font-size: 1.5rem;
  margin-left: 3px;
}

.experience-copy {
  display: grid;
  gap: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-row div {
  display: grid;
  place-items: center;
  gap: 0;
  min-height: 76px;
  padding: 0 18px;
  text-align: center;
}

.stat-row div + div {
  border-left: 1px solid rgba(6, 47, 40, 0.1);
}

.stat-row strong {
  color: var(--green);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 0.98;
}

.stat-row span {
  color: var(--faint);
  font-size: 0.76rem;
  line-height: 1;
}

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

.team-card {
  min-height: 260px;
  padding: 28px 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow:
    9px 9px 20px rgba(6, 47, 40, 0.14),
    -9px -9px 20px rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
}

.team-card h3 {
  margin-top: 4px;
}

.team-card p {
  max-width: 230px;
}

.process-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.process-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(6, 47, 40, 0.12);
}

.process-item:last-child {
  border-bottom: 1px solid rgba(6, 47, 40, 0.12);
}

.process-item span {
  color: var(--wood-dark);
  font-size: 0.9rem;
}

.process-item p {
  margin-top: 8px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--wood-dark);
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 0 20px;
}

.contact-section {
  padding-bottom: clamp(58px, 7vw, 96px);
}

.contact-panel {
  min-height: 280px;
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow:
    18px 18px 44px rgba(6, 47, 40, 0.18),
    -12px -12px 28px rgba(255, 255, 255, 0.72);
}

.contact-panel > div {
  display: grid;
  gap: 18px;
  align-content: center;
  max-width: 650px;
}

.contact-panel h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.contact-panel .eyebrow {
  margin-bottom: 0;
  color: var(--white);
  opacity: 0.74;
}

.contact-panel p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.72;
}

.contact-panel .btn {
  width: auto;
  min-height: 56px;
  height: auto;
  align-self: center;
  background: rgba(244, 247, 241, 0.78);
  color: var(--green);
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow:
    5px 5px 14px rgba(1, 18, 15, 0.14),
    -5px -5px 14px rgba(255, 255, 255, 0.06),
    inset 1px 1px 0 rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.contact-panel .btn:hover {
  box-shadow:
    6px 6px 16px rgba(1, 18, 15, 0.16),
    -5px -5px 14px rgba(255, 255, 255, 0.08),
    0 0 16px rgba(200, 231, 223, 0.32);
}

.site-footer {
  width: min(var(--content-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(6, 47, 40, 0.12);
}

.footer-brand img {
  width: 146px;
  margin-bottom: 14px;
}

address {
  justify-self: end;
  color: rgba(8, 42, 53, 0.58);
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: right;
}

.load-in {
  opacity: 0;
  transform: translateY(22px);
}

body.is-loaded .load-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(26px);
  transition:
    opacity 780ms ease,
    filter 780ms ease,
    transform 780ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    padding: 0 14px;
  }

  .nav-panel {
    height: 64px;
    padding-left: 16px;
  }

  .brand {
    width: 134px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(6, 47, 40, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
    backdrop-filter: blur(2px);
  }

  .mobile-tray {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(420px, 86vw);
    height: 100dvh;
    padding: 22px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(244, 247, 241, 0.82);
    box-shadow: -24px 0 80px rgba(6, 47, 40, 0.18);
    backdrop-filter: blur(24px);
    transform: translateX(106%);
    transition: transform 440ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  body.menu-open .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .mobile-tray {
    transform: translateX(0);
  }

  .tray-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .tray-top img {
    width: 158px;
  }

  .tray-links {
    display: grid;
    align-content: start;
    gap: 2px;
    padding-top: 12px;
    overflow-y: auto;
  }

  .tray-links a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(6, 47, 40, 0.1);
    color: var(--green);
    font-size: clamp(1.1rem, 4.8vw, 1.45rem);
    line-height: 1.12;
  }

  .tray-cta {
    width: 100%;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "photo"
      "form";
    min-height: auto;
    padding-top: 150px;
  }

  .hero-photo {
    grid-column: auto;
    width: 100%;
    aspect-ratio: 1.48;
    min-height: 0;
    height: auto;
    margin-top: 0;
    justify-self: stretch;
  }

  .experience-layout,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    justify-items: center;
    text-align: center;
  }

  .contact-panel > div {
    justify-items: center;
  }

  .contact-panel p:not(.eyebrow) {
    margin-inline: auto;
  }

  .contact-panel .btn {
    justify-self: center;
  }

  .service-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-cta {
    justify-self: start;
  }

  .contact-panel .btn {
    min-height: 58px;
    height: auto;
    border-radius: 999px;
  }

  .site-footer,
  address {
    text-align: left;
  }

  address {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --section: 68px;
  }

  .site-header {
    left: 14px;
    right: 14px;
    padding: 0;
  }

  .nav-panel {
    width: 100%;
    padding: 0 12px 0 14px;
    gap: 12px;
  }

  .brand {
    width: 128px;
    min-width: 0;
  }

  .menu-toggle {
    flex: 0 0 44px;
  }

  .section {
    width: auto;
    margin-left: 14px;
    margin-right: 14px;
  }

  .service-section,
  .experience-section,
  .site-footer {
    width: auto;
    margin-left: 14px;
    margin-right: 14px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.25rem);
  }

  h2 {
    font-size: clamp(2.05rem, 12vw, 3.4rem);
  }

  .hero-actions {
    align-items: stretch;
    justify-content: center;
    text-align: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .text-link {
    margin-inline: auto;
  }

  .hero-copy,
  .hero-lede,
  .hero-photo,
  .appointment-card {
    max-width: 100%;
  }

  .appointment-card {
    padding: 18px;
  }

  .form-row,
  .service-grid,
  .team-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat-row div + div {
    border-left: 0;
    border-top: 1px solid rgba(6, 47, 40, 0.1);
  }

  .service-card {
    min-height: 222px;
  }

  .service-header h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .service-cta {
    width: 100%;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-panel .btn {
    width: min(100%, 280px);
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .load-in,
  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
