/* ============================================================
   TWear — style.css
   Theme: DARK warm near-black #14100C / warm light #F7EFDD
   Accent: GOLDEN YELLOW #FACC15 with #EAB308 / #FEF08A / #2B2004
   ============================================================ */

:root {
  --bg: #14100C;
  --bg-soft: #1A140D;
  --bg-deep: #0F0B08;
  --ink: #F7EFDD;
  --ink-soft: #D8CBB0;
  --accent: #FACC15;
  --accent-2: #EAB308;
  --accent-3: #FEF08A;
  --accent-deep: #2B2004;
  --line: #2B2004;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background-color: #14100C;
  color: #F7EFDD;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  line-height: 1.15;
}

a {
  color: #FACC15;
}

/* ---------- Shared buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid #FACC15;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-gold {
  background: #FACC15;
  color: #14100C;
  border-color: #FACC15;
}

.btn-gold:hover {
  background: #FEF08A;
  border-color: #FEF08A;
}

.btn-ghost {
  background: #14100C;
  color: #F7EFDD;
  border-color: #FACC15;
}

.btn-ghost:hover {
  background: #FACC15;
  color: #14100C;
}

.section-eyebrow {
  color: #FACC15;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  color: #F7EFDD;
  margin: 10px 0 0;
}

.section-lead {
  color: #D8CBB0;
  margin-top: 14px;
}

/* ============================================================
   FLAME NAVIGATION
   ============================================================ */
.flame-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #14100C;
  border-bottom: 1px solid #2B2004;
}

.flame-nav.is-scrolled {
  border-bottom-color: #FACC15;
  box-shadow: 0 10px 24px #0F0B08;
}

.flame-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.flame-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.flame-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #F7EFDD;
  letter-spacing: 1px;
}

/* CSS-drawn flame mark */
.flame-mark {
  position: relative;
  width: 34px;
  height: 40px;
  display: inline-block;
  flex-shrink: 0;
}

.flame-outer {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 24px;
  height: 34px;
  background: linear-gradient(180deg, #FACC15 0%, #EAB308 100%);
  clip-path: polygon(50% 0%, 92% 34%, 84% 70%, 50% 100%, 16% 70%, 8% 34%);
  box-shadow: 0 0 14px #EAB308;
}

.flame-core {
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
  width: 10px;
  height: 18px;
  background: #FEF08A;
  clip-path: polygon(50% 0%, 90% 36%, 80% 68%, 50% 100%, 20% 68%, 10% 36%);
}

.flame-wisp {
  position: absolute;
  bottom: 5px;
  width: 9px;
  height: 15px;
  background: #EAB308;
  clip-path: polygon(50% 0%, 90% 40%, 78% 72%, 50% 100%, 22% 72%, 10% 40%);
}

.flame-wisp-left {
  left: -1px;
  transform: rotate(-24deg);
}

.flame-wisp-right {
  right: -1px;
  transform: rotate(24deg);
}

.flame-mark-sm {
  transform: scale(0.72);
  transform-origin: left center;
}

.flame-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.flame-links a {
  color: #F7EFDD;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.flame-links a:hover {
  color: #FACC15;
}

.flame-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flame-cta {
  background: #FACC15;
  color: #14100C;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.flame-cta:hover {
  background: #FEF08A;
}

.flame-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.flame-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F7EFDD;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   BARBECUE GRILL HERO
   ============================================================ */
.grill-hero {
  padding: 72px 0 88px;
  background: radial-gradient(circle at 78% 30%, #2B2004 0%, #14100C 58%);
}

.grill-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.grill-eyebrow {
  color: #FACC15;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0 0 16px;
}

.grill-title {
  font-size: clamp(38px, 6vw, 64px);
  color: #F7EFDD;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.grill-sub {
  color: #D8CBB0;
  font-size: 18px;
  max-width: 540px;
  margin: 0 0 28px;
}

.grill-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CSS-drawn BBQ grill scene */
.grill-scene {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 400px;
  margin: 0 auto;
}

.grill-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, #2B2004 0%, #14100C 62%);
  border-radius: 50%;
}

.smoke {
  position: absolute;
  background: #4A3A28;
  border-radius: 50%;
}

.smoke-a { top: 64px; left: 26px; width: 26px; height: 26px; }
.smoke-b { top: 30px; left: 16px; width: 17px; height: 17px; }
.smoke-c { top: 104px; left: 74px; width: 21px; height: 21px; }

.grill {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 280px;
  height: 320px;
}

.grill-chimney {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 28px;
  background: #3B2F21;
  border-radius: 5px 5px 0 0;
}

.grill-chimney-cap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 8px;
  background: #554332;
  border-radius: 4px;
}

