:root {
  --navy: #111b2e;
  --charcoal: #1b1f24;
  --ink: #20242a;
  --muted: #66717f;
  --subtle: #8a94a3;
  --paper: #f7f3eb;
  --paper-deep: #eee7da;
  --surface: #ffffff;
  --line: #ded7ca;
  --copper: #b9824b;
  --copper-dark: #815a34;
  --sage: #66786b;
  --error: #b42318;
  --success: #146c43;
  --shadow: 0 24px 70px rgba(17, 27, 46, 0.12);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(185, 130, 75, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--surface);
  color: var(--navy);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(247, 243, 235, 0.94);
  border-color: rgba(222, 215, 202, 0.84);
  box-shadow: 0 14px 34px rgba(17, 27, 46, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell,
.content-grid,
.section,
.hero-content,
.hero-stats,
.cta-section,
.footer-grid,
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

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

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header.is-solid .brand strong,
.site-header.is-open .brand strong,
.footer-brand strong {
  color: var(--navy);
}

.site-header.is-solid .brand small,
.site-header.is-open .brand small,
.footer-brand small {
  color: var(--muted);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-header.is-solid .nav-links a {
  color: var(--muted);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  background: var(--copper);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  background: var(--surface);
  color: var(--navy);
  font-size: 0.84rem;
}

.site-header.is-solid .header-cta {
  background: var(--navy);
  color: #fff;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}

.btn-primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary.light {
  color: #fff;
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.site-header.is-solid .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: var(--line);
  background: var(--surface);
}

.site-header.is-solid .menu-toggle span,
.site-header.is-open .menu-toggle span {
  background: var(--navy);
}

.mobile-navigation {
  position: fixed;
  inset: 82px 0 0;
  z-index: 75;
  background: rgba(17, 27, 46, 0.58);
}

.mobile-panel {
  width: min(100% - 28px, 460px);
  margin: 14px auto 0;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--navy);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: clamp(720px, 92svh, 980px);
  display: grid;
  align-content: end;
  color: #fff;
  overflow: hidden;
}

.hero-picture,
.hero-picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 27, 46, 0.9), rgba(17, 27, 46, 0.68) 42%, rgba(17, 27, 46, 0.22)),
    linear-gradient(0deg, rgba(17, 27, 46, 0.86), rgba(17, 27, 46, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 0 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 100%;
  flex-wrap: wrap;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: 0.98;
  font-weight: 800;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

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

.hero-proof {
  width: fit-content;
  margin: 18px 0 0;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-left: 2px solid var(--copper);
  background: rgba(17, 27, 46, 0.28);
  font-weight: 700;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 27, 46, 0.46);
  backdrop-filter: blur(14px);
}

.hero-stats article {
  padding: 20px 22px;
  min-width: 0;
}

.hero-stats article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats span,
.contact-details dt {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.34rem);
  line-height: 1.2;
}

.trust-band {
  background: #fffdf9;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.metrics-section {
  background: var(--navy);
  color: #fff;
}

.trust-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item,
.metric-card {
  min-height: 220px;
  padding: 30px 24px;
}

.trust-item {
  background: #fffdf9;
  transition: background 0.2s ease, transform 0.2s ease;
}

.metric-card {
  background: var(--navy);
}

.trust-item:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

.icon-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--copper);
  border: 1px solid rgba(185, 130, 75, 0.36);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.trust-item h2,
.metric-card h2 {
  margin: 18px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.metric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(72px, 8vw, 118px) 0 0;
}

.section-anchor {
  scroll-margin-top: 90px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 24px 52px;
  align-items: start;
  max-width: none;
}

.section-heading.split .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.cta-section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.about-copy p,
.product-card p,
.department-card p,
.quality-section p,
.map-section p,
.site-footer p,
.product-card li {
  color: var(--muted);
}

.about-layout,
.contact-layout,
.quality-layout,
.map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 34px;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 20px;
  max-width: 760px;
}

.mission-panel,
.certificate-panel,
.enquiry-form,
.contact-details {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mission-panel {
  padding: 28px;
}

.mission-panel h3,
.founder-panel h3,
.product-card h3,
.department-card h3,
.tab-panels h3,
.contact-details h3,
.map-section h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.mission-panel p {
  margin-bottom: 0;
}

.founder-panel {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 0;
  align-self: start;
  background: var(--navy);
  color: #fff;
}

.founder-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.founder-panel div {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
}

.founder-panel span {
  color: var(--copper);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-panel h3 {
  color: #fff;
}

blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}

.metric-card strong {
  display: block;
  min-height: 1.2em;
  color: var(--copper);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  white-space: nowrap;
}

.capability-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.capability-stage {
  position: relative;
  min-height: 310px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 27, 46, 0.12), rgba(17, 27, 46, 0.9));
}

