/* =========================================================
   ARAMIS SENTRY — HOMEPAGE STYLESHEET
   "We Don't Just Guard. We Represent."
   Premium black / ivory / gold security-industry aesthetic.
   ========================================================= */

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

/* ---------- Design Tokens ---------- */
:root {
  /* Colour system */
  --black-primary: #050505;
  --black-secondary: #111111;
  --ivory: #F5F3EE;
  --white: #FFFFFF;
  --gold: #C9973E;
  --gold-dark: #8C6828;
  --grey: #6B6B6B;
  --grey-line: rgba(245, 243, 238, 0.12);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--black-primary);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

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

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-heading {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: var(--black-primary);
  margin-bottom: 20px;
}

.section-heading--light { color: var(--ivory); }

.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 620px;
  line-height: 1.7;
}

.section-sub--light { color: rgba(245, 243, 238, 0.72); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 64px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn svg { transition: transform 0.3s var(--ease); width: 14px; height: 14px; flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--black-primary);
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black-primary); }

.btn-outline-dark {
  background: transparent;
  color: var(--black-primary);
  border: 1px solid var(--black-primary);
}
.btn-outline-dark:hover { background: var(--black-primary); color: var(--ivory); }

.btn-sm { padding: 12px 22px; font-size: 0.72rem; }

/* ---------- Image Placeholder System ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(201,151,62,0.06) 0px, rgba(201,151,62,0.06) 2px, transparent 2px, transparent 14px),
    var(--black-secondary);
  border: 1px dashed rgba(201, 151, 62, 0.45);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.img-placeholder__inner { padding: 24px; }

.img-placeholder__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--gold);
}

.img-placeholder__id {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.img-placeholder__dim {
  display: block;
  font-size: 0.72rem;
  color: rgba(245,243,238,0.5);
  letter-spacing: 0.04em;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--grey-line);
}

/*
  The scrolled background/blur live on ::before rather than on .header
  itself. backdrop-filter (like transform/filter/will-change) makes the
  element it's set on a containing block for any position:fixed
  descendant — and .mobile-menu (fixed, full-viewport) lives inside
  .header. Putting the filter on .header directly broke the mobile
  menu's full-screen coverage as soon as the page was scrolled, because
  it started sizing itself against the header bar instead of the
  viewport. Keeping the filter on a sibling pseudo-element avoids that
  entirely while looking identical.
*/
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 5, 0.92);
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.header.is-scrolled::before {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.86);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  transition: padding 0.3s var(--ease);
}

.header.is-scrolled .header__inner { padding-top: 14px; padding-bottom: 14px; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
}

.logo__mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.logo__tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  position: relative;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

.nav__link:hover,
.nav__link.is-active { color: var(--gold); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav__cta { display: block; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 200;
}
.menu-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--ivory);
  transition: all 0.3s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: var(--black-primary);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media .img-placeholder {
  border: none;
  min-height: 100%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.82) 32%, rgba(5,5,5,0.35) 62%, rgba(5,5,5,0.15) 100%),
    linear-gradient(0deg, rgba(5,5,5,0.6) 0%, transparent 30%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
}

.hero__text { max-width: 620px; }

.hero__heading {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  color: var(--white);
  margin-bottom: 24px;
}

.hero__heading em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(245, 243, 238, 0.82);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--black-secondary);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__item {
  padding: 44px var(--gutter);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-left: 1px solid var(--grey-line);
}
.trust-strip__item:first-child { border-left: none; padding-left: var(--gutter); }

.trust-strip__icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-strip__title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 8px;
}

.trust-strip__text {
  font-size: 0.88rem;
  color: rgba(245, 243, 238, 0.6);
  line-height: 1.6;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: 140px 0; background: var(--ivory); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(5,5,5,0.08);
}

.service-card {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
}

.service-card__media { aspect-ratio: 4 / 3; }
.service-card__media .img-placeholder { min-height: 0; height: 100%; }

.service-card__body {
  padding: 40px 34px 44px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card__title {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card__desc {
  color: var(--grey);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-card__list {
  margin-bottom: 30px;
  flex: 1;
}

.service-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--black-secondary);
  margin-bottom: 10px;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.service-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--black-primary);
  width: fit-content;
  transition: all 0.25s var(--ease);
}
.service-card__link svg { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.service-card__link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.service-card__link:hover svg { transform: translateX(4px); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why { background: var(--black-primary); padding: 140px 0; }

.why__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  margin-bottom: 90px;
}

.why-feature__icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 22px;
}

.why-feature__title {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 12px;
}

.why-feature__text {
  font-size: 0.9rem;
  color: rgba(245, 243, 238, 0.58);
  line-height: 1.7;
}

