:root {
  --bg: #07121a;
  --page: #0b1720;
  --surface: #101f2b;
  --surface-warm: #101f2b;
  --surface-cool: #0e1d28;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --brand: #c82118;
  --brand-strong: #c82118;
  --light-bg: #ffffff;
  --light-surface: #f6f7f8;
  --light-ink: #07121a;
  --light-muted: rgba(7, 18, 26, 0.68);
  --light-line: rgba(7, 18, 26, 0.12);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --max: min(90vw, 1320px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rajdhani", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.red {
  color: var(--brand);
}

.kamso-brand {
  letter-spacing: 2px;
  font-size: 42px;
  font-weight: 600;
}

.brand-link .tagline {
  margin-left: 2px;
  font-size: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 19, 27, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-mark span {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 13px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(200, 33, 24, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.menu-toggle.open span {
  opacity: 0;
}

.menu-toggle.open::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn,
.icon-btn,
.tab,
.product-action {
  border: 0;
  border-radius: var(--radius);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.16s, box-shadow 0.16s, background 0.16s, border-color 0.16s;
}

.btn {
  padding: 12px 18px;
}

.btn:hover,
.icon-btn:hover,
.tab:hover,
.product-action:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: var(--brand);
  box-shadow: 0 12px 22px rgba(200, 33, 24, 0.18);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
}

.nav-actions .btn-secondary {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 12px 22px rgba(200, 33, 24, 0.18);
}

.nav-actions .btn-secondary:hover {
  color: #ffffff;
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.icon-btn {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.section {
  padding: 72px 0;
  background: var(--bg);
}

.section.alt {
  background: var(--light-bg);
  color: var(--light-ink);
}

.section.cool {
  background: var(--surface-cool);
}

.section.alt .lead,
.section.alt .muted-copy,
.section.alt .feature-card p,
.section.alt .value-card p,
.section.alt .brand-card p,
.section.alt .contact-card p,
.section.alt .enquiry-card p,
.section.alt .timeline-item p,
.section.alt .form-note {
  color: var(--light-muted);
}

.section.alt .brand-card,
.section.alt .value-card,
.section.alt .contact-card,
.section.alt .faq-item,
.section.alt .contact-form {
  background: var(--light-surface);
  border-color: var(--light-line);
  color: var(--light-ink);
  box-shadow: 0 10px 26px rgba(7, 18, 26, 0.08);
}

.section.alt .chip,
.section.alt .tab,
.section.alt .search-box input,
.section.alt .field input,
.section.alt .field select,
.section.alt .field textarea {
  background: #ffffff;
  border-color: var(--light-line);
  color: var(--light-ink);
}

.section.alt .chip,
.section.alt .tab {
  color: var(--light-muted);
}

.section.alt .tab.active {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

.section.alt .field label,
.section.alt .price,
.section.alt .faq-question {
  color: var(--light-ink);
}

.section.alt .faq-answer p {
  color: var(--light-muted);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  max-width: 720px;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  max-width: 620px;
}

h3 {
  font-size: 1.04rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  max-width: 660px;
}

.mt-sm {
  margin-top: 10px;
}

.mt-md {
  margin-top: 18px;
}

.muted-copy {
  color: var(--muted);
}

.page-hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-main {
  background: var(--bg);
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--bg), rgba(8, 19, 27, 0));
  pointer-events: none;
}

.hero-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  border-radius: 0;
  overflow: hidden;
  background: var(--bg);
  box-shadow: none;
  border: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  padding: clamp(38px, 7vw, 92px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 18, 26, 0.94) 0%, rgba(7, 18, 26, 0.82) 34%, rgba(7, 18, 26, 0.46) 62%, rgba(7, 18, 26, 0.14) 100%),
    linear-gradient(180deg, rgba(7, 18, 26, 0.22), rgba(7, 18, 26, 0.34));
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  color: white;
  justify-self: start;
  margin-left: max(5vw, calc((100vw - 1320px) / 2));
  min-height: 312px;
  align-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.86);
  min-height: 58px;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy .eyebrow::before {
  background: var(--brand);
}

.hero-copy h1 {
  color: white;
  min-height: 136px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  display: none;
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 16% 18%, rgba(200, 33, 24, 0.2), transparent 26%);
}

.supply-visual {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.visual-rack {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 19, 27, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(8, 19, 27, 0.16) 1px, transparent 1px),
    rgba(255, 255, 255, 0.78);
  background-size: 28px 28px;
  border: 1px solid rgba(8, 19, 27, 0.24);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.32);
}

