
:root {
  --c-bg:      #0A0805;
  --c-surface: #131008;
  --c-raised:  #1B1510;
  --c-card:    #221A0D;
  --c-border:  rgba(220,150,40,.1);
  --c-border2: rgba(220,150,40,.22);
  --c-cream:   #F5ECD8;
  --c-muted:   #9A8A72;
  --c-dim:     rgba(245,236,216,.44);
  --c-fire1:   #C93000;
  --c-fire2:   #E85A18;
  --c-fire3:   #FF8040;
  --c-amber:   #E8A020;
  --c-gold:    #F0C040;
  --c-spark:   #FFE080;
  --r:         3px;
  --max:       1260px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--c-bg);
  color: var(--c-cream);
  overflow-x: hidden;
  line-height: 1.6;
}
::selection { background: var(--c-amber); color: var(--c-bg); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-surface); }
::-webkit-scrollbar-thumb { background: var(--c-amber); border-radius: 2px; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.05; }
h1 { font-size: clamp(48px, 7vw, 100px); font-weight: 700; }
h2 { font-size: clamp(34px, 4.2vw, 60px); font-weight: 700; }
h3 { font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-fire3); font-weight: 600;
}
.rule {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--c-fire1), var(--c-gold));
  border-radius: 1px; margin: 14px 0 38px;
}

#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--c-fire1), var(--c-amber), var(--c-spark));
  z-index: 500;
  transition: width .08s linear;
  box-shadow: 0 0 8px rgba(232,160,32,.55);
  pointer-events: none;
}

header {
  position: fixed; top: 0; width: 100%; z-index: 300;
  background: rgba(10,8,5,.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hdr {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 36px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo-f { width: 24px; height: 30px; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--c-cream);
  letter-spacing: .2px; white-space: nowrap;
}
.logo-name b { color: var(--c-gold); }

nav { display: flex; align-items: center; margin-left: auto; }
nav a {
  color: var(--c-dim); text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 0 18px;
  height: 68px; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav a:hover,
nav a.is-active { color: var(--c-cream); border-bottom-color: var(--c-amber); }

.hdr-cta {
  margin-left: 20px;
  background: linear-gradient(135deg, var(--c-fire2), var(--c-fire1));
  color: #fff; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; text-decoration: none;
  padding: 9px 22px; border-radius: var(--r); white-space: nowrap;
  box-shadow: 0 4px 20px rgba(200,60,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.hdr-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(200,60,0,.5); }

.burger {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; z-index: 400;
  flex-shrink: 0; padding: 6px;
}
.burger span {
  display: block; width: calc(100% - 12px); height: 2px;
  background: var(--c-cream); border-radius: 1px;
  transition: transform .3s, opacity .3s;
  position: absolute; left: 6px;
}
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 17px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.mob-nav {
  display: none;
  position: fixed; inset: 0; z-index: 350;
  background: rgba(10,8,5,.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}

header {
    position: relative;
    z-index: 500 !important; }


.burger.open {
    z-index: 600 !important;
}

.mob-nav.open { opacity: 1; pointer-events: auto; }
.mob-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; color: var(--c-cream);
  text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  width: 240px; text-align: center;
  transition: color .2s;
}
.mob-nav a:last-of-type { border-bottom: none; }
.mob-nav a:hover { color: var(--c-amber); }
.mob-nav .mob-phone {
  margin-top: 36px;
  font-family: 'Jost', sans-serif; font-size: 18px; font-weight: 500;
  color: var(--c-fire3); text-decoration: none;
  padding: 12px 28px; border: 1px solid rgba(232,90,24,.3); border-radius: var(--r);
}

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--c-bg);
}
#hero-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right, rgba(10,8,5,.97) 42%, rgba(10,8,5,.0) 100%),
    linear-gradient(to top, rgba(10,8,5,.99) 0%, rgba(10,8,5,.0) 50%);
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: var(--max); margin: 0 auto;
  width: 100%; padding: 0 36px 100px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,90,24,.1); border: 1px solid rgba(232,90,24,.28);
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-fire3);
  padding: 5px 14px; border-radius: 2px; margin-bottom: 24px;
  animation: fadeUp .9s .1s both;
}
.hero-badge span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-fire3);
  animation: pulse 2s infinite;
}
h1.hero-h { color: var(--c-cream); max-width: 680px; animation: fadeUp .9s .2s both; padding-top: 60px;}
h1.hero-h em {
  display: block; font-style: italic;
  background: linear-gradient(100deg, var(--c-gold), var(--c-fire3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  margin-top: 20px; max-width: 460px;
  font-size: 15px; line-height: 1.82; color: var(--c-dim); font-weight: 300;
  animation: fadeUp .9s .3s both;
}
.hero-btns { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp .9s .4s both; }
.hero-stats {
  margin-top: 52px; display: flex;
  border-top: 1px solid var(--c-border); padding-top: 28px;
  animation: fadeUp .9s .5s both;
}
.stat { padding-right: 36px; }
.stat + .stat { padding-left: 36px; border-left: 1px solid var(--c-border); }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; font-weight: 700; line-height: 1; color: var(--c-amber);
}
.stat-l { font-size: 11px; color: rgba(245,236,216,.4); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--c-muted); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  opacity: .5; animation: fadeUp 1s 1.2s both; cursor: default; user-select: none;
}
.hero-scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, var(--c-amber));
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); opacity: 0; }
  30%       { opacity: 1; }
  70%       { transform: scaleY(1); opacity: .7; }
}