.why__media .img-placeholder { min-height: 420px; }

/* =========================================================
   REPRESENT SECTION
   ========================================================= */
.represent { background: var(--ivory); padding: 0; }

.represent__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.represent__media .img-placeholder { border-radius: 0; min-height: 100%; border-top: none; border-bottom: none; border-left: none; }

.represent__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter);
}

.represent__heading {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  margin-bottom: 26px;
}
.represent__heading em { color: var(--gold); font-style: italic; }

.represent__text .section-sub { margin-bottom: 36px; }

/* =========================================================
   STATS
   ========================================================= */
.stats {
  background: var(--black-secondary);
  padding: 100px 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat {
  padding: 0 24px;
  border-left: 1px solid var(--grey-line);
}
.stat:first-child { border-left: none; }

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.stat__label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.6);
}

.stat__flag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  padding: 3px 8px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black-primary);
}

.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media .img-placeholder { min-height: 100%; border: none; }

.cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.75) 0%, rgba(5,5,5,0.92) 100%);
  z-index: 1;
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 var(--gutter);
}

.cta__heading {
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 22px;
}

.cta__sub {
  color: rgba(245, 243, 238, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--black-primary); padding-top: 90px; color: rgba(245,243,238,0.6); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--grey-line);
}

.footer__brand .logo__name,
.footer__brand .logo__tag { color: inherit; }
.footer__brand p { margin-top: 20px; font-size: 0.9rem; line-height: 1.75; max-width: 320px; }

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--gold); }

.footer__contact li {
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
}
.footer__contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer__social { display: flex; gap: 14px; margin-top: 22px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--grey-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0;
  font-size: 0.78rem;
  color: rgba(245,243,238,0.4);
}

/* =========================================================
   PAGE HERO (services / about / insights)
   ========================================================= */
.page-hero {
  background: var(--black-primary);
  padding: 110px 0 70px;
}

.page-hero__crumb {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(245, 243, 238, 0.5);
  margin-bottom: 22px;
}
.page-hero__crumb a { color: rgba(245, 243, 238, 0.85); transition: color 0.2s var(--ease); }
.page-hero__crumb a:hover { color: var(--gold); }

.page-hero__heading {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--white);
  max-width: 820px;
  margin-bottom: 20px;
}
.page-hero__heading em { font-style: italic; color: var(--gold); }

.page-hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(245, 243, 238, 0.72);
  max-width: 620px;
  line-height: 1.75;
}

/* =========================================================
   SERVICE DETAIL (services.html)
   ========================================================= */
.service-detail { padding: 110px 0; background: var(--ivory); }
.service-detail + .service-detail { border-top: 1px solid rgba(5, 5, 5, 0.08); }

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail__grid.is-reversed .service-detail__media { order: 2; }

.service-detail__media .img-placeholder { aspect-ratio: 4 / 3; min-height: 0; }

.service-detail__index {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-detail__title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 18px;
}

.service-detail__text {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.service-detail__list { margin-bottom: 34px; }
.service-detail__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--black-secondary);
  margin-bottom: 12px;
}
.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

/* =========================================================
   HOW WE WORK (services.html)
   ========================================================= */
.process { padding: 130px 0; background: var(--ivory); }

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

.process-step { padding-top: 26px; border-top: 1px solid rgba(5, 5, 5, 0.12); }

.process-step__index {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.process-step__title { font-size: 1.15rem; margin-bottom: 10px; }
.process-step__text { color: var(--grey); font-size: 0.92rem; line-height: 1.7; }

/* =========================================================
   OUR STORY (about.html)
   ========================================================= */
.story { padding: 120px 0; background: var(--ivory); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story__media .img-placeholder { aspect-ratio: 4 / 3; min-height: 0; }
.story__text .section-sub { margin-bottom: 20px; }
.story__text .section-sub:last-child { margin-bottom: 0; }

/* =========================================================
   OUR VALUES (about.html)
   ========================================================= */
.values { padding: 130px 0; background: var(--ivory); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}

.value-card__icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 20px; }

.value-card__title {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black-primary);
  margin-bottom: 10px;
}

.value-card__text { font-size: 0.9rem; color: var(--grey); line-height: 1.7; }

/* =========================================================
   OUR PERSONNEL / TEAM (about.html)
   ========================================================= */
.team { padding: 140px 0; background: var(--black-primary); }

.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.team__media .img-placeholder { aspect-ratio: 4 / 3; min-height: 0; }

.team__note {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px dashed rgba(201, 151, 62, 0.4);
  background: rgba(201, 151, 62, 0.06);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.72);
}
.team__note strong { color: var(--gold); }

