:root {
  color-scheme: light;
  --ink: #172121;
  --muted: #5d6968;
  --paper: #f7f8f5;
  --white: #ffffff;
  --teal: #0f3d3e;
  --teal-soft: #dcefed;
  --coral: #d35f4d;
  --citrus: #f2c14e;
  --line: #d9dfda;
  --shadow: 0 18px 50px rgba(23, 33, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(23, 33, 33, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: var(--teal-soft);
}

.icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.icon-button svg,
.button svg,
.contact-panel svg,
.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 61, 62, 0.9), rgba(15, 61, 62, 0.48) 48%, rgba(23, 33, 33, 0.16)),
    linear-gradient(0deg, rgba(23, 33, 33, 0.5), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 86px;
}

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

.eyebrow.dark {
  color: var(--coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--citrus);
  color: #151a18;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-section,
.services-section,
.appointment-section,
.location-section {
  padding: clamp(58px, 8vw, 104px) 0;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.facts span {
  min-height: 94px;
  border-left: 4px solid var(--coral);
  background: var(--paper);
  padding: 14px;
}

.facts strong {
  display: block;
  color: var(--teal);
  font-size: 1.35rem;
  line-height: 1.1;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 33, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p {
  color: var(--muted);
}

.service-card span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 850;
}

.service-card.accent {
  border-color: rgba(211, 95, 77, 0.42);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1fr);
  background: var(--white);
}

.split-image {
  min-height: 560px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  align-self: center;
  max-width: 660px;
  padding: clamp(48px, 8vw, 96px);
}

.split-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.check-list svg {
  color: var(--coral);
}

.appointment-section {
  background: linear-gradient(135deg, var(--teal-soft), var(--white) 58%);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.muted {
  color: var(--muted);
  font-size: 1.06rem;
}

.availability {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  width: min(360px, 100%);
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.availability span {
  color: var(--muted);
}

.appointment-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow);
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c8d1cc;
  border-radius: 8px;
  background: #fbfcfa;
  padding: 12px 13px;
  color: var(--ink);
}

.appointment-form input:focus,
.appointment-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 61, 62, 0.14);
}

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

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

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

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
}

.contact-panel {
  display: grid;
  gap: 14px;
  border-left: 4px solid var(--citrus);
  background: var(--teal);
  color: var(--white);
  padding: 26px;
}

.contact-panel a,
.contact-panel span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .icon-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 10px;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
    padding: 13px 14px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 61, 62, 0.65), rgba(15, 61, 62, 0.88)),
      linear-gradient(0deg, rgba(23, 33, 33, 0.48), transparent 48%);
  }

  .intro-grid,
  .appointment-grid,
  .location-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 380px;
  }

  .split-copy {
    padding: 44px 18px 58px;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 14px 14px;
  }

  .brand small {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .facts,
  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

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