:root {
  --navy: #0a1f2e;
  --navy-2: #123047;
  --ink: #152433;
  --cyan: #0094c8;
  --cyan-2: #00b4e0;
  --cyan-deep: #0078a8;
  --paper: #f4f7f9;
  --sand: #eef3f6;
  --white: #ffffff;
  --muted: #5a6d79;
  --line: #d9e2e8;
  --danger: #c0392b;
  --ok: #1f7a4d;
  --shadow: 0 18px 50px rgba(10, 31, 46, 0.12);
  --shadow-sm: 0 8px 24px rgba(10, 31, 46, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 84px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2000;
  background: var(--cyan);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.container-wide {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-paper { background: var(--paper); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 10px 0 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 148, 200, 0.28);
}
.btn-primary:hover { background: var(--cyan-deep); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: #07151f; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-line:hover { border-color: var(--cyan); color: var(--cyan-deep); }

.btn-full { width: 100%; }
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover { background: #1ebe5a; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.3s var(--ease);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  padding: 0 0 2px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar a { color: inherit; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-links a { display: inline-flex; align-items: center; gap: 7px; min-height: 32px; }
.topbar svg { width: 13px; height: 13px; }

.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.site-logo { display: flex; align-items: center; line-height: 0; }
.site-logo img {
  height: 38px;
  width: auto;
  max-width: 210px;
  transition: filter 0.25s ease;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(10, 31, 46, 0.45);
  border-radius: 12px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

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

.site-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-nav-list > li > a:hover,
.site-nav-list > li.active > a {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.site-nav-list > li.nav-cta > a {
  background: var(--cyan);
  color: #fff;
  margin-left: 8px;
  padding-inline: 18px;
  box-shadow: 0 8px 18px rgba(0, 148, 200, 0.3);
}
.site-nav-list > li.nav-cta > a:hover,
.site-nav-list > li.nav-cta.active > a { background: var(--cyan-deep); }

.nav-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.submenu-toggle { display: none; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 8px 28px;
  min-width: 560px;
  padding: 28px 24px 22px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, visibility 0.16s ease;
  transition-delay: 0.12s;
  z-index: 20;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: 12px 0 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: -1;
}
.has-submenu { position: relative; }
.has-submenu:hover > .nav-dropdown,
.has-submenu:focus-within > .nav-dropdown,
.has-submenu.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
  transition-delay: 0s;
}
.nav-dropdown-heading,
a.nav-dropdown-heading {
  display: block;
  margin-bottom: 8px;
  padding-bottom: 8px;
  color: var(--cyan-deep) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.nav-dropdown-col a {
  display: block;
  padding: 8px 10px;
  margin: 0 -10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
}
.nav-dropdown-col a:hover,
.nav-dropdown-col li.active a {
  background: rgba(0, 148, 200, 0.08);
  color: var(--cyan-deep);
}

.site-header.is-scrolled,
.site-header.is-light {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(10, 31, 46, 0.08);
}
.site-header.is-scrolled .topbar,
.site-header.is-light .topbar {
  color: var(--muted);
  border-bottom-color: var(--line);
}
.site-header.is-scrolled .topbar a:hover,
.site-header.is-light .topbar a:hover { color: var(--navy); }
.site-header.is-scrolled .site-logo img,
.site-header.is-light .site-logo img { filter: invert(1); }
.site-header.is-scrolled .site-nav-list > li > a,
.site-header.is-light .site-nav-list > li > a { color: var(--navy); }
.site-header.is-scrolled .site-nav-list > li > a:hover,
.site-header.is-scrolled .site-nav-list > li.active > a,
.site-header.is-light .site-nav-list > li > a:hover,
.site-header.is-light .site-nav-list > li.active > a {
  background: rgba(0, 148, 200, 0.1);
  color: var(--cyan-deep);
}
.site-header.is-scrolled .site-nav-list > li.nav-cta > a,
.site-header.is-light .site-nav-list > li.nav-cta > a {
  background: var(--cyan);
  color: #fff;
}
.site-header.is-scrolled .nav-toggle,
.site-header.is-light .nav-toggle { background: var(--paper); }
.site-header.is-scrolled .nav-toggle span,
.site-header.is-light .nav-toggle span { background: var(--navy); }
.site-header.is-hidden { transform: translateY(-110%); }

/* Hero */
.hero {
  position: relative;
  height: min(100dvh, 860px);
  min-height: 640px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.is-active img { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 33, 0.72) 0%, rgba(8, 22, 33, 0.28) 52%, rgba(8, 22, 33, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 22, 33, 0.28) 0%, transparent 32%, rgba(8, 22, 33, 0.45) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
}
.hero-copy .eyebrow {
  color: #8fe3ff;
  margin: 0;
}
.hero-copy .eyebrow::before { display: none; }
.hero-kicker {
  display: none;
}
.hero-slide-copy {
  display: none;
  max-width: 620px;
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--cyan-2);
}
.hero-slide-copy.is-active { display: block; animation: rise 0.6s var(--ease); }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.hero-index {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 0.96;
}
.hero-copy h1 span { color: var(--cyan-2); font-style: italic; }
.hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 0 0 26px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 44px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(8, 18, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
}
.hero-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  padding: 0;
}
.hero-dot.is-active {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.hero-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
}
.hero-arrow:hover { background: rgba(255, 255, 255, 0.12); }
.hero-arrow svg { width: 15px; height: 15px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card img { width: 100%; height: 180px; object-fit: cover; }
.feature-card img.contain {
  object-fit: contain;
  background: #f3f6f8;
  padding: 18px;
}
.feature-card .body { padding: 20px 20px 22px; }
.feature-card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.pull-up { margin-top: -72px; position: relative; z-index: 4; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin: 10px 0 18px; }
.about-copy p { color: var(--muted); margin: 0 0 14px; }
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}
.about-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--navy);
  color: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 160px;
  box-shadow: var(--shadow);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}
.about-badge span { font-size: 12px; color: rgba(255,255,255,0.72); }

/* Stats */
.stats-band {
  background:
    linear-gradient(120deg, rgba(10, 31, 46, 0.88), rgba(0, 120, 168, 0.72)),
    url("../img/mine/Premium cotton threads.png") center/cover no-repeat;
  color: #fff;
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 6px;
}
.stat-item p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 650;
}

/* Products teaser */
.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}
.product-tile {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.product-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-tile:hover img { transform: scale(1.06); }
.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 20, 30, 0.86) 100%);
}
.product-tile .body { position: relative; z-index: 1; padding: 28px; }
.product-tile h3 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.product-tile p { color: rgba(255,255,255,0.78); margin: 0 0 16px; }
.product-tile.tall { min-height: 460px; grid-row: span 1; }