.capability-stage:hover,
.capability-stage.is-active {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.capability-stage img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.capability-stage:hover img,
.capability-stage.is-active img {
  transform: scale(1.04);
}

.capability-stage div {
  padding: 22px;
}

.capability-stage span {
  color: var(--copper);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-stage small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-stage h3 {
  margin: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.14rem, 1.6vw, 1.45rem);
  line-height: 1.2;
}

.capability-stage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.capability-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.capability-flow button {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.capability-flow button:last-child {
  border-right: 0;
}

.capability-flow button::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 3px;
  background: transparent;
}

.capability-flow button.is-active {
  color: var(--navy);
  background: #fffdf9;
}

.capability-flow button.is-active::after {
  background: var(--copper);
}

.capability-flow span {
  color: var(--copper);
  font-size: 0.74rem;
}

.capability-tabs {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: start;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  align-self: start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(17, 27, 46, 0.07);
}

.tab-list button {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fffdf9;
  color: var(--muted);
  text-align: left;
  font-weight: 800;
  border-radius: var(--radius);
}

.tab-list button span {
  display: block;
  color: var(--copper-dark);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tab-list button[aria-selected="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.tab-list button[aria-selected="true"] span {
  color: var(--copper);
}

.tab-panels article {
  display: grid;
  grid-template-rows: minmax(280px, 420px) auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tab-panels article[hidden] {
  display: none;
}

.tab-panels img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
}

.tab-panels article > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
}

.tab-panels span {
  color: var(--copper);
  font-weight: 800;
}

.tab-panels p {
  margin: 0;
  color: var(--muted);
}

.product-grid,
.department-grid,
.gallery-grid,
.buyer-wall,
.quality-list {
  display: grid;
  gap: 18px;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card p,
.product-card ul {
  margin: 12px 0 0;
}

.product-card ul {
  padding-left: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper-dark);
  font-weight: 800;
}

.process-section {
  overflow: hidden;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-timeline li {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: var(--navy);
  color: #fff;
  border-top: 3px solid var(--copper);
}

.process-timeline span {
  color: var(--copper);
  font-weight: 800;
}

.process-timeline p {
  margin: 0;
  font-weight: 700;
  line-height: 1.38;
}

.department-grid {
  grid-template-columns: repeat(3, 1fr);
}

.department-card {
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.department-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--paper-deep);
  overflow: hidden;
  text-align: left;
}

.department-open img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.department-card:hover img {
  transform: scale(1.03);
}

.department-open span,
.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 9px;
  background: rgba(17, 27, 46, 0.78);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.department-open strong {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--copper);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.department-card:hover .department-open strong,
.department-open:focus-visible strong {
  opacity: 1;
  transform: translateY(0);
}

.department-card > div {
  padding: 22px;
}

.department-card p {
  margin: 10px 0 0;
}

.compact {
  margin-top: clamp(64px, 7vw, 94px);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.gallery-filters button,
.btn-map,
.footer-bottom button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
}

.gallery-filters button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  padding: 0;
  border: 0;
  background: var(--paper-deep);
  overflow: hidden;
}

.gallery-item:nth-child(3n + 1) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.is-hidden {
  display: none;
}

.buyer-wall {
  grid-template-columns: repeat(6, 1fr);
  padding: 1px;
  background: var(--line);
}

.buyer-logo {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px;
  background: var(--surface);
  transition: transform 0.2s ease, background 0.2s ease;
}

.buyer-logo:hover {
  transform: translateY(-2px);
  background: #fffdf9;
}