.btn {
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .9px; text-transform: uppercase; text-decoration: none;
  padding: 13px 30px; border-radius: var(--r); cursor: pointer; border: none;
  display: inline-flex; align-items: center; gap: 8px; transition: all .22s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-fire2), var(--c-fire1)); color: #fff;
  box-shadow: 0 6px 24px rgba(200,50,0,.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,50,0,.55); }
.btn-ghost {
  background: transparent; color: var(--c-cream);
  border: 1px solid rgba(245,236,216,.18);
}
.btn-ghost:hover { border-color: var(--c-amber); color: var(--c-amber); box-shadow: 0 6px 20px rgba(232,160,32,.18); }

.brands-strip {
  position: relative; z-index: 5;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 16px 36px;
}
.brands-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.b-lbl { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,236,216,.22); margin-right: 10px; }
.b-pill {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--c-amber); border: 1px solid rgba(232,160,32,.2);
  padding: 5px 15px; border-radius: 2px; background: rgba(232,160,32,.04);
  transition: all .22s var(--ease); cursor: default;
}
.b-pill:hover { background: rgba(232,160,32,.12); color: var(--c-spark); border-color: rgba(232,160,32,.38); }

section { padding: 96px 36px; position: relative; z-index: 2; }
.w { max-width: var(--max); margin: 0 auto; }

#services { background: var(--c-bg); }
.srv-wrap {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(232,160,32,.07);
  border-radius: 6px; overflow: hidden;
}
.srv {
  background: var(--c-card); padding: 36px 30px;
  position: relative; overflow: hidden; cursor: default;
  transition: background .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.srv:nth-child(1) .srv-glow { background: radial-gradient(ellipse, rgba(200,50,0,.38) 0%, transparent 70%); }
.srv:nth-child(2) .srv-glow { background: radial-gradient(ellipse, rgba(232,90,24,.34) 0%, transparent 70%); }
.srv:nth-child(3) .srv-glow { background: radial-gradient(ellipse, rgba(232,160,32,.3) 0%, transparent 70%); }
.srv:nth-child(4) .srv-glow { background: radial-gradient(ellipse, rgba(255,128,64,.28) 0%, transparent 70%); }
.srv:nth-child(5) .srv-glow { background: radial-gradient(ellipse, rgba(240,192,64,.24) 0%, transparent 70%); }
.srv:nth-child(6) .srv-glow { background: radial-gradient(ellipse, rgba(200,50,0,.38) 0%, transparent 70%); }
.srv-glow {
  position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 100px; border-radius: 50%;
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.srv:hover { background: var(--c-raised); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.22); }
.srv:hover .srv-glow { opacity: 1; }
.srv::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-fire1), var(--c-gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.srv:hover::after { transform: scaleX(1); }
.srv-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: rgba(232,160,32,.1); line-height: 1; margin-bottom: 16px;
  transition: color .28s;
}
.srv:hover .srv-n { color: rgba(232,160,32,.22); }
.srv h3 { color: var(--c-cream); margin-bottom: 10px; transition: color .22s; }
.srv:hover h3 { color: var(--c-spark); }
.srv p { font-size: 13.5px; line-height: 1.75; color: var(--c-muted); transition: color .22s; }
.srv:hover p { color: rgba(245,236,216,.78); }

