/* ============================================================
   MATSATO™ V2 — css/style.css
   Domain: matssato.com
   Theme: Near-Black + Amber/Orange + Pakkawood Brown + Steel Silver
   Hero: Image LEFT / Text RIGHT (no product background)
   Features/Benefits: NEW Split-panel cards
   Footer: NEW Full dark minimal — logo centre + pipes + trust row
   ============================================================ */

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

:root {
  --black:         #0f0e0d;
  --charcoal:      #1a1816;
  --dark:          #242018;
  --dark-mid:      #2e2a24;
  --brown:         #92400e;
  --brown-mid:     #a16207;
  --pakka:         #78350f;
  --amber:         #c2410c;
  --amber-mid:     #ea580c;
  --amber-light:   #f97316;
  --amber-pale:    #fff7ed;
  --silver:        #94a3b8;
  --silver-light:  #cbd5e1;
  --steel:         #64748b;
  --white:         #ffffff;
  --off-white:     #faf9f7;
  --warm-white:    #f8f5f0;
  --text:          #1c1917;
  --muted:         #57534e;
  --border:        #e7e0d6;
  --border-light:  #f0ebe3;
  --radius:        8px;
  --radius-lg:     14px;
  --radius-pill:   50px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow:        0 4px 24px rgba(0,0,0,0.11);
  --shadow-h:      0 12px 40px rgba(0,0,0,0.18);
  --shadow-amber:  0 4px 20px rgba(194,65,12,0.22);
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-size: 18px; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.75; }

/* ===== NAVBAR ===== */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--black);
  padding: 0 24px; height: 74px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 2px solid var(--amber);
}
.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { font-family: 'Jost', sans-serif; font-size: 1.75rem; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0; }
.nav-logo span { color: var(--amber-light); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: #c8c0b4; text-decoration: none; font-size: 0.96rem; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--amber-light); }
.btn-nav-order {
  background: var(--amber) !important; color: var(--white) !important;
  font-weight: 800 !important; font-size: 0.9rem !important; letter-spacing: 0.5px;
  padding: 10px 24px !important; border-radius: var(--radius-pill) !important;
  border: none !important; transition: background 0.2s !important; text-transform: uppercase;
}
.btn-nav-order:hover { background: var(--amber-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 2px; background: var(--amber-light); display: block; border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: var(--black); position: absolute; top: 74px; left: 0; right: 0; padding: 24px 32px; gap: 18px; z-index: 999; border-bottom: 2px solid var(--amber); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #c8c0b4; text-decoration: none; font-size: 1.05rem; font-weight: 500; }
.mobile-menu .btn-mob-order { background: var(--amber); color: var(--white); text-align: center; padding: 13px; border-radius: var(--radius-pill); font-weight: 800; margin-top: 6px; font-size: 1rem; text-transform: uppercase; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--amber); color: var(--white);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.5px; text-transform: uppercase; padding: 15px 36px;
  border-radius: var(--radius-pill); text-decoration: none;
  transition: background 0.2s, transform 0.15s; box-shadow: var(--shadow-amber);
}
.btn-primary:hover { background: var(--amber-mid); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; padding: 14px 34px; border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.35); text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }

/* ===== SECTION TITLE BANDS ===== */
.sec-title-band {
  background: var(--charcoal); padding: 50px 40px 42px; text-align: center;
  border-top: 3px solid var(--amber); border-bottom: 3px solid var(--amber);
}
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2.45rem; font-weight: 900;
  color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2;
}
.sec-title-band p.band-sub {
  color: rgba(255,255,255,0.70); font-size: 1rem; margin-top: 10px; font-weight: 400;
}
/* Dark steel band variant */
.sec-title-band.steel-band {
  background: var(--dark); border-top-color: var(--silver); border-bottom-color: var(--silver);
}
.sec-title-band.steel-band h2 { color: var(--silver-light); }

/* ===== HERO — Image LEFT / Text RIGHT ===== */
.hero {
  background: linear-gradient(140deg, var(--black) 0%, var(--charcoal) 55%, var(--dark) 100%);
  padding: 80px 48px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1.05fr; align-items: center; gap: 60px;
}
/* Image LEFT */
.hero-img-wrap { order: 1; display: flex; justify-content: center; align-items: center; }
/* Text RIGHT */
.hero-content { order: 2; }

.hero-img-wrap a img {
  max-width: 100%; max-height: 520px; object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(194,65,12,0.30)) drop-shadow(0 4px 16px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04) rotate(-1deg); }

