:root {
  --green: #1b8a3d;
  --green-dark: #146b2f;
  --green-light: #8fe6ab;
  --blue: #3b4cc4;
  --blue-dark: #2c39a0;
  --navy: #0d2b45;
  --sand: #fbf6ea;
  --white: #ffffff;
  --ink: #1c2b24;
  --muted: #5b6b63;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(13, 43, 31, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: inherit; margin: 0 0 0.5em; line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy); }
h3 { font-size: 1.15rem; color: var(--navy); }
p { margin: 0 0 1em; color: var(--muted); }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 200; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-call { background: var(--blue); color: #fff; padding: 10px 18px; }
.btn-call:hover { background: var(--blue-dark); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eef1ee;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 52px; height: 24px; flex-shrink: 0; }
.brand-text { font-size: 1.05rem; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.brand-text strong { color: var(--green); }

.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a:not(.btn) { color: var(--navy); font-weight: 500; }
.primary-nav a:not(.btn):hover { color: var(--green); text-decoration: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 34px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 60%, #2f7fc4 100%);
  color: #fff;
  padding: 76px 0 110px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-mark { width: 130px; height: auto; margin: 0 auto 20px; display: block; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25)); }
.hero h1 { margin-bottom: 14px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-heading-brand { font-size: clamp(2rem, 4.6vw, 3.1rem); color: #fff; font-weight: 700; }
.hero-heading-sub { font-size: clamp(1.2rem, 2.6vw, 1.7rem); color: var(--green-light); font-weight: 600; }
.hero-sub { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 28px; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-facts {
  list-style: none; padding: 0; margin: 0; display: flex; gap: 26px; justify-content: center;
  flex-wrap: wrap; color: rgba(255,255,255,0.92); font-size: 0.95rem;
}
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px; z-index: 1; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--sand); }
.section-lead { max-width: 640px; margin-bottom: 34px; }

/* Cards */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.card {
  background: #fff; border: 1px solid #eef1ee; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); position: relative;
}
.card-feature { border: 2px solid var(--green); }
.card-tag {
  position: absolute; top: -12px; right: 16px; background: var(--green); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.card p { margin-bottom: 12px; font-size: 0.95rem; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--blue); margin: 0; }

/* Tabs */
.tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn {
  background: #fff; border: 2px solid #dfe6e1; color: var(--navy); font-weight: 600;
  padding: 10px 18px; border-radius: 999px; cursor: pointer; font-size: 0.95rem;
}
.tab-btn.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.menu-list { list-style: none; padding: 0; margin: 0 0 24px; }
.menu-list li {
  display: flex; align-items: baseline; gap: 8px; padding: 10px 0;
  border-bottom: 1px dashed #dfe6e1; font-size: 1rem;
}
.menu-list-tight li { padding: 6px 0; font-size: 0.92rem; }
.menu-list li span:first-child { color: var(--ink); font-weight: 500; }
.menu-list li em { color: var(--muted); font-style: normal; font-size: 0.85em; }
.menu-list .dots { flex: 1; border-bottom: 1px dotted #c8d2cc; margin: 0 4px 4px; }
.menu-list li span:last-child { font-weight: 700; color: var(--blue); white-space: nowrap; }
.addons h4 { color: var(--navy); margin-bottom: 6px; }
.menu-note { font-weight: 600; color: var(--green-dark); }

/* About */
.about-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.about-inner-full { grid-template-columns: 1fr; max-width: 760px; }

/* Location */
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.location-address { font-size: 1.05rem; }
.hours-table { border-collapse: collapse; margin: 16px 0; width: 100%; max-width: 380px; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid #e2e8e4; font-weight: 500; }
.hours-table th { color: var(--navy); padding-right: 16px; }
.phone-order { font-size: 1.05rem; margin-bottom: 20px; }
.location-map iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 40px 0 20px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.footer-brand { color: #fff; font-size: 1.1rem; }
.footer-brand strong { color: #6fd88a; }
.brand-mark-footer { width: 40px; height: 19px; }
.site-footer a { color: #fff; }
.site-footer p { color: rgba(255,255,255,0.75); margin: 4px 0; }
.footer-note { text-align: center; font-size: 0.82rem; margin: 0; color: rgba(255,255,255,0.5); }

/* Mobile call button */
.mobile-call {
  display: none; position: fixed; bottom: 18px; right: 18px; z-index: 150;
  background: var(--green); color: #fff; padding: 12px 18px; border-radius: 999px;
  font-weight: 700; box-shadow: 0 6px 18px rgba(0,0,0,0.25); text-decoration: none;
}

/* Responsive */
@media (max-width: 860px) {
  .about-inner, .location-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 16px;
    border-bottom: 1px solid #eef1ee; display: none;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid #f2f4f2; }
  .primary-nav .btn-call { margin-top: 10px; text-align: center; }
  .hero-facts { flex-direction: column; gap: 8px; }
  .mobile-call { display: inline-block; }
}
