:root {
  --ink: #162129;
  --muted: #5d6973;
  --line: #d9e0e6;
  --panel: #ffffff;
  --soft: #fff6f6;
  --brand: #ff8f8f;
  --brand-dark: #b4232a;
  --steel: #c43a42;
  --deep: #391b1f;
  --ok: #1f7a4d;
  --error: #a32929;
  --radius: 8px;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--soft); color: var(--ink); font-family: Inter, Arial, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px clamp(18px, 4vw, 56px); background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { order: 1; display: inline-flex; align-items: center; justify-content: flex-start; flex: 0 0 190px; width: 190px; max-width: 190px; min-width: 124px; overflow: hidden; }
.brand img { display: block; width: 190px; max-width: 100%; height: auto; max-height: 42px; object-fit: contain; }
.site-header .site-logo-img { width: min(190px, 34vw) !important; max-width: min(190px, 34vw) !important; height: auto !important; max-height: 42px !important; object-fit: contain !important; }
.eyebrow { color: var(--steel); font-size: .78rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.site-nav { order: 2; }
.nav-toggle { order: 3; }
.site-nav ul { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 12px; color: var(--muted); font-weight: 700; border-radius: var(--radius); }
.site-nav a:hover, .site-nav .current-menu-item a { background: #ffe8e8; color: var(--deep); }
.nav-toggle { display: none; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); color: var(--deep); font-weight: 800; }
.hero, .product-hero { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); align-items: stretch; gap: clamp(20px,4vw,48px); min-height: calc(100vh - 74px); padding: clamp(44px,7vw,96px) clamp(18px,5vw,72px); background: linear-gradient(110deg, rgba(57, 27, 31, 0.86), rgba(196, 58, 66, 0.62)), url('../images/hero-topo.png') center / cover no-repeat; color: #fff; }
.hero-copy { align-self: center; max-width: 850px; }
.hero h1, .product-hero h1, .page-hero h1 { margin: 12px 0 18px; font-size: clamp(2.25rem,7vw,5.4rem); line-height: 1.01; letter-spacing: 0; }
.hero p, .product-hero p, .page-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.84); font-size: clamp(1rem,2vw,1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 800; cursor: pointer; }
.btn.primary { background: var(--brand); color: #1b170f; }
.btn.secondary { border-color: rgba(255,255,255,.38); color: #fff; }
.hero-panel { align-self: end; padding: 24px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: rgba(255,255,255,.1); }
.hero-panel strong { display: block; margin-bottom: 18px; font-size: 1.2rem; }
.hero-panel dl { display: grid; gap: 14px; margin: 0; }
.hero-panel div { display: grid; grid-template-columns: 80px 1fr; gap: 14px; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-panel dt { color: var(--brand); font-size: 2rem; font-weight: 800; }
.hero-panel dd { margin: 0; color: rgba(255,255,255,.78); }
.section { padding: clamp(44px,7vw,86px) clamp(18px,5vw,72px); }
.intro, .section-heading, .proof, .quote-band, .product-detail { display: grid; grid-template-columns: minmax(0,.85fr) minmax(280px,1.15fr); gap: clamp(22px,5vw,64px); align-items: start; }
.section h2 { margin: 8px 0 0; font-size: clamp(1.8rem,4vw,3.2rem); line-height: 1.08; letter-spacing: 0; }
.section p { margin: 0; color: var(--muted); }
.bands { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding-top: 0; padding-bottom: 0; background: var(--line); }
.bands article { min-height: 210px; padding: clamp(24px,4vw,40px); background: #fff; }
.bands h3, .asset-card h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.2; }
.asset-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.asset-card { display: grid; overflow: hidden; min-height: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.asset-media { min-height: 220px; background: linear-gradient(135deg, rgba(255,143,143,.26), transparent 42%), repeating-linear-gradient(90deg, #f0d9d9 0 22px, #e5c4c4 22px 24px); }
.asset-media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.asset-body { padding: 22px; }
.asset-body span { display: inline-block; margin-bottom: 8px; color: var(--brand-dark); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.text-link { display: inline-flex; margin-top: 16px; color: var(--steel); font-weight: 800; }
.proof { background: #fff; }
.proof ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.proof li { padding: 16px 18px; border-left: 4px solid var(--brand); background: var(--soft); color: var(--muted); }
.quote-band { background: linear-gradient(135deg, #391b1f, #c43a42); color: #fff; }
.quote-band p { color: rgba(255,255,255,.75); }
.loc-form { display: grid; gap: 16px; padding: clamp(18px,3vw,28px); border-radius: var(--radius); background: #fff; color: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.loc-form label { display: grid; gap: 7px; color: var(--deep); font-size: .9rem; font-weight: 800; }
.loc-form input, .loc-form select, .loc-form textarea { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); font: inherit; }
.loc-form textarea { resize: vertical; }
.loc-form .wide { grid-column: 1 / -1; }
.form-message { padding: 12px 14px; border-radius: var(--radius); font-weight: 700; }
.form-message.success { background: #e8f5ee; color: var(--ok); }
.form-message.error { background: #fbeaea; color: var(--error); }
.page-hero { padding: clamp(48px,8vw,92px) clamp(18px,5vw,72px); background: var(--deep); color: #fff; }
.content { max-width: 980px; }
.content a { color: var(--steel); font-weight: 800; }
.product-hero { min-height: auto; }
.product-image { overflow: hidden; min-height: 320px; border-radius: var(--radius); background: rgba(255,255,255,.12); }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.spec-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.spec-list h2 { margin: 0; padding: 20px; background: #fff; font-size: 1.4rem; }
.spec-list div { padding: 18px 20px; background: #fff; }
.spec-list dt { margin-bottom: 6px; color: var(--steel); font-weight: 800; }
.spec-list dd { margin: 0; color: var(--muted); }
.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 36px clamp(18px,5vw,72px); background: #2b1518; color: rgba(255,255,255,.78); }
.site-footer strong { display: block; color: #fff; font-size: 1.2rem; }
.site-footer p, .site-footer address { margin: 8px 0 0; font-style: normal; }
@media (max-width: 900px) {
  .site-header { align-items: start; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav { display: none; position: absolute; left: 18px; right: 18px; top: 70px; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; }
  .hero, .product-hero, .intro, .section-heading, .proof, .quote-band, .product-detail, .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .bands, .asset-grid, .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .brand { flex-basis: 132px; width: 132px; min-width: 132px; max-width: 132px; }
  .brand img, .site-header .site-logo-img { width: 132px !important; max-width: 132px !important; max-height: 34px !important; }

  .hero-actions, .btn { width: 100%; }
  .hero-panel div { grid-template-columns: 1fr; }
}
