/* ================================================================
   CW-COMPUTER-SOLUTIONS LTD — style.css
   Editorial corporate theme · Red / Steel-Blue / White
   Est. 2007 · Ipswich, Suffolk, England
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Outfit:wght@300;400;500;600&display=swap');

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  /* Primary palette */
  --red:          #C0152A;
  --red-dark:     #96101F;
  --red-light:    #F5E6E9;
  --blue:         #2F80C2;
  --blue-dark:    #1F5E94;
  --blue-light:   #E8F3FB;
  --blue-mid:     #5BA3D4;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F8F9FB;
  --silver:       #EDF0F4;
  --border:       #E0E5EC;
  --text:         #1A202C;
  --text-mid:     #4A5568;
  --text-muted:   #718096;
  --text-light:   #A0AEC0;

  /* Typography */
  --font-head:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   1.75rem;
  --sp-lg:   3rem;
  --sp-xl:   5rem;
  --sp-2xl:  8rem;

  /* Layout */
  --max-w:   1160px;
  --nav-h:   74px;
  --radius:  8px;
  --radius-lg: 16px;

  /* Effects */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.10);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* ================================================================
   UTILITIES
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

/* Section anatomy */
.section        { padding-block: var(--sp-2xl); }
.section--sm    { padding-block: var(--sp-xl); }
.section--alt   { background: var(--off-white); }
.section--silver{ background: var(--silver); }
.section--red   { background: var(--red); color: var(--white); }
.section--blue  { background: var(--blue-dark); color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-xs);
}
.section--red  .section-tag,
.section--blue .section-tag { color: rgba(255,255,255,0.65); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--sp-sm);
}
.section--red  .section-title,
.section--blue .section-title { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 56ch;
}
.section--red  .section-sub,
.section--blue .section-sub { color: rgba(255,255,255,0.75); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,21,42,0.28);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47,128,194,0.28);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.nav.raised { box-shadow: var(--shadow-md); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.05em;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav__cta {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--red);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav__burger:hover { background: var(--silver); }
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, width 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-md);
  flex-direction: column;
  gap: 0;
  z-index: 499;
  box-shadow: var(--shadow-lg);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.nav__drawer a:hover { color: var(--red); padding-left: 6px; }
.nav__drawer a.active { color: var(--red); }
.nav__drawer .nav__cta {
  margin-top: var(--sp-sm);
  text-align: center;
  display: block;
  padding: 0.85rem;
}

/* ================================================================
   HERO — index.html
   ================================================================ */
.hero {
  padding-top: calc(var(--nav-h) + var(--sp-xl));
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Diagonal red stripe */
.hero::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 42%;
  height: 100%;
  background: var(--red);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  padding-bottom: var(--sp-2xl);
}

.hero__content { position: relative; }

.hero__est {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-md);
  background: var(--red-light);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(192,21,42,0.2);
}
.hero__est::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--sp-md);
}
.hero__title em {
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: var(--sp-lg);
}

.hero__actions { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }

/* Hero image side */
.hero__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px dashed rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero__placeholder svg { width: 48px; height: 48px; opacity: 0.5; }

/* Hero stats bar */
.hero__stats {
  background: var(--text);
  margin-top: 0;
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--border);
}
.hero__stat {
  padding: var(--sp-lg) var(--sp-md);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ================================================================
   EXPERIENCE BLOCK — index.html
   ================================================================ */
.exp-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.exp-block__text .section-title span { color: var(--red); }

.exp-block__text p {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.exp-block__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--red);
  padding-left: var(--sp-md);
  margin-top: var(--sp-md);
}
.exp-block__milestone {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding-block: var(--sp-sm);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.exp-block__milestone:last-child { border: none; }
.exp-block__milestone::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-md) - 6px);
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
}
.exp-block__year {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  min-width: 72px;
  line-height: 1;
  padding-top: 2px;
}
.exp-block__desc { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; }

.exp-block__panel {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
}
.exp-block__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
}

.exp-block__big {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  display: block;
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.04em;
}
.exp-block__panel h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: var(--sp-sm);
}
.exp-block__panel p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.placeholder-img {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--silver) 0%, var(--blue-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.placeholder-img svg { width: 40px; height: 40px; opacity: 0.5; }
.placeholder-img.landscape { aspect-ratio: 16/9; }
.placeholder-img.square { aspect-ratio: 1; }

.about-intro__text p {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}
.about-intro__text p:last-child { margin-bottom: 0; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.value-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.value-card:hover::after { transform: scaleY(1); }

.value-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--red);
}
.value-card__icon svg { width: 26px; height: 26px; }

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 8px;
}
.value-card p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; }

