:root {
  --cream: #ede5d8;
  --paper: #fffaf4;
  --ink: #241c18;
  --muted: #6b5c54;
  --rose: #9c4d56;
  --rose-dark: #7e3b43;
  --sage: #4f5d4c;
  --line: #e4d6c8;
  --shadow: 0 16px 40px rgba(36, 28, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(156, 77, 86, 0.08), transparent 28rem),
    radial-gradient(circle at top right, rgba(79, 93, 76, 0.08), transparent 24rem),
    var(--cream);
  font-family: Karla, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: var(--paper);
  padding: 0.5rem 0.75rem;
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  font-size: 0.95rem;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--rose);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

nav a {
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 1.5rem 0 3.5rem;
  text-align: center;
}

.logo-band {
  display: flex;
  justify-content: center;
  width: 100%;
  background: #fff;
}

.logo {
  width: 220px;
  height: auto;
  margin: 0;
}

.hero .wrap {
  padding-top: 0.5rem;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rose);
}

h1,
h2,
.quote {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
}

h1 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
}

.lede {
  margin: 0 auto 1.5rem;
  max-width: 38rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--rose-dark);
}

.btn-secondary {
  background: var(--paper);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--ink);
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

section {
  padding: 1.25rem 0 3rem;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

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

.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.quote,
.visit-card {
  padding: 1.4rem;
}

.card h3,
.visit-card h3 {
  margin: 0 0 0.4rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
}

.card p,
.visit-card p,
.quote p {
  margin: 0;
  color: var(--muted);
}

.split {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td {
  padding: 0.45rem 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.hours th {
  font-weight: 600;
}

.hours td {
  text-align: right;
  color: var(--muted);
}

.map {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 1rem;
  background: #e8e0d4;
}

.quotes {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.quote p {
  font-size: 1.15rem;
  color: var(--ink);
}

.quote cite {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.95rem;
}

.note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.phone-line {
  margin: 0.85rem 0 1rem;
}

.phone-line a {
  color: var(--rose);
  font-weight: 700;
  text-decoration: none;
}

.kicker {
  margin: 0 0 1rem;
}

footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  text-align: center;
}

footer p {
  margin: 0.25rem 0;
}

.mobile-call {
  display: none;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }

  .topbar {
    justify-content: center;
  }

  body {
    padding-bottom: 5.5rem;
  }

  .mobile-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: block;
    padding: 0.75rem 1rem 1rem;
    background: linear-gradient(transparent, var(--cream) 28%);
  }

  .mobile-call .btn {
    width: 100%;
  }
}
