:root {
  --ink: #10100f;
  --muted: #706b61;
  --paper: #f6f0e4;
  --paper-2: #ebe0ce;
  --gold: #d7a642;
  --red: #bd2b21;
  --green: #12665b;
  --blue: #153a5b;
  --white: #fffaf0;
  --shadow: 0 24px 80px rgba(18, 18, 16, .18);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(215,166,66,.35), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(189,43,33,.15), transparent 28rem),
    linear-gradient(135deg, #fff7e8 0%, var(--paper) 42%, #e6dac6 100%);
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 16px 0 34px;
  padding: 12px 14px;
  border: 1px solid rgba(16,16,15,.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(16,16,15,.08);
}

.brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; min-width: max-content; }
.brand-mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: conic-gradient(from 210deg, var(--red), var(--gold), var(--green), var(--blue), var(--red));
  font: 800 14px/1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .12em;
  box-shadow: inset 0 0 0 4px rgba(255,250,240,.4);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 18px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font: 700 10px/1 ui-sans-serif, system-ui, sans-serif; text-transform: uppercase; letter-spacing: .16em; }

.nav { display: flex; align-items: center; justify-content: center; gap: 18px; flex: 1; }
.nav a {
  color: rgba(16,16,15,.72);
  text-decoration: none;
  font: 700 13px/1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .02em;
}
.nav a:hover { color: var(--red); }

.language-switch { display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(16,16,15,.06); }
.language-switch button, .nav-toggle {
  border: 0;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  font: 800 12px/1 ui-sans-serif, system-ui, sans-serif;
}
.language-switch button { padding: 9px 10px; border-radius: 999px; }
.language-switch button.active { color: var(--white); background: var(--ink); }
.nav-toggle { display: none; font-size: 22px; }

.section { margin: 92px 0; }
.section-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 44px; align-items: center; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font: 900 12px/1.2 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.hero h1, .section h2 {
  margin: 0;
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.055em;
}
.hero h1 { font-size: clamp(52px, 8vw, 112px); max-width: 760px; }
.section h2 { font-size: clamp(34px, 5vw, 68px); max-width: 820px; }
.hero-text, .intro p, .contact-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.56;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(16,16,15,.18);
  border-radius: 999px;
  text-decoration: none;
  font: 900 13px/1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.btn.primary { color: var(--white); background: var(--ink); box-shadow: 0 16px 38px rgba(16,16,15,.24); }
