/* ============================================================
   Gorewell Ltd — Smart Distribution. Global Connections.
   Plain CSS, no build step.
   ============================================================ */

:root {
  --ink: #0F2430;
  --ink-2: #14303F;
  --navy: #1D3E52;
  --teal: #2E8F86;
  --teal-dark: #257068;
  --teal-light: #49B8AC;
  --grey: #5E7280;
  --light: #F5F7F8;
  --line: #E4EAEC;
  --card: #FBFCFD;
  --font: "Montserrat", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --maxw: 1440px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 12px;
  --shadow-sm: 0 6px 18px rgba(15, 36, 48, .08);
  --shadow-md: 0 16px 32px rgba(15, 36, 48, .14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--grey);
  background: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-weight: 700; color: var(--navy); line-height: 1.18; letter-spacing: -.01em; }

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-dark); }

:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Labels, kickers & buttons ---------- */

.kicker {
  display: block;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: .74rem;
  margin-bottom: 14px;
}
.kicker::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--teal);
  vertical-align: 3px;
  margin-left: 12px;
  opacity: .5;
}

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }

/* Shine sweep on solid buttons */
.btn-teal, .btn-white {
  position: relative;
  overflow: hidden;
}
.btn-teal::before, .btn-white::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-teal:hover::before, .btn-white:hover::before { left: 130%; }

.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; box-shadow: 0 8px 22px rgba(46, 143, 134, .38); }

.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--light); color: var(--teal-dark); box-shadow: 0 8px 22px rgba(15, 36, 48, .28); }

.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--teal); }

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

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 2px 14px rgba(15, 36, 48, .12); }

.nav-wrap {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand img { width: 40px; height: 40px; }
.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .14em;
  color: var(--navy);
  white-space: nowrap;
}
.brand-name .ltd {
  color: var(--teal);
  font-size: .72rem;
  letter-spacing: .22em;
  margin-left: 6px;
  vertical-align: 1px;
}

.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.main-nav a {
  color: var(--navy);
  font-weight: 400;
  font-size: .92rem;
  padding: 6px 0;
  position: relative;
}
.main-nav a:not(.mobile-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.main-nav a:hover { color: var(--teal); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { font-weight: 700; }

/* Scroll progress bar (injected by main.js) */
.scroll-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.nav-cta { flex-shrink: 0; padding: 13px 24px; }

.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* The in-menu Contact button only exists for the mobile dropdown */
@media (min-width: 981px) {
  .main-nav .mobile-cta { display: none; }
}

@media (max-width: 980px) {
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 14px 24px rgba(15, 36, 48, .14);
    display: none;
    padding: 8px 0 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px var(--pad);
    border-bottom: 1px solid var(--line);
  }
  .main-nav a.active { border-bottom-color: var(--line); color: var(--teal); }
  .main-nav .mobile-cta {
    margin: 16px var(--pad) 0;
    text-align: center;
    border-bottom: 0;
    color: #fff;
  }
}

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: var(--reveal-delay, 0s);
  }
  [data-reveal].revealed { opacity: 1; transform: none; }
}

/* ---------- Entrance animations (hero / page heads) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .hero-grid > div:first-child > *,
  .page-head-grid > div:first-child > * {
    opacity: 0;
    animation: enter-up .7s ease forwards;
  }
  .hero-grid > div:first-child > :nth-child(1),
  .page-head-grid > div:first-child > :nth-child(1) { animation-delay: .05s; }
  .hero-grid > div:first-child > :nth-child(2),
  .page-head-grid > div:first-child > :nth-child(2) { animation-delay: .16s; }
  .hero-grid > div:first-child > :nth-child(3),
  .page-head-grid > div:first-child > :nth-child(3) { animation-delay: .27s; }
  .hero-grid > div:first-child > :nth-child(4),
  .page-head-grid > div:first-child > :nth-child(4) { animation-delay: .38s; }
  .hero .dotmap-wrap,
  .page-head .dotmap-wrap {
    opacity: 0;
    animation: enter-fade .9s ease .25s forwards;
  }
  @keyframes enter-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes enter-fade {
    from { opacity: 0; transform: scale(.97); }
    to   { opacity: 1; transform: none; }
  }
  .page-head .dotmap-wrap { animation-name: enter-fade-dim; }
  @keyframes enter-fade-dim {
    from { opacity: 0; transform: scale(.97); }
    to   { opacity: .8; transform: none; }
  }
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(160deg, var(--ink) 55%, var(--ink-2) 100%);
  color: #c3d2dc;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding-top: clamp(64px, 9vw, 128px);
  padding-bottom: clamp(64px, 9vw, 128px);
}
.hero .kicker { color: var(--teal-light); }
.hero .kicker::after { background: var(--teal-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--teal-light); display: block; }
.hero p {
  max-width: 46ch;
  margin-bottom: 38px;
  font-size: 1.05rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .dotmap-wrap { min-width: 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .dotmap-wrap { order: -1; max-width: 560px; }
}

/* ---------- Dotted world map ---------- */