/* =========================================================
   INSIGHTS GRID (insights.html)
   ========================================================= */
.insights-grid { padding: 100px 0 140px; background: var(--ivory); }

.insights__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.insight-card {
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease);
}
.insight-card:hover { transform: translateY(-4px); }

.insight-card__media { aspect-ratio: 4 / 3; }
.insight-card__media .img-placeholder { min-height: 0; height: 100%; }

.insight-card__body { padding: 28px 26px 32px; }

.insight-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  padding: 4px 10px;
  margin-bottom: 16px;
}

.insight-card__title { font-size: 1.15rem; margin-bottom: 10px; }
.insight-card__excerpt { font-size: 0.9rem; color: var(--grey); line-height: 1.7; }

/* =========================================================
   NEWSLETTER (insights.html)
   ========================================================= */
.newsletter { padding: 90px 0; background: var(--black-primary); }

.newsletter__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter__text h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--white); margin-bottom: 10px; }
.newsletter__text p { color: rgba(245, 243, 238, 0.68); font-size: 0.98rem; max-width: 420px; }

.newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; }

.newsletter__form input[type="email"] {
  min-width: 280px;
  padding: 16px 20px;
  background: var(--black-secondary);
  border: 1px solid var(--grey-line);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.newsletter__form input[type="email"]::placeholder { color: rgba(245, 243, 238, 0.4); }
.newsletter__form input[type="email"]:focus { outline: none; border-color: var(--gold); }

.newsletter__form button {
  padding: 16px 30px;
  background: var(--gold);
  color: var(--black-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
}
.newsletter__form button:hover { background: var(--gold-dark); }

/* Visually-hidden but screen-reader-accessible label */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   CONTACT (contact.html)
   ========================================================= */
.contact { padding: 100px 0 140px; background: var(--ivory); }

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact__info .section-heading { margin-top: 14px; }
.contact__info .section-sub { margin-bottom: 40px; }

.contact__details { margin-bottom: 40px; }
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.1);
}
.contact__details li:last-child { border-bottom: 1px solid rgba(5, 5, 5, 0.1); }
.contact__details svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.contact__details-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.contact__details a,
.contact__details span:not(.contact__details-label) {
  display: block;
  font-size: 0.98rem;
  color: var(--black-secondary);
}
.contact__details a { transition: color 0.2s var(--ease); }
.contact__details a:hover { color: var(--gold-dark); }

.contact__social { display: flex; align-items: center; gap: 16px; }
.contact__social .contact__details-label { margin-bottom: 0; }

.contact__form {
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.08);
  padding: 44px;
}

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

.form__field { margin-bottom: 22px; }
.form__field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black-secondary);
  margin-bottom: 10px;
}
.form__field input,
.form__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--grey-line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black-primary);
  transition: border-color 0.2s var(--ease);
}
.form__field input:focus,
.form__field textarea:focus { outline: none; border-color: var(--gold); }
.form__field textarea { resize: vertical; min-height: 120px; }

.form__submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .why__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .process__grid { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .insights__list { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .nav__links,
  .header .nav__cta { display: none; }
  .menu-toggle { display: flex; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--black-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px var(--gutter);
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
  }
  .mobile-menu.is-open { transform: translateY(0); }

  .mobile-menu__links { display: flex; flex-direction: column; gap: 28px; margin-bottom: 44px; }
  .mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ivory);
    font-weight: 500;
  }
  .mobile-menu__links a:hover { color: var(--gold); }

  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__item { border-left: none !important; border-top: 1px solid var(--grey-line); padding: 34px var(--gutter) !important; }
  .trust-strip__item:nth-child(-n+2) { border-top: none; }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .represent__grid { grid-template-columns: 1fr; }
  .represent__media { min-height: 340px; }
  .stats__grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .stat { border-left: none; }
  .stat:nth-child(2n) { border-left: 1px solid var(--grey-line); }

  .service-detail__grid,
  .service-detail__grid.is-reversed,
  .story__grid,
  .values__grid,
  .team__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail__grid.is-reversed .service-detail__media { order: 0; }
  .insights__list { grid-template-columns: 1fr; }
  .newsletter__grid { flex-direction: column; align-items: flex-start; }
  .newsletter__form { width: 100%; }
  .newsletter__form input[type="email"] { flex: 1; min-width: 0; }
  .contact__form { padding: 32px; }
}

@media (max-width: 560px) {
  .header__inner { padding: 16px var(--gutter); }
  .hero { min-height: 680px; }
  .hero__content { padding-top: 100px; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions,
  .cta__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn,
  .cta__actions .btn { justify-content: center; }
  .process__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 56px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
}
