/* ============================================================
   Werp Works LLC — Global Styles
   Color Palette:
     Navy:  #0d1f3c
     Gold:  #b8972e
     White: #ffffff
     Light: #f4f6f9
     Gray:  #6b7280
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, button { -webkit-tap-highlight-color: transparent; }

:root {
  --navy:       #0d1f3c;
  --navy-mid:   #162c55;
  --navy-light: #1e3a6e;
  --gold:       #b8972e;
  --gold-light: #d4b04a;
  --white:      #ffffff;
  --light:      #f4f6f9;
  --border:     #dde2ea;
  --gray:       #6b7280;
  --text:       #1f2937;
  --radius:     6px;
  --shadow:     0 4px 20px rgba(13,31,60,0.10);
  --transition: 0.25s ease;
  --font-main:  'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Skip-to-content link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 2000;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 12px;
}

/* Keyboard focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

/* --- Utility --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--light);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.gold-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}

.section-header.center .gold-bar {
  margin: 0 auto 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  touch-action: manipulation;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: box-shadow var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__logo {
  height: 76px;
  width: auto;
}

.navbar__wordmark {
  height: 62px;
  width: auto;
  max-width: 280px;
  margin-top: 8px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__links a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--navy);
  background: var(--light);
}

.navbar__links a.active {
  color: var(--gold);
  font-weight: 600;
}

.navbar__cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}

.navbar__cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23b8972e' opacity='0.12'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  display: none;
}

.hero__title {
  font-size: clamp(2.1rem, 3vw, 2.3rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,151,46,0.3);
  border-radius: 12px;
  padding: 36px 32px;
  backdrop-filter: blur(6px);
}

.hero__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,151,46,0.25);
}

.hero__checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.hero__checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero__stat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero__stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 72px;
}

.hero__stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
  padding-top: 2px;
}

/* Trust bar */
.trust-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-bar__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.trust-bar__agencies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-bar__badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 14px;
  border-radius: 20px;
}

/* Value Pillars */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pillar:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 10px 10px 0 0;
}

.pillar__icon {
  width: 48px;
  height: 48px;
  background: rgba(184,151,46,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.pillar__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar__text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Services preview */
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.svc-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 26px;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}

.svc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.svc-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.svc-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-card__text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.services-preview__footer {
  text-align: center;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-band__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band__text p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
}

.page-hero__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
}

.services-full__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.svc-full-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  background: var(--white);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.svc-full-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.svc-full-card__accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 10px 0 0 10px;
}

.svc-full-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.svc-full-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.svc-full-card__text {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.68;
  margin-bottom: 18px;
}

.svc-full-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(13,31,60,0.07);
  padding: 3px 10px;
  border-radius: 20px;
}

.approach {
  background: var(--navy);
  padding: 80px 0;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.approach__step {
  text-align: center;
  padding: 28px 16px;
}

.approach__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.approach__step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.approach__step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-intro {
  padding: 88px 0;
}

.about-intro__inner {
  max-width: 800px;
}

.about-intro__body p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 18px;
}

.about-intro__body p:last-child { margin-bottom: 0; }

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-stat-box {
  background: var(--light);
  border-left: 4px solid var(--gold);
  padding: 22px 24px;
  border-radius: 0 8px 8px 0;
}

.about-stat-box__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-box__label {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow); }

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.agencies {
  background: var(--navy);
  padding: 72px 0;
}

.agencies__title {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 10px;
}

.agencies__sub {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.agencies__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.agency-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,151,46,0.22);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}

.agency-card__abbr {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}

.agency-card__name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.leadership {
  padding: 88px 0;
}

.leadership__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.leadership__text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.leadership__card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
}

.leadership__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.leadership__card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.leadership__card-role {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.leadership__card-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}

.leadership__card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leadership__card ul li {
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.leadership__card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: 88px 0;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
}

.contact-info h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(184,151,46,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item__val {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 0.93rem;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,60,0.08);
}

.input--error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1) !important;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 14px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(184,151,46,0.07);
  border: 1px solid var(--gold);
  border-radius: 10px;
  margin-top: 20px;
}

.form-success h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.form-success p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Expertise box (contact page sidebar) */
.expertise-box {
  margin-top: 40px;
  padding: 24px;
  background: var(--light);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}

.expertise-box__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.expertise-box__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.expertise-box__list li {
  font-size: 0.88rem;
  color: var(--gray);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.expertise-box__check {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  border-top: 3px solid var(--gold);
}

/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */

.legal-content {
  max-width: 780px;
}

.legal-effective {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-images {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.footer__brand-logo {
  height: 128px;
  width: auto;
}

.footer__brand-name {
  height: 72px;
  width: auto;
}

.footer__brand-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  margin-bottom: 20px;
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
}

.footer__contact-item a {
  color: inherit;
  transition: color var(--transition);
}

.footer__contact-item a:hover { color: var(--gold-light); }

.contact-item__val a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__contact-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__card { max-width: 480px; }
  .hero__stat-list { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .hero__stat { flex: 1 1 120px; }

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

  .services-full__grid {
    grid-template-columns: 1fr;
  }

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

  .about-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .leadership__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .navbar__links {
    display: none;
    position: absolute;
    top: 99px;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    flex-direction: column;
    padding: 16px 0 20px;
    gap: 2px;
  }

  .navbar__links.open { display: flex; }
  .navbar__links a { width: 100%; border-radius: 0; padding: 11px 24px; }
  .navbar__cta { padding: 11px 24px !important; background: transparent !important; color: var(--navy) !important; font-weight: 700 !important; }
  .navbar__cta:hover { background: var(--light) !important; }
  .navbar__toggle { display: flex; }
  .navbar { position: sticky; }

  .hero { padding: 64px 0 56px; }
  .hero__card { max-width: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }

  .footer__brand-logo { height: 80px; }
  .footer__brand-name { height: 48px; }

  /* Prevent iOS Safari auto-zoom on form focus */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .trust-bar__inner { gap: 6px; }
  .trust-bar__label { font-size: 0.68rem; margin-right: 2px; letter-spacing: 0.06em; }
  .trust-bar__agencies { gap: 4px; }
  .trust-bar__badge { font-size: 0.68rem; padding: 4px 8px; }

  .pillars__grid,
  .services-preview__grid,
  .services-full__grid,
  .approach__grid,
  .values__grid,
  .agencies__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__brand-images { margin: 0 auto 16px; }
  .footer__links { align-items: center; }
  .footer__contact-item { justify-content: center; }
  .footer__bottom { justify-content: center; flex-direction: column; align-items: center; }

  .cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .navbar__brand { gap: 8px; }
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .page-hero { padding: 48px 0 40px; }
  .navbar__logo { height: 44px; width: auto; flex-shrink: 0; }
  .navbar__wordmark { width: 180px; height: auto; flex-shrink: 0; margin-top: 16px; }
  .contact-form { padding: 28px 20px; }
  .svc-full-card { padding: 28px 20px; }
  .pillar { padding: 28px 20px; }
  .leadership__card { padding: 28px 20px; }
  .hero__card { padding: 24px 20px; }
  .approach { padding: 56px 0; }
  .cta-band { padding: 52px 0; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
