:root {
  --paper: #f4f8f7;
  --paper-cool: #eaf3f2;
  --surface: #ffffff;
  --ink: #16343c;
  --ink-soft: #4a666c;
  --line: #d3e3e0;
  --accent: #1f8a7e;
  --accent-hover: #176e64;
  --accent-soft: #e3f3f0;
  --success: #2a7a62;
  --error: #c04545;
  --shadow: 0 12px 32px rgba(22, 52, 60, 0.07);
  --serif: "Source Sans 3", "Segoe UI", sans-serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --wrap: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--surface);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-intro {
  max-width: 36rem;
  margin-bottom: 2.4rem;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 248, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.6rem;
  padding: 0.35rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  min-width: 0;
}

.logo:hover {
  color: var(--ink);
}

.logo-mark-img {
  display: block;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(22, 52, 60, 0.08);
}

.logo-text {
  font-family: var(--sans);
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

.nav a:not(.nav-cta) {
  white-space: nowrap;
}

.hero {
  padding: 5.5rem 0 5rem;
  background: linear-gradient(180deg, var(--paper-cool) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-inner {
  max-width: 42rem;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--accent-soft);
}

.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.services,
.how,
.why,
.hours,
.visit,
.inquire {
  padding: 5rem 0;
}

.services {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.service-grid,
.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.card,
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem 1.7rem;
  box-shadow: var(--shadow);
}

.services .card {
  background: var(--paper);
  padding: 0;
  overflow: hidden;
}

.card-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--accent-soft);
}

.card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.card-body h3 {
  margin-top: 0;
}

.why .card {
  background: var(--surface);
}

.card p,
.step p {
  color: var(--ink-soft);
}

.how {
  border-bottom: 1px solid var(--line);
}

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

.step {
  background: var(--surface);
}

.step-num {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.why {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hours {
  background: var(--paper-cool);
  border-bottom: 1px solid var(--line);
}

.hours-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

th,
td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  background: var(--accent-soft);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tr.is-today th,
tr.is-today td {
  color: var(--accent);
  background: #ffffff;
}

.visit {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.visit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.visit-list {
  margin: 0;
  display: grid;
  gap: 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}

.visit-list dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.visit-list dd {
  margin: 0;
}

.inquire {
  background: var(--paper);
}

.inquire-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.inquire-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.inquiry-form,
.form-success {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  border-radius: 4px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form-row textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.form-error {
  margin: 0 0 0.85rem;
  color: var(--error);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-success h2 {
  color: var(--success);
}

.success-kicker {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--success);
}

.site-footer {
  background: #102830;
  color: #e8f2f0;
  padding: 2.4rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(232, 242, 240, 0.16);
}

.footer-name {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-tag,
.footer-legal {
  color: #a8c0bc;
  font-size: 0.92rem;
}

.footer-contact p {
  margin-bottom: 0.3rem;
}

.site-footer a {
  color: #d7eeea;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-legal {
  padding-top: 1.1rem;
}

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

@media (max-width: 860px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero-grid,
  .service-grid,
  .why-grid,
  .steps,
  .hours-inner,
  .visit-inner,
  .inquire-inner,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .hero {
    padding: 3.6rem 0 3.4rem;
  }

  .hero-photo {
    margin-top: 0.25rem;
  }

  .services,
  .how,
  .why,
  .hours,
  .visit,
  .inquire {
    padding: 3.4rem 0;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 1.6rem));
  }

  .logo-mark-img {
    width: 2.15rem;
    height: 2.15rem;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .header-inner {
    min-height: 4.1rem;
    gap: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
