:root {
  --bg: #f0ebe3;
  --bg-alt: #e8e2d8;
  --ink: #1a242c;
  --muted: #6b7580;
  --accent: #2a5f6e;
  --accent-dark: #1e4a56;
  --rope: #9a7b4f;
  --foam: #c5d4d8;
  --white: #faf9f7;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: system-ui, "Segoe UI", Roboto, sans-serif;
  --max: 72rem;
  --radius: 4px;
  --shadow: 0 2px 12px rgba(26, 36, 44, 0.08);
}

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

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(165deg, var(--bg) 0%, #ebe4da 45%, var(--foam) 100%);
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 0.5rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.5rem 0 1rem; }
h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }

p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }

.site-header {
  background: rgba(250, 249, 247, 0.92);
  border-bottom: 1px solid var(--foam);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
  border-radius: var(--radius);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--rope);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--foam);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav.is-open { max-height: 20rem; }
  .site-nav ul { flex-direction: column; padding: 1rem 1.5rem; }
}

main { max-width: var(--max); margin: 0 auto; padding: 2rem 1.5rem 4rem; }

.hero {
  text-align: center;
  padding: 3rem 1rem 4rem;
  border-bottom: 1px solid var(--foam);
  margin-bottom: 2rem;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--accent);
  font-style: italic;
  margin: 0.5rem 0 1.5rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

.lede { font-size: 1.125rem; color: var(--muted); max-width: 40rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--white);
  border: 1px solid var(--foam);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 { margin-top: 0; color: var(--accent); }

.rate { font-weight: 600; color: var(--rope); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

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

th { background: var(--foam); font-weight: 600; }

.hours-list { list-style: none; padding: 0; margin: 1rem 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--foam);
}

.faq-list { margin: 2rem 0; }

.faq-item {
  border: 1px solid var(--foam);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 0.6rem; height: 2px; }
.faq-icon::after { width: 2px; height: 0.6rem; transition: transform 0.2s; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-answer { max-height: 30rem; }

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.contact-form {
  max-width: 32rem;
  margin: 2rem 0;
}

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  border: 1px solid var(--foam);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

textarea { min-height: 8rem; resize: vertical; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
}
.btn:hover { background: var(--accent-dark); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }

.info-block {
  background: var(--white);
  border-left: 4px solid var(--rope);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.notice-18 {
  background: var(--foam);
  border: 1px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
}

.site-footer {
  background: var(--ink);
  color: var(--foam);
  padding: 2.5rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2rem;
}

.site-footer a { color: var(--foam); }
.site-footer a:hover { color: var(--white); }

.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0.5rem; }

.footer-operator, .footer-copy {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.footer-rg {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 212, 216, 0.2);
  grid-column: 1 / -1;
}

.page-404 { text-align: center; padding: 4rem 1rem; }
.page-404 h1 { font-size: 4rem; color: var(--accent); }

.legal-content h2 { font-size: 1.35rem; }
.legal-content ul { padding-left: 1.5rem; }

.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;
}
