/* ==========================================================================
   TÜR — tur.com.co
   Rebuilt to match the client's original site: white header, Poppins UI,
   Lato body, Playfair Display for display titles, brand blue #164eab.
   ========================================================================== */

:root {
  --blue:    #164eab;
  --blue-dk: #103c86;
  --gold:    #c5a477;
  --ink:     #222222;
  --ink-2:   #2d3032;
  --head:    #444444;
  --text:    #555555;
  --muted:   #888888;
  --line:    #ebebeb;
  --soft:    #f7f7f7;
  --white:   #ffffff;

  --f-body:    "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-ui:      "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-display: "Playfair Display", Georgia, "Times New Roman", serif;

  --head-h: 100px;
  --wrap: 1200px;
  --gut: clamp(16px, 4vw, 30px);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font: 400 16px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dk); }
button { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--f-ui); color: var(--head); margin: 0; line-height: 1.3; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: 0; top: 0; z-index: 300;
  background: var(--blue); color: #fff; padding: 10px 16px;
  clip-path: inset(50%); white-space: nowrap;
}
.skip:focus { clip-path: none; color: #fff; }

/* ---------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-head.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.08); border-bottom-color: var(--line); }
.head-in { display: flex; align-items: center; gap: 24px; height: var(--head-h); transition: height .25s ease; }
.site-head.scrolled .head-in { height: 76px; }
.logo { display: block; margin-right: auto; }
.logo img { height: 64px; width: auto; transition: height .25s ease; }
.site-head.scrolled .logo img { height: 52px; }

.menu { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu-link {
  display: flex; align-items: center; gap: 6px;
  height: var(--head-h); padding: 0 15px;
  font: 500 13px/22px var(--f-ui); letter-spacing: 1px; text-transform: uppercase;
  color: #444; background: none; border: 0; cursor: pointer;
  transition: color .2s ease, height .25s ease;
}
.site-head.scrolled .menu-link { height: 76px; }
.menu-link:hover, .menu-link.on, .menu > li:hover > .menu-link { color: var(--blue); }
.caret { width: 8px; height: 8px; transition: transform .2s ease; }

/* dropdowns: compact, like the original */
.drop {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border-top: 2px solid var(--blue);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  list-style: none; margin: 0; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.menu > li:hover > .drop, .menu > li.open > .drop { opacity: 1; visibility: visible; transform: none; }
.drop li { position: relative; }
.drop a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 9px 20px; font: 400 13px/1.4 var(--f-ui); color: #444;
}
.drop a:hover, .drop li:hover > a { color: var(--blue); background: var(--soft); }
.drop .drop { top: -10px; left: 100%; border-top: 0; border-left: 2px solid var(--blue); }
.drop li:hover > .drop { opacity: 1; visibility: visible; transform: none; }
.drop .sub-caret { width: 7px; height: 7px; transform: rotate(-90deg); opacity: .6; }

.head-tools { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  position: relative; width: 40px; height: 40px; display: grid; place-items: center;
  background: none; border: 0; color: #444; cursor: pointer; border-radius: 50%;
}
.icon-btn:hover { color: var(--blue); background: var(--soft); }
.icon-btn svg { width: 19px; height: 19px; }
.badge {
  position: absolute; top: 3px; right: 1px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 9px; background: var(--blue); color: #fff;
  font: 600 10px/17px var(--f-ui); text-align: center;
}
.badge[hidden] { display: none; }
.burger { display: none; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; height: calc(100vh - var(--head-h)); min-height: 560px; max-height: 900px; overflow: hidden; background: #111; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slide.on { opacity: 1; z-index: 1; }
.slide picture { position: absolute; inset: 0; display: block; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-card {
  position: absolute; right: 0; bottom: 0; z-index: 2;
  width: min(760px, 58%);
  background: var(--white);
  padding: 56px 60px 64px;
  transform: translateY(24px); opacity: 0;
  transition: transform .8s ease .25s, opacity .8s ease .25s;
}
.slide.on .slide-card { transform: none; opacity: 1; }
.slide-card h2 {
  font: 400 clamp(26px, 3vw, 43px)/1.18 var(--f-display);
  color: var(--ink-2); margin: 0; text-wrap: balance;
}
.slide-card h2 a { color: inherit; }
.slide-card h2 a:hover { color: var(--blue); }
.slide-card p { margin: 14px 0 0; font: 400 16px/1.5 var(--f-ui); color: #666; letter-spacing: .3px; }
.slide-dots {
  position: absolute; left: 80px; bottom: 30px; z-index: 3;
  display: flex; gap: 6px;
}
.slide-dots button {
  width: 36px; height: 4px; padding: 0; border: 0; cursor: pointer;
  background: rgba(255,255,255,.45);
}
.slide-dots button.on { background: var(--white); }
.slide-dots button:focus-visible { outline-color: #fff; }

/* ------------------------------------------------------ trusted by the best */
.trusted { text-align: center; padding: 100px 0 70px; }
.trusted .t-logo { width: 150px; margin: 0 auto 30px; }
.trusted h2 { font: 600 clamp(28px, 3.4vw, 40px)/1.4 var(--f-ui); color: var(--head); letter-spacing: 1px; }
.trusted p { max-width: 820px; margin: 18px auto 0; font: 300 16px/1.8 var(--f-ui); color: var(--text); }
.more-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 24px; font: 400 15px var(--f-body); border-bottom: 1px solid currentColor; }
.more-link svg { width: 10px; height: 10px; }
/* nine partners: one row on desktop, then 3 x 3 so nothing is left alone */
.partners { display: grid; grid-template-columns: repeat(9, 1fr); align-items: center; gap: 30px 28px; margin-top: 56px; }
.partners a, .partners span { display: grid; place-items: center; }
.partners img { height: 56px; width: 100%; max-width: 120px; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .25s, opacity .25s; }
.partners a:hover img { filter: none; opacity: 1; }

/* -------------------------------------------------------- parallax bands */
.band {
  position: relative; display: grid; place-items: center; text-align: center;
  height: 74vh; min-height: 460px; max-height: 667px;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,8,.93), rgba(8,8,8,.17)); }
.band > div { position: relative; padding-inline: var(--gut); }
.band h2 { font: 500 clamp(30px, 4.4vw, 54px)/1.5 var(--f-ui); color: #fff; letter-spacing: .5px; }
.band p { margin: 6px 0 0; font: 300 clamp(16px, 1.6vw, 20px)/1.8 var(--f-ui); color: #fff; letter-spacing: .5px; }

/* ------------------------------------------------- home category carousel */
.cat-carousel { position: relative; margin: 100px auto 50px; }
.cat-slide { display: none; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 20px 0; }
.cat-slide.on { display: grid; animation: fade .6s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.cat-slide h3 { font: 600 clamp(28px, 3vw, 40px)/1.25 var(--f-ui); color: var(--ink); margin-bottom: 18px; }
.cat-slide p { margin: 0; font: 400 15px/1.7 var(--f-ui); color: var(--text); }
.cat-slide .more-link { font-family: var(--f-ui); font-size: 14px; }
.cat-slide .img { box-shadow: -30px 30px 0 rgba(0,0,0,.06); }
.cat-slide .img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cat-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.cat-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: #d6d6d6; cursor: pointer; }
.cat-dots button.on { background: var(--blue); }

/* ----------------------------------------------------- display headings */
.display-head { text-align: center; padding: 60px 0 36px; }
.display-head h2 { font: 400 clamp(26px, 3.2vw, 40px)/1.3 var(--f-display); text-transform: uppercase; color: var(--head); letter-spacing: .5px; }
.display-head p { margin: 10px 0 0; font: 400 clamp(16px, 1.6vw, 20px) var(--f-ui); color: var(--text); }

/* global presence: edge to edge */
.presence { display: grid; grid-template-columns: repeat(4, 1fr); }
.presence figure { position: relative; margin: 0; overflow: hidden; }
.presence img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s ease; }
.presence figure:hover img { transform: scale(1.05); }
.presence figcaption {
  position: absolute; inset: auto 0 0 0; padding: 18px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,0));
  font: 500 18px var(--f-ui); color: #fff; letter-spacing: .5px;
}

/* legacy video */
.legacy { padding-bottom: 90px; }
.video-card { position: relative; display: block; max-width: 980px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,.18); border: 0; padding: 0; background: none; cursor: pointer; width: 100%; }
.video-card img { width: 100%; }
.play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%; background: rgba(22,78,171,.92);
  display: grid; place-items: center; transition: transform .2s ease, background .2s;
}
.video-card:hover .play { transform: translate(-50%,-50%) scale(1.08); background: var(--blue); }
.play svg { width: 30px; height: 30px; fill: #fff; margin-left: 5px; }

/* catalogue promo */
.promo { position: relative; background-size: cover; background-position: center; }
.promo::before { content: ""; position: absolute; inset: 0; background: rgba(117,115,115,.84); }
.promo .wrap { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 40px; padding-block: 90px; text-align: center; }
.promo h3 { font: 600 clamp(22px, 2.6vw, 30px) var(--f-ui); color: #fff; letter-spacing: 1px; }
.btn-line {
  display: inline-block; padding: 14px 34px;
  border: 2px solid #fff; color: #fff;
  font: 500 14px var(--f-ui); letter-spacing: 1px; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-line:hover { background: #fff; color: var(--ink); }

/* say hello */
.hello { max-width: 850px; margin: 90px auto 60px; }
.hello h3 { text-align: center; font: 500 30px var(--f-ui); color: var(--head); margin-bottom: 36px; }

/* certification strip */
.certs { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px 60px; padding: 50px 0 70px; }
.certs img { height: 72px; width: auto; object-fit: contain; }

/* --------------------------------------------------------------- forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 6px; }
.field label { font: 500 13px var(--f-ui); color: #444; letter-spacing: .3px; }
.field input, .field textarea, .field select {
  width: 100%; font: 400 15px var(--f-body); color: var(--ink);
  background: #fff; border: 1px solid #ddd; border-radius: 0; padding: 11px 14px;
  transition: border-color .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 22px; }
.form-note { font: 400 14px/1.6 var(--f-body); color: var(--muted); }
.btn {
  display: inline-block; border: 0; cursor: pointer;
  background: var(--blue); color: #fff;
  padding: 14px 32px; font: 500 14px var(--f-ui); letter-spacing: 1px; text-transform: uppercase;
  transition: background .2s;
}
.btn:hover { background: var(--blue-dk); color: #fff; }
.btn.dark { background: #000; }
.btn.dark:hover { background: #333; }
.btn[disabled] { opacity: .6; cursor: wait; }
.btn-ghost {
  display: inline-block; border: 1px solid #ccc; background: #fff; color: #444; cursor: pointer;
  padding: 13px 28px; font: 500 13px var(--f-ui); letter-spacing: 1px; text-transform: uppercase;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.form-status { margin: 18px 0 0; padding: 12px 16px; border-left: 3px solid #bbb; background: var(--soft); font: 400 15px var(--f-body); color: var(--ink); }
.form-status.ok { border-left-color: var(--blue); background: #edf2fb; }
.honey { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* ----------------------------------------------------- inner page banner */
.banner {
  position: relative; height: 380px; display: flex; align-items: center;
  background-color: #333; background-size: cover; background-position: center;
}
.banner::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.banner .wrap { position: relative; }
.banner h1 {
  font: 400 clamp(30px, 4.2vw, 48px)/1.15 var(--f-display);
  color: #fff; text-transform: uppercase; letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  max-width: 900px;
}
.crumbs { margin-top: 14px; font: 400 13px var(--f-ui); color: rgba(255,255,255,.85); letter-spacing: .5px; }
.crumbs a { color: #fff; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 8px; opacity: .6; }

.page { padding: 70px 0 90px; }
.page-h2 { font: 600 clamp(24px, 2.6vw, 32px) var(--f-ui); color: var(--head); letter-spacing: .5px; margin-bottom: 22px; }
.center { text-align: center; }

/* ------------------------------------------ division landing: collages */
.collage-block { margin: 20px 0 80px; }
.collage-block h2 { text-align: center; font: 600 24px var(--f-ui); color: var(--head); margin-bottom: 16px; }
.collage { position: relative; display: flex; flex-wrap: wrap; }
.collage img { width: 50%; height: 250px; object-fit: cover; border: 2px solid #fff; }
.collage img:first-child { width: 100%; height: 320px; }
.collage .view {
  position: absolute; right: 2px; bottom: 2px;
  background: #000; color: #fff; padding: 20px 40px; font: 600 15px var(--f-ui);
  transition: box-shadow .3s, background .2s;
}
.collage .view:hover { background: var(--blue); color: #fff; box-shadow: -2px -2px 5px rgba(0,0,0,.4); }

/* ------------------------------------------ range page: category tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tiles .tile:first-child { grid-column: span 2; }
.tile {
  position: relative; display: grid; place-items: center; min-height: 280px; overflow: hidden;
  background: #cfcfcf; text-align: center; padding: 20px;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.34); transition: background .3s; }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { background: rgba(22,78,171,.55); }
.tile h3 { position: relative; z-index: 1; font: 400 clamp(22px, 2.2vw, 28px) var(--f-display); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.4); }

/* --------------------------------------------------- product listing */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
.product { text-align: center; }
.product .p-img { display: block; aspect-ratio: 1 / 1; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.product .p-img img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .4s ease; }
.product:hover .p-img img { transform: scale(1.05); }
.product h3 { margin: 16px 0 0; font: 500 16px/1.4 var(--f-ui); }
.product h3 a { color: var(--head); }
.product h3 a:hover { color: var(--blue); }
.add {
  margin-top: 10px; background: none; border: 0; padding: 4px 0; cursor: pointer;
  font: 400 13px var(--f-ui); color: var(--muted); letter-spacing: .3px;
  border-bottom: 1px solid transparent;
}
.add:hover { color: var(--blue); border-bottom-color: currentColor; }
.add[data-done] { color: var(--blue); }

/* ------------------------------------------------------ product detail */
.pd { display: grid; grid-template-columns: 5fr 7fr; gap: 50px; align-items: start; }
.pd-img { border: 1px solid var(--line); background: #fff; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.pd-img img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.pd h1 { font: 600 clamp(24px, 2.6vw, 32px)/1.3 var(--f-ui); color: var(--head); }
.pd .cat { margin-top: 8px; font: 400 14px var(--f-ui); color: var(--muted); }
.pd .intro { margin-top: 20px; font: 400 16px/1.7 var(--f-body); }
.pd .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.desc { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); max-width: 900px; }
.desc h3.title { font: 600 22px var(--f-ui); margin-bottom: 18px; }
.rich { font: 400 16px/1.75 var(--f-body); color: var(--text); }
.rich h3, .rich h4, .rich h5, .rich h6 { font: 600 17px/1.4 var(--f-ui); color: var(--blue); margin: 28px 0 10px; text-transform: none; }
.rich p { margin: 0 0 12px; }
.rich ul, .rich ol { margin: 0 0 16px; padding-left: 22px; }
.rich li { margin: 4px 0; }
.rich li p { margin: 0; }
.rich strong { color: var(--head); }
.rich .tbl { overflow-x: auto; margin: 10px 0 20px; }
.rich table { border-collapse: collapse; min-width: 100%; font-size: 14px; }
.rich td, .rich th { border: 1px solid var(--line); padding: 8px 12px; text-align: left; vertical-align: top; }
.rich td p { margin: 0; }
.pd-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); font: 400 14px var(--f-ui); }

/* --------------------------------------------------------------- about */
.about-copy p { font: 400 17px/1.8 var(--f-body); margin: 0 0 18px; }
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 40px; }
.member { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.member img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.member h4 { font: 600 20px var(--f-ui); color: var(--head); }
.member .role { display: block; margin-top: 4px; font: 400 14px var(--f-ui); color: var(--blue); }
.member p { margin: 14px 0 0; font: 400 15px/1.7 var(--f-body); }
.profile { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 80px; padding: 50px; background: var(--soft); }
.profile a.cover img { max-height: 420px; width: auto; margin: 0 auto; box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.profile h3 { font: 600 26px var(--f-ui); margin-bottom: 20px; }

/* ------------------------------------------------------------- contact */
.contact-top { display: grid; grid-template-columns: 7fr 5fr; gap: 50px; }
.corp { background: var(--soft); padding: 34px; font: 400 15px/1.8 var(--f-body); }
.corp h3 { font: 600 20px var(--f-ui); margin-bottom: 14px; }
.corp strong { color: var(--head); font-family: var(--f-ui); font-weight: 500; }
.offices { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; margin-top: 70px; }
.office { border: 1px solid var(--line); padding: 28px 26px; }
.office img.flag { width: 42px; height: 28px; object-fit: cover; margin-bottom: 14px; border: 1px solid var(--line); }
.office h4 { font: 600 16px var(--f-ui); color: var(--head); margin-bottom: 10px; }
.office p { margin: 0; font: 400 14px/1.75 var(--f-body); }
.office .reg { margin-top: 8px; font-size: 13px; color: var(--muted); }
.office .links { margin-top: 12px; display: grid; gap: 2px; font-size: 14px; }

/* ----------------------------------------------------------- downloads */
.dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 36px; }
.dl-card { border: 1px solid var(--line); text-align: center; padding: 26px 22px 30px; }
.dl-card img { height: 300px; width: auto; margin: 0 auto 20px; box-shadow: 0 10px 26px rgba(0,0,0,.14); }
.dl-card h4 { font: 500 16px/1.4 var(--f-ui); color: var(--head); margin-bottom: 18px; }

/* -------------------------------------------------------------- footer */
.site-foot { border-top: 1px solid var(--line); background: var(--white); }
.foot-news { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; align-items: center; padding: 50px 0 40px; border-bottom: 1px solid var(--line); }
.foot-news h4 { font: 700 17px var(--f-body); color: var(--ink); letter-spacing: .5px; text-transform: uppercase; }
.foot-news p { margin: 4px 0 0; font: 400 15px var(--f-body); }
.sub-form { display: flex; gap: 10px; }
.sub-form input { flex: 1; min-width: 0; border: 1px solid #ddd; padding: 12px 14px; font: 400 15px var(--f-body); }
.sub-form input:focus { outline: none; border-color: var(--blue); }
.foot-cols { display: grid; grid-template-columns: 4fr 2fr 3fr 3fr; gap: 40px; padding: 50px 0; }
.foot-logo { height: 66px; width: auto; margin-bottom: 20px; }
.foot-about p { margin: 0 0 18px; font: 400 15px/1.75 var(--f-body); }
.social { display: flex; gap: 14px; }
.social a { color: #555; }
.social a:hover { color: var(--blue); }
.social svg { width: 16px; height: 16px; }
.foot-cols h5 { font: 600 14px var(--f-ui); color: var(--ink); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-cols li, .foot-cols a { font: 400 15px/1.6 var(--f-body); color: var(--text); }
.foot-cols a:hover { color: var(--blue); }
.foot-contact li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.foot-contact svg { width: 15px; height: 15px; margin-top: 4px; color: var(--blue); }
.copyright { background: var(--soft); border-top: 1px solid var(--line); }
.copyright .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding-block: 20px; font: 400 14px var(--f-body); color: var(--muted); }
.copyright a { color: var(--text); font-weight: 700; }
.copyright a span { color: #dd5328; }
.copyright a:hover { color: var(--blue); }

/* ---------------------------------------------------------- overlays */
.search-shade, .modal { position: fixed; inset: 0; z-index: 200; background: rgba(20,24,30,.55); display: grid; place-items: start center; padding: 12vh 16px 16px; }
.search-shade[hidden], .modal[hidden] { display: none; }
.search-box { width: min(680px, 100%); background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,.25); }
.search-box input { width: 100%; border: 0; border-bottom: 1px solid var(--line); padding: 20px 22px; font: 400 18px var(--f-body); }
.search-box input:focus { outline: none; }
.results { max-height: 55vh; overflow-y: auto; }
.results a { display: flex; justify-content: space-between; gap: 16px; padding: 12px 22px; border-bottom: 1px solid #f2f2f2; color: var(--ink); font: 400 15px var(--f-body); }
.results a.sel, .results a:hover { background: #edf2fb; color: var(--blue); }
.results .path { font: 400 12px var(--f-ui); color: var(--muted); text-align: right; white-space: nowrap; }
.results .empty { padding: 20px 22px; color: var(--muted); font: 400 15px var(--f-body); }
.modal { place-items: center; background: rgba(0,0,0,.85); }
.modal-box { position: relative; width: min(1000px, 100%); }
.modal-box .frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.modal-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal-box .alt { display: block; margin-top: 12px; color: #fff; font: 400 14px var(--f-ui); text-align: center; }
.modal-close { position: absolute; top: -46px; right: 0; background: none; border: 0; color: #fff; font: 300 36px/1 var(--f-ui); cursor: pointer; }
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 250; transform: translate(-50%, 160%);
  background: #222; color: #fff; padding: 13px 20px; font: 400 15px var(--f-body);
  transition: transform .3s cubic-bezier(.2,.8,.3,1); max-width: calc(100vw - 32px);
}
.toast.on { transform: translate(-50%, 0); }

/* ------------------------------------------------------------ enquiry */
.enq-list { border: 1px solid var(--line); }
.enq-row { display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.enq-row:last-child { border-bottom: 0; }
.enq-row img { width: 56px; height: 56px; object-fit: contain; border: 1px solid var(--line); background: #fff; }
.enq-row span { flex: 1; font: 500 15px var(--f-ui); color: var(--head); }
.enq-row button { background: none; border: 0; color: var(--muted); cursor: pointer; font: 400 13px var(--f-ui); }
.enq-row button:hover { color: #c0392b; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1100px) {
  :root { --head-h: 80px; }
  .burger { display: grid; }
  .site-head.scrolled .head-in { height: 70px; }
  .logo img, .site-head.scrolled .logo img { height: 50px; }
  .menu {
    position: fixed; inset: var(--head-live, 80px) 0 0; z-index: 99;
    flex-direction: column; align-items: stretch;
    background: #fff; border-top: 1px solid var(--line);
    overflow-y: auto; overscroll-behavior: contain; padding-bottom: 40px;
  }
  .menu[hidden] { display: none; }
  .menu > li { border-bottom: 1px solid var(--line); }
  .menu-link, .site-head.scrolled .menu-link { height: auto; width: 100%; justify-content: space-between; padding: 16px var(--gut); font-size: 14px; }
  .drop, .drop .drop {
    position: static; opacity: 1; visibility: visible; transform: none; display: none;
    box-shadow: none; border: 0; border-top: 1px solid var(--line); padding: 0; min-width: 0; background: var(--soft);
  }
  .menu > li.open > .drop, .drop li.open > .drop { display: block; }
  .drop a { padding: 13px calc(var(--gut) + 14px); font-size: 14px; }
  .drop .drop a { padding-left: calc(var(--gut) + 30px); background: #fff; }
  .menu > li.open > .menu-link .caret { transform: rotate(180deg); }
  .drop li.open > a .sub-caret { transform: rotate(0deg); }
  body.nav-open { overflow: hidden; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .pd { grid-template-columns: 1fr; }
  .contact-top { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .slide-card { width: auto; left: 0; right: 0; padding: 34px var(--gut) 60px; }
  .slide-dots { left: var(--gut); bottom: 22px; }
  .slide-dots button { background: rgba(0,0,0,.2); }
  .slide-dots button.on { background: var(--blue); }
  .cat-slide { grid-template-columns: 1fr; gap: 30px; }
  .cat-slide .img { order: -1; box-shadow: none; }
  .presence { grid-template-columns: 1fr 1fr; }
  .partners { grid-template-columns: repeat(3, 1fr); gap: 34px 24px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .tiles .tile:first-child { grid-column: span 2; }
  .team { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; padding: 34px 24px; text-align: center; }
  .foot-news { grid-template-columns: 1fr; }
  .band { background-attachment: scroll; }
  .banner { height: 280px; }
}
@media (max-width: 600px) {
  .hero { height: calc(100svh - var(--head-h)); min-height: 520px; }
  .form-grid { grid-template-columns: 1fr; }
  .collage img { height: 160px; }
  .collage img:first-child { height: 220px; }
  .collage .view { padding: 14px 22px; font-size: 14px; }
  .tiles { grid-template-columns: 1fr; }
  .tiles .tile:first-child { grid-column: auto; }
  .tile { min-height: 200px; }
  .member { grid-template-columns: 1fr; }
  .member img { max-width: 320px; }
  .foot-cols { grid-template-columns: 1fr; gap: 30px; }
  .partners img { height: 46px; }
  .certs img { height: 54px; }
  .products { gap: 26px 14px; }
  .product h3 { font-size: 14px; }
  .sub-form { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .band { background-attachment: scroll; }
}