.hero-eyebrow {
  font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 800;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--amber-light);
  margin-bottom: 16px; display: inline-block;
  background: rgba(234,88,12,0.12); padding: 5px 18px;
  border-radius: var(--radius-pill); border: 1px solid rgba(234,88,12,0.28);
}
.hero-content h1 {
  font-family: 'Jost', sans-serif; font-size: 2.85rem; font-weight: 900;
  line-height: 1.1; color: var(--white); margin-bottom: 24px;
}
.hero-content h1 span { color: var(--amber-light); }
.hero-content p { font-size: 1.08rem; line-height: 1.82; color: #c8c0b4; margin-bottom: 14px; }

.hero-spec-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px;
}
.hero-spec {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 8px 14px;
  font-size: 0.88rem; font-weight: 700; color: var(--silver-light);
}
.hero-spec span:first-child { font-size: 1.1rem; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { font-size: 0.84rem; color: #78716c; margin-top: 12px; }
.hero-note strong { color: var(--amber-light); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--off-white); padding: 70px 48px; }
.reviews-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; transition: box-shadow 0.3s, transform 0.3s; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--amber);
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.reviewer-photo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; border: 3px solid var(--amber); }
.review-stars { height: 20px; margin: 0 auto 12px; display: block; }
.review-badge { font-size: 0.9rem; font-weight: 700; color: var(--amber); margin-bottom: 12px; }
.review-text { font-size: 0.98rem; line-height: 1.75; color: var(--muted); font-style: italic; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--dark); font-size: 0.92rem; }

