:root {
  --paper: #f5f1e7;
  --ink: #1f2b2f;
  --teal: #1f6f73;
  --teal-strong: #16575a;
  --sand: #e7dfcf;
  --focus: #0a3f8a;
  --card: #fffdf7;
  --border: #cfc2a7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lora", "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #fff8eb 0%, #f5f1e7 45%, #eaddc2 100%),
    repeating-linear-gradient(135deg, rgb(255 255 255 / 0.2) 0 8px, rgb(255 255 255 / 0) 8px 16px);
  min-height: 100vh;
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  padding: 0.5rem 0.75rem;
  background: var(--focus);
  color: #fff;
  border-radius: 0.3rem;
  text-decoration: none;
}

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

.site-header,
.content,
.site-footer {
  width: min(68rem, 92vw);
  margin-inline: auto;
}

.site-header {
  padding-top: 2.5rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--teal-strong);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  margin: 0.4rem 0;
  line-height: 1.15;
}

.subheading {
  font-size: 1.2rem;
  margin: 0;
}

.intro {
  max-width: 46rem;
  margin: 1rem auto 0;
}

.content {
  padding: 2rem 0 2.5rem;
  display: grid;
  gap: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: #fff;
}

.button.secondary {
  background: var(--sand);
  color: #3d3324;
  border-color: var(--border);
}

.booking-embed {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--sand);
  border: 1px solid var(--border);
}

.embed-label {
  margin: 0;
  font-weight: 700;
  color: #3d3324;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.85;
  pointer-events: none;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.07);
}

h2 {
  margin-top: 0;
}

.locations {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.locations h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

address {
  font-style: normal;
}

.text-link {
  color: var(--teal-strong);
  font-weight: 700;
}

.small-note {
  font-size: 0.93rem;
  color: #4f5b5e;
}

.site-footer {
  padding-bottom: 2rem;
}

.button:focus-visible,
.text-link:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

@media (min-width: 860px) {
  .content {
    grid-template-columns: 1fr 1fr;
  }

  .actions {
    grid-column: 1 / -1;
  }
}
