:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --soft: #f8fafc;
  --sky: #38bdf8;
  --blue: #2563eb;
  --green: #10b981;
  --amber: #f59e0b;
  --shadow: 0 26px 80px rgba(15, 23, 42, 0.1);
  --radius: 8px;
  --display: "Source Serif 4", Georgia, serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.58;
}

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

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

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links > a,
.nav-menu > button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  padding: 0 12px;
  font: inherit;
  cursor: pointer;
}

.nav-links > a:hover,
.nav-menu:hover > button,
.nav-menu > button:focus-visible {
  background: var(--soft);
  color: var(--blue);
}

.nav-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(560px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.mega-menu-wide {
  width: min(720px, calc(100vw - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-menu:hover .mega-menu,
.nav-menu:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu a {
  display: grid;
  gap: 6px;
  border-radius: 12px;
  padding: 14px;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  background: var(--soft);
}

.mega-menu strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.mega-menu span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.mobile-route-strip {
  display: none;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
}

.mobile-route-strip a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 850;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 0 20px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.16);
}

.button-primary {
  background: linear-gradient(135deg, var(--ink), var(--blue));
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 58px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.quote-section h2,
.industries h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.45rem);
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 1.14rem;
  line-height: 1.75;
}

.quick-quote {
  width: min(100%, 780px);
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.quick-quote label,
.enquiry-form label {
  display: grid;
  gap: 7px;
}

.quick-quote span,
.enquiry-form span {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 850;
}

.enquiry-form small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.quick-quote input,
.quick-quote select,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.quick-quote input:focus,
.quick-quote select:focus,
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  padding: 9px 13px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px -70px 18px 60px;
  border-radius: 28px;
  background: #111827;
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
}

.quote-panel,
.garment-card {
  position: absolute;
  border: 1px solid rgba(226, 232, 240, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-main {
  top: 92px;
  right: 0;
  width: min(420px, 92%);
  padding: 20px;
  background: #fff;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header img {
  width: 44px;
  height: 44px;
}

.panel-header strong,
.panel-header span {
  display: block;
}

.panel-header strong {
  font-size: 1.02rem;
}

.panel-header span,
.quote-list span,
.garment-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.quote-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quote-list div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--soft);
  padding: 14px;
}

.quote-list strong {
  color: #334155;
  font-size: 0.9rem;
}

.quote-list b {
  color: var(--green);
}

.garment-card {
  display: grid;
  align-content: end;
  gap: 6px;
  min-height: 190px;
  padding: 18px;
  color: #fff;
}

.garment-card strong {
  font-size: 1.2rem;
}

.garment-dark {
  left: 8px;
  bottom: 72px;
  width: 240px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #0f172a;
}

.garment-light {
  right: 52px;
  bottom: 24px;
  width: 230px;
  color: var(--ink);
  background:
    linear-gradient(150deg, rgba(56, 189, 248, 0.22), transparent 52%),
    #f1f5f9;
}

.services,
.process,
.countries,
.industries,
.proof-section,
.buyer-guide {
  padding: 86px 0;
}

.proof-section {
  background: #fff;
}

.proof-grid,
.buyer-grid,
.content-grid,
.prep-grid,
.faq-grid,
.seo-columns,
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
}

.proof-grid h2,
.buyer-grid h2,
.content-main h2,
.prep-grid h2,
.faq-grid h2,
.seo-columns h2,
.method-grid h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.14;
}

.proof-grid p,
.buyer-grid p,
.content-main p,
.prep-grid p,
.faq-list p,
.seo-columns p,
.method-grid p,
.method-cards p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.proof-list,
.guide-grid,
.checklist-grid,
.faq-list,
.method-cards {
  display: grid;
  gap: 14px;
}