.btn.ghost { color: var(--ink); background: rgba(255,250,240,.46); }
.btn:hover { transform: translateY(-2px); transition: .24s ease; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.hero-stats span {
  padding: 18px;
  border: 1px solid rgba(16,16,15,.12);
  border-radius: 20px;
  background: rgba(255,250,240,.42);
}
.hero-stats strong { display: block; font: 900 20px/1 ui-sans-serif, system-ui, sans-serif; }
.hero-stats small { display: block; margin-top: 8px; color: var(--muted); font: 700 12px/1.35 ui-sans-serif, system-ui, sans-serif; }

.hero-card {
  position: relative;
  min-height: 650px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(16,16,15,.92), rgba(21,58,91,.88)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 32px);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,250,240,.18);
  border-radius: 28px;
}
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-a { width: 280px; height: 280px; top: 48px; right: -64px; background: radial-gradient(circle at 30% 30%, var(--gold), var(--red)); opacity: .9; }
.orb-b { width: 190px; height: 190px; bottom: 80px; left: -40px; background: radial-gradient(circle at 35% 35%, #f7efe0, var(--green)); opacity: .65; }
.event-ticket {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 44px;
  padding: 30px;
  border: 1px solid rgba(255,250,240,.26);
  border-radius: 26px;
  color: var(--white);
  background: rgba(255,250,240,.08);
  backdrop-filter: blur(18px);
}
.ticket-label { font: 900 11px/1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .2em; color: var(--gold); }
.event-ticket h2 { margin: 18px 0 12px; font-size: clamp(34px, 4vw, 58px); line-height: .95; letter-spacing: -.045em; }
.event-ticket p { margin: 0; color: rgba(255,250,240,.72); font-size: 17px; line-height: 1.5; }
.ticket-footer { display: flex; justify-content: space-between; gap: 14px; margin-top: 26px; font: 800 12px/1 ui-sans-serif, system-ui, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.track-line {
  position: absolute;
  top: 88px; left: 60px;
  width: 62%; height: 250px;
  border: 3px solid rgba(215,166,66,.72);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 160px 0 0;
  transform: rotate(-18deg);
}

.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
  padding: 54px;
  border-radius: var(--radius-xl);
  background: rgba(255,250,240,.5);
  border: 1px solid rgba(16,16,15,.1);
}
.intro p { margin: 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.section-heading.compact { display: block; }
.cards.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius-xl);
  color: var(--white);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.service-card::after {
  content: "";
  position: absolute;
  width: 270px; height: 270px;
  right: -90px; top: -80px;
  border-radius: 50%;
  background: rgba(255,250,240,.14);
}
.dark-card { background: linear-gradient(135deg, #111, #243d39); }
.road-card { background: linear-gradient(135deg, #32110f, #8a261e); }
.number { color: var(--gold); font: 900 14px/1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .18em; }
.service-card h3 { position: relative; z-index: 1; margin: 92px 0 18px; max-width: 560px; font-size: clamp(30px, 4vw, 52px); line-height: .96; letter-spacing: -.04em; }
.service-card p, .service-card li { position: relative; z-index: 1; color: rgba(255,250,240,.76); font-size: 17px; line-height: 1.55; }
.service-card ul { margin: 24px 0 0; padding-left: 20px; }

.timeline-section {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 30px; }
.timeline div { padding: 24px; background: rgba(255,250,240,.08); border-radius: 18px; }
.timeline strong { display: block; color: var(--gold); font: 900 13px/1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .16em; }
.timeline span { display: block; margin-top: 32px; color: rgba(255,250,240,.82); font-size: 18px; line-height: 1.35; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(16,16,15,.12);
  border-radius: 26px;
  background: rgba(255,250,240,.62);
  box-shadow: 0 14px 45px rgba(16,16,15,.08);
}
.product-card:hover { transform: translateY(-6px); transition: .25s ease; }
.product-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; color: var(--white); background: var(--ink); font-size: 24px; }
.product-card h3 { margin: 42px 0 14px; font-size: 29px; line-height: 1; letter-spacing: -.035em; }
.product-card p { color: var(--muted); font-size: 16px; line-height: 1.55; }
.product-card a { display: inline-block; margin-top: 14px; color: var(--red); font: 900 13px/1 ui-sans-serif, system-ui, sans-serif; text-decoration: none; }
.cloth .product-icon { background: var(--green); }
.cue-certified .product-icon { background: var(--blue); }
.cue-memory .product-icon { background: var(--red); }
.culture .product-icon { background: var(--gold); color: var(--ink); }

.trust-panel {
  padding: 60px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18,102,91,.92), rgba(16,16,15,.92)),
    radial-gradient(circle at 80% 10%, rgba(215,166,66,.6), transparent 24rem);
  box-shadow: var(--shadow);
}
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.trust-list div { padding: 24px; border-radius: 20px; background: rgba(255,250,240,.1); border: 1px solid rgba(255,250,240,.14); }
.trust-list strong { display: block; margin-bottom: 10px; font: 900 16px/1 ui-sans-serif, system-ui, sans-serif; }
.trust-list span { color: rgba(255,250,240,.76); line-height: 1.5; }

.news-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-row article {
  padding: 28px;
  min-height: 240px;
  border-radius: 24px;
  border: 1px solid rgba(16,16,15,.1);
  background: rgba(255,250,240,.5);
}
.news-row time { color: var(--red); font: 900 12px/1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .16em; }
.news-row h3 { margin: 42px 0 12px; font-size: 28px; line-height: 1; letter-spacing: -.03em; }
.news-row p { color: var(--muted); line-height: 1.55; }

.contact {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
  padding: 52px;
  border-radius: var(--radius-xl);
  background: rgba(255,250,240,.62);
  border: 1px solid rgba(16,16,15,.1);
}
.contact-card { display: grid; gap: 12px; }
.contact-card a, .contact-card address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  font-style: normal;
  background: var(--white);
  border: 1px solid rgba(16,16,15,.1);
}
.contact-card span { color: var(--red); font: 900 11px/1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.contact-card strong { font-size: 18px; line-height: 1.35; word-break: break-word; }
.contact-card a:hover { border-color: rgba(189,43,33,.42); transform: translateY(-2px); transition: .24s ease; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 46px;
  color: var(--muted);
  font: 700 13px/1.4 ui-sans-serif, system-ui, sans-serif;
}
.footer a { color: var(--ink); text-decoration: none; }

[data-animate] { opacity: 0; transform: translateY(18px); transition: .7s ease; }
[data-animate].show { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .topbar { align-items: flex-start; border-radius: 28px; flex-wrap: wrap; }
  .nav-toggle { display: block; margin-left: auto; padding: 12px; }
  .nav { display: none; order: 4; width: 100%; flex-direction: column; align-items: flex-start; padding: 8px 12px 14px; }
  .nav.open { display: flex; }
  .language-switch { margin-left: auto; }
  .section-grid, .intro, .contact { grid-template-columns: 1fr; }
  .hero-card { min-height: 520px; }
  .hero-stats, .timeline, .trust-list, .news-row { grid-template-columns: 1fr; }
  .cards.two-col { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-shell { width: min(100% - 20px, 1180px); }
  .topbar { top: 8px; margin-top: 8px; }
  .brand-copy strong { font-size: 15px; }
  .brand-mark { width: 42px; height: 42px; }
  .language-switch { width: 100%; justify-content: space-between; }
  .language-switch button { flex: 1; }
  .hero h1 { font-size: 46px; }
  .section { margin: 62px 0; }
  .intro, .timeline-section, .trust-panel, .contact { padding: 26px; border-radius: 26px; }
  .hero-stats, .product-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; padding: 26px; }
  .service-card h3 { margin-top: 58px; }
  .event-ticket { left: 20px; right: 20px; bottom: 24px; padding: 22px; }
  .ticket-footer { flex-direction: column; }
  .footer { flex-direction: column; }
}

.logo-mark { overflow: hidden; background: #fffaf0; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); }
.hero-visual { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; mix-blend-mode: screen; }
.product-card { position: relative; overflow: hidden; }
.product-image { width: 100%; height: 138px; object-fit: cover; border-radius: 20px; margin-bottom: 18px; border: 1px solid rgba(16,16,15,.1); }
.product-card .product-icon { position: absolute; top: 122px; left: 34px; box-shadow: 0 10px 26px rgba(16,16,15,.2); }
.product-card h3 { margin-top: 34px; }
.product-details { padding: 48px; border-radius: var(--radius-xl); background: rgba(255,250,240,.54); border: 1px solid rgba(16,16,15,.1); }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.spec-grid article { padding: 24px; border-radius: 22px; background: var(--white); border: 1px solid rgba(16,16,15,.1); }
.spec-grid h3 { margin: 0 0 12px; font-size: 25px; line-height: 1; letter-spacing: -.03em; }
.spec-grid p, .spec-grid li { color: var(--muted); line-height: 1.5; font-size: 15px; }
.spec-grid ul { padding-left: 18px; }
@media (max-width: 980px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .spec-grid { grid-template-columns: 1fr; } .product-details { padding: 26px; } }

/* Language dropdown */
.language-dropdown { position: relative; padding: 0; background: transparent; }
.language-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(16,16,15,.12);
}
.language-chevron { font-size: 15px; line-height: 1; opacity: .82; transform: translateY(-1px); }
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(16,16,15,.12);
  border-radius: 18px;
  background: rgba(255,250,240,.96);
  box-shadow: 0 18px 50px rgba(16,16,15,.18);
  backdrop-filter: blur(16px);
}
.language-dropdown.open .language-menu { display: grid; gap: 4px; }
.language-menu button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
  color: var(--ink);
  background: transparent;
}
.language-menu button:hover,
.language-menu button.active {
  color: var(--white);
  background: var(--ink);
}
@media (max-width: 640px) {
  .language-dropdown { width: 100%; }
  .language-current { width: 100%; justify-content: center; }
  .language-menu { left: 0; right: 0; min-width: 0; }
}

/* Language dropdown */
.language-dropdown { position: relative; padding: 0; background: transparent; }
.language-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(16,16,15,.12);
}
.language-chevron { font-size: 15px; line-height: 1; opacity: .82; transform: translateY(-1px); }
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(16,16,15,.12);
  border-radius: 18px;
  background: rgba(255,250,240,.96);
  box-shadow: 0 18px 50px rgba(16,16,15,.18);
  backdrop-filter: blur(16px);
}
.language-dropdown.open .language-menu { display: grid; gap: 4px; }
.language-menu button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
  color: var(--ink);
  background: transparent;
}
.language-menu button:hover,
.language-menu button.active {
  color: var(--white);
  background: var(--ink);
}
@media (max-width: 640px) {
  .language-dropdown { width: 100%; }
  .language-current { width: 100%; justify-content: center; }
  .language-menu { left: 0; right: 0; min-width: 0; }
}

/* Cue product catalog extracted from supplied product PDF */







@media (max-width: 980px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .catalog-grid { grid-template-columns: 1fr; } }

