/* Leeds Grand Mosque — Site Styles
   Imports design tokens from the project design system. */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --lgm-green:           #0F5D3A;
  --lgm-green-deep:      #0F4239;
  --lgm-green-bright:    #008047;
  --lgm-green-tint:      rgba(15, 93, 58, 0.1);
  --lgm-green-glass:     rgba(255, 255, 255, 0.35);

  --lgm-navy:            #0B263C;
  --lgm-slate:           #374957;

  --lgm-gold:            #E1A230;
  --lgm-gold-soft:       #F2B953;
  --lgm-gold-pale:       #F8DC7A;

  --lgm-bg:              #FFFEFC;
  --lgm-surface:         #FFFFFF;
  --lgm-surface-alt:     #F1F0F7;
  --lgm-line:            rgba(11, 38, 60, 0.2);
  --lgm-line-soft:       rgba(0, 0, 0, 0.1);

  --lgm-fg:              #0B263C;
  --lgm-fg-muted:        rgba(11, 38, 60, 0.65);
  --lgm-fg-on-green:     #FFFFFF;
  --lgm-fg-on-gold:      #FFFFFF;

  --lgm-danger:          #FF383C;

  --lgm-shadow-card:     -2px 2px 2px 1px rgba(0, 0, 0, 0.05);
  --lgm-shadow-card-up:   0px -2px 1px 1px rgba(0, 0, 0, 0.05);
  --lgm-shadow-cta:       2px 2px 3px 1px rgba(0, 0, 0, 0.2);
  --lgm-shadow-glow-gold: 0px 0px 4px 0px rgba(237, 186, 88, 1);

  --lgm-radius-xs:       6px;
  --lgm-radius-sm:       10px;
  --lgm-radius-md:       15px;
  --lgm-radius-lg:       25px;
  --lgm-radius-pill:     1000px;

  --lgm-font-family:     "Montserrat", "Noto Naskh Arabic", "Cairo",
                         -apple-system, BlinkMacSystemFont, "Segoe UI",
                         Helvetica, Arial, sans-serif;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--lgm-font-family);
  font-size: 14px;
  background: var(--lgm-bg);
  color: var(--lgm-fg);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: var(--lgm-bg);
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("../assets/pattern-arabesque-arch.svg");
  background-size: 1800px;
  background-repeat: repeat;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}
.lgm-page { position: relative; z-index: 1; }

