/* ---- Tracking Remade public site — brand tokens from live site ---- */
:root {
  --dark:   #1E1913;
  --orange: #F69000;
  --gray:   #B3B3B3;
  --light:  #FCFCFD;
  --ink:    #1E1913;
  --radius: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; color: var(--ink); background: var(--light);
  line-height: 1.65; padding-top: 80px; }
::selection { background: var(--orange); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.center-block { text-align: center; }

/* buttons */
.btn { display: inline-block; border-radius: 999px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; cursor: pointer; transition: .3s; }
.btn-accent { background: var(--orange); color: #fff; padding: 18px 40px; font-size: 13px;
  box-shadow: 0 20px 25px -5px rgba(120,53,15,.2); }
.btn-accent:hover { background: #fff; color: var(--dark); }
.btn-lg { padding: 16px 40px; font-size: 13px; }
.btn-dark { background: var(--dark); color: #fff; padding: 12px 32px; font-size: 12px; }
.btn-dark:hover { background: var(--orange); }
.btn-card { background: #fff; color: var(--dark); border-radius: 12px; padding: 12px 32px; font-size: 12px; letter-spacing: .05em; }
.btn-card:hover { background: var(--dark); color: #fff; }
.link-cta { font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8); border-bottom: 2px solid rgba(255,255,255,.1); padding: 16px 8px; }
.link-cta:hover { color: #fff; border-color: var(--orange); }

/* header — fixed, 80px, like live */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 120; background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.1); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 80px;
  max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.brand { display: flex; align-items: center; transition: transform .3s; }
.brand:hover { transform: scale(1.05); }
.brand-shield { height: 44px; width: auto; object-fit: contain; margin-right: 8px; }
.brand-wordmark { height: 38px; width: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 38px; font-size: 15px; font-weight: 600;
  letter-spacing: .02em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.site-nav a { transition: color .2s; }
.site-nav a:hover, .site-nav a.active { color: var(--orange); }
.site-nav .nav-quote { background: var(--orange); color: #fff; padding: 11px 28px; border-radius: 999px;
  font-weight: 700; font-size: 14px; box-shadow: 0 2px 6px rgba(0,0,0,.25); }
.site-nav .nav-quote:hover { background: #fff; color: var(--orange); }
.nav-login { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); }
.nav-login:hover { color: var(--orange) !important; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: #fff; cursor: pointer; }

/* hero */
.hero { position: relative; min-height: calc(100vh - 80px); display: flex; align-items: center;
  color: #fff; background: var(--dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: right center; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(90deg, #1E1913 0%, #1E1913 40%, rgba(30,25,19,.7) 70%, transparent 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 48px 24px 96px; transform: translateY(-24px); }
.hero h1 { font-size: clamp(56px, 7.5vw, 96px); line-height: 1.1; font-weight: 200; margin-bottom: 32px; }
.hero h1 .hl { color: var(--orange); font-weight: 700; }
.hero p { max-width: 576px; font-size: clamp(16px, 1.4vw, 20px); font-weight: 300;
  color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }

/* sections */
.section { padding: 96px 0; }
.section-alt { background: var(--light); }
.kicker { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .25em;
  font-size: 13px; margin-bottom: 16px; }
.section h2, .cta-band h2 { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.3; font-weight: 300; }
.section h2 b { font-weight: 700; }
.center-block h2 { margin: 0 auto; max-width: 820px; }
.lead { margin: 20px auto 32px; max-width: 740px; color: var(--gray); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.7; }

/* about — 2-column like live */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.about-grid h2 { max-width: none; }
.about-grid .lead { margin-left: 0; margin-right: 0; }

/* features — light headings with column dividers */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(179,179,179,.2); }
.feature h3 { font-size: clamp(24px, 2vw, 30px); font-weight: 300; margin-bottom: 12px; }
.feature p { color: var(--gray); font-size: 16px; line-height: 1.7; }
.feature:nth-child(2) { border-left: 1px solid rgba(179,179,179,.2); border-right: 1px solid rgba(179,179,179,.2); padding: 0 24px; }

/* range cards — 550px image cards, rounded-3xl */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; text-align: left; }
.range-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 550px;
  background-size: cover; background-position: center; display: flex; align-items: flex-end;
  background-color: var(--dark); box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); transition: box-shadow .5s; }
.range-card::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, #1E1913 0%, rgba(30,25,19,.4) 50%, transparent 100%); transition: .5s; }
.range-card:hover { box-shadow: 0 25px 50px -12px rgba(246,144,0,.2); }
.range-card:hover::after { background: linear-gradient(to top, rgba(246,144,0,.9) 0%, rgba(246,144,0,.6) 50%, transparent 100%); }
.range-body { position: relative; z-index: 1; padding: 40px; color: #fff; display: flex; flex-direction: column; }
.tag { align-self: flex-start; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); color: #fff;
  font-size: 10px; font-weight: 700; padding: 5px 13px; border-radius: 999px; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 16px; }
.range-body h3 { font-size: clamp(24px, 2vw, 30px); line-height: 1.25; font-weight: 700; margin-bottom: 16px; }
.range-body p { color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.range-body .btn-card { align-self: flex-start; }

/* testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; text-align: left; }
.quote-grid blockquote { background: var(--light); border: 1px solid rgba(179,179,179,.2);
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.quote-grid p { font-style: italic; color: var(--gray); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.7; margin-bottom: 24px; }
.quote-grid footer { font-weight: 700; font-size: 18px; color: var(--ink); }
.section .quote-h2 { font-size: clamp(30px, 3.4vw, 48px); }

/* CTA band */
.cta-band { position: relative; min-height: 500px; display: flex; align-items: center; background: var(--dark); color: #fff; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .3; }
.cta-overlay { display: none; }
.cta-content { position: relative; z-index: 1; max-width: 896px; margin: 0 auto; padding: 80px 24px; }
.cta-band h2 { font-size: clamp(30px, 3.4vw, 48px); margin-bottom: 24px; }
.cta-content p { font-size: clamp(18px, 1.7vw, 24px); color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 40px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.contact-grid h2 { margin-bottom: 40px; }
.contact-grid h2 b { font-weight: 700; }
.info-row { display: flex; gap: 20px; margin-bottom: 32px; }
.info-icon { width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%;
  background: rgba(246,144,0,.1); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.info-row h4 { text-transform: uppercase; letter-spacing: .1em; font-size: 15px; margin-bottom: 8px; font-weight: 700; }
.muted-p { color: var(--gray); line-height: 1.7; }
.direct-card { background: var(--dark); color: #fff; border-radius: var(--radius); padding: 44px 40px; }
.direct-label { color: var(--gray); text-transform: uppercase; letter-spacing: .18em; font-size: 13px; margin-bottom: 24px; }
.direct-phone { display: block; font-size: clamp(34px, 4.5vw, 52px); font-weight: 800; color: #fff; }
.direct-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.15); margin: 26px 0; }
.direct-mail { color: var(--orange); font-weight: 600; font-size: 18px; }
.direct-mail:hover { text-decoration: underline; }

/* footer — light like live */
.site-footer { background: var(--light); padding: 80px 0 0; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(179,179,179,.2); }
.footer-logo { height: 88px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { color: var(--gray); font-size: 17px; line-height: 1.7; margin-bottom: 20px; }
.footer-grid h4 { text-transform: uppercase; font-size: 12px; color: var(--gray); margin-bottom: 16px; font-weight: 700; letter-spacing: .05em; }
.footer-grid a { display: block; padding: 6px 0; font-weight: 500; font-size: 16px; transition: color .2s; }
.footer-grid a:hover { color: var(--orange); }
.social { display: inline-flex !important; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(179,179,179,.2); align-items: center; justify-content: center;
  font-size: 0; padding: 0 !important; }
.social::before { content: 'f'; font-size: 18px; font-weight: 700; color: var(--ink); }
.social:hover { background: rgba(246,144,0,.1); }
.addr { color: var(--gray); line-height: 1.7; margin-bottom: 24px; font-style: normal; }
.contact-block { margin-bottom: 24px; }
.contact-name { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: 10px;
  color: var(--gray); font-weight: 700; margin-bottom: 6px; }
.contact-phone { font-size: 16px !important; font-weight: 700 !important; padding: 2px 0 !important; }
.contact-phone:hover, .contact-mail:hover { color: var(--orange); }
.contact-mail { font-size: 16px !important; font-weight: 700 !important; text-decoration: underline;
  text-underline-offset: 4px; padding: 2px 0 !important; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  max-width: 1280px; margin: 0 auto; padding: 32px 24px; font-size: 12px; color: var(--gray); flex-wrap: wrap; }
.footer-bottom a { color: var(--gray); }
.footer-bottom a:hover { color: var(--orange); }

/* page hero (inner pages) */
.page-hero { position: relative; min-height: 620px; display: flex; align-items: center;
  color: #fff; background: var(--dark); overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(0deg, #1E1913 5%, rgba(30,25,19,.75) 55%, rgba(30,25,19,.5) 100%); }
.page-hero-content { position: relative; z-index: 1; width: 100%; padding: 96px 24px; }
.crumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 22px; text-transform: uppercase; letter-spacing: .2em; }
.crumbs a { color: var(--orange); }
.crumbs a:hover { color: var(--orange); }
.page-hero h1 { font-size: clamp(44px, 5.6vw, 80px); font-weight: 300; line-height: 1.1; margin-bottom: 24px; max-width: 900px; }
.page-hero h1 .hl { color: var(--orange); font-weight: 800; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.8); font-weight: 300; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.7; }

/* product cards (dynamic listings) */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; margin-top: 56px; text-align: left; }
.prod-loading { grid-column: 1 / -1; text-align: center; color: var(--gray); padding: 40px 0; font-size: 17px; }
.prod-loading a { color: var(--orange); font-weight: 600; }
.prod-card { background: #fff; border: 1px solid rgba(179,179,179,.2); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: .3s; }
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -12px rgba(30,25,19,.15); }
.prod-img { aspect-ratio: 4 / 3; background-size: contain; background-repeat: no-repeat;
  background-position: center; background-color: #fff; border-bottom: 1px solid rgba(179,179,179,.15); }
.prod-img.empty { position: relative; }
.prod-img.empty::after { content: '📦'; position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 42px; opacity: .25; }
.prod-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.prod-body h3 { font-size: 24px; font-weight: 700; }
.prod-price { color: var(--orange); font-weight: 800; font-size: 22px; }
.prod-body p { color: var(--gray); font-size: 15px; line-height: 1.7; flex: 1; }
.btn-sm-card { padding: 13px 30px; font-size: 12px; align-self: flex-start; }

/* shop: cart + checkout */
.nav-cart { position: relative; font-size: 20px; line-height: 1; }
.cart-badge { position: absolute; top: -8px; right: -12px; min-width: 18px; height: 18px;
  background: var(--orange); color: #fff; border-radius: 999px; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; }
.prod-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid rgba(179,179,179,.35);
  border-radius: 999px; overflow: hidden; background: #fff; }
.qty-stepper button { width: 36px; height: 40px; border: 0; background: none; font-size: 18px;
  cursor: pointer; color: var(--ink); font-family: inherit; }
.qty-stepper button:hover { color: var(--orange); }
.qty-input { width: 44px; height: 40px; border: 0; text-align: center; font: inherit; font-weight: 700;
  -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.shop-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(30,25,19,.6);
  display: flex; align-items: center; justify-content: center; padding: 20px; }
.shop-panel { position: relative; background: #fff; border-radius: 20px; padding: 36px;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 60px rgba(0,0,0,.35); }
.shop-panel h3 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.shop-sub { color: var(--gray); font-size: 15px; margin-bottom: 22px; }
.shop-empty { color: var(--gray); padding: 20px 0 8px; }
.shop-close { position: absolute; top: 18px; right: 18px; border: 0; background: none;
  font-size: 20px; cursor: pointer; color: var(--gray); }
.shop-close:hover { color: var(--ink); }
.cart-rows { display: flex; flex-direction: column; gap: 14px; margin: 18px 0; }
.cart-row { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid rgba(179,179,179,.2); padding-bottom: 14px; }
.cart-name { flex: 1; font-weight: 600; font-size: 15px; }
.cart-name span { display: block; color: var(--gray); font-weight: 400; font-size: 13px; }
.cart-line { font-weight: 700; min-width: 92px; text-align: right; }
.cart-remove { border: 0; background: none; cursor: pointer; color: var(--gray); font-size: 15px; }
.cart-remove:hover { color: #c0392b; }
.cart-total { display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; border-top: 2px solid var(--dark); padding-top: 14px; margin-top: 6px; }
.cart-total b { font-size: 22px; }
.shop-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 22px; flex-wrap: wrap; }
.shop-actions .btn { padding: 13px 28px; font-size: 12px; }
#sh-form { margin-top: 8px; }
.sh-field { margin-bottom: 14px; }
.sh-field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--gray); margin-bottom: 6px; }
.sh-field input, .sh-field textarea { width: 100%; font: inherit; font-size: 15px; padding: 12px 14px;
  border: 1px solid rgba(179,179,179,.4); border-radius: 10px; background: var(--light); }
.sh-field input:focus, .sh-field textarea:focus { outline: 2px solid var(--orange); border-color: transparent; }
.sh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sh-radio { display: flex; gap: 22px; font-size: 15px; }
.sh-radio label { display: flex; align-items: center; gap: 8px; text-transform: none; letter-spacing: 0;
  font-weight: 600; color: var(--ink); font-size: 15px; cursor: pointer; }
.sh-radio input { accent-color: var(--orange); width: 18px; height: 18px; }
.sh-error { color: #c0392b; font-size: 14px; min-height: 20px; margin-top: 8px; }
.shop-done { text-align: center; padding: 16px 4px; }
.shop-done-icon { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(246,144,0,.12); color: var(--orange); font-size: 30px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; }
.shop-done p { color: var(--gray); margin: 10px 0 22px; }
@media (max-width: 560px) { .sh-grid { grid-template-columns: 1fr; } .cart-row { flex-wrap: wrap; } }

/* responsive */
@media (max-width: 1150px) {
  .feature-grid, .range-grid, .quote-grid { grid-template-columns: 1fr; }
  .feature:nth-child(2) { border: 0; padding: 0; }
  .feature-grid { gap: 40px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: fixed; inset: 80px 0 0 0; background: var(--dark);
    flex-direction: column; justify-content: center; gap: 32px; padding: 24px; text-align: center; overflow-y: auto; }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 26px; font-weight: 700; letter-spacing: .1em; }
  .site-nav .nav-quote { font-size: 14px; padding: 16px 40px; margin-top: 8px; }
  .nav-login { font-size: 13px; }
  .hero-bg { background-position: left center; opacity: .6; }
  .hero-overlay { background: linear-gradient(0deg, rgba(30,25,19,1) 30%, rgba(30,25,19,.4) 100%); }
  .range-card { height: 450px; }
  .brand-wordmark { height: 32px; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
