/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #212121;
  background: #ffffff;
}
img { max-width: 100%; display: block; }
a { color: #2E7D32; text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

:root {
  --yellow: #FFD43B;
  --yellow-dark: #F4B400;
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --text: #212121;
  --muted: #5f6368;
  --bg-alt: #F7F7F2;
  --border: #E5E5E0;
  --max-width: 1100px;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand-logo { width: 36px; height: 36px; }
.brand-name { letter-spacing: 0.5px; }

.site-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav-list a:hover {
  text-decoration: none;
  border-color: var(--green);
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: 0;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  color: var(--muted);
  transition: background .15s ease, color .15s ease;
}
.lang-btn[aria-pressed="true"] {
  background: var(--green);
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(180deg, rgba(255, 212, 59, 0.18), rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 80% 0%, rgba(46, 125, 50, 0.10), transparent 50%);
  padding: 4rem 0 4.5rem;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 1rem 0 0.5rem;
  line-height: 1.15;
  color: var(--green-dark);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bdbdbd;
}
.open-status.is-open .dot {
  background: #2E7D32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.18);
}
.open-status.is-open { color: var(--green-dark); }
.open-status.is-closed .dot { background: #c62828; }
.open-status.is-closed { color: #c62828; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow); }
.btn-secondary {
  background: #fff;
  color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover { background: var(--green); color: #fff; }

/* ===== Sections ===== */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
  color: var(--green-dark);
}
.section .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.service-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--green-dark);
}
.service-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ===== Hours ===== */
.hours-table {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 520px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row.is-today {
  background: rgba(255, 212, 59, 0.18);
  font-weight: 700;
}
.hours-row span:first-child { color: var(--text); }

/* ===== Location ===== */
.address {
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

/* ===== Contact ===== */
.contact-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
}
.contact-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-weight: 600;
}
.contact-list a {
  font-size: 1.05rem;
  font-weight: 500;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.site-footer p { margin: 0.25rem 0; }
.footer-tagline { font-size: 0.9rem; opacity: 0.85; }

/* ===== Focus visible ===== */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Responsive ===== */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 5rem 0; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-list li:last-child a { border-bottom: 0; }
}
