/* =========================================================
   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;
  color: var(--ivory);
}

.logo__image {
  display: block;
  width: min(220px, 32vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.logo__mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.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;
}

.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__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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;
}

/* =========================================================
   FEATURED EVENT VIDEO
   ========================================================= */
.event-video {
  padding: 120px 0;
  background: var(--black-secondary);
}

.event-video__header {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}

.event-video__header .section-heading { margin-bottom: 18px; }

.event-video__header .section-sub {
  max-width: 520px;
  margin: 0 auto;
}

.event-video__player-wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--black-primary);
  border: 1px solid var(--grey-line);
}

.event-video__player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event-video__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.event-video__player-wrap { position: relative; }

.event-video__control {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 243, 238, 0.45);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.76);
  color: var(--ivory);
  font-size: 0.9rem;
  line-height: 1;
}

.event-video__control:hover,
.event-video__control:focus-visible { border-color: var(--gold); color: var(--gold); }

.event-video__play-icon,
.event-video__sound-off-icon { display: none; }

.event-video__control.is-paused .event-video__pause-icon,
.event-video__control.is-muted .event-video__sound-on-icon { display: none; }

.event-video__control.is-paused .event-video__play-icon,
.event-video__control.is-muted .event-video__sound-off-icon { display: inline; }

.event-video__caption {
  margin-top: 22px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-align: center;
  text-transform: uppercase;
}

/* =========================================================
   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__image,
.service-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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; }
.why__media { min-height: 420px; overflow: hidden; }
.why__image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

/* =========================================================
   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__media { overflow: hidden; }
.represent__image { width: 100%; height: 100%; object-fit: cover; }

.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;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact__form { display: flex; flex-direction: column; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.form__field label span { color: var(--grey); font-size: 0.65rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.form__field input,
.form__field select,
.form__field textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(5, 5, 5, 0.18); border-radius: var(--radius); background: var(--white); color: var(--black-primary); font: inherit; font-size: 0.92rem; }
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201, 151, 62, 0.18); }
.form__field [aria-invalid="true"] { border-color: #a43d32; }
.form__status { min-height: 1.5em; padding: 0; font-size: 0.86rem; line-height: 1.55; }
.form__status.is-error { color: #a43d32; }
.form__status.is-pending { color: var(--gold-dark); }
.form__status.is-success { color: #28704c; }
.form__submit:disabled { cursor: wait; opacity: 0.65; }
.form__honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

/* =========================================================
  EVENT GALLERY
  ========================================================= */
.event-gallery-hero { position: relative; min-height: 540px; display: flex; align-items: center; overflow: hidden; }
.event-gallery-hero__media,
.event-gallery-hero__scrim { position: absolute; inset: 0; }
.event-gallery-hero__media { z-index: 0; }
.event-gallery-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.event-gallery-hero__scrim { z-index: 1; background: linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.58) 55%, rgba(5,5,5,0.3)); }
.event-gallery-hero__content { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.event-gallery-intro { padding: 110px 0; background: var(--ivory); }
.event-gallery-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
.event-gallery-intro__grid .section-sub { margin: 0; }
.event-feature { padding: 120px 0; background: var(--black-primary); }
.event-feature__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 72px; align-items: center; }
.event-feature__media { aspect-ratio: 3 / 2; overflow: hidden; }
.event-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.event-feature__text .section-heading { color: var(--ivory); }
.event-feature__text .section-sub { margin-bottom: 32px; }
.event-catalogue { padding: 130px 0 140px; background: var(--ivory); }
.event-gallery__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.event-gallery__filter { padding: 10px 16px; border: 1px solid rgba(5,5,5,0.22); color: var(--black-primary); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.event-gallery__filter:hover,
.event-gallery__filter.is-active { background: var(--black-primary); border-color: var(--black-primary); color: var(--ivory); }
.event-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; }
.event-gallery__item { position: relative; min-width: 0; min-height: 0; padding: 0; overflow: hidden; background: var(--black-secondary); text-align: left; cursor: pointer; }
.event-gallery__item--wide { grid-column: span 2; }
.event-gallery__item--large { grid-column: span 2; grid-row: span 2; }
.event-gallery__item--tall { grid-row: span 2; }
.event-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.event-gallery__item:hover img { transform: scale(1.04); }
.event-gallery__item span { position: absolute; right: 0; bottom: 0; left: 0; padding: 42px 18px 14px; background: linear-gradient(transparent, rgba(5,5,5,0.82)); color: var(--white); font-size: 0.72rem; opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.event-gallery__item:hover span,
.event-gallery__item:focus-visible span { opacity: 1; transform: translateY(0); }
.event-gallery__item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.event-gallery-cta { padding: 120px 0; background: var(--black-primary); text-align: center; }
.event-gallery-cta__content { max-width: 760px; margin: 0 auto; }
.event-gallery-cta__content .cta__sub { margin-bottom: 36px; }
.event-lightbox { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 70px 80px; background: rgba(5,5,5,0.96); }
.event-lightbox.is-open { display: flex; }
.event-lightbox__figure { max-width: min(1100px, 85vw); max-height: 84vh; margin: 0; text-align: center; }
.event-lightbox__figure img { display: block; max-width: 100%; max-height: 76vh; width: auto; height: auto; margin: 0 auto; }
.event-lightbox__figure figcaption { margin-top: 18px; color: var(--ivory); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.event-lightbox__close,
.event-lightbox__prev,
.event-lightbox__next { position: absolute; width: 46px; height: 46px; border: 1px solid rgba(245,243,238,0.45); color: var(--ivory); font-size: 1.4rem; }
.event-lightbox__close { top: 24px; right: 28px; font-size: 2rem; }
.event-lightbox__prev { left: 28px; top: 50%; }
.event-lightbox__next { right: 28px; top: 50%; }
.event-lightbox__close:hover,
.event-lightbox__prev:hover,
.event-lightbox__next:hover { border-color: var(--gold); color: var(--gold); }

/* =========================================================
   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); }
.social-icon { width: 22px; height: 22px; object-fit: contain; }

.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__media { aspect-ratio: 4 / 3; overflow: hidden; }

.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__media { aspect-ratio: 4 / 3; overflow: hidden; }
.story__image { width: 100%; height: 100%; object-fit: cover; }
.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__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.team__gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.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;
}

/* =========================================================
   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; }
}

@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; }
  .event-gallery-intro__grid,
  .event-feature__grid { grid-template-columns: 1fr; gap: 40px; }
  .event-gallery__grid { grid-template-columns: repeat(2, 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; }
  .team__gallery { aspect-ratio: 4 / 3; }
  .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; }
}

@media (max-width: 560px) {
  .header__inner { padding: 16px var(--gutter); }
  .hero { min-height: 680px; }
  .hero__content { padding-top: 100px; }
  .event-video { padding: 80px 0; }
  .event-video__controls { right: 10px; bottom: 10px; }
  .form__row { grid-template-columns: 1fr; }
  .event-gallery-hero { min-height: 600px; }
  .event-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .event-gallery__item--wide,
  .event-gallery__item--large { grid-column: span 1; }
  .event-gallery__item--large,
  .event-gallery__item--tall { grid-row: span 1; }
  .event-lightbox { padding: 70px 18px; }
  .event-lightbox__prev { left: 10px; }
  .event-lightbox__next { right: 10px; }
  .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; }
}