img { display: block; max-width: 100%; }
a { text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.lgm-page { width: 100%; }
.lgm-container {
  width: 1125px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
}

/* ============================================================
   PRAYER BAR
   ============================================================ */
.pb {
  height: 50px;
  background: var(--lgm-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 158px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pb__times {
  display: flex;
  gap: 18px;
  align-items: center;
}

.pb__time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  white-space: nowrap;
}

.pb__time img {
  width: 16px;
  height: 16px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.pb__time--live {
  background: var(--lgm-gold);
  padding: 4px 12px;
  border-radius: var(--lgm-radius-pill);
  font-weight: 600;
}

.pb__socials {
  display: flex;
  gap: 8px;
}

.pb__s {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}
.pb__s:hover { opacity: 0.85; }
.pb__s img { width: 13px; height: 13px; }

/* ============================================================
   HEADER
   ============================================================ */
.hd {
  height: 100px;
  background: #fff;
  box-shadow: var(--lgm-shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 158px;
  position: sticky;
  top: 50px;
  z-index: 99;
}

.hd__logo img { height: 70px; object-fit: contain; }

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

.hd__link {
  color: var(--lgm-navy);
  font-size: 15px;
  padding: 6px 14px;
  background: none;
  border: none;
  border-radius: var(--lgm-radius-pill);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.hd__link:hover { background: var(--lgm-green-tint); }
.hd__link.is-active {
  background: var(--lgm-green);
  color: #fff;
}

.hd__cta {
  background: var(--lgm-green);
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 9px 26px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}
.hd__cta:hover { background: #0A4A2E; }
.hd__cta:active { transform: scale(0.97); }

.hd__cta-pound {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* ============================================================
   FEATURE TRIO (Hero)
   ============================================================ */
.ft {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 15px;
  padding: 30px 0 50px;
}

.ft__col { display: flex; flex-direction: column; gap: 15px; }

.ft__card {
  position: relative;
  border-radius: var(--lgm-radius-sm);
  overflow: hidden;
  background: #e8e8e8;
  box-shadow: var(--lgm-shadow-card);
}
.ft__card.small { height: 177px; }
.ft__card.tall  { height: 308px; }
.ft__card.full  { height: 500px; } /* 177 + 15px gap + 308 = 500 */

.ft__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.ft__card:hover .ft__photo { transform: scale(1.03); }

.ft__fade-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(#fff 0%, rgba(255,255,255,0) 55%);
}
.ft__fade-bot {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0) 30%, #fff 100%);
}

.ft__copy {
  position: absolute;
  padding: 20px;
  width: 100%;
}
.ft__copy--top    { top: 0; left: 0; }
.ft__copy--bot    { bottom: 0; left: 0; text-align: center; }

.ft__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--lgm-green);
  line-height: 1.1;
  margin-bottom: 6px;
}
.ft__sub {
  font-size: 13px;
  color: var(--lgm-navy);
  line-height: 1.35;
}

.ft__card--plain {
  background: var(--lgm-bg);
  border: 0.2px solid var(--lgm-line);
}
.ft__card--plain .ft__title { text-transform: uppercase; font-size: 18px; font-weight: 700; }

/* ============================================================
   SECTION HEADING
   ============================================================ */
.sh {
  text-align: center;
  margin: 50px 0 32px;
}
.sh__eb {
  color: var(--lgm-gold);
  font-size: 18px;
  margin-bottom: 6px;
}
.sh__h {
  color: var(--lgm-green);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.sh__sub {
  color: var(--lgm-navy);
  font-size: 14px;
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT BLOCK
   ============================================================ */
.ab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  padding: 0 0 90px;
  align-items: center;
}

.ab__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

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

.ab__eb  { color: var(--lgm-green); font-size: 18px; }
.ab__h   { color: var(--lgm-gold); font-size: 36px; font-weight: 700; line-height: 1.08; }
.ab__body {
  color: var(--lgm-navy);
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
}

.ab__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
.ab__tile {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--lgm-radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  box-shadow: var(--lgm-shadow-card);
}
.ab__tile-icon {
  display: block;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background-color: var(--lgm-green);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
.ab__tile-icon--education {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 4h2v5l-1-.75L9 9V4zm9 16H6V4h1v9l3-2.25L13 13V4h5v16z'/%3E%3C/svg%3E");
}
.ab__tile-icon--community {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}
.ab__tile-icon--vision {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
}
.ab__tile-icon--mission {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z'/%3E%3C/svg%3E");
}
.ab__tile-name { font-size: 14px; font-weight: 700; color: var(--lgm-navy); }
.ab__tile-desc { font-size: 12px; color: var(--lgm-fg-muted); line-height: 1.4; }

.ab__cta {
  align-self: flex-start;
  background: var(--lgm-green);
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 9px 26px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
  margin-top: 4px;
}
.ab__cta:hover { background: #0A4A2E; }
.ab__cta:active { transform: scale(0.97); }

/* ============================================================
   NEWS & ANNOUNCEMENTS
   ============================================================ */
.news-wrap {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}
.news-wrap::before {
  content: none;
}

/* 6-card Instagram-style grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.news-post {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--lgm-radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--lgm-shadow-card);
}

.news-post__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
}

.news-post:hover .news-post__img {
  transform: scale(1.06);
}

/* Hover overlay */
.news-post__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 66, 57, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-post:hover .news-post__overlay {
  opacity: 1;
}

.news-post__caption {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.news-post__more {
  display: inline-block;
  color: var(--lgm-gold);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.sv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 0 0 80px;
}

.sv__card {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--lgm-radius-sm);
  background:
    url("../assets/texture-service-card.png") center / cover,
    linear-gradient(#0F5D3A 0%, #008047 100%);
  background-blend-mode: multiply;
  border: 2px solid #fff;
  box-shadow: var(--lgm-shadow-cta);
  color: #fff;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sv__card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 6px 10px rgba(0,0,0,0.25);
}

.sv__icon {
  width: 62px;
  height: 62px;
  border-radius: var(--lgm-radius-sm);
  border: 0.3px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sv__icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.sv__title { font-size: 20px; font-weight: 700; }
.sv__rule  { height: 2px; background: var(--lgm-gold); width: 70%; margin: 12px auto 14px; }
.sv__body  { font-size: 14px; line-height: 1.45; opacity: 0.92; }
.sv__more  {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #fff;
  margin-top: 16px;
  transition: opacity 0.15s;
}
.sv__more:hover { opacity: 0.8; }
.sv__more img { width: 14px; filter: brightness(0) invert(1); }

/* ============================================================
   EVENTS & ACTIVITIES
   ============================================================ */
.ev-wrap {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
}
.ev-wrap::before {
  content: none;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.ev {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.ev__card {
  background: #fff;
  border-radius: var(--lgm-radius-sm);
  border: 0.2px solid var(--lgm-line);
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  box-shadow: var(--lgm-shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ev__card:hover {
  transform: translateY(-2px);
  box-shadow: -2px 6px 8px rgba(0,0,0,0.1);
}

.ev__img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 200px;
}
.ev__ribbon {
  position: absolute;
  top: 28px;
  left: 0;
  padding: 5px 16px;
  background: var(--lgm-danger);
  color: #fff;
  border-radius: 0 var(--lgm-radius-pill) var(--lgm-radius-pill) 0;
  font-size: 13px;
  font-weight: 600;
}

.ev__body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ev__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.ev__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lgm-green);
  line-height: 1.3;
}
.ev__badge {
  flex-shrink: 0;
  min-width: 52px;
  padding: 6px 10px;
  border-radius: var(--lgm-radius-sm);
  background: var(--lgm-green-tint);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ev__badge-day   { font-size: 24px; font-weight: 700; color: var(--lgm-green); line-height: 1; }
.ev__badge-month { font-size: 11px; font-weight: 700; color: var(--lgm-green); margin-top: 2px; letter-spacing: 0.5px; }

.ev__desc { font-size: 13px; color: var(--lgm-navy); line-height: 1.5; }

.ev__cta {
  margin-top: auto;
  background: var(--lgm-green);
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s;
}
.ev__cta:hover { background: #0A4A2E; }
.ev__cta:active { transform: scale(0.97); }

.ev__card.is-past .ev__title,
.ev__card.is-past .ev__desc { opacity: 0.5; }

/* ============================================================
   CAMPAIGN BANNER
   ============================================================ */
.cmp-wrap { padding: 30px 0 80px; }

.cmp {
  position: relative;
  border-radius: var(--lgm-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
  padding: 55px 64px;
  gap: 50px;
  align-items: center;
  background: var(--lgm-green);
}
.cmp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/pattern-campaign-bg.svg") center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.cmp > * { position: relative; z-index: 1; }

.cmp__eb {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 14px;
}
.cmp__star {
  width: 22px;
  height: 22px;
  filter: drop-shadow(var(--lgm-shadow-glow-gold)) brightness(0) saturate(100%) invert(72%) sepia(74%) saturate(550%) hue-rotate(7deg);
}

.cmp__h {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cmp__h-gold { color: var(--lgm-gold); }

.cmp__body {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 28px;
}
.cmp__target { color: #fff; font-size: 15px; margin-bottom: 10px; }
.cmp__bar {
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  overflow: hidden;
  max-width: 380px;
}
.cmp__bar-fill {
  height: 100%;
  width: 58%;
  background: var(--lgm-gold);
  border-radius: 8px;
}

.cmp__panel {
  background: rgba(255,255,255,0.10);
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: var(--lgm-radius-lg);
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.cmp__panel h3 { color: #fff; font-weight: 400; font-size: 30px; margin-bottom: 20px; }
.cmp__amounts {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}
.cmp__amt {
  flex: 1;
  padding: 9px 0;
  font-size: 15px;
  color: #fff;
  border-radius: var(--lgm-radius-sm);
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  transition: background 0.15s, border-color 0.15s;
}
.cmp__amt:hover { background: rgba(255,255,255,0.1); }
.cmp__amt.is-on { background: var(--lgm-gold); border-color: var(--lgm-gold); }

.cmp__custom {
  width: 100%;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: var(--lgm-radius-sm);
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  text-align: center;
  outline: none;
}
.cmp__custom::placeholder { color: rgba(255,255,255,0.45); }
.cmp__custom:focus { border-color: rgba(255,255,255,0.6); }

.cmp__go {
  width: 100%;
  margin-top: 16px;
  padding: 11px 30px;
  border-radius: var(--lgm-radius-pill);
  background: var(--lgm-gold);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.15s;
}
.cmp__go:hover { background: #C58D24; }
.cmp__go:active { transform: scale(0.97); }

.cmp__note { color: rgba(255,255,255,0.5); font-size: 10px; margin-top: 10px; font-weight: 300; }

/* ============================================================
   CONTACT BLOCK
   ============================================================ */
.ct-wrap { padding: 0 0 90px; }

.ct {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: stretch;
}
.ct__map {
  border-radius: var(--lgm-radius-sm);
  background: url("../assets/photo-map.png") center / cover;
  min-height: 460px;
}
.ct__form {
  background: #fff;
  border-radius: var(--lgm-radius-sm);
  border: 0.2px solid var(--lgm-line);
  box-shadow: var(--lgm-shadow-card);
  padding: 34px 36px;
}
.ct__h   { font-size: 24px; color: var(--lgm-green); font-weight: 400; margin-bottom: 8px; }
.ct__sub { font-size: 13px; color: var(--lgm-navy); line-height: 1.55; margin-bottom: 24px; }

.ct__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.ct__label { font-size: 13px; color: var(--lgm-green); font-weight: 600; }
.ct__field input,
.ct__field textarea {
  border: 1px solid rgba(11,38,60,0.4);
  border-radius: var(--lgm-radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--lgm-navy);
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.ct__field input:focus,
.ct__field textarea:focus { border-color: var(--lgm-green); }
.ct__field textarea { min-height: 110px; resize: vertical; }

.ct__send {
  width: 100%;
  padding: 12px;
  border-radius: var(--lgm-radius-sm);
  background: var(--lgm-green);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.ct__send:hover { background: #0A4A2E; }
.ct__send:active { transform: scale(0.98); }
.ct__send img { width: 14px; filter: brightness(0) invert(1); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: #fff;
  box-shadow: var(--lgm-shadow-card-up);
  padding: 60px 158px 40px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.foot__logo img { height: 76px; margin-bottom: 16px; object-fit: contain; }
.foot__about {
  font-size: 13px;
  color: var(--lgm-navy);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 18px;
}

.foot__socials { display: flex; gap: 8px; }
.foot__s-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--lgm-radius-pill);
  background: var(--lgm-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.foot__s-btn:hover { background: var(--lgm-green); }
.foot__s-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.foot__col h4 {
  color: var(--lgm-green);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 18px;
}
.foot__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot__col li a {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--lgm-navy);
  transition: color 0.15s;
}
.foot__col li a:hover { color: var(--lgm-green); }

.foot__contact h4 { color: var(--lgm-green); font-size: 22px; font-weight: 400; margin-bottom: 18px; }
.foot__line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--lgm-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.foot__line-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: var(--lgm-green);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.foot__line-icon--phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}
.foot__line-icon--mail {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 15'><path d='M1.875 0C.84 0 0 .84 0 1.875c0 .59.277 1.145.75 1.5L9.25 9.75c.445.332 1.055.332 1.5 0l8.5-6.375c.473-.355.75-.91.75-1.5C20 .84 19.16 0 18.125 0H1.875zM0 4.375V12.5C0 13.879 1.121 15 2.5 15h15c1.379 0 2.5-1.121 2.5-2.5V4.375L11.5 10.75c-.891.668-2.109.668-3 0L0 4.375z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 15'><path d='M1.875 0C.84 0 0 .84 0 1.875c0 .59.277 1.145.75 1.5L9.25 9.75c.445.332 1.055.332 1.5 0l8.5-6.375c.473-.355.75-.91.75-1.5C20 .84 19.16 0 18.125 0H1.875zM0 4.375V12.5C0 13.879 1.121 15 2.5 15h15c1.379 0 2.5-1.121 2.5-2.5V4.375L11.5 10.75c-.891.668-2.109.668-3 0L0 4.375z'/></svg>");
}

.foot__support-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--lgm-green);
  color: #fff;
  padding: 10px 28px;
  border-radius: var(--lgm-radius-pill);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s;
}
.foot__support-btn:hover { background: #0A4A2E; }

.foot__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 158px;
  background: var(--lgm-green);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  gap: 20px;
}
.foot__legal-links { display: flex; gap: 20px; flex-shrink: 0; }
.foot__legal-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  font-size: 12px;
  transition: color 0.15s;
}
.foot__legal-links a:hover { color: #fff; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--lgm-green);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--lgm-radius-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   UTILITY FIXES
   ============================================================ */

/* Ensure the campaign custom input doesn't have browser default white bg */
.cmp__custom:-webkit-autofill { background: transparent !important; }

/* Event CTA — stretch to full card width */
.ev__cta { width: 100%; }

/* Prevent image drag */
img { -webkit-user-drag: none; user-select: none; }

/* Smooth scroll offset for sticky header */
[id] { scroll-margin-top: 160px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .pb, .hd { padding: 0 40px; }
  .foot { padding: 50px 40px 30px; }
  .foot__legal { padding: 14px 40px; }
}

@media (max-width: 1024px) {
  .ft { grid-template-columns: 1fr 1fr; }
  .ft__col:last-child { display: none; }
  .ab { grid-template-columns: 1fr; }
  .ab__img { height: 350px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .sv { grid-template-columns: 1fr 1fr; }
  .ev { grid-template-columns: 1fr; }
  .cmp { grid-template-columns: 1fr; }
  .cmp__panel { max-width: 420px; margin: 0 auto; }
  .ct { grid-template-columns: 1fr; }
  .ct__map { min-height: 280px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .pb { padding: 0 20px; }
  .pb__times { gap: 10px; font-size: 11px; }
  .hd { padding: 0 20px; height: 75px; }
  .hd__logo img { height: 50px; }
  .hd__nav { display: none; }
  .sh__h { font-size: 28px; }
  .ft { grid-template-columns: 1fr; }
  .ft__col:not(:first-child) { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .sv { grid-template-columns: 1fr; }
  .cmp { padding: 40px 24px; }
  .cmp__h { font-size: 34px; }
  .foot { padding: 40px 20px 24px; }
  .foot__grid { grid-template-columns: 1fr; }
  .foot__legal { padding: 14px 20px; flex-direction: column; text-align: center; gap: 8px; }
  .lgm-container { max-width: calc(100% - 40px); }
}

/* ============================================================
   INNER PAGES — shared components for all service/detail pages
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────── */
.pg-hero {
  position: relative;
  background: var(--lgm-green);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}
.pg-hero::before {
  content: none;
}
.pg-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 680px;
}
.pg-hero__bc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}
.pg-hero__bc a {
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.pg-hero__bc a:hover { color: #fff; }
.pg-hero__eb {
  color: var(--lgm-gold);
  font-size: 16px;
  margin-top: 4px;
}
.pg-hero__h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.pg-hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
}
.pg-hero__cta {
  display: inline-block;
  margin-top: 6px;
  background: var(--lgm-gold);
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 11px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.pg-hero__cta:hover { background: #C58D24; }
.pg-hero__cta:active { transform: scale(0.97); }

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-wrap {
  padding: 70px 0 60px;
}
.faq {
  display: flex;
  flex-direction: column;
  border-top: 0.2px solid var(--lgm-line);
  margin-top: 8px;
}
.faq__item {
  border-bottom: 0.2px solid var(--lgm-line);
  overflow: hidden;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--lgm-green);
  gap: 16px;
  user-select: none;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.15s;
}
.faq__q:hover { color: #0A4A2E; }
.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--lgm-green);
  -webkit-mask-image: url("../assets/icon-chevron-down.svg");
          mask-image: url("../assets/icon-chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 4px;
}
.faq__item.is-open .faq__a {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq__a p {
  font-size: 14px;
  color: var(--lgm-navy);
  line-height: 1.7;
  margin: 0;
}

/* ── Page CTA Strip ─────────────────────────────────────── */
.page-cta-strip {
  position: relative;
  background: var(--lgm-green);
  padding: 64px 20px;
  text-align: center;
  overflow: hidden;
}
.page-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/pattern-campaign-bg.svg") center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.page-cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.page-cta-strip h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.page-cta-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  max-width: 480px;
  line-height: 1.6;
}
.page-cta-strip__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.page-cta-strip__btn-primary {
  background: var(--lgm-gold);
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 12px 34px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.page-cta-strip__btn-primary:hover { background: #C58D24; }
.page-cta-strip__btn-outline {
  background: transparent;
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 12px 34px;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.page-cta-strip__btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── NTI Intro — cinematic split ────────────────────────── */
.nti-intro {
  display: grid;
  grid-template-columns: 48% 1fr;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

/* Photo: fills left column, bleeds to page edge */
.nti-intro__photo {
  position: relative;
  background-size: cover;
  background-position: center top;
}

/* Eyebrow tag floating at bottom-left of photo */
.nti-intro__tag {
  position: absolute;
  bottom: 44px;
  left: 44px;
  z-index: 2;
  background: rgba(15, 93, 58, 0.88);
  color: var(--lgm-gold);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--lgm-radius-pill);
  backdrop-filter: blur(6px);
  letter-spacing: 0.2px;
}

/* Gradient that fades photo into page background on the right */
.nti-intro__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 55%,
    var(--lgm-bg) 100%
  );
  pointer-events: none;
}

/* Right content area */
.nti-intro__content {
  position: relative;
  padding: 72px 80px 72px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
}

/* Decorative faint gold arc — top-right corner */
.nti-intro__deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 50px solid var(--lgm-gold);
  opacity: 0.055;
  pointer-events: none;
}

/* Heading */
.nti-intro__h {
  color: var(--lgm-gold);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
}

/* Body */
.nti-intro__body {
  color: var(--lgm-navy);
  font-size: 14px;
  line-height: 1.7;
  max-width: 460px;
  margin: 0;
}

/* Numbered steps list */
.nti-intro__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 0.2px solid var(--lgm-line);
  margin-top: 6px;
}

.nti-intro__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 0.2px solid var(--lgm-line);
  transition: background 0.15s;
}
.nti-intro__step:hover {
  background: rgba(15, 93, 58, 0.03);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: var(--lgm-radius-xs);
}

/* Large faded gold number */
.nti-intro__step-n {
  font-size: 32px;
  font-weight: 700;
  color: var(--lgm-gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 48px;
  letter-spacing: -1px;
  flex-shrink: 0;
  padding-top: 1px;
}

.nti-intro__step-body { display: flex; flex-direction: column; gap: 3px; }

.nti-intro__step-t {
  font-size: 15px;
  font-weight: 700;
  color: var(--lgm-green);
  line-height: 1.2;
}

.nti-intro__step-d {
  font-size: 13px;
  color: var(--lgm-fg-muted);
  line-height: 1.55;
}

/* CTA */
.nti-intro__cta {
  align-self: flex-start;
  background: var(--lgm-green);
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s;
  margin-top: 4px;
}
.nti-intro__cta:hover { background: #0A4A2E; }
.nti-intro__cta:active { transform: scale(0.97); }
.nti-intro__cta img {
  width: 13px;
  filter: brightness(0) invert(1);
}

/* ── Inner-page responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .nti-intro { grid-template-columns: 1fr; }
  .nti-intro__photo { min-height: 360px; }
  .nti-intro__fade {
    background: linear-gradient(to bottom, transparent 60%, var(--lgm-bg) 100%);
  }
  .nti-intro__tag { bottom: 24px; left: 24px; }
  .nti-intro__content { padding: 50px 40px; }
  .nti-intro__deco { display: none; }
}

@media (max-width: 768px) {
  .pg-hero__h1 { font-size: 36px; }
  .pg-hero { min-height: 240px; padding: 50px 20px; }
  .page-cta-strip h2 { font-size: 26px; }
  .page-cta-strip__btns { flex-direction: column; align-items: center; }
  .nti-intro__h { font-size: 32px; }
  .nti-intro__content { padding: 40px 24px; }
  .nti-intro__step-n { font-size: 24px; min-width: 36px; }
}

/* ============================================================
   NTI PAGE — DIRECTION C: Full Immersion
   ============================================================ */

/* ── Hero: refined height with entrance animations ────────── */
.pg-hero--c {
  min-height: 500px;
  justify-content: center;
  padding: 80px 20px 90px;
}
.pg-hero--c::before {
  content: none;
}
.pg-hero--c .pg-hero__inner { gap: 18px; max-width: 640px; }
.pg-hero--c .pg-hero__eb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pg-hero__eb-dash {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lgm-gold);
  opacity: 0.65;
  flex-shrink: 0;
}
.pg-hero--c .pg-hero__h1 {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.0;
}
.pg-hero--c .pg-hero__sub {
  font-size: 16px;
  max-width: 500px;
  line-height: 1.65;
}

/* Staggered entrance animations */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pg-hero--c .pg-hero__bc  { animation: hero-rise 0.6s ease-out 0.05s both; }
.pg-hero--c .pg-hero__eb  { animation: hero-rise 0.6s ease-out 0.2s  both; }
.pg-hero--c .pg-hero__h1  { animation: hero-rise 0.7s ease-out 0.38s both; }
.pg-hero--c .pg-hero__sub { animation: hero-rise 0.7s ease-out 0.55s both; }
.pg-hero--c .pg-hero__cta { animation: hero-rise 0.6s ease-out 0.72s both; }

/* ── Intro: scroll-driven photo reveal ────────────────────── */
@supports (animation-timeline: scroll()) {
  .nti-intro--c {
    view-timeline-name: --nti-intro-vt;
    view-timeline-axis: block;
  }
  .nti-intro--c .nti-intro__photo {
    animation: nti-photo-reveal linear both;
    animation-timeline: --nti-intro-vt;
    animation-range: entry 0% cover 55%;
  }
  @keyframes nti-photo-reveal {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
  }
}

/* ── Sessions: timeline layout ───────────────────────────── */
.nti-sessions-c { padding: 90px 0; }
.nti-timeline { margin-top: 52px; }
.nti-timeline__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}
.nti-timeline__item {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--lgm-gold);
}
.nti-timeline__num {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--lgm-gold);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: -4px;
}
.nti-timeline__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin: 16px 0 20px;
}
.nti-timeline__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lgm-green);
  background: rgba(15, 93, 58, 0.08);
  padding: 4px 10px;
  border-radius: var(--lgm-radius-pill);
  margin-bottom: 10px;
}
.nti-timeline__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--lgm-navy);
  line-height: 1.25;
  margin: 0 0 10px;
}
.nti-timeline__desc {
  font-size: 14px;
  color: var(--lgm-fg-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}
.nti-timeline__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lgm-green);
  border: 1.5px solid rgba(15, 93, 58, 0.3);
  border-radius: var(--lgm-radius-pill);
  padding: 9px 20px;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.nti-timeline__cta:hover {
  background: rgba(15, 93, 58, 0.06);
  border-color: var(--lgm-green);
}

/* ── FAQ: editorial Q-numbers via CSS counter ─────────────── */
.faq-wrap--c .faq { counter-reset: faq-q; }
.faq-wrap--c .faq__item { counter-increment: faq-q; }
.faq-wrap--c .faq__q {
  font-size: 17px;
  padding: 22px 4px;
  gap: 20px;
}
.faq-wrap--c .faq__q::before {
  content: "Q" counter(faq-q);
  flex-shrink: 0;
  font-size: 26px;
  font-weight: 800;
  color: var(--lgm-gold);
  opacity: 0.3;
  min-width: 42px;
  line-height: 1;
  transition: opacity 0.2s;
}
.faq-wrap--c .faq__item.is-open .faq__q::before { opacity: 0.85; }
.faq-wrap--c .faq__item.is-open .faq__q { color: var(--lgm-navy); }
.faq-wrap--c .faq__a { padding-left: 62px; }
.faq-wrap--c .faq__a p { font-size: 15px; line-height: 1.72; }
.faq-wrap--c .faq__item.is-open .faq__a { max-height: 520px; }

/* ── CTA Strip: photo-backed, strong & confident ────────────── */
.page-cta-strip--c {
  padding: 0;
  text-align: center;
  border-radius: 36px 36px 0 0;
  background: var(--lgm-navy);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Override inherited pattern pseudo-element with gradient overlay */
.page-cta-strip--c::before {
  background: linear-gradient(
    135deg,
    rgba(15, 93, 58, 0.86) 0%,
    rgba(11, 38, 60, 0.78) 100%
  );
  opacity: 1;
  z-index: 1;
}
.page-cta-strip__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  animation: nti-ken-burns 28s ease-in-out infinite alternate;
}
.page-cta-strip--c .page-cta-strip__inner {
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  padding: 90px 20px;
  gap: 20px;
  max-width: 680px;
}
.page-cta-strip__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lgm-gold);
}
.page-cta-strip__eyebrow::before,
.page-cta-strip__eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--lgm-gold);
  flex-shrink: 0;
  opacity: 0.7;
}
.page-cta-strip--c h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.05;
  max-width: 560px;
  margin: 0;
  color: #fff;
}
.page-cta-strip--c p {
  font-size: 16px;
  max-width: 440px;
  line-height: 1.65;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
.page-cta-strip--c .page-cta-strip__btns {
  justify-content: center;
  margin-top: 14px;
  gap: 16px;
}
.page-cta-strip--c .page-cta-strip__btn-primary {
  padding: 15px 42px;
  font-size: 17px;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 20px rgba(225, 162, 48, 0.35);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}
.page-cta-strip--c .page-cta-strip__btn-primary:hover {
  box-shadow: 0 6px 28px rgba(225, 162, 48, 0.5);
  transform: translateY(-1px);
}
.page-cta-strip--c .page-cta-strip__btn-outline {
  padding: 15px 42px;
  font-size: 17px;
  border-color: rgba(255, 255, 255, 0.55);
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.page-cta-strip--c .page-cta-strip__btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.page-cta-strip--c .page-cta-strip__ornament { display: none; }

/* ── Services page — full-bleed photo cards ──────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.svc-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
}
.svc-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card__bg { transform: scale(1.04); }
.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 38, 60, 0.35) 0%,
    rgba(11, 38, 60, 0.82) 55%,
    rgba(11, 38, 60, 0.92) 100%
  );
  transition: opacity 0.3s ease;
}
.svc-card--green .svc-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(15, 93, 58, 0.30) 0%,
    rgba(15, 93, 58, 0.82) 55%,
    rgba(15, 93, 58, 0.94) 100%
  );
}
.svc-card--navy .svc-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(11, 38, 60, 0.35) 0%,
    rgba(11, 38, 60, 0.82) 55%,
    rgba(11, 38, 60, 0.92) 100%
  );
}
.svc-card__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 24px 30px;
}
.svc-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.svc-card__icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.svc-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.svc-card__rule {
  width: 38px;
  height: 2px;
  background: var(--lgm-gold);
  margin: 0 auto 14px;
  border: none;
}
.svc-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0 0 20px;
}
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.15s, gap 0.15s;
}
.svc-card:hover .svc-card__cta { opacity: 1; gap: 10px; }
.svc-card__cta img { width: 13px; filter: brightness(0) invert(1); }

@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .svc-grid { grid-template-columns: 1fr; } }

/* ── Direction C responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .nti-timeline__items { grid-template-columns: 1fr; max-width: 560px; margin: 52px auto 0; }
}
@media (max-width: 768px) {
  .pg-hero--c { min-height: 360px; padding: 60px 20px 70px; }
  .pg-hero--c .pg-hero__h1 { font-size: 44px; letter-spacing: -0.5px; }
  .page-cta-strip--c { border-radius: 20px 20px 0 0; min-height: 340px; }
  .page-cta-strip--c h2 { font-size: 34px; }
  .page-cta-strip--c .page-cta-strip__btn-primary,
  .page-cta-strip--c .page-cta-strip__btn-outline { padding: 13px 28px; font-size: 15px; }
  .page-cta-strip--c .page-cta-strip__btns { flex-direction: column; align-items: center; }
  .faq-wrap--c .faq__q { font-size: 15px; }
  .faq-wrap--c .faq__q::before { font-size: 22px; min-width: 36px; }
  .faq-wrap--c .faq__a { padding-left: 56px; }
}

/* ── Services Archive ────────────────────────────────────── */
.arc-wrap { padding: 0 0 80px; }

.arc-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 52px 0 40px;
}
.arc-filter {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--lgm-line);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--lgm-navy);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.arc-filter:hover { border-color: var(--lgm-green); color: var(--lgm-green); }
.arc-filter.is-active {
  background: var(--lgm-green);
  color: #fff;
  border-color: var(--lgm-green);
}

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

.arc-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 0.2px solid var(--lgm-line);
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.22s, transform 0.22s;
}
.arc-card:hover {
  box-shadow: 0 8px 32px rgba(11,38,60,0.10);
  transform: translateY(-3px);
}

.arc-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.arc-card:hover .arc-card__img { transform: scale(1.03); }

.arc-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.arc-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.arc-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15,93,58,0.07);
  color: var(--lgm-green);
  padding: 3px 10px;
  border-radius: 100px;
}

.arc-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--lgm-navy);
  margin: 0 0 10px;
  line-height: 1.25;
}

.arc-card__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5a6978;
  margin: 0 0 20px;
  flex: 1;
}

.arc-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lgm-green);
  transition: gap 0.15s;
  margin-top: auto;
}
.arc-card:hover .arc-card__cta { gap: 10px; }
.arc-card__cta img { width: 13px; }