.grill-lid {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 110px;
  background: linear-gradient(180deg, #4A3A28 0%, #2A2117 100%);
  border-radius: 110px 110px 0 0;
}

.grill-rim {
  position: absolute;
  top: 142px;
  left: 50%;
  transform: translateX(-50%);
  width: 232px;
  height: 10px;
  background: #FACC15;
  border-radius: 4px;
}

.grill-grate {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: 216px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.grate-bar {
  width: 46px;
  height: 5px;
  background: #554332;
  border-radius: 2px;
}

.grill-bowl {
  position: absolute;
  top: 172px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 88px;
  background: linear-gradient(180deg, #3B2F21 0%, #1D160E 100%);
  border-radius: 0 0 110px 110px;
  border: 4px solid #554332;
  border-top: none;
}

.grill-handle {
  position: absolute;
  top: 30px;
  right: -22px;
  width: 46px;
  height: 12px;
  background: #554332;
  border-radius: 6px;
}

.ember {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #FACC15;
  border-radius: 50%;
  box-shadow: 0 0 8px #EAB308;
}

.ember-a { top: 14px; left: 44px; }
.ember-b { top: 18px; left: 104px; }
.ember-c { top: 12px; left: 164px; }

.grill-leg {
  position: absolute;
  top: 252px;
  width: 9px;
  height: 58px;
  background: #3B2F21;
  border-radius: 4px;
}

.leg-left {
  left: 58px;
  transform: rotate(14deg);
  transform-origin: top center;
}

.leg-right {
  right: 58px;
  transform: rotate(-14deg);
  transform-origin: top center;
}

.leg-front {
  left: 50%;
  transform: translateX(-50%);
  top: 256px;
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */
.statement-row {
  padding: 96px 24px;
  background: #1A140D;
  border-top: 1px solid #2B2004;
  border-bottom: 1px solid #2B2004;
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement-kicker {
  color: #FACC15;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0 0 14px;
}

.statement-title {
  font-size: clamp(30px, 5vw, 48px);
  color: #F7EFDD;
  margin: 0 0 18px;
}

.statement-body {
  color: #D8CBB0;
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 64px 24px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 30px 16px;
  background: #1A140D;
  border: 1px solid #2B2004;
  border-radius: 12px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FACC15;
  display: block;
  line-height: 1;
}

.stat-label {
  display: block;
  color: #D8CBB0;
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 96px 24px;
  background: #14100C;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-body p {
  color: #D8CBB0;
  font-size: 16px;
  margin: 0 0 18px;
}

/* ============================================================
   PROCESS (numbered fulfilment)
   ============================================================ */
.process-section {
  padding: 96px 24px;
  background: #1A140D;
  border-top: 1px solid #2B2004;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.process-list {
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  position: relative;
}

.process-list::before {
  content: '';
  position: absolute;
  left: 33px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: #2B2004;
}

.process-step {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-num {
  position: relative;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #14100C;
  border: 2px solid #FACC15;
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FACC15;
}

.step-body h3 {
  color: #F7EFDD;
  margin: 0 0 8px;
  font-size: 20px;
}

.step-body p {
  color: #D8CBB0;
  margin: 0;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.compare-section {
  padding: 96px 24px;
  background: #14100C;
}

.compare-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.compare-col {
  background: #1A140D;
  border: 1px solid #2B2004;
  border-radius: 14px;
  padding: 36px;
}

.compare-pro {
  border-color: #FACC15;
  background: #241B09;
}

.compare-name {
  color: #F7EFDD;
  margin: 0 0 4px;
  font-size: 24px;
}

.compare-tag {
  color: #FACC15;
  font-weight: 600;
  margin: 0 0 18px;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  color: #D8CBB0;
  padding: 10px 0;
  border-bottom: 1px solid #2B2004;
}

.compare-list li:last-child {
  border-bottom: none;
}

.compare-list li::before {
  content: '\2713';
  color: #FACC15;
  margin-right: 10px;
  font-weight: 700;
}

/* ============================================================
   PRODUCTS (horizontal scroll)
   ============================================================ */
.products-section {
  padding: 96px 0 80px;
  background: #1A140D;
  border-top: 1px solid #2B2004;
}

.products-section .section-head {
  padding: 0 24px;
}

.scroll-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #14100C;
  border: 1px solid #2B2004;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: #FACC15;
  transform: translateY(-4px);
}

.product-art {
  position: relative;
  height: 160px;
  background: linear-gradient(160deg, #2B2004, #14100C);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-art::before,
.product-art::after {
  content: '';
  display: block;
}

.product-name {
  font-family: 'Space Grotesk', sans-serif;
  color: #F7EFDD;
  margin: 16px 16px 6px;
  font-size: 18px;
}

.product-desc {
  color: #D8CBB0;
  font-size: 14px;
  margin: 0 16px 18px;
}

.art-tee::before {
  width: 92px;
  height: 82px;
  background: #FACC15;
  clip-path: polygon(20% 0, 80% 0, 100% 22%, 86% 34%, 74% 20%, 74% 100%, 26% 100%, 26% 20%, 14% 34%, 0 22%);
}

.art-apron::before {
  width: 82px;
  height: 104px;
  background: #EAB308;
  border-radius: 6px 6px 42px 42px;
}

.art-apron::after {
  position: absolute;
  width: 60px;
  height: 10px;
  background: #EAB308;
  border-radius: 5px;
  top: 22px;
}

.art-hoodie::before {
  width: 98px;
  height: 86px;
  background: #FACC15;
  clip-path: polygon(30% 20%, 70% 20%, 74% 0, 92% 16%, 86% 32%, 74% 24%, 74% 100%, 26% 100%, 26% 24%, 14% 32%, 8% 16%, 26% 0);
}

.art-gloves::before {
  width: 48px;
  height: 66px;
  background: #EAB308;
  border-radius: 18px 18px 26px 26px;
  transform: translateX(-18px);
}

.art-gloves::after {
  position: absolute;
  width: 48px;
  height: 66px;
  background: #FACC15;
  border-radius: 18px 18px 26px 26px;
  transform: translateX(18px);
}

.art-cap::before {
  width: 108px;
  height: 54px;
  background: #FACC15;
  border-radius: 60px 60px 0 0;
  margin-bottom: 20px;
}

.art-cap::after {
  position: absolute;
  width: 132px;
  height: 14px;
  background: #EAB308;
  border-radius: 8px;
  top: 58%;
}

.art-tools::before {
  width: 8px;
  height: 92px;
  background: #EAB308;
  border-radius: 4px;
  transform: rotate(-28deg) translateX(6px);
}

.art-tools::after {
  position: absolute;
  width: 8px;
  height: 92px;
  background: #FACC15;
  border-radius: 4px;
  transform: rotate(28deg) translateX(-6px);
}

/* ============================================================
   TABS
   ============================================================ */
.tabs-section {
  padding: 96px 24px;
  background: #14100C;
}

.tabs {
  max-width: 720px;
  margin: 0 auto 32px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  background: #1A140D;
  border: 1px solid #2B2004;
  color: #D8CBB0;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  border-color: #FACC15;
  color: #F7EFDD;
}

.tab-btn.is-active {
  background: #FACC15;
  color: #14100C;
  border-color: #FACC15;
}

.tab-panels {
  max-width: 720px;
  margin: 0 auto;
}

.tab-panel {
  background: #1A140D;
  border: 1px solid #2B2004;
  border-radius: 14px;
  padding: 32px;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel h3 {
  color: #F7EFDD;
  margin: 0 0 10px;
  font-size: 20px;
}

.tab-panel p {
  color: #D8CBB0;
}

.tab-panel ul {
  color: #D8CBB0;
  padding-left: 20px;
  margin-bottom: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 96px 24px;
  background: #1A140D;
  border-top: 1px solid #2B2004;
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: #14100C;
  border: 1px solid #2B2004;
  border-radius: 14px;
  padding: 32px;
}

.contact-info h3 {
  color: #F7EFDD;
  margin: 0 0 18px;
  font-size: 20px;
}

.contact-line {
  color: #D8CBB0;
  margin: 0 0 14px;
}

.contact-line strong {
  color: #F7EFDD;
  display: inline-block;
  min-width: 90px;
}

.contact-line a {
  color: #FACC15;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: #F7EFDD;
  font-weight: 500;
}

.field input,
.field textarea {
  background: #14100C;
  border: 1px solid #2B2004;
  color: #F7EFDD;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #FACC15;
}

.form-status {
  color: #FACC15;
  min-height: 1em;
  margin: 0;
  font-weight: 600;
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */
.cta-band {
  padding: 96px 24px;
  background: radial-gradient(circle at 50% 0%, #2B2004 0%, #14100C 60%);
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  color: #F7EFDD;
  margin: 0;
}

.cta-sub {
  color: #D8CBB0;
  margin: 8px 0 0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0F0B08;
  border-top: 2px solid #FACC15;
  padding: 56px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-about p {
  color: #D8CBB0;
  margin: 0;
}

.footer-heading {
  color: #F7EFDD;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 0 14px;
  font-size: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  color: #D8CBB0;
  margin: 0 0 10px;
}

.footer-links a {
  color: #D8CBB0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FACC15;
}

.footer-bottom {
  border-top: 1px solid #2B2004;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #D8CBB0;
  margin: 0;
  font-size: 14px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grill-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .grill-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .grill-ctas {
    justify-content: center;
  }
  .grill-scene {
    order: -1;
    height: 340px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .flame-toggle {
    display: block;
  }
  .flame-cta {
    display: none;
  }
  .flame-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #14100C;
    border-bottom: 1px solid #2B2004;
    padding: 16px 24px;
    display: none;
  }
  .flame-links.open {
    display: flex;
  }
  .flame-links a {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #1F180B;
  }
  .flame-links a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 560px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat-number {
    font-size: 38px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .grill-scene {
    height: 300px;
  }
}