.proof-list article,
.guide-grid article,
.faq-list article,
.seo-columns article,
.method-cards article,
.content-aside {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: clamp(22px, 2.6vw, 32px);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong,
.guide-grid h3,
.faq-list h3,
.method-cards h3,
.content-aside h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.proof-list span,
.guide-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.buyer-guide {
  background: var(--soft);
}

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

.guide-grid p {
  margin: 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.quote-section h2,
.industries h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
}

.section-heading p:not(.eyebrow),
.quote-section p,
.industries p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.76;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.service-grid article {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-grid h3,
.steps h3 {
  margin: 24px 0 10px;
  font-size: 1.18rem;
}

.service-grid p,
.steps p,
.country-grid span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.process {
  background: #0f172a;
}

.process .section-heading h2,
.process .steps h3,
.process .section-heading p {
  color: #fff;
}

.process .section-heading p:not(.eyebrow) {
  color: #cbd5e1;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.steps span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: #082f49;
  font-weight: 900;
}

.steps h3,
.steps p {
  margin: 0;
}

.steps p {
  color: #cbd5e1;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.country-grid a {
  min-height: 165px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.country-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.country-grid strong {
  font-size: 1.03rem;
}

.quote-section {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.12), transparent 34%),
    #111827;
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

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

.quote-section p {
  color: #cbd5e1;
}

.quote-note {
  margin-top: 26px;
  border-left: 4px solid var(--sky);
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: #dbeafe;
}

.quote-note strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-action-panel {
  display: grid;
  gap: 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}

.quote-action-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.quote-action-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.enquiry-form .wide {
  grid-column: 1 / -1;
}

.enquiry-form textarea {
  resize: vertical;
}

.form-alert {
  margin-top: 24px;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
  padding: 14px 16px;
  font-weight: 800;
}

.checkbox-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.checkbox-label span {
  color: #334155;
  font-size: 0.9rem;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--blue);
  font-weight: 850;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.industries {
  background: var(--soft);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.industries-grid > div {
  padding-right: 22px;
}

.industries-grid span {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 26px;
  background: #0f172a;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(5, minmax(125px, 1fr));
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.site-footer .brand {
  font-size: 1rem;
  color: #fff;
}

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

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: #cbd5e1;
  font-weight: 700;
}

.site-footer nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  border-top: 1px solid rgba(226, 232, 240, 0.16);
  padding-top: 22px;
  color: #94a3b8;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: min(430px, calc(100% - 32px));
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 20px;
  box-shadow: var(--shadow);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.plain-page {
  min-height: 62vh;
  padding: 92px 0;
  background: var(--soft);
}

.plain-page h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.04;
}

.plain-page p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-page {
  background: #fff;
}

.legal-wrap {
  max-width: 860px;
}

.legal-wrap .lead {
  margin: 0 0 34px;
}

.legal-wrap article {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-wrap h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.legal-wrap article p {
  max-width: none;
  margin: 0;
}

.legal-wrap article p + p {
  margin-top: 12px;
}

.legal-note {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.95rem;
}

.country-hero {
  padding: clamp(78px, 9vw, 132px) 0 clamp(72px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 14%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.country-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.breadcrumbs a {
  color: var(--blue);
}

.breadcrumbs span:last-child {
  color: #334155;
}

.country-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 800;
  line-height: 0.98;
}

.country-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
}

.country-hero .lead {
  max-width: 760px;
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.78;
}

.country-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.market-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow);
}

.market-card img {
  width: 54px;
  height: 54px;
}

.market-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-card strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.market-card p {
  margin: 0;
  color: var(--muted);
}

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

.country-section-soft {
  background: var(--soft);
}

.content-main {
  max-width: 820px;
}

.content-main p + p {
  margin-top: 1.15rem;
}

.content-aside {
  position: sticky;
  top: 104px;
}

.content-aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-aside li,
.checklist-grid span {
  border-radius: 10px;
  background: var(--soft);
  color: #334155;
  padding: 14px 15px;
  font-size: 0.94rem;
  font-weight: 800;
}

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

.content-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 0.97rem;
  line-height: 1.58;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.method-cards {
  grid-template-columns: repeat(2, 1fr);
}

.method-cards p {
  margin: 0;
  font-size: 0.95rem;
}

.faq-list article {
  background: #fff;
}

.priority-section {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 38%),
    #fff;
}

.priority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.priority-grid h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
}

.priority-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.priority-copy p {
  margin: 0;
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.78;
}

.related-section {
  background: #fff;
}

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

.related-grid a {
  display: grid;
  gap: 12px;
  min-height: 160px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  padding: clamp(18px, 2vw, 26px);
}

.related-grid a:hover {
  border-color: rgba(37, 99, 235, 0.45);
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.related-grid strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.related-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trust-section {
  background: #fff;
}

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

.evaluation-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: clamp(20px, 2.4vw, 30px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.evaluation-grid span,
.journey-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e0f2fe;
  color: #075985;
  font-size: 0.82rem;
  font-weight: 900;
}

.evaluation-grid h3,
.journey-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.evaluation-grid p,
.journey-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.sample-grid,
.after-request-grid,
.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.sample-grid h2,
.after-request-grid h2,
.quality-grid h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
}

.sample-grid p,
.after-request-grid p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.quote-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.quote-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.quote-table th,
.quote-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.quote-table th {
  background: var(--soft);
  color: #334155;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-table td {
  color: #334155;
  font-size: 0.94rem;
}

.quote-table tbody tr:last-child td {
  border-bottom: 0;
}