#shop { background: var(--c-surface); }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.shop-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sc {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r); padding: 20px;
  transition: border-color .22s, background .22s var(--ease), transform .22s;
}
.sc:hover { border-color: var(--c-border2); background: var(--c-raised); transform: translateY(-2px); }
.sc-t { font-size: 14px; font-weight: 500; color: var(--c-cream); margin-bottom: 5px; }
.sc-s { font-size: 12.5px; color: var(--c-muted); line-height: 1.6; }
.shop-note {
  grid-column: 1 / -1;
  padding: 20px 22px;
  background: rgba(200,50,0,.07); border: 1px solid rgba(200,50,0,.18);
  border-radius: var(--r); font-size: 13.5px; line-height: 1.72; color: var(--c-dim);
}
.shop-note strong { color: var(--c-amber); }

.fire-panel {
  border-radius: 6px; overflow: hidden;
  background: var(--c-card); border: 1px solid var(--c-border);
  min-height: 320px; height: 100%; position: relative; display: flex; align-items: flex-end;
}
.fire-anim { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.flame-spot { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0; mix-blend-mode: screen; }
.flame-spot.s1 { width: 220px; height: 180px; bottom: -30%; left: 15%; background: radial-gradient(circle, rgba(200,60,0,.35), transparent 70%); animation: flamePulse 5s ease-in-out infinite; }
.flame-spot.s2 { width: 260px; height: 200px; bottom: -25%; left: 40%; background: radial-gradient(circle, rgba(232,130,32,.28), transparent 70%); animation: flamePulse 6.5s ease-in-out 1.2s infinite; }
.flame-spot.s3 { width: 180px; height: 150px; bottom: -20%; right: 12%; background: radial-gradient(circle, rgba(180,40,0,.25), transparent 70%); animation: flamePulse 4.8s ease-in-out 2.5s infinite; }
.flame-spot.s4 { width: 140px; height: 120px; bottom: 10%; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(255,200,80,.15), transparent 70%); animation: flamePulse 7s ease-in-out .8s infinite; }
.flame-spot.s5 { width: 180px; height: 160px; bottom: -35%; right: 25%; background: radial-gradient(circle, rgba(200,60,0,.22), transparent 70%); animation: flamePulse 5.8s ease-in-out 1.8s infinite; }
.flame-spot.s6 { width: 200px; height: 170px; bottom: -28%; left: 55%; background: radial-gradient(circle, rgba(232,130,32,.2), transparent 70%); animation: flamePulse 6.2s ease-in-out .3s infinite; }
.mote { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: rgba(255,200,100,.5); box-shadow: 0 0 6px rgba(255,180,80,.3); opacity: 0; animation: moteFloat 8s linear infinite; }
.mote.m1 { left: 35%; bottom: 30%; }
.mote.m2 { left: 52%; bottom: 25%; animation-delay: 2.8s; }
.mote.m3 { left: 62%; bottom: 35%; animation-delay: 5.2s; }
.mote.m4 { left: 40%; bottom: 20%; animation-delay: 1.5s; animation-duration: 9s; }
.mote.m5 { left: 58%; bottom: 32%; animation-delay: 3.8s; animation-duration: 10s; }
.mote.m6 { left: 68%; bottom: 28%; animation-delay: 6.2s; animation-duration: 8.5s; }
.mote.m7 { left: 30%; bottom: 40%; animation-delay: 2s; animation-duration: 11s; }
.fire-copy { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 36px; pointer-events: none; }
.fire-copy .small { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; color: rgba(245,236,216,.55); font-weight: 600; }
.fire-copy .big { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; color: rgba(245,236,216,.92); font-weight: 700; line-height: 1.05; margin-top: 4px; }
.fire-copy .brands { font-family: 'Jost', sans-serif; font-size: 10px; color: rgba(232,160,32,.72); letter-spacing: 3px; margin-top: 10px; }