.arc-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 15px;
  color: #8a9aaa;
}

@media (max-width: 1024px) { .arc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .arc-grid { grid-template-columns: 1fr; } }

/* ── Archive page title (lightweight, no hero banner) ── */
.arc-title {
  padding: 48px 0 0;
  border-bottom: 1px solid var(--lgm-line);
}
.arc-title__bc {
  font-size: 12px;
  color: #8a9aaa;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.arc-title__bc a { color: #8a9aaa; text-decoration: none; }
.arc-title__bc a:hover { color: var(--lgm-green); }
.arc-title__h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--lgm-navy);
  letter-spacing: -0.5px;
  margin: 0 0 10px;
  line-height: 1.1;
}
.arc-title__sub {
  font-size: 15px;
  color: #5a6978;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 36px;
}

/* ── svc-card__inner (alias for content area in services archive) ── */
.svc-card__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-card__inner .sv__title { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 10px; }
.svc-card__inner .sv__body  { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.6; margin: 0 0 18px; }
.svc-card__inner .sv__more  { opacity: 0.85; transition: opacity 0.15s, gap 0.15s; }
.svc-card:hover .svc-card__inner .sv__more { opacity: 1; gap: 10px; }
.svc-card__inner .sv__icon  { margin: 0 auto 16px; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */

/* ── Hero map ── */
.ct-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--lgm-navy);
}
.ct-hero__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ct-hero__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}
.ct-hero__label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: var(--lgm-green);
  padding: 14px 26px 16px;
  border-radius: 0 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-hero__bc {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ct-hero__bc a { color: rgba(255,255,255,0.65); text-decoration: none; }
.ct-hero__bc a:hover { color: #fff; }
.ct-hero__address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.ct-hero__address-icon {
  width: 16px;
  height: 16px;
  background: var(--lgm-gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

/* ── Contact body ── */
.ct-body {
  padding: 72px 0 96px;
}
.ct-body__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 52px;
  align-items: start;
}

.ct-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lgm-gold);
  margin-bottom: 10px;
}
.ct-col-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--lgm-navy);
  letter-spacing: -0.3px;
  margin: 0 0 10px;
  line-height: 1.15;
}
.ct-col-sub {
  font-size: 14px;
  color: #6a7a8a;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 420px;
}

