/* ==========================================================================
   R&R SMOKERS — 2026 rebuild
   Design system: "fire & steel" — dark charcoal canvas, ember-orange accents.
   Built on Bootstrap 5.3; this file is the brand layer on top.
   ========================================================================== */

:root {
  --bg:        #0d0d0f;
  --bg-2:      #151518;
  --bg-3:      #1c1c21;
  --panel:     #18181c;
  --line:      rgba(255, 255, 255, .08);
  --line-2:    rgba(255, 255, 255, .14);

  --ember:     #ff5a1f;
  --ember-2:   #ff7a18;
  --flame:     #ff3d00;
  --ember-soft: rgba(255, 90, 31, .14);

  --text:      #f4f1ec;
  --muted:     #a8a29a;
  --muted-2:   #7c766e;

  --flame-grad: linear-gradient(135deg, #ff7a18 0%, #ff3d00 100%);
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 18px 50px rgba(0, 0, 0, .45);
  --shadow-ember: 0 14px 40px rgba(255, 77, 0, .28);

  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ----- base ----- */
* { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, .display, .navbar-brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 1.08;
  text-transform: uppercase;
}
p { color: var(--muted); }
a { color: var(--ember-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ember); }
img { max-width: 100%; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.bg-panel { background: var(--bg-2); }
.bg-panel-2 { background: var(--bg-3); }

/* ----- typography helpers ----- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--ember); display: inline-block; }
.eyebrow.center::after { content: ""; width: 28px; height: 2px; background: var(--ember); display: inline-block; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); margin: 14px 0 18px; }
.lead-muted { color: var(--muted); font-size: 1.12rem; max-width: 640px; }
.text-ember { color: var(--ember) !important; }
.fw-condensed { font-family: var(--font-display); }

/* ----- buttons ----- */
.btn { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-weight: 500; border-radius: 50px; padding: .8rem 1.9rem; transition: all .25s; border: 0; }
.btn-flame { background: var(--flame-grad); color: #fff; box-shadow: var(--shadow-ember); }
.btn-flame:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 46px rgba(255, 77, 0, .42); filter: brightness(1.05); }
.btn-outline-flame { border: 2px solid var(--line-2); color: var(--text); background: transparent; }
.btn-outline-flame:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ----- navbar ----- */
.navbar {
  background: transparent;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.navbar.scrolled {
  background: rgba(13, 13, 15, .85);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.navbar-brand img { height: 52px; transition: height .35s; }
.navbar.scrolled .navbar-brand img { height: 42px; }
.navbar .nav-link {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: .92rem; color: var(--text) !important; opacity: .85; padding: .5rem 1rem !important;
  transition: opacity .2s, color .2s;
}
.navbar .nav-link:hover, .navbar .nav-link.active { opacity: 1; color: var(--ember) !important; }
.navbar .dropdown-menu {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px;
}
.navbar .dropdown-item {
  color: var(--text); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .5px; font-size: .86rem; border-radius: 8px; padding: .55rem .9rem;
}
.navbar .dropdown-item:hover { background: var(--ember-soft); color: var(--ember); }
.navbar-toggler { border: 0; color: var(--text); font-size: 1.5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ----- hero ----- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  background: var(--bg); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,.72) 0%, rgba(13,13,15,.55) 45%, rgba(13,13,15,.94) 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(60% 60% at 20% 30%, rgba(255,77,0,.18), transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); font-weight: 700; }
.hero h1 .text-ember { display: inline; }
.hero .lead-muted { color: #d9d4cc; font-size: 1.25rem; margin: 22px 0 34px; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--muted); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; }
.hero-scroll span { display: block; width: 1px; height: 40px; background: linear-gradient(var(--ember), transparent); margin: 8px auto 0; }

/* page sub-hero (interior pages) — compact "Ember Seam" band, photo dropped.
   Interior pages don't need a full photo banner (several hero images are promo
   graphics with baked-in text that garble when blown up). This is a tight,
   content-forward dark band with an ember glow + hairline seam instead. */
.page-hero {
  position: relative;
  padding: 116px 0 52px;            /* clears the ~88px fixed navbar (+~28px); ~half the old footprint */
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* kill the promo/photo background entirely — it garbles on these pages */
.page-hero .hero-bg { display: none; }

/* soft ember glow anchored top-left, cohesive with the homepage hero */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 130% at 0% 0%, rgba(255, 77, 0, .14), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
/* crisp ember hairline seam at the bottom edge */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--flame-grad);
  opacity: .9;
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero .eyebrow { margin-bottom: 4px; }
.page-hero h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  margin-top: 14px;
}
.page-hero .lead-muted {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 1.08rem;
  max-width: 620px;
}

/* breadcrumb sits below the lead, tighter and clearly separated */
.breadcrumb-fire {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .78rem;
}
.breadcrumb-fire a { color: var(--muted); transition: color .2s; }
.breadcrumb-fire a:hover { color: var(--ember); }
.breadcrumb-fire .sep { color: var(--muted-2); margin: 0 8px; }

@media (max-width: 575.98px) {
  .page-hero { padding: 104px 0 42px; }
  .page-hero .lead-muted { font-size: 1rem; }
}

/* ----- feature strip ----- */
.feature { padding: 14px 0; }
.feature .icon {
  width: 58px; height: 58px; border-radius: 14px; background: var(--ember-soft);
  display: flex; align-items: center; justify-content: center; color: var(--ember);
  font-size: 1.5rem; margin-bottom: 16px; border: 1px solid rgba(255,90,31,.25);
}
.feature h5 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { font-size: .95rem; margin: 0; }

/* ----- product cards ----- */
.product-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; height: 100%; transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(255,90,31,.4); box-shadow: var(--shadow); }
.product-card .img { height: 240px; background-size: cover; background-position: center; position: relative; }
.product-card .img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(21,21,24,.85)); }
.product-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.product-card h4 { font-size: 1.4rem; margin-bottom: 10px; }
.product-card p { font-size: .95rem; flex: 1; }
.product-card .arrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: .85rem; color: var(--ember); display: inline-flex; align-items: center; gap: 8px; }
.product-card:hover .arrow { gap: 14px; }

