:root {
  --violet: #5a008f;
  --violet-2: #7c24c4;
  --ink: #07154f;
  --muted: #667085;
  --line: #ece9f5;
  --soft: #f8f6fd;
  --white: #ffffff;
  --teal: #148a8a;
  --gold: #d79b18;
  --shadow-sm: 0 6px 16px rgba(24, 11, 67, 0.06);
  --shadow: 0 20px 45px rgba(24, 11, 67, 0.1);
  --shadow-lg: 0 28px 60px rgba(24, 11, 67, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 160px;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #333b64;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--violet);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 10px 24px rgba(90, 0, 143, 0.22);
}

.header-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(90, 0, 143, 0.28);
}

.button.secondary {
  color: var(--violet);
  border: 1px solid #dccbf0;
  background: var(--white);
}

.button.secondary:hover {
  border-color: var(--violet);
  background: var(--soft);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 720px);
  padding: clamp(90px, 12vw, 140px) 0 clamp(70px, 9vw, 110px);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7, 21, 79, 0.92), rgba(90, 0, 143, 0.72) 45%, rgba(7, 21, 79, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy .eyebrow {
  color: #e7d6fb;
}

.hero-copy h1 {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

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

.quick-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.quick-contact div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.quick-contact div:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.quick-contact dt {
  color: #e7d6fb;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.quick-contact dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(20px, 4vw, 32px);
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.trust-strip {
  padding: clamp(28px, 4vw, 44px) 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-chip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.trust-chip small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
}

.strip-icon {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--violet);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f1e8fb, #e7dbf8);
}

.about,
.intro-band,
.catalogue,
.quality,
.contact-panel {
  padding: clamp(50px, 7vw, 90px) 0;
}

.about {
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.about-grid p {
  color: #4a5170;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-grid p + p {
  margin-top: 16px;
}

.about-highlights {
  display: grid;
  gap: 14px;
  align-content: start;
}

.about-highlight {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.about-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-highlight p {
  margin: 0;
  color: #4a5170;
  font-size: 0.92rem;
  line-height: 1.6;
}

.intro-band {
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: end;
}

.intro-grid p:last-child {
  color: #4a5170;
  font-size: 1.06rem;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-visual {
  position: relative;
  height: 168px;
  background: var(--soft);
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-visual--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, #f4effb, #ece1fa);
  color: var(--violet-2);
}

.product-visual--placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.85;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.product-number {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--violet), var(--ink));
  font-weight: 800;
  font-size: 0.92rem;
}

.product-card h3 {
  min-height: 44px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.product-card p {
  color: #4a5170;
  font-size: 0.89rem;
  line-height: 1.55;
}

.product-desc {
  display: -webkit-box;
  height: calc(1.55em * 6);
  margin-bottom: 16px;
  overflow: hidden;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.spec-table th {
  color: var(--violet);
  background: var(--soft);
  font-weight: 700;
}

.spec-table th,
.spec-table td {
  padding: 9px 8px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.product-foot {
  margin-top: auto;
  padding-top: 22px;
}

.colours strong {
  display: block;
  margin-bottom: 8px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
  min-height: 32px;
}

.swatch {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(7, 21, 79, 0.14);
  border-radius: 999px;
}

.product-note {
  min-height: calc(1.45em * 2);
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.quality-block {
  min-height: 200px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quality-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quality-block span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--ink));
  font-weight: 800;
  font-size: 0.85rem;
}

.quality-block p {
  max-width: 380px;
  color: #4a5170;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  gap: 30px;
  align-items: center;
}

.contact-panel {
  background: var(--soft);
}

.contact-grid p {
  max-width: 760px;
  color: #4a5170;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card span {
  min-width: 0;
  padding: 12px 16px;
  overflow-wrap: anywhere;
  border-radius: var(--radius-sm);
  background: var(--soft);
  font-weight: 700;
  transition: background 0.2s ease;
}

.contact-card a:hover {
  background: #efe3fb;
}

footer {
  padding: 26px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.footer-brand img {
  display: block;
  height: 34px;
  width: auto;
}

footer span {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1100px) {
  .hero {
    min-height: min(100vh, 640px);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .header-cta {
    width: 100%;
  }

  .quick-contact,
  .trust-grid,
  .about-grid,
  .intro-grid,
  .section-heading,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: stretch;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    height: 190px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.6rem;
  }
}
