:root {
  --bg: #fffdf6;
  --bg-alt: #fff6e6;
  --card: #ffffff;
  --ink: #252525;
  --muted: #5f5f5f;
  --accent: #ff9f1a;
  --accent-strong: #f47c00;
  --accent-soft: #ffd07a;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "Segoe UI", "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #fff3d2 0%, rgba(255, 243, 210, 0) 45%),
    radial-gradient(circle at bottom left, #ffe9c2 0%, rgba(255, 233, 194, 0) 50%),
    var(--bg);
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 159, 26, 0.4);
  outline-offset: 3px;
  border-radius: 8px;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  z-index: 10;
  background: rgba(255, 253, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 12px;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 260px;
}

.brand-mark {
  width: min(220px, 60vw);
  height: auto;
  max-height: 80px;
}

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

.nav {
  display: flex;
  gap: 18px;
  font-weight: 500;
  color: var(--muted);
  flex: 1 1 220px;
  justify-content: flex-end;
}

.nav a {
  padding: 6px 2px;
}

.hero {
  padding: 72px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a3a00;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  margin: 0 0 12px;
  line-height: 1.1;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 14px;
}

.notice {
  background: #fff1d3;
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 12px;
  color: #5a3a00;
  margin-bottom: 24px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(244, 124, 0, 0.25);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--accent-strong);
  border: 2px solid rgba(244, 124, 0, 0.2);
  box-shadow: none;
}

.btn-outline:hover {
  background: #fff3d7;
  color: #5a3a00;
  border-color: rgba(244, 124, 0, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-strong);
  border: 2px dashed rgba(244, 124, 0, 0.3);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #fff6e6;
  color: #5a3a00;
  border-color: rgba(244, 124, 0, 0.6);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-card-inner h2 {
  margin-top: 0;
}

.quick-info {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.quick-info h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.visit-grid {
  display: grid;
  gap: 26px;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.visit-card,
.hours-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit-card .lead {
  font-size: 1.1rem;
  margin-top: 0;
}

.address {
  font-weight: 600;
  margin-bottom: 16px;
}

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

.hours-card th,
.hours-card td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-card th {
  color: var(--muted);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

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

.site-footer {
  padding: 28px 0 40px;
  background: #fff2d2;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #5a3a00;
}

.copyright {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