/* Partners */
.logo-marquee {
  overflow: hidden;
  padding: 12px 0;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track img {
  display: block;
  height: 110px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  flex: 0 0 auto;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CTA */
.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 224, 0.35), transparent 70%);
}
.cta-band h3 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 8px; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.72); }
.cta-band .btn { position: relative; z-index: 1; }

/* Page hero */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--navy) center/cover no-repeat;
  padding: 150px 0 48px;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,20,30,0.35) 0%, rgba(8,20,30,0.78) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.crumbs {
  display: flex;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.crumbs a:hover { color: #fff; }

/* Product catalog */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catalog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.catalog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.catalog-card img { width: 100%; height: 210px; object-fit: cover; background: var(--sand); }
.catalog-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.catalog-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.catalog-card p { color: var(--muted); margin: 0 0 18px; flex: 1; }

/* Product detail */
.product-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 48px;
  align-items: start;
}
.product-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  background: var(--sand);
}
.product-copy h1,
.product-copy h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 8px 0 16px; }
.product-copy p { color: var(--muted); }
.app-list { display: grid; gap: 8px; margin-top: 8px; }
.app-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--paper);
  border-radius: 10px;
  font-weight: 550;
}
.app-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex: 0 0 auto;
}

.enquiry-card {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.enquiry-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.enquiry-card > p { color: var(--muted); margin: 0 0 18px; font-size: 0.95rem; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 650;
  color: var(--navy);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(0, 148, 200, 0.25);
  border-color: var(--cyan);
  background: #fff;
}
.form-note {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.form-note.ok { color: var(--ok); }
.form-note.err { color: var(--danger); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.info-list { display: grid; gap: 16px; margin-top: 18px; }
.info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 148, 200, 0.1);
  color: var(--cyan-deep);
  display: grid;
  place-items: center;
}
.info-icon svg { width: 18px; height: 18px; }
.info-item h3 { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.info-item p { margin: 0; color: var(--muted); }
.info-item a:hover { color: var(--cyan-deep); }

.contact-form-wrap {
  background: var(--paper);
  border-radius: 24px;
  padding: 36px;
  margin-top: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }

/* About extras */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.vision-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
}
.vision-card h2 { font-size: 2rem; margin-bottom: 12px; }
.vision-card p { margin: 0; color: var(--muted); }

.split-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.split-photos img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

/* Careers */
.job-list { display: grid; gap: 18px; }
.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.job-card h3 { font-size: 1.8rem; margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.job-card p { margin: 0; color: var(--muted); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 30, 0.55);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.modal-panel.wa-panel {
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
}
.wa-panel .form-grid { margin-bottom: 8px; }
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--paper);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 36px;
}
.site-footer img { height: 52px; width: auto; max-width: 240px; }
.site-footer h6 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer a { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: #fff; }
.footer-copy {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-2px); }