/* About heritage band */
.heritage-band {
  background: var(--text);
  color: var(--white);
  padding-block: var(--sp-xl);
}
.heritage-band__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-xl);
  align-items: center;
}
.heritage-band__num {
  font-family: var(--font-head);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
}
.heritage-band__text h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: var(--sp-sm);
}
.heritage-band__text p { color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.8; }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-md);
  align-items: start;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-mid);
}

.service-card__icon {
  width: 60px; height: 60px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.3s;
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card:hover .service-card__icon { background: var(--blue); color: var(--white); }

.service-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card__body p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; }

.service-card__features {
  margin-top: var(--sp-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: 2;
}
.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.service-card__features li::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F80C2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Why choose us strip on services */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.why-strip__item {
  text-align: center;
  padding: var(--sp-lg) var(--sp-sm);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.why-strip__item:hover { background: rgba(255,255,255,0.14); }
.why-strip__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.why-strip__label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ================================================================
   SOLUTIONS PAGE
   ================================================================ */
.solutions-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.solutions-intro__text p {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) var(--sp-lg);
  border-top: 4px solid var(--red);
  transition: box-shadow 0.3s, transform 0.25s;
}
.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.solution-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: var(--sp-sm);
}
.solution-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

.solution-card__num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
  opacity: 0.25;
}

/* Global reach section */
.global-reach {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.global-reach__text p { color: var(--text-mid); font-weight: 300; line-height: 1.8; margin-bottom: var(--sp-sm); }

.regions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: var(--sp-md);
}
.region-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius);
}
.region-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: var(--sp-md);
}
.contact-info p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-md);
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: var(--sp-md);
}
.contact-detail__icon {
  width: 42px; height: 42px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail__val { font-size: 0.9375rem; color: var(--text); font-weight: 500; line-height: 1.5; }
.contact-detail__val a { color: var(--blue); }
.contact-detail__val a:hover { text-decoration: underline; }

.contact-reg {
  background: var(--silver);
  border-radius: var(--radius);
  padding: var(--sp-md);
  margin-top: var(--sp-md);
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: var(--sp-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-sm); }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(47,128,194,0.12);
}
.form-group input.error { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  font-size: 0.78rem;
  color: var(--red);
  display: none;
}
.form-error.show { display: block; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-status {
  display: none;
  margin-top: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
}
.form-status.success { background: #F0FFF4; color: #276749; border: 1px solid #9AE6B4; }
.form-status.error   { background: #FFF5F5; color: #C53030; border: 1px solid #FEB2B2; }

/* ================================================================
   CTA BANDS
   ================================================================ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-split__left {
  background: var(--red);
  padding: var(--sp-xl) var(--sp-lg);
  color: var(--white);
}
.cta-split__right {
  background: var(--blue-dark);
  padding: var(--sp-xl) var(--sp-lg);
  color: var(--white);
}
.cta-split h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--sp-sm);
  color: var(--white);
}
.cta-split p { color: rgba(255,255,255,0.7); margin-bottom: var(--sp-md); font-weight: 300; }

.cta-bar {
  background: var(--text);
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.cta-bar h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: var(--sp-sm);
}
.cta-bar p { color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: var(--sp-lg); }
.cta-bar__actions { display: flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding-block: var(--sp-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--sp-md);
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 30ch; }

.footer__col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--sp-md);
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero__image { display: none; }
  .hero__stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .exp-block { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__image { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .solutions-intro { grid-template-columns: 1fr; }
  .global-reach { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .why-strip { grid-template-columns: 1fr 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .heritage-band__inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  :root { --sp-2xl: 5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .why-strip { grid-template-columns: 1fr 1fr; }
  .regions-list { grid-template-columns: 1fr; }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --sp-2xl: 4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .service-card { grid-template-columns: 1fr; }
  .service-card__features { grid-column: 1; }
  .cta-bar__actions { flex-direction: column; align-items: center; }
  .why-strip { grid-template-columns: 1fr; }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }
}