.buyer-logo img {
  width: min(100%, 180px);
  height: 72px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.74;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.buyer-logo:hover img {
  opacity: 0.92;
  filter: grayscale(1) contrast(1.08);
}

.quality-section {
  padding-bottom: 0;
}

.quality-layout {
  align-items: start;
}

.quality-list {
  grid-template-columns: 1fr;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.quality-item span {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  background: var(--copper);
  border-radius: 50%;
}

.quality-item h3 {
  margin: 0;
  font-size: 1rem;
}

.certificate-panel {
  margin-top: 28px;
  padding: 22px;
}

.certificate-panel summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.certificate-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: clamp(72px, 8vw, 118px);
  padding: clamp(34px, 5vw, 58px);
  background: var(--navy);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p:not(.section-kicker) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-layout {
  align-items: start;
}

.contact-details {
  padding: 30px;
  background: var(--navy);
  color: #fff;
}

.contact-details h3 {
  color: #fff;
}

.contact-details dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.contact-details dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.enquiry-form {
  padding: 30px;
}

.form-helper-panel {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(185, 130, 75, 0.28);
  border-left: 3px solid var(--copper);
  background: #fff8ee;
}

.form-helper-panel h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.form-helper-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

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

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(185, 130, 75, 0.18);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: var(--error);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.btn-submit {
  width: 100%;
  margin-top: 14px;
}

.btn-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.map-section {
  align-items: stretch;
  margin-top: 34px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.map-frame {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  color: var(--muted);
  overflow: hidden;
}

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

.site-footer {
  margin-top: clamp(72px, 8vw, 118px);
  padding: 54px 0 28px;
  background: #fffdf9;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1fr;
  gap: 34px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer .footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--copper-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 95;
  height: 3px;
  width: 0%;
  background: var(--copper);
  transition: width 0.12s linear;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 8px 10px 8px 14px;
  background: #1f7a4d;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(17, 27, 46, 0.22);
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, bottom 0.25s ease;
}

.sticky-enquiry {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(247, 243, 235, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-enquiry.is-visible {
  transform: translateY(0);
}

.sticky-enquiry .btn {
  width: 100%;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float.is-compact span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.whatsapp-float strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 110;
  max-width: min(440px, calc(100% - 32px));
  transform: translate(-50%, calc(100% + 60px));
  padding: 13px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.lightbox {
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(17, 27, 46, 0.82);
}

.lightbox figure {
  margin: 0;
  display: grid;
  background: var(--surface);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 132px);
  object-fit: contain;
  background: #111;
}

.lightbox figcaption {
  min-height: 56px;
  padding: 14px 18px;
  color: var(--navy);
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 2;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(17, 27, 46, 0.82);
  color: #fff;
  padding: 0 14px;
  font-weight: 800;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

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

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

@media (max-width: 1180px) {
  .product-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-wall,
  .trust-grid,
  .metrics-grid,
  .capability-overview,
  .capability-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .hero-stats,
  .trust-grid,
  .metrics-grid,
  .department-grid,
  .buyer-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats article:nth-child(odd) {
    border-left: 0;
  }

  .hero-stats article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-heading.split,
  .about-layout,
  .contact-layout,
  .quality-layout,
  .map-section,
  .capability-tabs,
  .capability-overview,
  .capability-flow,
  .tab-panels article,
  .cta-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tab-panels article {
    min-height: auto;
  }

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

  .capability-flow {
    gap: 1px;
    background: var(--line);
  }

  .capability-flow button {
    border-right: 0;
    background: var(--surface);
  }

  .tab-panels img {
    aspect-ratio: 16 / 10;
  }

  .sticky-enquiry {
    display: block;
  }

  body.has-sticky-cta .whatsapp-float {
    bottom: 78px;
  }
}

@media (max-width: 700px) {
  .nav-shell,
  .content-grid,
  .section,
  .hero-content,
  .hero-stats,
  .cta-section,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 74px;
  }

  .mobile-navigation {
    top: 74px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-picture img {
    object-position: 54% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 27, 46, 0.16), rgba(17, 27, 46, 0.86) 56%, rgba(17, 27, 46, 0.94)),
      linear-gradient(90deg, rgba(17, 27, 46, 0.5), rgba(17, 27, 46, 0.2));
  }

  .hero-content {
    padding-top: 132px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.05rem, 10vw, 2.65rem);
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .hero-lead {
    max-width: 31ch;
  }

  .hero-actions,
  .cta-actions,
  .map-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .map-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .hero-stats,
  .trust-grid,
  .metrics-grid,
  .product-grid,
  .department-grid,
  .gallery-grid,
  .buyer-wall,
  .capability-overview,
  .capability-flow,
  .form-grid,
  .certificate-panel ul {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .tab-list button {
    min-height: 76px;
  }

  .capability-stage {
    min-height: 260px;
  }

  .department-open strong {
    opacity: 1;
    transform: none;
  }

  .hero-stats article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .founder-panel img {
    max-height: 420px;
    object-position: center 38%;
  }

  .process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .process-timeline li {
    min-height: 130px;
  }

  .contact-details,
  .enquiry-form,
  .map-section {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

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

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