/* ===== WHAT IS ===== */
.what-is-section { background: var(--white); padding: 70px 48px; }
.what-is-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.45fr; align-items: center; gap: 64px; }
.what-is-img-wrap { display: flex; justify-content: center; }
.what-is-img-wrap img { width: 100%; max-width: 400px; height: auto; object-fit: contain; filter: drop-shadow(0 8px 28px rgba(194,65,12,0.18)) drop-shadow(0 2px 8px rgba(0,0,0,0.25)); }
.what-is-text p { font-size: 1.1rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ===== WHY CHOOSE ===== */
.why-section { background: var(--warm-white); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.1rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ===== PRICING BAND ===== */
.pricing-band { background: var(--charcoal); padding: 48px 40px 16px; text-align: center; border-top: 3px solid var(--amber); }
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-band h4 { font-family: 'Jost', sans-serif; font-size: 1.25rem; font-weight: 500; color: var(--amber-light); margin-bottom: 0; }

/* ===== PRICING IMAGE ===== */
.price-img-section { background: var(--white); padding: 48px; text-align: center; }
.price-img-section a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform 0.3s; }
.price-img-section a:hover img { transform: scale(1.01); }

/* ===== FEATURES & BENEFITS — NEW Split-panel cards ===== */
.features-section { background: var(--off-white); padding: 70px 48px; }
.benefits-section { background: var(--warm-white); padding: 70px 48px; }
.split-grid { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.split-card {
  display: grid; grid-template-columns: 96px 1fr;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid var(--border-light);
}
.split-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }

/* Amber left panel for features */
.split-left {
  background: linear-gradient(160deg, var(--amber) 0%, var(--amber-mid) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 8px; gap: 5px;
}
/* Steel/dark left panel for benefits */
.split-left.dark-left {
  background: linear-gradient(160deg, var(--dark) 0%, var(--charcoal) 100%);
  border-right: 2px solid var(--amber);
}
.split-num {
  font-family: 'Jost', sans-serif; font-size: 1.5rem; font-weight: 900;
  color: rgba(255,255,255,0.40); line-height: 1;
}
.split-icon { font-size: 1.7rem; line-height: 1; }
.split-right { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.split-right strong {
  font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 800;
  color: var(--text); display: block; margin-bottom: 6px; line-height: 1.3;
}
.split-right p { font-size: 0.97rem; line-height: 1.72; color: var(--muted); }

/* ===== GUARANTEE ===== */
.guarantee-section { background: var(--white); padding: 70px 48px; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; align-items: center; gap: 60px; }
.guarantee-img-wrap { display: flex; justify-content: center; }
.guarantee-img-wrap img { width: 100%; max-width: 260px; height: auto; object-fit: contain; }
.guarantee-text p { font-size: 1.1rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

/* ===== FAQs ===== */
.faq-section { background: var(--off-white); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; padding: 20px 24px;
  font-family: 'Jost', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; transition: background 0.2s; line-height: 1.4;
}
.faq-question:hover { background: var(--amber-pale); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; color: var(--amber); flex-shrink: 0; }
.faq-answer { display: none; padding: 14px 24px 20px; font-size: 1.02rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border-light); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ===== ORDER SECTION ===== */
.order-how-section { background: var(--white); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.1rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform 0.3s; }
.order-img-wrap a:hover img { transform: scale(1.01); }

/* ===== PRICING DETAILS ===== */
.pricing-details { background: var(--warm-white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px 28px; border-top: 4px solid var(--amber); box-shadow: var(--shadow-sm); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1.12rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.info-block p, .info-block li { font-size: 1.02rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "⚔️ "; font-size: 0.85rem; }

/* ===== FINAL CTA ===== */
.cta-final {
  background: linear-gradient(145deg, var(--black) 0%, var(--dark) 50%, var(--charcoal) 100%);
  padding: 80px 48px; text-align: center;
  border-top: 3px solid var(--amber); border-bottom: 3px solid var(--amber);
}
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--white); margin-bottom: 12px; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; }
.cta-final h2 span { color: var(--amber-light); }
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-product-img { max-width: 360px; margin: 0 auto 32px; }
.cta-product-img a img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 14px 40px rgba(194,65,12,0.40)) drop-shadow(0 4px 12px rgba(0,0,0,0.60)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05) rotate(-1deg); }
.cta-regular-price { font-size: 1.1rem; color: rgba(255,255,255,0.30); text-decoration: line-through; display: block; margin-bottom: 4px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--amber-light); display: block; margin-bottom: 28px; }

/* ===== FOOTER — NEW Full dark minimal: logo centre + pipes + trust row ===== */
footer {
  background: var(--black);
  border-top: 3px solid var(--amber);
  padding: 52px 48px 28px;
}

/* Logo row — centred */
.footer-logo-row {
  text-align: center; margin-bottom: 28px;
}
.footer-logo-row a {
  font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--white); text-decoration: none; letter-spacing: 3px; text-transform: uppercase;
}
.footer-logo-row a span { color: var(--amber-light); }
.footer-logo-row p { font-size: 0.88rem; color: #44403c; margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; }

/* Pipe-separated nav links — centred */
.footer-nav-pipes {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0; margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-nav-pipes a {
  color: #78716c; text-decoration: none; font-size: 0.88rem; font-weight: 600;
  padding: 4px 18px; border-right: 1px solid rgba(255,255,255,0.10);
  transition: color 0.2s; white-space: nowrap; font-family: 'Jost', sans-serif;
}
.footer-nav-pipes a:last-child { border-right: none; }
.footer-nav-pipes a:hover { color: var(--amber-light); }

/* Trust row — icon badges centred */
.footer-trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px;
  margin-bottom: 32px;
}
.ftr-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 10px 18px;
}
.ftr-badge-icon { font-size: 1.15rem; }
.ftr-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.ftr-badge-text strong { font-size: 0.82rem; font-weight: 800; color: var(--white); font-family: 'Jost', sans-serif; }
.ftr-badge-text span { font-size: 0.72rem; color: #44403c; font-family: 'Jost', sans-serif; }

/* Legal + copyright */
.footer-legal { max-width: 960px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; }
.footer-legal p { font-size: 0.83rem; color: #292524; line-height: 1.72; margin-bottom: 10px; }
.footer-copy { font-size: 0.85rem; color: #292524; margin-top: 10px; font-family: 'Jost', sans-serif; }
.footer-copy a { color: #44403c; text-decoration: none; }
.footer-copy a:hover { color: var(--amber-light); }

/* ===== FADE-UP ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.3rem; }
  .what-is-inner { grid-template-columns: 1fr 1.3fr; gap: 44px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: 1; }
  .hero-content { order: 2; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { justify-content: center; }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 44px 20px; }
  .hero-content h1 { font-size: 1.9rem; }
  .sec-title-band { padding: 38px 20px 32px; }
  .sec-title-band h2 { font-size: 1.65rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section, .what-is-section, .why-section, .features-section,
  .guarantee-section, .benefits-section, .faq-section, .order-how-section { padding: 44px 20px; }
  .pricing-details, .price-img-section { padding: 32px 20px; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.85rem; }
  .cta-current-price { font-size: 2.1rem; }
  footer { padding: 44px 20px 28px; }
  .footer-nav-pipes a { padding: 4px 10px; font-size: 0.82rem; }
  .split-card { grid-template-columns: 76px 1fr; }
  .hero-spec-row { gap: 8px; }
  .footer-trust-row { gap: 10px 16px; }
}