@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --bg: #fcfbfa;
  --surface: #ffffff;
  --alt: #f6f2ee;
  --text: #1c1917;
  --muted: #5f5853;
  --line: #ebe4de;
  --accent: #c9340b;
  --accent-dark: #a02905;
  --accent-soft: #fff0e6;
  --grad: linear-gradient(100deg, #f07a0c, #e0140a);
  --on-accent: #ffffff;
  --shadow: 0 1px 2px rgb(28 25 23 / .04), 0 8px 24px -8px rgb(28 25 23 / .10);
  --shadow-lg: 0 2px 4px rgb(28 25 23 / .05), 0 24px 48px -16px rgb(28 25 23 / .22);
  --max: 1120px;
  --radius: 16px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131110; --surface: #1b1816; --alt: #181513; --text: #f1ece8; --muted: #aca39d;
    --line: #2e2825; --accent: #ff8a4c; --accent-dark: #ffb088; --accent-soft: #2e1b11;
    --grad: linear-gradient(100deg, #ffa43d, #ff5a3d); --on-accent: #1a0d06;
    --shadow: 0 1px 2px rgb(0 0 0 / .3), 0 8px 24px -8px rgb(0 0 0 / .5);
    --shadow-lg: 0 2px 4px rgb(0 0 0 / .3), 0 24px 48px -16px rgb(0 0 0 / .7);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font: 16px/1.65 "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-underline-offset: 3px; }
img { max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: 20px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px 16px; min-height: 64px; flex-wrap: wrap; padding-block: 8px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--text); text-decoration: none; }
.logo img { width: 32px; height: 32px; }
nav.main { display: flex; align-items: center; gap: 4px 22px; flex-wrap: wrap; }
nav.main a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; }
nav.main a:hover { color: var(--text); }
nav.main a.nav-cta { color: var(--text); border: 1px solid var(--line); background: var(--surface); padding: 6px 14px; border-radius: 999px; }
nav.main a.nav-cta:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 600px) {
  nav.main { width: 100%; justify-content: space-between; gap: 4px 8px; }
  nav.main a { font-size: 14px; }
  nav.main a.nav-cta { padding: 3px 12px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--on-accent); text-decoration: none;
  padding: 13px 22px; border-radius: 12px; font-weight: 600; font-size: 16px; line-height: 1.2;
  border: 1px solid transparent;
  transition: background-color .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn.ghost { background: var(--surface); color: var(--text); border-color: var(--line); box-shadow: none; }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: 88px 80px; }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto 45%; height: 130%;
  background: radial-gradient(closest-side, color-mix(in srgb, #f07a0c 22%, transparent), transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.eyebrow, .kicker { color: var(--accent); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
.hero h1 { font-size: clamp(36px, 5.6vw, 60px); line-height: 1.06; margin: 0 0 22px; letter-spacing: -0.035em; font-weight: 800; }
.hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 19px; color: var(--muted); max-width: 54ch; margin: 0 0 30px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.facts { list-style: none; padding: 0; margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 10px 28px; color: var(--muted); font-size: 14px; }
.facts li { display: flex; align-items: baseline; gap: 6px; }
.facts strong { color: var(--text); font-size: 17px; font-weight: 700; }

.brand-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-block: 20px; }
.bt {
  aspect-ratio: 4 / 3; border-radius: 18px; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden;
}
.bt:nth-child(odd) { transform: translateY(20px); }
.bt:nth-child(even) { transform: translateY(-20px); }
.bt img { max-width: 100%; height: auto; }
.bt-vulcaro img { width: 88%; }
.bt-ig img { width: 44px; border-radius: 12px; flex: none; }
.bt-ba img { width: 92%; }
.bt span { font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.bt .silk-mark { width: 52px; height: 52px; }

/* Product brand panels, shared by hero tiles and product cards */
.bt-vulcaro, .pb-vulcaro { background: radial-gradient(120% 90% at 50% 110%, #7a1d08 0%, #2a0d06 45%, #0a0a0a 75%); border-color: #1f1a18; }
.bt-ig, .pb-ig { background: linear-gradient(135deg, #eef3ff, #f3edff); border-color: #e1e6f6; }
.bt-ig span, .pb-ig span { font-size: clamp(15px, 1.6vw, 20px); background: linear-gradient(90deg, #2563eb, #7c3aed); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bt-silk, .pb-silk { background: radial-gradient(100% 90% at 80% 10%, #2a2150 0%, #120f1f 55%, #0b0a10 100%); border-color: #221d36; }
.bt-silk span, .pb-silk span { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: 34px; color: #f3efe7; letter-spacing: -0.01em; }
.bt-ba, .pb-ba { background: linear-gradient(135deg, #ffffff, #e9fbf5 60%, #e6f2ff); border-color: #dcebe7; }

@media (max-width: 860px) {
  .hero { padding-block: 48px 56px; }
  .hero::before { inset: auto -40% -10% -40%; height: 60%; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-tiles { max-width: 520px; width: 100%; justify-self: center; }
}

/* Sections */
section { padding-block: 88px; }
section.alt { background: var(--alt); border-block: 1px solid var(--line); }
section h2 { font-size: clamp(28px, 3.6vw, 38px); line-height: 1.15; margin: 0 0 14px; letter-spacing: -0.025em; font-weight: 750; max-width: 24ch; }
section .intro { color: var(--muted); font-size: 17px; max-width: 60ch; margin: 0 0 44px; }
@media (max-width: 600px) { section { padding-block: 64px; } }

/* Products */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 24px; }
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.p-brand { height: 168px; display: flex; align-items: center; justify-content: center; gap: 14px; border-bottom: 1px solid var(--line); padding: 24px; }
.pb-vulcaro img { width: min(260px, 70%); height: auto; }
.pb-ig img { width: 64px; height: 64px; border-radius: 16px; }
.pb-ig span { font-size: 28px; font-weight: 750; letter-spacing: -0.02em; }
.pb-silk .silk-mark { width: 64px; height: 64px; }
.pb-silk span { font-size: 44px; }
.pb-ba img { width: min(280px, 75%); height: auto; }
.product .p-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product .p-cat { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.product h3 { margin: 0; font-size: 23px; letter-spacing: -0.02em; line-height: 1.2; }
.product .tag { margin: 0 0 2px; font-weight: 600; font-size: 16px; color: var(--accent); }
.product p { margin: 0; color: var(--muted); font-size: 15px; }
.p-feats { margin: 4px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.p-feats li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--text); }
.p-feats li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 11px; height: 6px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.product .price { color: var(--text); font-size: 14px; font-weight: 500; background: var(--alt); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; margin-top: 6px; }
.product .p-link { margin-top: auto; padding-top: 12px; font-weight: 600; text-decoration: none; }
.product .p-link span { display: inline-block; transition: transform .15s; }
.product .p-link:hover span { transform: translateX(3px); }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.card .icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* About */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about p:not(.kicker) { color: var(--muted); font-size: 17px; max-width: 60ch; margin: 0 0 16px; }
.about-facts { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 24px; box-shadow: var(--shadow); }
.about-facts div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.about-facts div:last-child { border-bottom: 0; }
.about-facts dt { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.about-facts dd { margin: 0; font-weight: 600; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; gap: 32px; } }

/* Company details */
.details { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.details th, .details td { text-align: left; padding: 15px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.details tr:last-child th, .details tr:last-child td { border-bottom: 0; }
.details th { width: 36%; color: var(--muted); font-weight: 500; font-size: 15px; }
.details td { font-weight: 500; }
@media (max-width: 560px) {
  .details th, .details td { display: block; width: 100%; }
  .details th { padding-bottom: 0; border-bottom: 0; font-size: 13px; }
  .details td { padding-top: 2px; }
}

/* Contact CTA */
section.cta { padding-top: 0; }
.cta-panel {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, #e8620a, #d61a0a); color: #fff;
  border-radius: 24px; padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 30px 60px -30px rgb(214 26 10 / .55);
}
.cta-panel h2 { color: #fff; max-width: 20ch; }
.cta-panel p { color: rgb(255 255 255 / .88); font-size: 17px; margin: 0 0 26px; max-width: 46ch; }
.btn.light { background: #fff; color: #b12a07; box-shadow: 0 8px 20px -8px rgb(0 0 0 / .35); overflow-wrap: anywhere; }
.btn.light:hover { background: #fff4ec; }
.cta-info { margin: 0; display: grid; gap: 20px; }
.cta-info div { background: rgb(255 255 255 / .12); border: 1px solid rgb(255 255 255 / .2); border-radius: 14px; padding: 16px 18px; }
.cta-info dt { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .8; margin-bottom: 4px; }
.cta-info dd { margin: 0; font-weight: 500; }
@media (max-width: 860px) { .cta-panel { grid-template-columns: 1fr; gap: 28px; } }

/* Footer */
footer.site { border-top: 1px solid var(--line); padding-block: 40px; color: var(--muted); font-size: 14px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
footer.site .logo { font-size: 16px; margin-bottom: 10px; }
footer.site .logo img { width: 24px; height: 24px; }
footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--text); }
footer.site p { margin: 0 0 4px; }

/* Legal pages */
.legal { padding-block: 64px 80px; max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4vw, 40px); margin: 0 0 8px; letter-spacing: -0.025em; line-height: 1.15; }
.legal .updated { color: var(--muted); margin: 0 0 36px; }
.legal h2 { font-size: 21px; margin: 36px 0 8px; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; margin: 24px 0 6px; }
.legal p, .legal li { color: var(--text); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal .consent { margin: 16px 0 24px; padding: 16px 20px; background: var(--alt); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; font-size: 15px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
