:root {
  --cream: #f8f4ee;
  --cream-2: #efe8de;
  --paper: #fffdf9;
  --ink: #181818;
  --mute: #6f6a66;
  --line: #e6dcd0;
  --slash: #b33323;
  --slash-d: #8e281c;
  --lsus: #0b2545;
  --dirio: #0d3a66;
  --radius: 0.75rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Segoe, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  padding-top: 4rem;
}
img { max-width: 100%; height: auto; display: block; }
section[id] { scroll-margin-top: 5rem; }
a { color: inherit; }
button { font-family: inherit; }

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wrap { width: min(1240px, calc(100% - 8%)); }
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slash);
}
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.15; }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 0.7rem 0 0; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0.45rem 0 0; font-weight: 700; }
h3 { font-size: 1.15rem; margin: 0; font-weight: 650; }
.lead { margin: 1rem 0 0; font-size: 1.125rem; color: #3f3b38; max-width: 40rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.4rem;
  font-weight: 650;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-fill { background: var(--slash); color: #fff; }
.btn-fill:hover { background: var(--slash-d); }
.btn-line { background: transparent; color: var(--ink); border-color: #b8aea4; }
.btn-line:hover { border-color: var(--ink); background: rgba(0,0,0,.04); }
.btn-nav { min-height: 2.2rem; padding: 0.35rem 0.95rem; font-size: 0.8125rem; }
.btn-ghost { color: var(--slash); font-weight: 650; text-decoration: none; }
.btn-ghost:hover { text-decoration: underline; color: var(--slash-d); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(248,244,238,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; min-width: 0; flex: 1; }
.brand img { height: auto; max-height: 2.2rem; width: auto; max-width: min(100%, 13.5rem); }
@media (min-width: 640px) {
  .brand img { max-height: 2.55rem; max-width: 18rem; }
}
.nav-desk {
  display: none;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9375rem;
  color: #3f3b38;
}
.nav-desk a { text-decoration: none; }
.nav-desk a:hover { color: var(--slash); }
.header-actions { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
@media (max-width: 639px) {
  .header-actions .btn-nav { display: none; }
}
.lang {
  display: flex;
  border: 1px solid #d4cbc2;
  border-radius: 0.375rem;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
}
.lang a { padding: 0.32rem 0.5rem; color: var(--mute); text-decoration: none; }
.lang a.is-active { background: var(--ink); color: #fff; }
.nav-burger {
  width: 2.5rem; height: 2.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #d4cbc2; border-radius: 0.375rem;
  background: var(--paper); color: var(--ink); cursor: pointer;
}
.nav-burger[aria-expanded="true"] { border-color: var(--slash); color: var(--slash); }
#mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--cream); }
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block; padding: 0.85rem 0;
  font-size: 0.95rem; font-weight: 500;
  color: #3f3b38; text-decoration: none;
  border-bottom: 1px solid var(--line);
}
#mobile-nav a:last-child { border-bottom: 0; }
#mobile-nav a:hover { color: var(--slash); }
@media (min-width: 1024px) {
  .nav-desk { display: flex; }
  .nav-burger, #mobile-nav, #mobile-nav.open { display: none !important; }
}

.hero { padding: 2.4rem 0 3.2rem; }
.hero-copy { max-width: 44rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.1rem;
  margin-top: 1.35rem; color: var(--mute); font-size: 0.875rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta i { width: 0.35rem; height: 0.35rem; border-radius: 99px; background: var(--slash); display: inline-block; }

.section { padding: 3.2rem 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 40rem; margin-bottom: 1.8rem; }

.products {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .products { grid-template-columns: 1fr 1fr; }
}
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.product:hover { border-color: #d2c6b8; }
.chrome {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  background: #f3eee8;
  border-bottom: 1px solid var(--line);
}
.chrome i { width: 0.55rem; height: 0.55rem; border-radius: 99px; }
.chrome .r { background: #e07a72; }
.chrome .y { background: #d4b06a; }
.chrome .g { background: #8cba7a; }
.chrome span { margin-left: 0.45rem; font-size: 0.7rem; color: #8a8279; }
.product img.shot { width: 100%; height: 13.5rem; object-fit: cover; object-position: top; }
.product-body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.product img.product-logo {
  height: 2.2rem;
  width: auto;
  max-width: 11.5rem;
  max-height: 2.2rem;
  object-fit: contain;
  object-position: left center;
}
.product img.product-logo.dirio { height: 2.4rem; max-height: 2.4rem; }
.product p { margin: 0; color: var(--mute); font-size: 0.95rem; }
.product ul {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #3f3b38;
}
.product li { display: flex; gap: 0.55rem; align-items: flex-start; }
.product li::before {
  content: "";
  width: 0.42rem; height: 0.42rem;
  margin-top: 0.45rem;
  border-radius: 99px;
  background: var(--slash);
  flex-shrink: 0;
}
.product-cta { margin-top: auto; padding-top: 0.6rem; display: flex; flex-wrap: wrap; gap: 0.55rem; }

.partners {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .partners { grid-template-columns: 1fr 1fr; }
}
.partner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.partner-preview {
  display: block;
  background: #eef2f5;
  border-bottom: 1px solid var(--line);
}
.partner-preview img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  object-position: top center;
}
.partner-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.partner-vendor {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slash);
}
.partner-body h3 { font-size: 1.2rem; }
.partner-body p { margin: 0; color: var(--mute); font-size: 0.95rem; }
.partner-meta { font-size: 0.8125rem; color: #8a8279; }
.partner-body .btn { align-self: flex-start; margin-top: 0.35rem; }

.values {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .values { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .values { grid-template-columns: repeat(4, 1fr); }
}
.value {
  padding: 1.2rem 1.15rem 1.3rem;
  border-top: 2px solid var(--slash);
}
.value h3 { font-size: 1.05rem; }
.value p { margin: 0.45rem 0 0; color: var(--mute); font-size: 0.9rem; }

.split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.contacts { display: grid; gap: 0.85rem; }
.contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.contact:hover .contact-val { color: var(--slash); }
.contact-k { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.contact-val { font-size: 1.15rem; font-weight: 650; }

.legal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.legal h3 { font-size: 1rem; margin-bottom: 0.7rem; }
.legal dl {
  margin: 0;
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 0.4rem 0.8rem;
  font-size: 0.88rem;
}
.legal dt { color: var(--mute); }
.legal dd { margin: 0; }
.acc { border-top: 1px solid var(--line); margin-top: 0.9rem; }
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0 0.2rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 650;
  text-align: left;
}
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.acc-panel > div { overflow: hidden; }
.acc.open .acc-panel { grid-template-rows: 1fr; }
.acc.open .chev { transform: rotate(180deg); }
.chev { transition: transform .25s; color: var(--slash); font-size: 0.8rem; }

.site-footer {
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--mute);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
}
.site-footer a { color: var(--mute); text-decoration: none; }
.site-footer a:hover { color: var(--slash); }

.reveal { opacity: 1; transform: none; }