#partners { background: var(--c-bg); padding-top: 42px; }
.p-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 32px; }
.p-intro p { font-size: 15px; line-height: 1.82; color: var(--c-muted); font-weight: 300; }
.p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.p-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: 6px; padding: 32px 20px 26px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .28s var(--ease), border-color .28s, background .28s;
  position: relative; overflow: hidden;
}
.p-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-fire1), var(--c-gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.p-card:hover { transform: translateY(-5px); border-color: var(--c-border2); background: var(--c-raised); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.p-card:hover::before { transform: scaleX(1); }
.p-logo-wrap { min-height: 72px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.brand-word {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 3vw, 46px); font-weight: 700; line-height: 1;
  letter-spacing: .06em; color: var(--c-cream);
  text-shadow: 0 0 28px rgba(232,160,32,.2);
}
.brand-word::after {
  content: ''; display: block; width: 42px; height: 1px; margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--c-amber), transparent);
}
.baxi-word     { color: #7fc9ff; text-transform: uppercase; font-family: 'Jost', Arial, sans-serif; font-weight: 600; letter-spacing: .16em; }
.vaillant-word { color: #78d6ad; text-transform: lowercase; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; letter-spacing: .04em; }
.protherm-word { color: #ff8a72; text-transform: uppercase; font-family: 'Jost', Arial, sans-serif; font-weight: 600; letter-spacing: .12em; }
.gefest-word   { color: #f0c040; text-transform: uppercase; letter-spacing: .14em; }
.p-desc { font-size: 12.5px; color: var(--c-muted); line-height: 1.62; margin-bottom: 14px; }
.p-badge {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--c-amber); background: rgba(232,160,32,.08);
  border: 1px solid rgba(232,160,32,.2);
  padding: 3px 10px; border-radius: 2px; white-space: nowrap;
}

#about { background: var(--c-surface); }
.adv-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(232,160,32,.06);
  border-radius: 6px; overflow: hidden;
}
.adv {
  background: var(--c-surface); padding: 34px 26px;
  position: relative;
  transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.adv::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-fire1), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1);
}
.adv:hover { background: var(--c-raised); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.adv:hover::before { transform: scaleX(1); }
.adv-ico {
  width: 42px; height: 42px; margin-bottom: 20px;
  background: rgba(232,160,32,.07); border: 1px solid rgba(232,160,32,.16);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
}
.adv-ico svg { width: 18px; height: 18px; stroke: var(--c-amber); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.adv h4 { color: var(--c-cream); margin-bottom: 10px; }
.adv p { font-size: 13px; line-height: 1.72; color: var(--c-muted); }

.adv.js-fade {
  transform: translateY(24px) scale(0.97);
  transition-property: opacity, transform;
  transition-duration: 1.15s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.adv.js-fade.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#about2 { background: var(--c-bg); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-art {
  height: 420px; border-radius: 6px; overflow: hidden;
  background: var(--c-card); border: 1px solid var(--c-border);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-art-text { position: relative; z-index: 2; text-align: center; }
.about-art::before, .about-art::after {
  content: ''; position: absolute; inset: -20%;
  opacity: .6; animation: plasmaMove 10s ease-in-out infinite alternate;
}
.about-art::before {
  background: radial-gradient(circle at 40% 60%, rgba(200,50,0,.3) 0%, transparent 50%),
              radial-gradient(circle at 60% 40%, rgba(232,160,32,.2) 0%, transparent 50%);
}
.about-art::after {
  background: radial-gradient(circle at 50% 100%, rgba(255,128,64,.2) 0%, transparent 60%);
  animation-duration: 15s; animation-direction: alternate-reverse;
}
.about-text .eyebrow { margin-bottom: 10px; }
.about-text p { font-size: 15px; line-height: 1.88; color: var(--c-muted); font-weight: 300; margin-bottom: 16px; }

#contacts { background: var(--c-surface); }
.ctc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ccard {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: 6px; padding: 38px 32px;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.ccard:hover { border-color: var(--c-border2); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.ccard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-fire1), var(--c-gold));
}
.ccard-tag { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-fire3); font-weight: 600; margin-bottom: 8px; }
.ccard h3 { color: var(--c-cream); margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--c-border); }
.crow { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.cico {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(232,160,32,.06); border: 1px solid rgba(232,160,32,.14);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.cico svg { width: 14px; height: 14px; stroke: var(--c-amber); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ci { font-size: 13.5px; line-height: 1.6; color: var(--c-muted); }
.ci strong { color: var(--c-cream); display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.ci a { color: var(--c-fire3); text-decoration: none; font-size: 17px; font-weight: 500; display: block; line-height: 1.45; transition: color .2s; }
.ci a:hover { color: var(--c-amber); }
.ht { width: 100%; border-collapse: collapse; }
.ht td { font-size: 12.5px; padding: 3px 0; color: var(--c-muted); }
.ht td:first-child { color: var(--c-cream); font-weight: 500; width: 106px; }
.ht .off { opacity: .4; font-style: italic; }

footer { background: var(--c-surface); border-top: 1px solid var(--c-border); position: relative; z-index: 2; }
.foot-main {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px;
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--c-border);
}
.foot-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--c-cream); }
.foot-logo b { color: var(--c-gold); }
.foot-tagline { font-size: 12.5px; color: var(--c-muted); margin-top: 6px; line-height: 1.6; }
.foot-meta { font-size: 12px; color: rgba(138,122,98,.55); line-height: 1.9; text-align: right; }
.foot-legal {
  max-width: var(--max); margin: 0 auto;
  padding: 22px 36px 32px; display: flex; flex-direction: column; gap: 12px;
}
.fl { font-size: 11.5px; line-height: 1.7; color: rgba(138,122,98,.42); }
.fl strong { color: rgba(138,122,98,.65); font-weight: 500; }
.fl-sep { border: none; border-top: 1px solid rgba(232,160,32,.05); }
.fl-copy { font-size: 11px; color: rgba(138,122,98,.3); text-align: center; padding-top: 6px; }

#back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(19,16,8,.92); border: 1px solid var(--c-border2);
  color: var(--c-amber); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: rgba(232,160,32,.14); box-shadow: 0 6px 22px rgba(232,160,32,.22); }