/* ----- feature/split band ----- */
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ----- stats band ----- */
.stats { background: var(--flame-grad); position: relative; }
.stats .stat { text-align: center; color: #fff; padding: 18px 0; }
.stats .stat .num { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; }
.stats .stat .label { text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; opacity: .92; margin-top: 8px; }

/* ----- testimonials ----- */
.quote-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; height: 100%; position: relative;
}
.quote-card .stars { color: var(--ember); letter-spacing: 3px; margin-bottom: 14px; }
.quote-card p { color: var(--text); font-size: 1.05rem; font-style: italic; }
.quote-card .by { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-size: .85rem; margin-top: 14px; }
.quote-card .by b { color: var(--ember); font-weight: 600; }
.quote-mark { font-family: Georgia, serif; font-size: 4rem; color: var(--ember-soft); line-height: .6; position: absolute; top: 22px; right: 26px; }

/* ----- gallery ----- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid .tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.gallery-grid .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid .tile::after { content: "\F52A"; font-family: "bootstrap-icons"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem;
  background: rgba(255,77,0,.0); opacity: 0; transition: .3s; }
.gallery-grid .tile:hover img { transform: scale(1.08); }
.gallery-grid .tile:hover::after { opacity: 1; background: rgba(13,13,15,.45); }
.gallery-grid .tile.tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid .tile.tall { grid-row: span 1; } }

/* ----- blog cards ----- */
.blog-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; height: 100%; transition: transform .3s, border-color .3s; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(255,90,31,.4); }
.blog-card .img { height: 210px; background-size: cover; background-position: center; }
.blog-card .body { padding: 24px; }
.blog-card .date { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; color: var(--ember); font-size: .78rem; }
.blog-card h5 { margin: 10px 0 12px; font-size: 1.25rem; line-height: 1.2; }
.blog-card p { font-size: .92rem; }

/* ----- CTA band ----- */
.cta-band { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 50% 0%, rgba(255,77,0,.16), transparent 70%); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

/* ----- article (how-to / blog post) ----- */
.article { font-size: 1.06rem; }
.article p { color: #cfc9c1; margin-bottom: 1.1rem; }
.article h2, .article h3 { color: var(--text); margin: 2rem 0 1rem; }
.article h3 { font-size: 1.4rem; }
.article ul, .article ol { color: #cfc9c1; margin-bottom: 1.2rem; }
.article li { margin-bottom: .5rem; }
.article .callout { background: var(--ember-soft); border-left: 3px solid var(--ember); border-radius: 10px; padding: 18px 22px; color: var(--text); margin: 1.4rem 0; }
.toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 100px; }
.toc a { display: block; color: var(--muted); padding: 6px 0; font-size: .92rem; }
.toc a:hover { color: var(--ember); }

/* ----- contact ----- */
.info-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; height: 100%; }
.info-card .icon { color: var(--ember); font-size: 1.4rem; margin-bottom: 10px; }
.form-control, .form-select { background: var(--bg-3); border: 1px solid var(--line-2); color: var(--text); border-radius: 10px; padding: .85rem 1rem; }
.form-control:focus, .form-select:focus { background: var(--bg-3); color: var(--text); border-color: var(--ember); box-shadow: 0 0 0 .2rem rgba(255,90,31,.18); }
.form-control::placeholder { color: var(--muted-2); }

/* ----- quote hero: form front & centre, ready to use on load ----- */
.quote-hero { position: relative; padding: 132px 0 72px; background: var(--bg-2); overflow: hidden; }
.quote-hero .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,15,.78), rgba(13,13,15,.95)); }
.quote-hero .container { position: relative; z-index: 2; }
.quote-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 700; }
.quote-form-card {
  background: rgba(21, 21, 24, .86); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
@media (max-width: 575.98px) { .quote-hero { padding: 116px 0 56px; } .quote-form-card { padding: 24px; } }

/* ----- footer ----- */
.footer { background: #0a0a0c; border-top: 1px solid var(--line); padding: 70px 0 26px; }
.footer h6 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-bottom: 18px; font-size: .95rem; }
.footer a { color: var(--muted); display: inline-block; padding: 4px 0; }
.footer a:hover { color: var(--ember); }
.footer .brand-logo { height: 64px; margin-bottom: 18px; }
.footer .social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; color: var(--text); margin-right: 8px; font-size: 1.1rem; transition: .25s; }
.footer .social a:hover { background: var(--flame-grad); border-color: transparent; color: #fff; transform: translateY(-3px); }
.footer .copyright { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; color: var(--muted-2); font-size: .85rem; }

/* ----- floating quote CTA ----- */
.float-cta { position: fixed; right: 22px; bottom: 22px; z-index: 60; box-shadow: var(--shadow-ember); }

/* ----- scroll reveal (only hides when JS is active, so content never vanishes) ----- */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* ----- misc ----- */
.divider-fire { width: 60px; height: 3px; background: var(--flame-grad); border-radius: 3px; }
.badge-fire { background: var(--ember-soft); color: var(--ember); border: 1px solid rgba(255,90,31,.3); font-family: var(--font-display); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; padding: .5rem 1rem; border-radius: 50px; font-size: .78rem; }
@media (max-width: 991px) {
  .navbar-collapse { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); margin-top: 12px; padding: 14px; }
  .section { padding: 64px 0; }
}
