:root {
  --bg: #faf7f2;
  --text: #2a2622;
  --muted: #6b6459;
  --card-bg: #ffffff;
  --border: #e6ddd0;
  --accent: #8fe058;      /* real brand green, extracted from the Washington Blvd sign photo */
  --accent-text: #4f7a30; /* darker shade of the same green, for readable text/links (contrast) */
  --dark: #0a0a0f;        /* awning stripe black, from the sign photo */
  --accent-contrast: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, "Segoe UI", Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
}

.wordmark img {
  height: 34px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  margin-left: 1.5rem;
  color: var(--text);
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--accent);
}

/* ---- Hero crossfade ---- */
.hero {
  position: relative;
  height: min(72vh, 640px);
  min-height: 380px;
  overflow: hidden;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-crossfade 15s infinite;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes hero-crossfade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  29%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-caption {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0;
  animation: caption-fade 15s infinite;
}

.hero-caption span.addr {
  display: block;
  font-weight: 400;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.15rem;
}

.hero-caption:nth-of-type(1) { animation-delay: 0s; }
.hero-caption:nth-of-type(2) { animation-delay: 5s; }
.hero-caption:nth-of-type(3) { animation-delay: 10s; }

@keyframes caption-fade {
  0%   { opacity: 0; transform: translateY(6px); }
  8%   { opacity: 1; transform: translateY(0); }
  29%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-captions { position: relative; height: 3.2rem; }
.hero-captions .hero-caption { position: absolute; left: 0; bottom: 0; }

/* ---- Location grid ---- */
.locations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.locations h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.25rem 1.35rem;
}

.location-card.pending { opacity: 0.72; }

.location-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.location-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.15rem 0;
}

.location-card .status-note {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-text);
}

.location-card a.tel {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--accent-text);
  text-decoration: none;
}

/* ---- Contact page ---- */
.contact-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.contact-main h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-main p.lead {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-block h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.contact-block a.big {
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-block;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.social-links a:hover { border-color: var(--accent); }

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}
