:root{
  --bg:#ffffff;
  --fg:#0b0b0b;
  --muted:#666666;
  --line:#e9e9e9;
  --red:#c00000;
  --green:#1f7a1f;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:18px;
  --max:1120px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:Georgia,"Times New Roman",serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

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

button{
  font:inherit;
  cursor:pointer;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
}

.brand img{
  width:52px;
  height:52px;
  border-radius:10px;
}

.brand span{
  font-size:22px;
  font-weight:900;
  white-space:nowrap;
}

.navlinks{
  display:flex;
  gap:18px;
  font-family:Arial,sans-serif;
  font-size:14px;
  font-weight:600;
}

.navlinks a{
  padding:6px 0;
  transition:color .2s;
}

.navlinks a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
  text-decoration-thickness:2px;
}

.hero{
  padding:70px 0 50px;
  background:linear-gradient(90deg,rgba(31,122,31,.08),#ffffff 45%,rgba(192,0,0,.08));
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  color:var(--muted);
  margin-bottom:14px;
  font-family:Arial,sans-serif;
}

h1{
  font-size:clamp(42px,5vw,68px);
  line-height:.95;
  margin:0 0 18px;
  letter-spacing:-.04em;
}

h2{
  font-size:clamp(30px,3vw,44px);
  line-height:1.05;
  margin:0 0 12px;
}

h3{
  font-size:28px;
  margin:34px 0 14px;
}

.claim{
  font-size:clamp(18px,2vw,22px);
  max-width:640px;
  color:#222;
}

.claim strong{
  color:var(--red);
  display:block;
  margin-top:10px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid #111;
  border-radius:999px;
  padding:14px 24px;
  font-family:Arial,sans-serif;
  font-size:15px;
  font-weight:800;
  background:#fff;
  transition:all .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}

.btn.primary{
  background:#111;
  color:#fff;
}

.btn.primary:hover{
  background:#222;
}

.today-status{
  margin-top:20px;
  font-family:Arial,sans-serif;
  font-size:15px;
}

.status-open{
  color:var(--green);
  font-weight:700;
  background:rgba(31,122,31,.08);
  padding:10px 18px;
  border-radius:999px;
  display:inline-block;
}

.status-closed{
  color:var(--red);
  font-weight:700;
  background:rgba(192,0,0,.08);
  padding:10px 18px;
  border-radius:999px;
  display:inline-block;
}

.status-next{
  color:var(--muted);
  margin-left:10px;
}

.hero-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  text-align:center;
}

.hero-card img{
  max-width:300px;
  margin:0 auto;
}

.caption{
  margin-top:18px;
  color:var(--muted);
  font-size:15px;
}

section{
  padding:60px 0;
  border-top:1px solid var(--line);
}

.sub{
  color:var(--muted);
  max-width:700px;
  margin-bottom:26px;
  font-size:17px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.card{
  background:#fafafa;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 24px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 40px rgba(0,0,0,.1);
}

.card-icon{
  font-size:40px;
  margin-bottom:12px;
}

.card h3{
  margin:0 0 10px;
  font-size:22px;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.menuScroller{
  display:flex;
  gap:18px;
  overflow-x:auto;
  padding:4px 4px 18px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

.menuScroller button{
  flex:0 0 46%;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  scroll-snap-align:start;
  transition:transform .2s ease;
}

.menuScroller button:hover{
  transform:scale(1.02);
}

.menuScroller img{
  width:100%;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  padding:4px;
  box-shadow:var(--shadow);
}

.galleryGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:20px;
}

.galleryGrid a{
  display:block;
  overflow:hidden;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}

.galleryGrid a:hover{
  transform:translateY(-4px);
}

.galleryGrid img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/3;
  transition:transform .3s ease;
}

.galleryGrid a:hover img{
  transform:scale(1.05);
}

.topInfo{
  padding-top:30px;
}

.topInfoGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:stretch;
}

