.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h-mobile);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 36px; height: 36px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  border-radius: 50%;
  padding: 6px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.05;
}
.brand-name em { font-style: italic; }
.brand-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 2px;
}
.nav-desktop { display: none; }
.header-cta { display: none !important; }
.open-now {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.open-now__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2d8c4a;
  box-shadow: 0 0 0 4px color-mix(in srgb, #2d8c4a 22%, transparent);
}
.open-now.is-closed .open-now__dot { background: #b85a2c; box-shadow: 0 0 0 4px color-mix(in srgb, #b85a2c 22%, transparent); }

@media (min-width: 900px) {
  .site-header { height: var(--header-h); }
  .site-header__inner { padding: 0 40px; }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .nav-desktop a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 6px 0;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  .nav-desktop a:hover::after { transform: scaleX(1); }
  .header-cta { display: inline-flex !important; }
  .open-now { display: inline-flex; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 1.15rem; }
}

.burger {
  position: fixed;
  top: calc((var(--header-h-mobile) - 44px) / 2);
  right: 14px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}
.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease, top .35s ease;
  position: relative;
}
.burger span::before { position: absolute; top: -7px; left: 0; }
.burger span::after { position: absolute; top: 7px; left: 0; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }
@media (min-width: 900px) { .burger { display: none; } }

.menu-mobile {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg);
  z-index: var(--z-menu);
  padding: calc(var(--header-h-mobile) + 22px) 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s ease, opacity .35s ease, visibility 0s linear .35s;
}
.menu-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .35s ease, opacity .35s ease;
}
.menu-mobile a {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.menu-mobile a:last-of-type { border-bottom: 0; }
.menu-mobile .btn {
  margin-top: 16px;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  border: 0;
  text-align: center;
  border-bottom: 0;
}
.menu-mobile .btn--primary { background: var(--accent); color: #fff !important; }
.menu-mobile .btn--wa { background: var(--wa-green) !important; color: #fff !important; border-color: var(--wa-green) !important; }
@media (min-width: 900px) { .menu-mobile { display: none; } }

main { padding-top: var(--header-h-mobile); }
@media (min-width: 900px) { main { padding-top: var(--header-h); } }

.site-footer {
  background: var(--surface-deep);
  color: #DCE7DE;
  margin-top: 0;
  padding: 56px 0 28px;
}
.site-footer :where(h1,h2,h3,h4,p,li,span,a,strong,small) { color: inherit; }
.site-footer h4 {
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.site-footer a:hover { color: var(--accent-on-dark); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
}
.footer-brand .brand-mark { background: color-mix(in srgb, var(--accent-on-dark) 20%, transparent); color: var(--accent-on-dark); }
.footer-brand .brand-name { font-size: 1.1rem; color: #fff; }
.footer-tagline { font-size: 0.92rem; color: #B8C8BB; margin-top: 4px; max-width: 32ch; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li { font-size: 0.92rem; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, #fff 12%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 0.82rem;
  color: #B8C8BB;
}
.footer-bottom a { text-decoration: underline; text-decoration-color: color-mix(in srgb, #fff 24%, transparent); text-underline-offset: 3px; }