#float-call {
  display: none;
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 199;
  background: linear-gradient(135deg, var(--c-fire2), var(--c-fire1));
  color: #fff; text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .3px;
  padding: 14px 30px; border-radius: 30px;
  box-shadow: 0 8px 28px rgba(200,50,0,.55);
  align-items: center; gap: 9px; white-space: nowrap;
  transition: box-shadow .2s, transform .2s;
}
#float-call:hover { transform: translateX(-50%) translateY(-1px); box-shadow: 0 12px 36px rgba(200,50,0,.65); }
#float-call svg { width: 16px; height: 16px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.7); } }
@keyframes plasmaMove { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1.1); } }
@keyframes flamePulse { 0%, 100% { opacity: .18; transform: scale(.92) translateY(0); } 50% { opacity: .48; transform: scale(1.08) translateY(-4px); } }
@keyframes moteFloat { 0% { opacity: 0; transform: translateY(0) translateX(0); } 10% { opacity: .4; } 90% { opacity: .12; } 100% { opacity: 0; transform: translateY(-180px) translateX(16px); } }

.js-fade, .js-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: transform, opacity;
}
.js-fade  { transition-delay: .1s; }
.js-reveal { transition-delay: .1s; }

.active .js-fade, .active .js-reveal,
.active > .js-fade, .active > .js-reveal,
.js-fade.active, .js-reveal.active { opacity: 1; transform: translateY(0); }

section.active > .w > .eyebrow,
section.active > .w > h2,
section.active > .w > .rule,
section.active > .w > .srv-wrap,
section.active > .w > .shop-grid > .shop-cats,
section.active > .w > .shop-grid > .fire-panel,
section.active > .w > .p-intro > div,
section.active > .w > .p-intro > p,
section.active > .w > .p-grid,
section.active > .w > .adv-grid,
section.active > .w > .about-wrap > .about-art,
section.active > .w > .about-wrap > .about-text > .eyebrow,
section.active > .w > .about-wrap > .about-text > h2,
section.active > .w > .about-wrap > .about-text > .rule,
section.active > .w > .about-wrap > .about-text > p,
section.active > .w > .about-wrap > .about-text > div,
section.active > .w > .ctc-grid > .ccard,
footer.active .foot-main > div,
footer.active .foot-meta,
footer.active .foot-legal,
footer.active .foot-legal > .fl,
footer.active .fl-sep,
footer.active .fl-copy { opacity: 1; transform: translateY(0); }