/* ── Form ── */
.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.ct-form__field { display: flex; flex-direction: column; gap: 6px; }
.ct-form__field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--lgm-navy);
  letter-spacing: 0.04em;
}
.ct-form__field input,
.ct-form__field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--lgm-line);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--lgm-navy);
  background: #fff;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
}
.ct-form__field input::placeholder,
.ct-form__field textarea::placeholder { color: #b0bcc8; }
.ct-form__field input:focus,
.ct-form__field textarea:focus {
  border-color: var(--lgm-green);
  box-shadow: 0 0 0 3px rgba(15,93,58,0.10);
}

.ct-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 14px 34px;
  background: var(--lgm-green);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}
.ct-form__submit:hover { background: #0a4d30; transform: translateY(-1px); }
.ct-form__submit img { width: 16px; filter: brightness(0) invert(1); }

/* ── Divider ── */
.ct-divider { background: var(--lgm-line); width: 1px; align-self: stretch; margin-top: 54px; }

/* ── Info column ── */
.ct-info__list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 28px; }
.ct-info__item { display: flex; align-items: flex-start; gap: 18px; }

.ct-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(15,93,58,0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ct-info__icon::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--lgm-green);
}
.ct-info__icon--location::after {
  background: var(--lgm-green);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.ct-info__icon--phone::after {
  background: var(--lgm-green);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.ct-info__icon--mail::after {
  background: var(--lgm-green);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}
.ct-info__icon--clock::after {
  background: var(--lgm-green);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm.5 14.5h-1V11H8V9.5h4.5v7z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm.5 14.5h-1V11H8V9.5h4.5v7z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}

.ct-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lgm-gold);
  margin-bottom: 5px;
}
.ct-info__value { font-size: 14px; color: var(--lgm-navy); line-height: 1.7; }
.ct-info__link { color: var(--lgm-green); text-decoration: none; font-weight: 600; }
.ct-info__link:hover { text-decoration: underline; }