.visual-chip {
  position: absolute;
  min-width: 118px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid rgba(8, 19, 27, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  color: var(--ink);
}

.visual-chip span {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 700;
}

.visual-chip.one {
  top: 24px;
  left: 24px;
}

.visual-chip.two {
  right: 26px;
  top: 92px;
}

.visual-chip.three {
  left: 52px;
  bottom: 28px;
}

.visual-chip.four {
  right: 62px;
  bottom: 24px;
}

.visual-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visual-legend div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 19, 27, 0.24);
}

.visual-legend strong {
  display: block;
  font-size: 1.18rem;
}

.visual-legend span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-controls {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  z-index: 5;
}

.control-row {
  display: flex;
  gap: 8px;
}

.quick-band {
  margin-top: 0;
  position: relative;
  z-index: 3;
  background: var(--bg);
  padding: 30px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.quick-item {
  padding: 24px;
  border-right: 0;
  background: var(--brand);
  color: #ffffff;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1;
}

.quick-item span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: start;
}

.story-media {
  min-height: 470px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, var(--surface), var(--bg));
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 108px;
  overflow: hidden;
}

.story-media img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 38px;
}

.story-media .route {
  position: absolute;
  inset: 168px 38px 38px;
  display: grid;
  align-content: space-between;
}

.route-line {
  height: 2px;
  background: var(--brand);
}

.route-node {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.route-node span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.brand-card,
.value-card,
.contact-card,
.faq-item,
.product-card,
.modal-panel,
.timeline-item,
.enquiry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.value-card,
.contact-card,
.enquiry-card {
  padding: 24px;
}

.feature-card small,
.value-card small,
.contact-card small {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card p,
.value-card p,
.brand-card p,
.contact-card p,
.enquiry-card p,
.timeline-item p {
  color: var(--muted);
  margin-top: 10px;
}

.partner-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.partner-head .section-head {
  margin-bottom: 0;
}

.partner-proof {
  padding: 20px;
  border-left: 4px solid var(--brand);
  background: rgba(8, 19, 27, 0.04);
}

.partner-proof strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
}

.partner-proof span {
  display: block;
  margin-top: 8px;
  color: var(--light-muted);
  font-weight: 800;
  font-size: 0.84rem;
}

.partner-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: var(--light-line);
}

.partner-path span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  color: var(--light-ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-card {
  padding: 20px;
  min-height: 320px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  border-color: rgba(8, 19, 27, 0.1);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 33, 24, 0.34);
}

.brand-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-logo {
  width: 150px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  padding: 10px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--light-line);
}

.brand-fallback {
  width: 150px;
  height: 64px;
  padding: 10px;
  background: white;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 900;
  border: 1px solid var(--light-line);
}

.brand-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(200, 33, 24, 0.1);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--light-line);
}

.text-link {
  color: var(--brand);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.text-link:hover {
  color: var(--light-ink);
}

.chip-row,
.filter-tabs,
.form-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
  font-weight: 700;
}

.products-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 330px);
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.tab {
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
}

.tab.active {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 46px 0 16px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.search-box input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(200, 33, 24, 0.18);
}

.search-box button {
  position: absolute;
  right: 6px;
  top: 6px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 210px 1fr;
  transition: transform 0.18s, box-shadow 0.18s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  mix-blend-mode: normal;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 900;
}

