*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0f1e2e;
  --dark-2:     #162436;
  --dark-3:     #1e3040;
  --fire:       #e84a0e;
  --fire-dk:    #c43c08;
  --fire-lt:    #fff0ea;
  --ice:        #1a6bbc;
  --ice-lt:     #e6f0fb;
  --white:      #ffffff;
  --off:        #f6f7f9;
  --border:     #e4e8ef;
  --muted:      #5c6a7a;
  --text:       #1a2535;
  --radius:     10px;
  --shadow-sm:  0 2px 10px rgba(0,0,0,.07);
  --shadow:     0 6px 28px rgba(0,0,0,.11);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── CONTAINER ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.3rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-fire { background: var(--fire); color: var(--white); }
.btn-fire:hover { background: var(--fire-dk); box-shadow: 0 4px 18px rgba(232,74,14,.35); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: #edf0f4; }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); }

.btn-xl { padding: .9rem 1.9rem; font-size: 1rem; border-radius: 10px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  padding: .45rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--fire);
  font-weight: 600;
  text-decoration: none;
}
.topbar-phone:hover { color: #ff6b35; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-2);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
  gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; background: rgba(255,255,255,.08); padding: 2px; }
.brand-name { display: block; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.brand-sub { display: block; font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 400; }

.nav { display: flex; gap: .25rem; }
.nav a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: .4rem .75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.header-ctas { display: flex; gap: .6rem; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .35rem;
  background: var(--dark-3);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-nav.open { display: flex; }
.mobile-link {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .95rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1a3a55 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,74,14,.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-content { flex: 1; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,74,14,.15);
  color: var(--fire);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(232,74,14,.3);
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.highlight { color: var(--fire); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 480px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Stats panel */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  text-align: center;
  min-width: 170px;
  backdrop-filter: blur(4px);
}
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--fire);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ── SECTION BASE ── */
.section { padding: 5.5rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── SPECIALTY GRID ── */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.specialty-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.specialty-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.specialty-card-accent {
  border-color: var(--fire);
  border-width: 2px;
  background: linear-gradient(160deg, #fff8f5 0%, var(--white) 100%);
}

.specialty-icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.specialty-blue { background: var(--ice-lt); color: var(--ice); }
.specialty-fire { background: var(--fire-lt); color: var(--fire); }

.accent-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--fire);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .7rem;
  border-radius: 50px;
}

.specialty-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .65rem;
}
.specialty-card > p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.specialty-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.specialty-list li {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
}
.specialty-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--fire);
  font-weight: 700;
}

/* ── WALK-IN SECTION ── */
.walkin-section {
  background: var(--dark);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.walkin-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,74,14,.12) 0%, transparent 70%);
  pointer-events: none;
}
.walkin-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fire-label {
  display: inline-flex;
  align-items: center;
  background: rgba(232,74,14,.15);
  color: var(--fire);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  border: 1px solid rgba(232,74,14,.3);
  margin-bottom: 1.25rem;
}
.walkin-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.walkin-text > p {
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-size: .97rem;
}
.walkin-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.walkin-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .93rem;
}
.walkin-list svg { color: var(--fire); flex-shrink: 0; }

.walkin-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.cooler-box {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.cooler-box svg { color: var(--fire); }
.cooler-box span { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.75); }

.walkin-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  width: 100%;
}
.w-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.w-badge strong { color: var(--white); font-size: .85rem; font-weight: 600; }
.w-badge span { color: var(--fire); font-size: .75rem; font-weight: 500; }

/* ── STEPS ── */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--off);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--fire);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.step p { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.step-arrow {
  flex-shrink: 0;
  color: var(--muted);
  margin-top: 2.8rem;
  opacity: .5;
}

/* ── BOOK STRIP ── */
.book-strip {
  background: var(--fire);
  padding: 3rem 0;
}
.book-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.book-strip-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .25rem;
}
.book-strip-text p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}
.book-strip-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-left { }
.footer-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  padding: 2px;
}
.footer-brand strong { color: var(--white); font-size: .98rem; display: block; }
.footer-brand span { color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 280px; }

.footer-links-col,
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links-col strong,
.footer-contact-col strong {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.footer-links-col a,
.footer-contact-col a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links-col a:hover,
.footer-contact-col a:hover { color: var(--fire); }
.footer-contact-col span { font-size: .85rem; color: rgba(255,255,255,.5); }

.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .specialty-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 820px) {
  .hero-inner { flex-direction: column; gap: 2.5rem; }
  .hero-stats { flex-direction: row; width: 100%; }
  .stat-card { flex: 1; min-width: 0; }
  .walkin-inner { grid-template-columns: 1fr; gap: 3rem; }
  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-ctas { display: none; }
}

@media (max-width: 640px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .book-strip-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .topbar span { display: none; }
}