.ct-hours { display: flex; justify-content: space-between; font-size: 13px; color: var(--lgm-navy); padding: 4px 0; border-bottom: 1px solid var(--lgm-line); max-width: 260px; }
.ct-hours:last-of-type { border-bottom: none; }
.ct-hours__note { font-size: 12px; color: #8a9aaa; margin: 8px 0 0; font-style: italic; }

.ct-info__socials { margin-top: 6px; }
.ct-info__social-row { display: flex; gap: 10px; margin-top: 10px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .ct-body__inner { grid-template-columns: 1fr; gap: 52px 0; }
  .ct-divider { display: none; }
  .ct-form__row--2 { grid-template-columns: 1fr; }
  .ct-hero { height: 340px; }
}

/* ══════════════════════════════════════════════════════════
   EVENT SINGLE PAGE
══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.evs-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.evs-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.evs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,38,60,0.15) 0%,
    rgba(11,38,60,0.75) 60%,
    rgba(11,38,60,0.92) 100%
  );
}
.evs-hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
  color: #fff;
}
.evs-hero__bc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
}
.evs-hero__bc a { color: rgba(255,255,255,0.6); text-decoration: none; }
.evs-hero__bc a:hover { color: #fff; }

.evs-hero__badges { display: flex; gap: 8px; margin-bottom: 16px; }
.evs-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.evs-badge--cat  { background: var(--lgm-green); color: #fff; }
.evs-badge--spots { background: var(--lgm-gold); color: #fff; }

.evs-hero__h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0 0 24px;
}

.evs-hero__meta { display: flex; flex-wrap: wrap; gap: 20px; }
.evs-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}
.evs-meta-item__icon {
  width: 16px;
  height: 16px;
  background: var(--lgm-gold);
  flex-shrink: 0;
}
.evs-meta-item__icon--date {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}
.evs-meta-item__icon--time {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm.5 14.5h-1V11H8V9.5h4.5v7z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm.5 14.5h-1V11H8V9.5h4.5v7z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}
.evs-meta-item__icon--location {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}

/* ── Body layout ── */
.evs-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 64px 0 96px;
  align-items: start;
}