.product-body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-brand {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-category {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-title {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.product-desc {
  color: var(--muted);
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.price {
  color: var(--ink);
  font-weight: 900;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.product-action {
  min-width: 110px;
  padding: 9px 12px;
  color: var(--brand);
  background: rgba(200, 33, 24, 0.08);
}

.product-action:hover {
  background: rgba(200, 33, 24, 0.13);
}

.state-box {
  display: none;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
}

.state-box.show {
  display: block;
}

.count-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.count-bar.show {
  display: flex;
}

.trust-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(200, 33, 24, 0.42);
  color: white;
  box-shadow: var(--shadow);
}

.trust-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list div {
  padding: 14px 16px;
  border: 1px solid rgba(200, 33, 24, 0.34);
  border-radius: var(--radius);
  background: rgba(200, 33, 24, 0.1);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid-spaced {
  margin-top: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.field select option {
  background: #ffffff;
  color: #07121a;
}

.field textarea {
  resize: vertical;
  min-height: 124px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(200, 33, 24, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.form-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.82rem;
}

.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(135deg, var(--bg), var(--page));
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.page-hero-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 22px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
}

.timeline-year {
  color: var(--brand);
  font-size: 1.18rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 60px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 900;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 260px;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #08131b;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 390px;
}

.footer-brand-link {
  width: max-content;
  max-width: 100%;
}

.site-footer .brand-link img {
  width: 50px;
  height: 50px;
}

.site-footer .kamso-brand {
  color: #fff;
}

.footer-brand p,
.footer-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
}

.footer-col {
  display: grid;
  gap: 9px;
}

.site-footer a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.4;
}

.site-footer a:hover {
  color: white;
}

.site-footer h4 {
  color: white;
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: min(360px, calc(100vw - 40px));
  padding: 16px 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast strong {
  display: block;
  margin-bottom: 4px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(8, 19, 27, 0.72);
  backdrop-filter: blur(8px);
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(960px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
  position: relative;
}

.modal-media {
  min-height: 420px;
  background: #fff;
  display: grid;
  place-items: center;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 34px;
  mix-blend-mode: normal;
}

.modal-content {
  padding: 32px;
  display: grid;
  gap: 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.detail-table {
  display: grid;
  gap: 8px;
}

.detail-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row span:first-child {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.detail-row span:last-child {
  color: var(--ink);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links.open {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: auto;
  }

  .hero-carousel {
    min-height: 780px;
  }

  .hero-slide,
  .split,
  .contact-grid,
  .page-hero-grid,
  .trust-band,
  .partner-head {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 330px;
  }

  .quick-grid,
  .brands-grid,
  .partner-path,
  .values-grid,
  .products-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-toolbar {
    grid-template-columns: 1fr;
  }

  .story-media {
    position: relative;
    top: 0;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-media {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 24px, var(--max));
    min-height: 70px;
  }

  .brand-link img {
    width: 48px;
    height: 48px;
  }

  .brand-mark strong {
    font-size: 0.94rem;
  }

  .brand-mark span {
    font-size: 0.62rem;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 0;
  }

  .hero-carousel {
    min-height: 720px;
    width: 100%;
  }

  .hero-slide {
    padding: 32px 0 84px;
  }

  .hero-copy {
    margin-left: 5vw;
    width: 90vw;
    min-height: 360px;
    gap: 18px;
  }

  .hero-copy h1 {
    min-height: 120px;
  }

  .hero-copy .lead {
    min-height: 86px;
  }

  .hero-controls {
    left: 24px;
    right: 24px;
    bottom: 20px;
  }

  .hero-actions,
  .count-bar,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-grid,
  .brands-grid,
  .partner-path,
  .values-grid,
  .products-grid,
  .feature-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-card {
    min-height: auto;
  }

  .brand-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visual-legend {
    grid-template-columns: 1fr;
  }

  .visual-chip {
    min-width: 104px;
    padding: 12px;
  }

  .visual-chip.two {
    right: 10px;
  }

  .visual-chip.four {
    right: 16px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav-shell {
    width: calc(100% - 20px);
    gap: 12px;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-link img {
    width: 44px;
    height: 44px;
  }

  .brand-mark {
    min-width: 0;
  }

  .hero-carousel {
    min-height: min(720px, calc(100svh - 70px));
  }

  .hero-copy {
    margin-left: 14px;
    margin-right: 14px;
    width: calc(100% - 28px);
    min-height: 330px;
    gap: 16px;
  }

  .hero-copy h1 {
    min-height: 104px;
  }

  .hero-copy .lead {
    min-height: 78px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-item,
  .feature-card,
  .brand-card,
  .value-card,
  .contact-card,
  .enquiry-card,
  .timeline-item,
  .trust-band,
  .contact-form,
  .page-hero-card {
    padding: 20px;
  }

  .page-hero {
    padding: 52px 0 44px;
  }

  .partner-proof {
    padding: 18px;
  }

  .story-media {
    min-height: 390px;
  }

  .story-media img {
    width: 92px;
    height: 92px;
    margin: 28px;
  }

  .story-media .route {
    inset: 140px 18px 24px;
    gap: 14px;
  }

  .route-node {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-node span {
    padding: 10px 12px;
    text-align: center;
  }

  .brand-actions,
  .product-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .product-action {
    width: 100%;
  }

  .product-card {
    grid-template-rows: 190px 1fr;
  }

  .product-image img {
    padding: 18px;
  }

  .modal {
    padding: 12px;
    align-items: flex-start;
  }

  .modal-panel {
    max-height: calc(100svh - 24px);
  }

  .modal-media {
    min-height: 220px;
  }

  .modal-content {
    padding: 22px;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}