.dotmap { width: 100%; height: auto; }
.dotmap .dot { fill: #5E7280; opacity: .55; }
.dotmap .arc {
  fill: none;
  stroke: var(--teal-light);
  stroke-width: 1.6;
  opacity: .85;
}
.dotmap .hub { fill: var(--teal-light); }
.dotmap .hub-origin { fill: #fff; }
.dotmap .hub-ring {
  fill: none;
  stroke: var(--teal-light);
  stroke-width: 1.4;
  opacity: .6;
}

.dotmap .packet { fill: var(--teal-light); }

@media (prefers-reduced-motion: no-preference) {
  .dotmap .arc {
    stroke-dasharray: var(--len);
    stroke-dashoffset: var(--len);
    animation: arc-cycle 7s ease-in-out infinite;
  }
  .dotmap .hub-ring {
    transform-box: fill-box;
    transform-origin: center;
    animation: hub-pulse 2.6s ease-out infinite;
  }
  /* Draw in, hold, fade out, repeat — the map never goes fully static */
  @keyframes arc-cycle {
    0%   { stroke-dashoffset: var(--len); opacity: 0; }
    8%   { opacity: .85; }
    38%  { stroke-dashoffset: 0; opacity: .85; }
    80%  { stroke-dashoffset: 0; opacity: .85; }
    96%  { stroke-dashoffset: 0; opacity: 0; }
    100% { stroke-dashoffset: var(--len); opacity: 0; }
  }
  @keyframes hub-pulse {
    0%   { transform: scale(.4); opacity: .8; }
    70%  { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
  }
}

/* ---------- Section scaffolding ---------- */

.section { padding-top: clamp(56px, 7vw, 104px); padding-bottom: clamp(56px, 7vw, 104px); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker::after { display: none; }

/* ---------- Services row ---------- */

.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 38px);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service:hover::before { transform: scaleX(1); }
.service .icon { color: var(--teal); margin-bottom: 22px; }
.service .icon svg { width: 42px; height: 42px; transition: transform .25s ease; }
.service:hover .icon svg { transform: scale(1.12) rotate(-3deg); }
.service h3 {
  font-size: .92rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service p { font-size: .92rem; margin-bottom: 18px; }
.service .more {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .2s ease;
}
.service .more:hover { transform: translateX(5px); }

@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Stats + CTA band ---------- */

.stats-band { background: var(--ink); color: #fff; }
.stats-band .band-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(48px, 6vw, 84px) var(--pad) clamp(48px, 6vw, 84px) 0;
}
.stat { border-left: 1px solid rgba(255, 255, 255, .16); padding-left: clamp(14px, 1.8vw, 28px); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.stat .num .plus { color: var(--teal-light); }
.stat .cap {
  margin-top: 10px;
  color: #93a7b3;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cta-panel {
  background: linear-gradient(150deg, var(--teal), var(--teal-dark));
  padding: clamp(40px, 5vw, 64px) clamp(28px, 3.4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}
.cta-panel h2 { color: #fff; font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.cta-panel p { color: #e6f4f2; font-size: .95rem; }

.stats-band .band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
}

@media (max-width: 1020px) {
  .stats-band .band-grid { grid-template-columns: 1fr; }
  .stats-band .band-inner { padding-left: 0; }
  .stats-grid { padding-left: var(--pad); padding-right: var(--pad); }
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ---------- About band (homepage) ---------- */

.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about p { margin-bottom: 28px; max-width: 56ch; }

.ticks { list-style: none; }
.ticks li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  color: var(--navy);
}
.ticks .tick {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
}
.ticks .tick svg { width: 13px; height: 13px; }

.map-card {
  background: var(--ink);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 44px);
  box-shadow: 0 18px 40px rgba(15, 36, 48, .18);
}
@media (prefers-reduced-motion: no-preference) {
  .map-card { animation: gentle-float 7s ease-in-out infinite; }
  @keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
  }
}
.map-card .caption {
  margin-top: 22px;
  text-align: center;
  color: var(--teal-light);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Page header band (inner pages) ---------- */

.page-head {
  background: linear-gradient(160deg, var(--ink) 55%, var(--ink-2) 100%);
  color: #c3d2dc;
  overflow: hidden;
}
.page-head .kicker { color: var(--teal-light); }
.page-head .kicker::after { background: var(--teal-light); }
.page-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding-top: clamp(48px, 6vw, 92px);
  padding-bottom: clamp(48px, 6vw, 92px);
}
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.page-head h1 .accent { color: var(--teal-light); }
.page-head p { max-width: 54ch; font-size: 1.02rem; }
.page-head .head-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.page-head .dotmap-wrap { opacity: .8; }

@media (max-width: 720px) {
  .page-head-grid { grid-template-columns: 1fr; }
  .page-head .dotmap-wrap { display: none; }
}

/* ---------- Card grids (values, wholesale features) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.info-card:hover::before { transform: scaleX(1); }
.info-card .icon { color: var(--teal); margin-bottom: 18px; }
.info-card .icon svg { width: 38px; height: 38px; transition: transform .25s ease; }
.info-card:hover .icon svg { transform: scale(1.12) rotate(-3deg); }
.info-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.info-card p { font-size: .92rem; }

@media (max-width: 980px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- Numbered process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(var(--step-cols, 3), 1fr);
  gap: clamp(16px, 2vw, 28px);
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 36px);
  counter-increment: step;
}
.step .step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.step .step-num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.02rem; margin-bottom: 10px; }
.step p { font-size: .92rem; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Team page ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 36px);
  justify-content: center;
}
.team-grid.single { grid-template-columns: minmax(0, 420px); justify-content: center; }

.team-card {
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  padding: 40px 30px 32px;
  text-align: center;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.avatar {
  width: 108px;
  height: 108px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--teal);
}

.team-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.team-card .role {
  color: var(--teal);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card .bio { font-size: .92rem; margin-bottom: 20px; }
.team-links { display: flex; justify-content: center; gap: 14px; }
.team-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease;
}
.team-links a:hover { background: var(--teal); color: #fff; }
.team-links svg { width: 17px; height: 17px; }

@media (max-width: 1020px) { .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */

.faq-group { max-width: 860px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: clamp(36px, 4vw, 56px); }
.faq-group > h2 {
  font-size: 1.15rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(46, 143, 134, .4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  font-size: .98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal); }
.faq-item .chev {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--teal);
  display: grid;
  place-items: center;
  transition: transform .3s ease, background .2s ease, border-color .2s ease;
}
.faq-item .chev svg { width: 13px; height: 13px; }
.faq-item[open] .chev { transform: rotate(180deg); background: var(--teal); color: #fff; border-color: var(--teal); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: .94rem; }
.faq-item .faq-a a { font-weight: 700; }


/* ---------- Teal CTA strip ---------- */

.teal-strip { background: linear-gradient(150deg, var(--teal), var(--teal-dark)); color: #fff; }
.teal-strip .strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 56px);
}
.teal-strip h2 { color: #fff; font-size: clamp(1.25rem, 2.4vw, 1.7rem); }
.teal-strip p { color: #e6f4f2; margin-top: 6px; font-size: .95rem; }

/* ---------- Stub page content ---------- */

.stub-card {
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 48px);
  max-width: 780px;
}
.stub-card h2 { font-size: 1.3rem; margin-bottom: 12px; }
.stub-card p { margin-bottom: 22px; }

/* ---------- Contact form ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 44px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--ink);
  background: var(--light);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 13px 15px;
  transition: border-color .2s ease;
}
.field select { cursor: pointer; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 143, 134, .18);
}
.field textarea { min-height: 150px; resize: vertical; }

.contact-aside h2 { font-size: 1.3rem; margin-bottom: 14px; }
.contact-aside p { margin-bottom: 18px; }
.contact-aside .detail {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
  word-break: break-word;
}
.contact-aside .detail span { color: var(--teal); }

.form-note { font-size: .82rem; margin-top: 14px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { order: -1; }
}

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: #93a7b3; font-size: .92rem; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: 38px;
}
.footer-brand .brand { margin: 0 0 16px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .tagline { color: #cfdbe2; margin-bottom: 14px; }
.footer-brand a { color: #93a7b3; }
.footer-brand a:hover { color: var(--teal-light); }
.footer-brand .contact-line { display: block; margin-bottom: 6px; }

.footer-col h3 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #cfdbe2;
  font-size: .9rem;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
  padding-bottom: 30px;
  font-size: .82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