/* ── Article content ── */
.evs-content__section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--lgm-line);
}
.evs-content__section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.evs-content__h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--lgm-navy);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.evs-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5a6a;
  margin-bottom: 14px;
}
.evs-content p:last-child { margin-bottom: 0; }

.evs-list { display: flex; flex-direction: column; gap: 12px; }
.evs-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #4a5a6a;
}
.evs-list__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lgm-gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.evs-share { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.evs-share__label { font-size: 13px; font-weight: 700; color: var(--lgm-navy); }
.evs-share__btns { display: flex; gap: 10px; }
.evs-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--lgm-line);
  font-size: 13px;
  font-weight: 600;
  color: var(--lgm-navy);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.evs-share__btn:hover { border-color: var(--lgm-green); background: rgba(15,93,58,0.05); }
.evs-share__btn img { width: 16px; }

/* ── CTA card (sidebar) ── */
.evs-sidebar { position: sticky; top: 168px; }

.evs-cta-card {
  background: #fff;
  border: 1px solid var(--lgm-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,38,60,0.08);
}
.evs-cta-card__header {
  background: var(--lgm-green);
  padding: 22px 24px;
}
.evs-cta-card__free {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.evs-cta-card__spots {
  font-size: 12px;
  font-weight: 600;
  color: var(--lgm-gold);
  letter-spacing: 0.04em;
}

.evs-cta-card__details {
  list-style: none;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--lgm-line);
}
.evs-cta-card__details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.evs-cta-card__detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(15,93,58,0.07);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.evs-cta-card__detail-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--lgm-green);
  display: block;
}
.evs-cta-card__detail-icon--date::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}
.evs-cta-card__detail-icon--time::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm.5 14.5h-1V11H8V9.5h4.5v7z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm.5 14.5h-1V11H8V9.5h4.5v7z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}
.evs-cta-card__detail-icon--location::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat; mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
}
.evs-cta-card__detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lgm-gold);
  margin-bottom: 3px;
}
.evs-cta-card__detail-val {
  font-size: 13.5px;
  color: var(--lgm-navy);
  line-height: 1.5;
}

