
:root {
  --accent: #79c41c;
  --accent-dark: #5a9914;
  --text: #4a4a4a;
  --muted: #757575;
  --line: #e7e7e7;
  --bg: #f5f5f5;
  --card: #ffffff;
  --shadow: 0 12px 32px rgba(0,0,0,.08);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(#fbfbfb, #f2f2f2 140px, #f6f6f6 140px);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}
.topbar-item { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.topbar-item strong { display: block; color: #3d3d3d; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.topbar-item span { display: block; line-height: 1.35; }
.topbar-badge {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--accent-dark); background: #fdfdfd; font-weight: 700;
  flex: 0 0 auto;
}

.site-header { background: #fff; position: sticky; top: 0; z-index: 20; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 168px; height: auto; }
.desktop-nav ul { list-style: none; display: flex; gap: 10px; padding: 0; margin: 0; }
.desktop-nav a {
  padding: 10px 16px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; font-size: 13px;
  color: #505050; font-weight: 700;
}
.desktop-nav a:hover, .desktop-nav a.active { background: var(--accent); color: #fff; }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: #fff; border-radius: 12px; width: 46px; height: 42px;
  align-items: center; justify-content: center; font-size: 24px; color: #444;
}
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.mobile-nav a.active { color: var(--accent-dark); }

.hero { padding: 24px 0 12px; }
.slider {
  position: relative; overflow: hidden; background: #ddd; border-radius: 26px; box-shadow: var(--shadow);
  min-height: 375px;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute; left: 30px; bottom: 28px; max-width: 430px; color: #fff;
  background: linear-gradient(135deg, rgba(0,0,0,.58), rgba(0,0,0,.25));
  padding: 18px 22px; border-radius: 18px; backdrop-filter: blur(2px);
}
.hero-caption h1, .hero-caption h2 { margin: 0 0 6px; font-size: 28px; line-height: 1.1; }
.hero-caption p { margin: 0; font-size: 15px; }
.slider-dots { position: absolute; right: 20px; bottom: 20px; display: flex; gap: 8px; z-index: 2; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); }
.slider-dot.active { background: #fff; }

.page-hero { padding: 26px 0 6px; }
.page-hero-box {
  background: linear-gradient(135deg, #fff, #fafafa); border: 1px solid var(--line); border-radius: 24px;
  padding: 26px 28px; box-shadow: var(--shadow);
}
.page-hero-box h1 { margin: 0 0 4px; font-size: 34px; }
.page-hero-box p { margin: 0; color: var(--muted); }

.section { padding: 20px 0 12px; }
.section-box { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); }
.eyebrow { color: var(--accent-dark); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.section h2 { margin: 0 0 14px; font-size: 30px; line-height: 1.15; }
.section h3 { margin: 0 0 10px; font-size: 22px; }
.lead { color: var(--muted); font-size: 17px; max-width: 900px; }
.muted { color: var(--muted); }

.cards-4 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.card {
  background: linear-gradient(180deg, #fff, #fbfbfb); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.card-media { aspect-ratio: 16/10; background: #efefef; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 18px 18px 20px; }
.card h3 { margin: 0 0 8px; color: #3f3f3f; }
.card p { margin: 0 0 14px; color: var(--muted); }
.btn, .text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.btn {
  background: var(--accent); color: #fff; padding: 12px 18px; border-radius: 999px; text-transform: uppercase;
  font-size: 12px; letter-spacing: .08em; box-shadow: 0 8px 18px rgba(121,196,28,.22);
}
.btn:hover { background: var(--accent-dark); }
.text-link { color: var(--accent-dark); font-size: 14px; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center; }
.promo-stack { display: grid; gap: 18px; }
.promo-card { background: #fafafa; border: 1px solid var(--line); border-radius: 22px; padding: 18px; }

.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.product-item { background: #fafafa; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; text-align: center; }
.product-item img { width: 100%; aspect-ratio: 1/1.2; object-fit: cover; }
.product-item h3 { font-size: 18px; padding: 14px 12px 18px; margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.gallery-item { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 6px 16px rgba(0,0,0,.05); }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.details-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.detail-card { background: #fafafa; border: 1px solid var(--line); border-radius: 20px; padding: 20px; }
.detail-card h3 { margin-bottom: 6px; }
.hours-list { margin: 0; padding: 0; list-style: none; }
.hours-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-list li:last-child { border-bottom: 0; }

.price-panel { display: grid; gap: 18px; }
.price-box { background: #fbfbfb; border: 1px solid var(--line); border-radius: 24px; padding: 22px; overflow: auto; }
.price-box img { max-width: none; width: auto; min-width: 100%; margin: 0 auto; }
.thumb-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.thumb-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; }
.thumb-card img { width: 100%; aspect-ratio: 17/20; object-fit: cover; }
.thumb-card span { display: block; padding: 10px 12px; font-size: 13px; color: var(--muted); }

.legal h2 { font-size: 24px; margin-top: 18px; }
.legal h3 { font-size: 20px; margin-top: 20px; }
.legal p { margin: 0 0 14px; color: #565656; }

.footer { padding: 30px 0 40px; color: #777; font-size: 14px; }
.footer .container { display: flex; justify-content: space-between; gap: 18px; align-items: center; }

@media (max-width: 980px) {
  .topbar .container { grid-template-columns: 1fr; gap: 10px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav.open { display: block; }
  .slider { min-height: 320px; }
  .cards-4, .split, .product-grid, .gallery-grid, .details-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 20px, 1100px); }
  .site-header .container { padding: 12px 0; }
  .brand img { width: 138px; }
  .slider { min-height: 240px; border-radius: 20px; }
  .hero-caption { left: 16px; right: 16px; bottom: 16px; max-width: none; padding: 14px 16px; }
  .hero-caption h1, .hero-caption h2 { font-size: 22px; }
  .page-hero-box, .section-box { padding: 22px 18px; border-radius: 20px; }
  .page-hero-box h1, .section h2 { font-size: 28px; }
  .cards-4, .split, .product-grid, .gallery-grid, .details-grid { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; align-items: flex-start; }
}