.active .srv:nth-child(2), .active .sc:nth-child(2), .active .p-card:nth-child(2), .active .adv:nth-child(2) { transition-delay: .10s; }
.active .srv:nth-child(3), .active .sc:nth-child(3), .active .p-card:nth-child(3), .active .adv:nth-child(3) { transition-delay: .15s; }
.active .srv:nth-child(4), .active .sc:nth-child(4), .active .p-card:nth-child(4), .active .adv:nth-child(4) { transition-delay: .20s; }
.active .srv:nth-child(5), .active .sc:nth-child(5), .active .p-card:nth-child(5), .active .adv:nth-child(5) { transition-delay: .25s; }
.active .srv:nth-child(6), .active .sc:nth-child(6), .active .p-card:nth-child(6), .active .adv:nth-child(6) { transition-delay: .30s; }

@media (max-width: 1080px) {
  .p-grid        { grid-template-columns: repeat(2, 1fr); }
  .adv-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-wrap    { grid-template-columns: 1fr; }
  .about-art     { height: 280px; }
  .p-intro       { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .burger    { display: block; }
  .mob-nav   { display: flex; }
  nav, .hdr-cta { display: none; }
  .hdr       { padding: 0 16px; height: 56px; }
  .logo-name { font-size: 17px; }

  section        { padding: 60px 16px; }
  .brands-strip  { padding: 12px 16px; }
  .brands-strip-inner { gap: 6px; }
  .b-lbl         { display: none; }
  .b-pill        { font-size: 10px; padding: 4px 10px; }

  .hero          { min-height: 100svh; }
  .hero-inner    { padding: 0 16px 60px; }
  .hero-veil     { background: linear-gradient(to right, rgba(10,8,5,.98) 0%, rgba(10,8,5,.65) 100%), linear-gradient(to top, rgba(10,8,5,.99) 0%, rgba(10,8,5,.0) 50%); }
  h1.hero-h      { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub      { font-size: 14px; margin-top: 14px; }
  .hero-btns     { margin-top: 24px; }
  .btn           { padding: 12px 22px; font-size: 11px; }
  .hero-stats    { margin-top: 32px; padding-top: 20px; flex-wrap: wrap; gap: 6px 0; }
  .stat          { padding-right: 20px; }
  .stat + .stat  { padding-left: 20px; }
  .stat-n        { font-size: 36px; }
  .stat-l        { font-size: 10px; }
  .hero-scroll   { display: none; }

  h2             { font-size: clamp(28px, 6vw, 40px); }
  .rule          { margin: 12px 0 28px; }

  .srv-wrap      { grid-template-columns: 1fr 1fr; }
  .srv           { padding: 24px 18px; }
  .srv-n         { font-size: 38px; margin-bottom: 10px; }
  .srv h3        { font-size: 16px; }
  .srv p         { font-size: 12.5px; }

  .shop-grid     { grid-template-columns: 1fr; }
  .shop-cats     { grid-template-columns: 1fr 1fr; }
  .fire-panel    { min-height: 220px; }
  .fire-copy .big { font-size: 22px; }

  .ctc-grid      { grid-template-columns: 1fr; }
  .ccard         { padding: 28px 20px; }
  .ccard h3      { font-size: 18px; }

  .foot-main, .foot-legal { padding-left: 16px; padding-right: 16px; }
  .foot-meta     { text-align: left; }
  .foot-tagline  { font-size: 11px; }

  #float-call    { display: flex; }
  #back-top      { bottom: 84px; right: 16px; width: 40px; height: 40px; font-size: 14px; }
}

@media (max-width: 560px) {
  .srv-wrap      { grid-template-columns: 1fr; }
  .adv-grid      { grid-template-columns: 1fr; }
  .p-grid        { grid-template-columns: 1fr; }
  .shop-cats     { grid-template-columns: 1fr; }
  .hero-stats    { flex-direction: row; flex-wrap: wrap; }
  .stat          { flex: 1; min-width: 80px; padding: 0 12px 0 0; }
  .stat + .stat  { padding-left: 12px; }
  .about-art     { height: 200px; }
  .brand-word    { font-size: clamp(26px, 8vw, 34px); }
  .p-card        { padding: 24px 16px 20px; }
  .p-desc        { font-size: 11.5px; }
  .ccard h3      { font-size: 16px; margin-bottom: 16px; padding-bottom: 12px; }
  .crow          { gap: 10px; }
  .ci a          { font-size: 15px; }
  .ht td         { font-size: 11px; }
  .ht td:first-child { width: 80px; }
  .foot-main     { flex-direction: column; gap: 16px; }
  .fl            { font-size: 10.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}