.evs-cta-card__btn {
  display: block;
  width: calc(100% - 48px);
  margin: 22px 24px 0;
  padding: 15px;
  background: var(--lgm-green);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  text-align: center;
}
.evs-cta-card__btn:hover { background: #0a4d30; transform: translateY(-1px); }
.evs-cta-card__btn:disabled { background: var(--lgm-navy); cursor: default; transform: none; }

.evs-cta-card__note {
  font-size: 12px;
  color: #8a9aaa;
  line-height: 1.6;
  padding: 14px 24px 22px;
  text-align: center;
}
.evs-cta-card__note a { color: var(--lgm-green); text-decoration: none; }
.evs-cta-card__note a:hover { text-decoration: underline; }

.evs-cta-card__divider { height: 1px; background: var(--lgm-line); }

.evs-cta-card__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lgm-green);
  text-decoration: none;
  transition: gap 0.15s;
}
.evs-cta-card__more:hover { gap: 10px; }
.evs-cta-card__more img { width: 13px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .evs-body { grid-template-columns: 1fr; }
  .evs-sidebar { position: static; }
  .evs-cta-card { max-width: 480px; }
  .evs-hero__h1 { font-size: 38px; }
  .evs-hero { height: 400px; }
}

/* ══════════════════════════════════════════════════════════
   EVENTS ARCHIVE
══════════════════════════════════════════════════════════ */