.quote-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.journey-steps {
  display: grid;
  gap: 14px;
}

.journey-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: clamp(20px, 2.4vw, 30px);
}

.journey-steps span {
  grid-row: span 2;
  background: #dcfce7;
  color: #166534;
}

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

.quality-list span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #334155;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.route-grid a {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: clamp(22px, 2.8vw, 34px);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.route-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.route-grid strong {
  color: var(--ink);
  font-size: 1.16rem;
}

.route-grid span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.route-directory article {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: clamp(20px, 2.2vw, 28px);
}

.route-directory h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.route-directory a {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 750;
}

.route-directory a:hover {
  color: var(--blue);
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.filter-panel h2 {
  margin: 16px 0 2px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-panel h2:first-child {
  margin-top: 0;
}

.filter-panel a {
  border-radius: 10px;
  background: var(--soft);
  color: #334155;
  padding: 11px 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.filter-panel a:hover {
  background: #e0f2fe;
  color: #075985;
}

.supplier-results {
  min-width: 0;
}

.supplier-grid,
.garment-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.supplier-card,
.garment-route,
.article-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: clamp(20px, 2.2vw, 28px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.garment-route,
.article-card {
  min-height: 220px;
  align-content: space-between;
}

.supplier-card:hover,
.garment-route:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.supplier-card h3,
.garment-route strong,
.article-card strong,
.article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.supplier-card p,
.garment-route span,
.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.supplier-status,
.article-card span,
.garment-route em,
.article-card em {
  color: var(--blue);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplier-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.supplier-card dl div {
  display: grid;
  gap: 4px;
  border-radius: 10px;
  background: var(--soft);
  padding: 12px;
}

.supplier-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supplier-card dd {
  margin: 0;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 750;
}

.article-card-featured {
  background: #0f172a;
}

.article-card-featured strong {
  color: #fff;
}

.article-card-featured p {
  color: #cbd5e1;
}

.article-card-featured em,
.article-card-featured span {
  color: #7dd3fc;
}

.article-body {
  display: grid;
  gap: 18px;
}

.country-section-soft .steps article {
  background: #fff;
  border-color: var(--line);
}

.country-section-soft .steps h3 {
  color: var(--ink);
}

.country-section-soft .steps p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .mobile-route-strip {
    display: flex;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .process-grid,
  .quote-grid,
  .industries-grid,
  .country-hero-grid,
  .proof-grid,
  .buyer-grid,
  .content-grid,
  .prep-grid,
  .faq-grid,
  .seo-columns,
  .method-grid,
  .priority-grid,
  .sample-grid,
  .after-request-grid,
  .quality-grid,
  .directory-layout {
    grid-template-columns: 1fr;
  }

  .content-aside,
  .filter-panel {
    position: static;
  }

  .hero-grid {
    min-height: auto;
    gap: 36px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .service-grid,
  .country-grid,
  .route-grid,
  .route-directory,
  .guide-grid,
  .checklist-grid,
  .method-cards,
  .related-grid,
  .evaluation-grid,
  .quality-list,
  .supplier-grid,
  .garment-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-hero h1 {
    line-height: 1.03;
  }

  .service-grid article:nth-child(2n) {
    border-right: 0;
  }

  .service-grid article {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 30px, 1240px);
  }

  .nav {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    font-size: 1rem;
  }

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

  .button-small {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero-grid {
    padding: 42px 0 54px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .country-hero h1 {
    font-size: 2.95rem;
  }

  .quick-quote,
  .enquiry-form,
  .quick-quote .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .cookie-consent {
    right: 15px;
    bottom: 15px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual::before {
    inset: 24px -28px 24px 28px;
  }

  .panel-main {
    top: 58px;
  }

  .quote-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .garment-dark {
    left: 0;
    bottom: 42px;
    width: 190px;
  }

  .garment-light {
    right: 0;
    bottom: 0;
    width: 182px;
  }

  .services,
  .process,
  .countries,
  .industries,
  .proof-section,
  .buyer-guide,
  .quote-section,
  .country-hero,
  .country-section {
    padding: 68px 0;
  }

  .service-grid,
  .country-grid,
  .route-grid,
  .route-directory,
  .guide-grid,
  .checklist-grid,
  .method-cards,
  .related-grid,
  .evaluation-grid,
  .quality-list,
  .supplier-grid,
  .garment-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .journey-steps article {
    grid-template-columns: 1fr;
  }

  .journey-steps span {
    grid-row: auto;
  }

  .service-grid article {
    min-height: 0;
    border-right: 0;
  }

  .steps article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps span {
    grid-row: auto;
  }
}
