/* Website UI kit — scoped styles, rides on colors_and_type.css */

body { margin: 0; background: #fff; color: var(--fg); font-family: var(--font-sans); }
* { box-sizing: border-box; }

/* ---------- NAV ---------- */
.sc-nav {
  background: #000; color: #fff;
  display: flex; align-items: center; gap: 28px;
  padding: 18px 56px;
  border-bottom: 1px solid #1A1A1A;
  position: sticky; top: 0; z-index: 20;
}
.sc-nav-brand { display: flex; align-items: center; gap: 14px; }
.sc-nav-logo { width: 40px; height: 40px; filter: invert(1); }
.sc-wordmark-sm {
  font-weight: 900; text-transform: uppercase; letter-spacing: .18em;
  font-size: 13px; line-height: 1.1; color: #fff;
}
.sc-wordmark-sm small {
  display: block; font-weight: 400; font-size: 9px; letter-spacing: .32em;
  margin-top: 4px; color: #8A8A8A;
}
.sc-nav-links { display: flex; gap: 28px; margin-left: 8px; }
.sc-nav-link {
  color: #fff; text-decoration: none; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; cursor: pointer;
  padding: 4px 0; transition: color .15s;
}
.sc-nav-link:hover { color: #FFD60A; }
.sc-nav-link.active { border-bottom: 2px solid #FFD60A; }
.sc-nav-cta {
  margin-left: auto; background: #FFD60A; color: #000; text-decoration: none;
  padding: 11px 20px; font-size: 11px; font-weight: 900;
  letter-spacing: .18em; text-transform: uppercase;
  transition: background .15s;
}
.sc-nav-cta:hover { background: #FFE34D; }

/* ---------- HERO ---------- */
.sc-hero-sec {
  background: #000; color: #fff; padding: 100px 56px 120px;
  position: relative; overflow: hidden;
}
.sc-hero-sec::before {
  content:""; position:absolute; left:0; right:0; bottom:0; height:80px;
  background: #FFD60A; transform: skewY(-2deg); transform-origin: left bottom;
  opacity: .95;
}
.sc-hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px;
  max-width: 1280px; margin: 0 auto; align-items: center;
  position: relative; z-index: 1;
}
.sc-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .32em; color: #8A8A8A; margin-bottom: 20px;
}
.sc-hero-title {
  font-weight: 900; text-transform: uppercase; font-size: clamp(56px, 7vw, 104px);
  line-height: .95; letter-spacing: -.02em; margin: 0 0 28px;
}
.sc-mark-yellow { color: #FFD60A; }
.sc-hero-lead {
  font-size: 19px; font-weight: 300; line-height: 1.55; color: #BDBDBD;
  max-width: 520px; margin: 0 0 36px;
}
.sc-hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.sc-hero-art {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.sc-hero-art img {
  max-width: 100%; height: auto; filter: drop-shadow(12px 12px 0 #FFD60A);
}
.sc-hero-tag {
  position: absolute; bottom: -24px; right: 0;
  font-size: 11px; font-weight: 700; letter-spacing: .32em;
  color: #8A8A8A; text-transform: uppercase;
}

/* ---------- BUTTONS ---------- */
.sc-btn {
  font-family: var(--font-sans); font-weight: 900;
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px;
  padding: 14px 24px; border: 2px solid transparent; cursor: pointer;
  transition: all .15s;
}
.sc-btn-accent { background: #FFD60A; color: #000; border-color: #FFD60A; }
.sc-btn-accent:hover { background: #FFE34D; border-color: #FFE34D; }
.sc-btn-ghost-dark {
  background: transparent; color: #fff; border-color: #fff;
}
.sc-btn-ghost-dark:hover { background: #fff; color: #000; }
.sc-btn-dark { background: #000; color: #fff; border-color: #000; }
.sc-btn-dark:hover { background: #FFD60A; color: #000; border-color: #FFD60A; }

/* ---------- SECTIONS ---------- */
.sc-section { padding: 96px 56px; background: #fff; }
.sc-section-paper { background: #F4F4F4; }
.sc-section-dark { background: #0A0A0A; color: #fff; }
.sc-section-head { max-width: 1280px; margin: 0 auto 56px; }
.sc-section-title {
  font-weight: 900; text-transform: uppercase; font-size: clamp(40px, 5vw, 64px);
  line-height: 1; letter-spacing: -.01em; margin: 0 0 18px;
}
.sc-section-lead {
  font-size: 19px; font-weight: 300; line-height: 1.5;
  color: var(--fg-muted); max-width: 620px; margin: 0;
}
.sc-section-dark .sc-section-lead { color: #BDBDBD; }

/* ---------- SERVICE CARDS ---------- */
.sc-service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1280px; margin: 0 auto;
}
.sc-service {
  background: #fff; border: 1.5px solid #000; padding: 28px 24px 24px;
  position: relative; box-shadow: 8px 8px 0 0 #000;
  transition: all .18s var(--ease-out); cursor: pointer;
}
.sc-service:hover { box-shadow: 8px 8px 0 0 #FFD60A; transform: translate(-2px,-2px); }
.sc-service-n {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-mono); font-size: 11px; color: #BDBDBD;
  letter-spacing: .1em;
}
.sc-service-icon {
  width: 72px; height: 72px; overflow: hidden;
  margin-bottom: 20px; border: 1px solid #000;
}
.sc-service-icon img { width: 100%; height: 100%; object-fit: cover; }
.sc-service-title {
  font-weight: 900; text-transform: uppercase; letter-spacing: .02em;
  font-size: 17px; line-height: 1.2; margin: 0 0 10px;
}
.sc-service-desc {
  font-size: 14px; line-height: 1.55; color: #4A4A4A; font-weight: 300;
  margin: 0 0 16px;
}
.sc-service-more {
  font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .18em; border-bottom: 2px solid #FFD60A; padding-bottom: 2px;
}

/* ---------- QUOTE ---------- */
.sc-quote {
  background: #FFD60A; padding: 88px 56px; text-align: center;
  position: relative;
}
.sc-quote-mark {
  font-family: Georgia, serif; font-size: 120px; line-height: .5;
  color: #000; opacity: .15; margin-bottom: 20px;
}
.sc-quote-text {
  font-weight: 900; text-transform: uppercase; font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2; letter-spacing: -.01em; max-width: 900px;
  margin: 0 auto 28px; color: #000;
}
.sc-quote-text .sc-mark-yellow { background: #000; color: #FFD60A; padding: 0 .1em; }
.sc-quote-by {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .32em; color: #000;
}

/* ---------- DIRECTORS ---------- */
.sc-dirs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1280px; margin: 0 auto;
}
.sc-dir {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  background: #1A1A1A; padding: 28px; border-left: 4px solid #FFD60A;
}
.sc-dir-photo { width: 200px; height: 220px; overflow: hidden; filter: grayscale(.6); }
.sc-dir-photo img { width: 100%; height: 100%; object-fit: cover; }
.sc-dir h3 {
  font-weight: 900; text-transform: uppercase; font-size: 22px;
  letter-spacing: 0; margin: 0 0 6px; color: #fff;
}
.sc-dir-role {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .28em; color: #FFD60A; margin-bottom: 14px;
}
.sc-dir p { font-size: 14px; line-height: 1.55; color: #BDBDBD; font-weight: 300; margin: 0; }

/* ---------- CLIENTS / COUNTRIES ---------- */
.sc-countries {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 1280px; margin: 0 auto;
}
.sc-country {
  padding: 22px 12px; background: #fff; border: 1.5px solid #000;
  text-align: center; font-weight: 900; text-transform: uppercase;
  letter-spacing: .18em; font-size: 13px;
  transition: all .15s;
}
.sc-country:hover { background: #000; color: #FFD60A; }

/* ---------- CONTACT STRIP ---------- */
.sc-contact { background: #FFD60A; padding: 64px 56px; }
.sc-contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.sc-contact-title {
  font-weight: 900; text-transform: uppercase; font-size: clamp(32px, 4vw, 52px);
  line-height: 1; letter-spacing: -.01em; margin: 10px 0 0; color: #000;
}

/* ---------- FOOTER ---------- */
.sc-footer {
  background: #000; color: #fff; padding: 64px 56px 32px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
}
.sc-footer-tag {
  font-weight: 300; font-size: 15px; color: #BDBDBD; margin: 16px 0 0;
}
.sc-footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  font-size: 13px; font-weight: 300;
}
.sc-footer-cols p { margin: 8px 0 0; color: #E5E5E5; }
.sc-footer-cols .sc-eyebrow { margin-bottom: 14px; }