/* ── Featured event ── */
.eva-featured-wrap { padding: 40px 0 0; }

.eva-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  position: relative;
  text-decoration: none;
}
.eva-featured__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.eva-featured:hover .eva-featured__photo { transform: scale(1.03); }
.eva-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11,38,60,0.08) 0%,
    rgba(11,38,60,0.70) 48%,
    rgba(11,38,60,0.95) 100%
  );
}
.eva-featured__inner {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: 48px 44px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eva-featured__flag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lgm-gold);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.eva-featured__cat {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.eva-featured__title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.eva-featured__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.eva-featured__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.eva-featured__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 380px;
}
.eva-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--lgm-gold);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.15s, background 0.15s;
}
.eva-featured:hover .eva-featured__cta { gap: 13px; background: #c8901f; }
.eva-featured__cta img { width: 13px; filter: brightness(0) invert(1); }

/* ── Archive section ── */
.eva-wrap { padding: 56px 0 96px; }

.eva-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--lgm-navy);
  letter-spacing: -0.2px;
  margin-bottom: 0;
}

.eva-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

/* Override ev__card for archive — full-width horizontal */
.eva-card {
  grid-template-columns: 280px 1fr;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.eva-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(11,38,60,0.10);
}
.eva-card .ev__img { min-height: 180px; }

.eva-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lgm-gold);
  margin-bottom: 5px;
}
.eva-card .ev__title { font-size: 17px; }

.eva-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--lgm-line);
}
.eva-card__time {
  font-size: 12px;
  color: #8a9aaa;
  font-weight: 500;
}
.eva-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lgm-green);
  transition: gap 0.15s;
}
.eva-card:hover .eva-card__link { gap: 9px; }
.eva-card__link img { width: 12px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .eva-featured { grid-template-columns: 1fr; min-height: auto; }
  .eva-featured__inner { grid-column: 1; background: var(--lgm-navy); padding: 32px 28px; }
  .eva-featured__photo { display: none; }
  .eva-featured__overlay { display: none; }
  .eva-card { grid-template-columns: 1fr; }
  .eva-card .ev__img { min-height: 200px; }
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE HERO GRID (.fh)
══════════════════════════════════════════════════════════ */
.fh {
  display: grid;
  grid-template-columns: 1fr 1.55fr 1fr;
  gap: 12px;
  padding: 20px 0 56px;
}
.fh__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Side mini cards ── */
.fh__mini {
  display: flex;
  flex: 1;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--lgm-line);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 160px;
}
.fh__mini:hover {
  box-shadow: 0 6px 20px rgba(11,38,60,0.10);
  transform: translateY(-2px);
}
.fh__mini__body {
  flex: 1;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.fh__mini__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--lgm-navy);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.2px;
}
.fh__mini__desc {
  font-size: 13px;
  color: var(--lgm-slate);
  line-height: 1.45;
}
.fh__mini__photo {
  width: 42%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.fh__mini:hover .fh__mini__photo { transform: scale(1.04); }

/* ── Centre featured card ── */
.fh__featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s;
  min-height: 332px;
}
.fh__featured:hover { box-shadow: 0 8px 28px rgba(11,38,60,0.12); }

.fh__featured__pattern { display: none; }
.fh__featured__inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.fh__featured__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lgm-green);
  margin-bottom: 16px;
}
.fh__featured__title {
  font-size: 42px;
  font-weight: 900;
  color: var(--lgm-navy);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.fh__featured__rule {
  width: 48px;
  height: 3px;
  background: var(--lgm-gold);
  border: none;
  border-radius: 2px;
  margin-bottom: 16px;
}
.fh__featured__dates {
  font-size: 17px;
  font-weight: 700;
  color: var(--lgm-navy);
  opacity: 0.7;
  margin-bottom: 28px;
}
.fh__featured__cta {
  display: inline-block;
  padding: 10px 28px;
  background: var(--lgm-green);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s;
}
.fh__featured:hover .fh__featured__cta { background: #0a4d30; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .fh { grid-template-columns: 1fr 1fr; }
  .fh__featured { grid-column: 1 / -1; order: -1; min-height: 260px; }
  .fh__featured__title { font-size: 34px; }
}
@media (max-width: 580px) {
  .fh { grid-template-columns: 1fr; }
  .fh__mini { min-height: 130px; }
  .fh__mini__photo { width: 38%; }
}

/* ── Feature Trio centre card overrides ── */
.ft__card--feature { background: #f5f3ee; }
.ft__feature-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(245,243,238,0.97) 0%,
    rgba(245,243,238,0.82) 45%,
    rgba(245,243,238,0.55) 100%
  );
}
.ft__copy--feature {
  text-align: center;
  align-items: center;
  padding-bottom: 36px;
  z-index: 1;
}
.ft__feature-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lgm-green);
  margin-bottom: 10px;
}
.ft__feature-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--lgm-navy);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.ft__feature-dates {
  font-size: 15px;
  font-weight: 700;
  color: var(--lgm-slate);
}

/* ── White-background sections (cover the arabesque body pattern) ── */
/* Page title headers — white background, no pattern */
/* Dense content sections — white so cards/text are readable */
/* Events listing sections — transparent so body pattern shows through */

.ab-section { padding: 60px 0 0; }
.svc-section { padding: 70px 0 80px; }

.arc-title,
.ab-section,
.svc-section,
.ev-wrap,
.news-wrap,
.ct-body,
.evs-body,
.nti-intro,
.nti-intro--c,
.nti-sessions,
.faq-wrap,
.faq-wrap--c {
  background: #fff;
}

