:root{
  --brand:#f7931e;
  --brand-dark:#ea580c;
  --brand-soft:#fff3e6;
  --ink:#222;
  --muted:#6b7280;
  --line:#ead7c2;
  --bg:#ffffff;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  margin:-24px -24px 18px;
  border-bottom:1px solid #eee3d6;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
}

.header-main{
  max-width:1100px;
  margin:auto;
  padding:14px 24px;
  min-height:88px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.header-col{
  min-width:0;
}

.header-col-left{
  flex:1 1 0;
  min-width:0;
  display:flex;
  justify-content:flex-start;
  z-index:1;
}

.header-col-center{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:0;
  pointer-events:none;
}

.header-col-center .header-brand-logo{
  pointer-events:auto;
}

.header-col-right{
  flex:1 1 0;
  min-width:0;
  display:flex;
  justify-content:flex-end;
  z-index:1;
}

.header-brand{
  display:flex;
  align-items:center;
  gap:20px;
  min-width:0;
}

.header-brand-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.header-brand-logo img{
  display:block;
  height:42px;
  width:auto;
}

.header-brand-text{
  min-width:0;
}

.header-brand-title{
  margin:0;
  font-size:15px;
  font-weight:900;
  color:#111827;
  line-height:1.4;
}

.header-brand-sub{
  margin-top:4px;
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.header-contact{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1.3;
}

.header-tel{
  color:var(--brand-dark);
  font-size:18px;
  font-weight:900;
  letter-spacing:.02em;
  text-decoration:none;
  white-space:nowrap;
}

.header-hours{
  margin-top:3px;
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
}

.header-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:2px solid var(--brand);
  box-sizing:border-box;
  white-space:nowrap;
}

.header-btn-primary{
  color:#111;
  background:linear-gradient(#ffd9a8,#ffc36d);
}

.header-btn-secondary{
  color:#111827;
  background:#fff7ed;
  border-color:#f1c08a;
}

.header-btn:hover{
  filter:brightness(.98);
}

.gnav-wrap{
  background:#fbf7f2;
  border-top:1px solid #f2e8dc;
}

.gnav{
  max-width:1100px;
  margin:auto;
  padding:0 24px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 20px;
  align-items:center;
  min-height:54px;
}

.gnav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:54px;
  text-decoration:none;
  color:#374151;
  font-size:14px;
  font-weight:700;
}

.gnav a:hover{
  color:#111827;
}

.gnav a.is-active{
  color:#111827;
}

.gnav a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:4px;
  border-radius:999px;
  background:var(--brand);
}

.site-footer{
  margin-top:24px;
  background:#fbf7f2;
  border-top:1px solid #eadfce;
  padding:28px 24px 18px;
}

.footer-inner{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:24px;
}

.footer-company{
  min-width:0;
}

.footer-logo{
  display:block;
  margin-bottom:10px;
}

.footer-logo img{
  display:block;
  height:40px;
  width:auto;
}

.footer-text{
  color:#374151;
  font-size:13px;
  line-height:1.8;
}

.footer-text strong{
  color:#111827;
}

.footer-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 18px;
  align-content:start;
}

.footer-links a{
  text-decoration:none;
  color:#374151;
  font-size:13px;
  font-weight:700;
}

.footer-links a:hover{
  text-decoration:underline;
}

.footer-copy{
  max-width:1100px;
  margin:16px auto 0;
  padding-top:14px;
  border-top:1px solid #eadfce;
  font-size:12px;
  color:#6b7280;
}

@media (max-width:1100px){
  .header-main{
    min-height:0;
    position:static;
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .header-col-left,
  .header-col-center,
  .header-col-right{
    position:static;
    transform:none;
    justify-content:center;
    flex:none;
    z-index:auto;
    pointer-events:auto;
  }

  .header-brand-text{
    text-align:center;
  }

  .header-actions{
    justify-content:center;
  }

  .header-contact{
    align-items:center;
  }
}

@media (max-width:800px){
  .header-main{
    min-height:0;
    position:static;
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
  }

  .header-col-left,
  .header-col-center,
  .header-col-right{
    position:static;
    transform:none;
    justify-content:center;
    flex:none;
    z-index:auto;
    pointer-events:auto;
  }

  .header-brand-text{
    text-align:center;
  }

  .header-actions{
    justify-content:center;
  }

  .header-contact{
    align-items:center;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .site-header{
    position:static;
    margin:-24px -24px 14px;
  }

  .header-main{
    padding:12px 16px;
  }

  .header-brand{
    gap:12px;
  }

  .header-brand-sub{
    display:none;
  }

  .header-brand-logo img{
    height:38px;
  }

  .header-brand-title{
    font-size:13px;
  }

  .header-col-right{
    width:100%;
  }

  .header-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    width:100%;
    align-items:stretch;
    justify-content:stretch;
  }

  .header-contact{
    grid-column:1 / -1;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    line-height:1.3;
  }

  .header-tel{
    font-size:20px;
  }

  .header-hours{
    font-size:11px;
    white-space:normal;
  }

  .header-btn{
    width:100%;
    min-height:40px;
    padding:0 10px;
    font-size:13px;
    border-radius:999px;
  }

  .header-btn-secondary{
    background:#fff;
    color:#555;
    border:1px solid #ccc;
  }

  .gnav{
    padding:0 16px;
    gap:0 16px;
  }

  .gnav a{
    min-height:48px;
    font-size:13px;
  }

  .site-footer{
    padding:24px 16px 16px;
  }

  .footer-links{
    grid-template-columns:1fr;
  }

  .footer-logo img{
    height:34px;
  }
}

body.page-map .site-header{
  position:static !important;
  top:auto !important;
}