.to-top {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  display: none;
  place-items: center;
}
.to-top.is-on { display: grid; }
.to-top svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 1100px) {
  .feature-grid,
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .product-layout,
  .contact-grid,
  .vision-grid,
  .split-photos { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-visual img,
  .product-media img { height: 380px; }
  .about-badge { left: 12px; }
  .enquiry-card { position: static; }
}

@media (max-width: 991px) {
  .topbar { display: none; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .site-nav-list { flex-direction: column; align-items: stretch; }
  .site-nav-list > li > a {
    width: 100%;
    justify-content: space-between;
    color: var(--navy) !important;
    border-radius: 12px;
  }
  .site-nav-list > li.nav-cta > a { justify-content: center; margin-left: 0; color: #fff !important; }
  .nav-caret { display: none; }
  .has-submenu { display: grid; grid-template-columns: 1fr auto; }
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
  }
  .submenu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .has-submenu.open .submenu-toggle::before { transform: rotate(225deg); margin-top: 2px; }
  .nav-dropdown,
  .has-submenu:hover > .nav-dropdown,
  .has-submenu.open > .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    box-shadow: none;
    padding: 8px 10px 12px;
    background: var(--paper);
  }
  .nav-dropdown { display: none; transition-delay: 0s; }
  .nav-dropdown::before { display: none; }
  .has-submenu.open > .nav-dropdown { display: grid; opacity: 1; visibility: visible; pointer-events: auto; }
  .site-header.is-open { background: rgba(10, 31, 46, 0.94); }
  .site-header.is-scrolled.is-open,
  .site-header.is-light.is-open { background: #fff; }
}

@media (max-width: 720px) {
  .container, .container-wide, .header-inner { width: calc(100% - 28px); }
  .section { padding: 64px 0; }
  .feature-grid,
  .catalog-grid,
  .product-grid,
  .stats-grid,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pull-up { margin-top: 0; }
  .hero-copy { padding: 110px 0 100px; }
  .hero-copy h1 { font-size: 2.6rem; }
  .hero-nav { left: 50%; right: auto; bottom: 24px; transform: translateX(-50%); }
  .hero { min-height: 100dvh; height: 100dvh; max-height: none; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
  .job-card { grid-template-columns: 1fr; }
  .page-hero { min-height: 280px; padding-top: 120px; }
  .about-visual img, .split-photos img, .product-media img { height: 260px; }
  .contact-form-wrap { padding: 22px; }
}

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