.topCard{
  border-radius:28px;
  padding:34px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.topCard.dark{
  background:#050505;
  color:#fff;
}

.topCard.light{
  background:#fafafa;
}

.topCard h2{
  margin:0 0 26px;
  font-size:clamp(34px,3vw,58px);
  line-height:.95;
}

.hoursRows{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.hoursRows div{
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:clamp(20px,1.4vw,32px);
}

.hoursRows span{
  opacity:.9;
}

.hoursRows strong{
  font-weight:900;
}

.hoursRows .closed{
  opacity:.5;
}

.noticeBox{
  margin-top:28px;
  background:#f7efef;
  border-left:5px solid var(--red);
  color:#111;
  border-radius:18px;
  padding:22px;
  font-size:18px;
  line-height:1.5;
}

.contactLine{
  margin-bottom:26px;
  font-size:clamp(20px,1.5vw,34px);
  line-height:1.5;
}

.contactLine a{
  color:#111;
  text-decoration:underline;
  text-underline-offset:3px;
}

.phone-big{
  font-size:clamp(24px,2vw,38px);
  font-weight:900;
  color:var(--red);
}

.map-wrap{
  margin:20px 0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.map-wrap iframe{
  display:block;
  width:100%;
}

.socialIcons,
.topLinks{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:26px;
}

.socialIcons a,
.topLink{
  width:68px;
  height:68px;
  border-radius:20px;
  background:#fff;
  border:1px solid #e7e7e7;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  transition:.18s;
  font-size:30px;
  font-weight:900;
}

.socialIcons a:hover,
.topLink:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}

.socialIcons img,
.topLink img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.seo-text{
  max-width:860px;
  color:#333;
  font-size:17px;
  line-height:1.7;
}

.seo-text p{
  margin-bottom:16px;
}

footer{
  background:#111;
  color:#fff;
  padding:42px 0;
  font-family:Arial,sans-serif;
}

footer h2{
  color:#fff;
}

footer p,
footer address{
  color:#ccc;
  font-style:normal;
  line-height:1.7;
}

footer a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:3px;
}

footer a:hover{
  color:var(--red);
}

.small{
  margin-top:20px;
  color:#999;
  font-size:13px;
}

.small a{
  color:#999;
}

.mobile-cta{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:1000;
  background:#fff;
  border-top:1px solid var(--line);
  padding:12px 16px;
  box-shadow:0 -4px 20px rgba(0,0,0,.08);
  display:none;
}

.mobile-cta-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:16px 24px;
  background:var(--red);
  color:#fff;
  font-family:Arial,sans-serif;
  font-size:16px;
  font-weight:800;
  border-radius:999px;
  text-decoration:none;
  transition:background .2s;
}

.mobile-cta-btn:hover{
  background:#a00000;
}

.viewer{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  z-index:9999;
  display:none;
}

.viewer.open{
  display:block;
}

.viewerTop{
  position:fixed;
  left:0;
  right:0;
  top:0;
  z-index:10000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  color:#fff;
  background:rgba(0,0,0,.55);
  font-family:Arial,sans-serif;
}

.viewerTop button{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.45);
  color:#fff;
  font-size:22px;
  font-weight:900;
  cursor:pointer;
  transition:background .2s;
}

.viewerTop button:hover{
  background:rgba(255,255,255,.15);
}

.viewerTitle{
  font-weight:900;
  font-size:16px;
}

.viewerScroll{
  position:absolute;
  top:68px;
  left:0;
  right:0;
  bottom:0;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding:14px 14px 90px;
}

.viewerPage{
  max-width:980px;
  margin:0 auto 18px;
  background:#111;
  border-radius:14px;
  overflow:hidden;
}

.viewerPage img{
  width:100%;
  height:auto;
}

.menuScroller::-webkit-scrollbar{
  height:6px;
}

.menuScroller::-webkit-scrollbar-track{
  background:transparent;
}

.menuScroller::-webkit-scrollbar-thumb{
  background:var(--line);
  border-radius:3px;
}

a:focus-visible,
button:focus-visible{
  outline:3px solid var(--red);
  outline-offset:2px;
  border-radius:4px;
}

@media(max-width:860px){

  .wrap{
    padding:0 16px;
  }

  .nav{
    min-height:64px;
  }

  .navlinks{
    display:none;
  }

  .brand img{
    width:44px;
    height:44px;
  }

  .brand span{
    font-size:18px;
  }

  .hero{
    padding:42px 0 34px;
  }

  .hero-grid,
  .cards,
  .galleryGrid,
  .topInfoGrid{
    grid-template-columns:1fr;
  }

  .actions .btn{
    width:100%;
  }

  .hero-card{
    padding:20px;
  }

  .hero-card img{
    max-width:220px;
  }

  section{
    padding:42px 0;
  }

  .menuScroller button{
    flex:0 0 86%;
  }

  .menuScroller img{
    border-radius:12px;
    padding:2px;
  }

  .topCard{
    padding:24px;
    border-radius:22px;
  }

  .topCard h2{
    font-size:42px;
  }

  .hoursRows div{
    font-size:22px;
  }

  .contactLine{
    font-size:22px;
  }

  .phone-big{
    font-size:26px;
  }

  .socialIcons,
  .topLinks{
    justify-content:center;
  }

  .map-wrap iframe{
    height:180px;
  }

  .mobile-cta{
    display:block;
  }

  body{
    padding-bottom:70px;
  }

  .viewerScroll{
    padding-bottom:120px;
  }
}

@media(max-width:400px){

  h1{
    font-size:36px;
  }

  .topCard h2{
    font-size:34px;
  }

  .hoursRows div{
    font-size:18px;
  }

  .phone-big{
    font-size:22px;
  }
}