/* ============================================================
   AA2 Marketing Site - styles.css
   Colours: Green #1a3a2a, Gold #c5a055, White #fff,
   Off-white #f5f3ef, Dark #0a0a0a
   Fonts: Noto Sans (headings), Carlito (body)
   ============================================================ */

:root {
  --color-green: #1a3a2a;
  --color-green-dark: #0f2419;
  --color-gold: #c5a055;
  --color-gold-light: #d4b574;
  --color-white: #ffffff;
  --color-offwhite: #f5f3ef;
  --color-dark: #0a0a0a;
  --color-grey: #d4d0c8;
  --color-charcoal: #2a2520;
  --font-heading: 'Noto Sans', Arial, Helvetica, sans-serif;
  --font-body: 'Carlito', 'Segoe UI', Arial, sans-serif;
  --header-height: 80px;
  --section-spacer-sm: clamp(2rem, 4vw, 3rem);
  --section-spacer-md: clamp(3rem, 6vw, 5rem);
  --section-spacer-lg: clamp(4rem, 8vw, 7rem);
  --section-spacer-xl: clamp(5rem, 10vw, 9rem);
  --max-content: 1200px;
  --max-wide: 1440px;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body[data-scrollable="false"] { overflow: hidden; }
html.nav-tray-open { overflow: hidden; }
body.body-nav--no-scroll { width: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 900; line-height: 1.1; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 100px;
  font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.02em; transition: all var(--transition-base); white-space: nowrap;
}
.btn--outline-white { border: 1.5px solid rgba(255,255,255,0.6); color: var(--color-white); background: transparent; }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--outline-gold { border: 1.5px solid var(--color-gold); color: var(--color-gold); background: transparent; }
.btn--outline-gold:hover { background: rgba(197,160,85,0.1); color: var(--color-gold-light); }
.btn--solid-gold { background: var(--color-gold); color: var(--color-dark); border: 1.5px solid var(--color-gold); padding: 1rem 2.25rem; }
.btn--solid-gold:hover { background: var(--color-gold-light); border-color: var(--color-gold-light); }
.btn--arrow::after { content: '\2192'; transition: transform var(--transition-base); }
.btn--arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition-base), padding var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
  pointer-events: none; transition: opacity var(--transition-base); z-index: -1;
}
.header--sticky {
  background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 2rem; box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header--sticky::before { opacity: 0; }
.header--hidden { transform: translateY(-100%); }
.header__left { display: flex; align-items: center; gap: 2rem; }
.header__nav { display: flex; align-items: center; gap: 0.25rem; }
.header__nav-item {
  padding: 0.5rem 1rem; color: var(--color-white); font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; opacity: 0.85;
  transition: opacity var(--transition-base); cursor: pointer; background: none; border: none;
}
.header__nav-item:hover, .header__nav-item.active { opacity: 1; }
.header__logo {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.75rem;
  color: var(--color-white); letter-spacing: -0.02em; text-decoration: none; flex-shrink: 0;
}
.header__right { display: flex; align-items: center; gap: 1rem; }
.header__hamburger {
  display: none; width: 44px; height: 44px; position: relative; color: var(--color-white);
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.header__hamburger span { display: block; width: 24px; height: 2px; background: currentColor; transition: all var(--transition-base); border-radius: 1px; }
.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }

/* ============================================================
   NAVIGATION TRAY
   ============================================================ */
.navigation-tray {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex; flex-direction: column;
}
.navigation-tray.visible { opacity: 1; visibility: visible; }
.navigation-tray__header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 2rem; flex-shrink: 0; }
.navigation-tray__close {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--color-white); font-size: 1.5rem; background: none; border: none; cursor: pointer; opacity: 0.7; transition: opacity var(--transition-base);
}
.navigation-tray__close:hover { opacity: 1; }
.navigation-tray__nav { display: flex; gap: 0; padding: 0 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.navigation-tray__tab {
  padding: 1rem 1.5rem; color: var(--color-white); font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 600; opacity: 0.5;
  border-bottom: 2px solid transparent; transition: all var(--transition-base);
  cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
}
.navigation-tray__tab:hover { opacity: 0.8; }
.navigation-tray__tab.active { opacity: 1; border-bottom-color: var(--color-gold); }
.navigation-tray__inner { flex: 1; overflow-y: auto; padding: 2rem; -webkit-overflow-scrolling: touch; }
.navigation-tray__page { display: none; }
.navigation-tray__page.active { display: block; animation: navFadeIn 0.3s ease; }
@keyframes navFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.nav-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-content); margin: 0 auto; }
.nav-service-card { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; transition: all var(--transition-base); cursor: pointer; text-decoration: none; }
.nav-service-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(197,160,85,0.3); }
.nav-service-card__icon { width: 40px; height: 40px; color: var(--color-gold); margin-bottom: 1rem; }
.nav-service-card__title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.5rem; }
.nav-service-card__desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.nav-links-list { max-width: 600px; margin: 0 auto; }
.nav-link-item { display: block; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--color-white); font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; transition: all var(--transition-base); text-decoration: none; }
.nav-link-item:hover { padding-left: 2rem; color: var(--color-gold); }
.nav-link-item:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: var(--color-dark);
}
.hero__video-wrap { position: absolute; inset: 0; z-index: 1; }
.hero__video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.7) 100%);
}
.hero__content { position: relative; z-index: 3; text-align: center; padding: 0 2rem var(--section-spacer-lg); max-width: 900px; }
.hero__headline { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: var(--color-white); margin-bottom: 1.25rem; text-shadow: 0 2px 40px rgba(0,0,0,0.5); letter-spacing: -0.02em; }
.hero__subheadline { font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 2rem; max-width: 680px; margin-left: auto; margin-right: auto; }
.hero__cta { margin-bottom: 2rem; }
.hero__video-control {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3); color: var(--color-white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition-base); backdrop-filter: blur(8px);
}
.hero__video-control:hover { border-color: #fff; background: rgba(0,0,0,0.5); }
.hero__video-control svg { width: 16px; height: 16px; }
.hero__scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-heading);
}
.hero__scroll-indicator svg { width: 20px; height: 20px; animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(6px); opacity: 1; } }

/* ============================================================
   INTRO TEXT
   ============================================================ */
.intro { background: var(--color-offwhite); padding: var(--section-spacer-xl) 2rem; }
.intro__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.intro__text { font-size: clamp(1.125rem, 1.8vw, 1.25rem); line-height: 1.9; color: var(--color-dark); opacity: 0.85; }

/* === ICONICS SECTION — FULL-WIDTH IMAGE WITH FLOATING STRIPS === */
.iconics-section { background: #111; overflow: hidden; }
.iconics-header { background: #f5f3ef; padding: 40px 24px 28px; text-align: center; }
.iconics-header__title { font-family: 'Noto Sans', sans-serif; font-weight: 900; font-size: clamp(14px, 2vw, 18px); letter-spacing: 0.2em; text-transform: uppercase; color: #1a3a2a; margin: 0; }
.iconics-slider { position: relative; display: block; height: calc(100vh - 80px); max-height: 900px; min-height: 560px; overflow: hidden; background: #111; }

/* Main panel — fills entire section, image behind strips */
.iconics-main { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
.iconics-main__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; z-index: 1; }
.iconics-main__slide--active { opacity: 1; z-index: 2; }
.iconics-main__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.iconics-main__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%); z-index: 1; }
.iconics-main__content { position: absolute; top: 50%; left: 32.5%; transform: translate(-50%,-50%); text-align: center; max-width: 480px; width: 85%; z-index: 2; opacity: 0; transition: opacity 0.5s ease 0.2s; }
.iconics-main__slide--active .iconics-main__content { opacity: 1; }
.iconics-main__icon { width: 48px; height: 48px; margin: 0 auto 16px; color: rgba(255,255,255,0.8); }
.iconics-main__icon svg { width: 100%; height: 100%; }
.iconics-main__label { display: block; font-family: 'Carlito', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #c5a055; margin-bottom: 12px; }
.iconics-main__title { font-family: 'Noto Sans', sans-serif; font-weight: 900; font-size: clamp(28px,3.5vw,42px); line-height: 1.1; color: #fff; margin: 0 0 16px 0; }
.iconics-main__desc { font-family: 'Carlito', sans-serif; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); margin: 0 0 24px 0; }
.iconics-main__cta { display: inline-block; font-family: 'Carlito', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,0.5); padding: 12px 28px; border-radius: 24px; transition: background 0.3s ease, border-color 0.3s ease; }
.iconics-main__cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* Strip panel — floats on top of the main image */
.iconics-strips { position: absolute; right: 0; top: 0; bottom: 0; width: 35%; display: flex; align-items: center; justify-content: center; padding: 40px 20px; z-index: 5; }
.iconics-strips__container { display: flex; gap: 4px; height: 70%; width: 100%; }
.iconics-strip { flex: 1; position: relative; overflow: hidden; cursor: pointer; border-radius: 4px; transition: opacity 0.4s ease, transform 0.4s ease; }
.iconics-strip__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.iconics-strip__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); transition: background 0.3s ease; z-index: 1; }
.iconics-strip:hover .iconics-strip__overlay { background: rgba(0,0,0,0.3); }
.iconics-strip__label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; z-index: 2; width: 90%; }
.iconics-strip__icon { width: 28px; height: 28px; margin: 0 auto 10px; color: rgba(255,255,255,0.8); }
.iconics-strip__icon svg { width: 100%; height: 100%; }
.iconics-strip__name { font-family: 'Noto Sans', sans-serif; font-weight: 700; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); line-height: 1.4; display: block; }
.iconics-strip--entering { opacity: 0; transform: translateX(30px); }
.iconics-strip--leaving { opacity: 0; transform: translateX(-30px); }

/* Controls */
.iconics-controls { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 24px; z-index: 10; }
.iconics-progress { display: flex; align-items: center; gap: 10px; }
.iconics-progress__current, .iconics-progress__total { font-family: 'Carlito', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); min-width: 14px; }
.iconics-progress__track { width: 60px; height: 2px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.iconics-progress__bar { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: rgba(255,255,255,0.6); }
.iconics-nav { display: flex; gap: 6px; }
.iconics-nav__btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: transparent; color: rgba(255,255,255,0.6); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.3s ease, color 0.3s ease; }
.iconics-nav__btn:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ============================================================
   PROOF GRID
   ============================================================ */
.proof-grid { background: var(--color-offwhite); padding: 0; margin: 0; margin-bottom: 0; }
.proof-grid__header { text-align: center; padding: var(--section-spacer-lg) 2rem var(--section-spacer-md); }
.proof-grid__title { font-size: clamp(2rem, 4vw, 3rem); color: var(--color-dark); font-weight: 900; }
.proof-grid__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0 calc(15px + ((100vw - 360px) / ((1920 - 360) / (80 - 15)))); margin: 0; }
.proof-cell { position: relative; min-height: 0; aspect-ratio: 1 / 1; overflow: hidden; margin: 0; padding: 0; border: none; border-radius: 0; isolation: isolate; }
.proof-cell__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; transition: transform 0.6s ease; }
.proof-cell:hover .proof-cell__bg { transform: scale(1.04); }
.proof-cell__bg-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.3); }
.proof-cell__card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; background-color: var(--color-offwhite); border-radius: 3px; width: min(calc(100% - 64px), 384px); overflow: hidden; text-align: center; padding-bottom: 34px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.proof-cell:hover .proof-cell__card { transform: translate(-50%, calc(-50% - 3px)); box-shadow: 0 12px 48px rgba(0,0,0,0.2); }
.proof-cell__card-image-wrap { width: 100%; height: 240px; overflow: hidden; }
.proof-cell__card-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-cell__card-body { padding: 1.5rem 1.75rem 0; }
.proof-cell__card-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; color: #1c1c1c; margin-bottom: 0.75rem; line-height: 1.2; }
.proof-cell__card-text { font-size: 0.875rem; line-height: 1.7; color: #1c1c1c; opacity: 0.75; margin-bottom: 1.25rem; }
.proof-cell__card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 0.8125rem; font-weight: 600; color: var(--color-green); text-decoration: none; transition: color var(--transition-base); }
.proof-cell__card-link:hover { color: var(--color-gold); }
.proof-cell__card-link svg { flex-shrink: 0; transition: transform var(--transition-base); }
.proof-cell__card-link:hover svg { transform: translateX(3px); }

/* ============================================================
   SIDE-BY-SIDE PANELS
   ============================================================ */
.side-by-side { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; margin-top: 0; padding-top: 0; }
.side-by-side--reverse { direction: rtl; }
.side-by-side--reverse > * { direction: ltr; }
.side-by-side__image { position: relative; overflow: hidden; }
.side-by-side__image img { width: 100%; height: 100%; object-fit: cover; }
.side-by-side__content { display: flex; flex-direction: column; justify-content: center; padding: var(--section-spacer-lg) clamp(2rem, 5vw, 5rem); }
.side-by-side--dark .side-by-side__content { background: var(--color-dark); color: var(--color-white); }
.side-by-side__label { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1rem; }
.side-by-side__heading { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; }
.side-by-side__text { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 2rem; opacity: 0.85; }

/* ============================================================
   CTA BAR
   ============================================================ */
.cta-bar { position: relative; min-height: 70vh; text-align: center; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.cta-bar__bg { position: absolute; inset: 0; z-index: 1; }
.cta-bar__bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-bar__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.1) 100%); }
.cta-bar__content { position: relative; z-index: 3; max-width: 700px; margin: 0 auto; }
.cta-bar__heading { font-size: clamp(1.75rem, 5vw, 3.5rem); font-weight: 900; color: var(--color-white); margin-bottom: 1.5rem; line-height: 1.15; }
.cta-bar__text { font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-weight: 400; }

/* ============================================================
   PRE-FOOTER
   ============================================================ */
.pre-footer { background: #f5f3ef; padding: 48px 24px; text-align: center; }
.pre-footer__container { max-width: 800px; margin: 0 auto; }
.pre-footer__text { font-family: 'Carlito', 'Noto Sans', sans-serif; font-size: 13px; line-height: 1.8; color: #545454; margin: 0; letter-spacing: 0.01em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: var(--section-spacer-lg) 2rem var(--section-spacer-md); }
.footer__inner { max-width: var(--max-content); margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; padding-bottom: var(--section-spacer-md); border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand-logo { font-family: var(--font-heading); font-weight: 900; font-size: 1.75rem; color: var(--color-white); margin-bottom: 1rem; }
.footer__tagline { color: var(--color-gold); font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.footer__contact-item { display: block; font-size: 0.9375rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; transition: color var(--transition-base); }
.footer__contact-item:hover { color: var(--color-white); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__links-heading { font-family: var(--font-heading); font-size: 0.6875rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-white); padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.2); margin-bottom: 20px; display: block; }
.footer__link { display: block; font-size: 0.9375rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; transition: color var(--transition-base); }
.footer__link:hover { color: var(--color-white); }
.footer__bottom { padding-top: 40px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__copyright { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }
.footer__social { display: flex; gap: 16px; align-items: center; }
.footer__social-link { color: rgba(255,255,255,0.5); transition: color 0.3s ease; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; text-decoration: none; }
.footer__social-link:hover { color: #c5a055; }

/* ============================================================
   CLOSING WORDMARK
   ============================================================ */
.closing-wordmark { background: #111111; padding: 60px 40px 80px; text-align: center; overflow: hidden; }
.closing-wordmark__text { font-family: 'Noto Sans', sans-serif; font-weight: 900; font-size: clamp(48px, 10vw, 140px); letter-spacing: 0.02em; text-transform: uppercase; color: rgba(255,255,255,0.06); white-space: nowrap; display: block; user-select: none; }

/* ============================================================
   AOS
   ============================================================ */
[data-aos] { opacity: 0; transition-property: opacity, transform; transition-duration: 0.8s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1); }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-in"] { transform: none; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* UTILITY */
.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; }
.placeholder-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.placeholder-bg--results { background: linear-gradient(135deg, #0a0a0a 0%, #1a3a2a 70%, #c5a055 100%); }
.placeholder-bg--voice { background: linear-gradient(135deg, #1a3a2a 0%, #c5a055 50%, #1a3a2a 100%); }
.placeholder-bg--precision { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3530 100%); }
.placeholder-bg--contact { background: linear-gradient(135deg, #0a0a0a 0%, #1a2a3a 50%, #2a3a4a 100%); }
.placeholder-bg--process { background: linear-gradient(135deg, #1a3a2a 0%, #2a2520 100%); }
.placeholder-bg--road { background: linear-gradient(135deg, #2a2520 0%, #c5a055 60%, #d4b574 100%); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #f5f3ef; z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; overflow-y: auto; }
.mega-menu--open { opacity: 1; pointer-events: all; }
.mega-menu__close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border: 1px solid rgba(26,58,42,0.3); border-radius: 50%; background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #1a3a2a; transition: all 0.25s ease; z-index: 10; font-size: 18px; }
.mega-menu__close:hover { background: #1a3a2a; color: #fff; border-color: #1a3a2a; }
.mega-menu__inner { display: flex; flex-direction: column; max-width: 1200px; margin: 0 auto; padding: 80px 40px 60px; min-height: 100vh; }
.mega-menu__tabs { display: flex; gap: 32px; padding: 0 0 24px; border-bottom: 1px solid rgba(26,58,42,0.1); margin-bottom: 32px; }
.mega-menu__tab { font-family: var(--font-heading); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #545454; background: none; border: none; cursor: pointer; padding: 0 0 8px; border-bottom: 2px solid transparent; transition: all 0.2s ease; }
.mega-menu__tab--active { color: #1a3a2a; border-bottom-color: #c5a055; }
.mega-menu__body { display: flex; gap: 60px; flex: 1; }
.mega-menu__nav { flex: 0 0 340px; display: flex; flex-direction: column; gap: 8px; }
.mega-menu__link { display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-radius: 8px; text-decoration: none; transition: background 0.2s ease; color: inherit; }
.mega-menu__link:hover, .mega-menu__link--active { background: rgba(26,58,42,0.06); }
.mega-menu__link-image { width: 80px; height: 56px; border-radius: 4px; object-fit: cover; flex-shrink: 0; background: linear-gradient(135deg, #1a3a2a 0%, #2a2520 100%); }
.mega-menu__link-text { display: flex; flex-direction: column; gap: 2px; }
.mega-menu__link-title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: #1a3a2a; line-height: 1.2; }
.mega-menu__link-desc { font-family: var(--font-body); font-size: 13px; color: #545454; line-height: 1.4; }
.mega-menu__featured { flex: 1; position: relative; border-radius: 8px; overflow: hidden; min-height: 400px; }
.mega-menu__featured-image { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: opacity 0.4s ease; }
.mega-menu__featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%); }
.mega-menu__featured-text { position: absolute; bottom: 40px; left: 40px; right: 40px; color: #fff; font-family: var(--font-body); font-size: 18px; line-height: 1.6; z-index: 2; }
.mega-menu__panel { display: none; }
.mega-menu__panel--active { display: flex; gap: 60px; flex: 1; }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero { position: relative; height: 50vh; min-height: 340px; max-height: 500px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-hero--short { height: 35vh; min-height: 280px; max-height: 400px; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 100%); }
.page-hero__bg--gradient { background: linear-gradient(135deg, #0a0a0a 0%, #1a3a2a 60%, #2a2520 100%); }
.page-hero__content { position: relative; z-index: 2; max-width: 640px; padding: 0 24px; }
.page-hero__label { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #c5a055; margin-bottom: 12px; }
.page-hero__title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px, 5vw, 52px); color: #ffffff; margin: 0 0 12px; line-height: 1.1; }
.page-hero__subtitle { font-family: var(--font-body); font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.85); margin: 0; line-height: 1.6; }

/* ============================================================
   INNER PAGE CONTENT SECTIONS
   ============================================================ */
.content-section { background: #f5f3ef; padding: 80px 24px; }
.content-section--dark { background: #1a3a2a; color: #fff; }
.content-section__inner { max-width: 680px; margin: 0 auto; }
.content-section__inner--wide { max-width: 860px; }
.content-section p { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #111; margin: 0 0 16px; }
.content-section--dark p { color: rgba(255,255,255,0.85); }
.content-section p:last-child { margin-bottom: 0; }
.content-section h3 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(22px, 2.5vw, 28px); color: #1a3a2a; margin: 0 0 16px; line-height: 1.2; }
.content-section--dark h3 { color: #fff; }
.content-link a { color: #1a3a2a; text-decoration: underline; text-underline-offset: 3px; }
.content-link a:hover { color: #c5a055; }
.content-section--dark .content-link a { color: #c5a055; }

/* Gold Rule */
.gold-rule { border: none; height: 1px; background: linear-gradient(90deg, transparent, #c5a055, transparent); margin: 0; }

/* Full-bleed Image Break */
.image-break { width: 100%; height: 35vh; min-height: 200px; max-height: 400px; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-break--gradient { background: linear-gradient(135deg, #1a3a2a 0%, #0a0a0a 50%, #2a2520 100%); }

/* Emphasis Section (dark green band) */
.emphasis-section { background: #1a3a2a; padding: 80px 24px; text-align: center; }
.emphasis-section__text { max-width: 700px; margin: 0 auto; font-family: var(--font-heading); font-weight: 700; font-size: clamp(20px, 2.5vw, 26px); line-height: 1.6; color: rgba(255,255,255,0.9); }

/* Pull Quote */
.pull-quote { background: #f5f3ef; padding: 60px 24px; text-align: center; }
.pull-quote__text { max-width: 760px; margin: 0 auto; font-family: var(--font-body); font-style: italic; font-size: clamp(22px, 3vw, 30px); line-height: 1.5; color: #1a3a2a; }

/* ============================================================
   TIMELINE (How It Works)
   ============================================================ */
.timeline-section { background: #f5f3ef; padding: 80px 24px; }
.timeline-section__inner { max-width: 860px; margin: 0 auto; }
.timeline-entry { display: grid; grid-template-columns: 140px 1fr; gap: 40px; padding: 48px 0; border-bottom: 1px solid rgba(26,58,42,0.08); }
.timeline-entry:last-child { border-bottom: none; }
.timeline-entry__marker { display: flex; flex-direction: column; gap: 4px; padding-top: 6px; }
.timeline-entry__week { font-family: var(--font-heading); font-weight: 900; font-size: 14px; color: #1a3a2a; text-transform: uppercase; letter-spacing: 0.05em; }
.timeline-entry__label { font-family: var(--font-body); font-size: 13px; color: #c5a055; font-style: italic; }
.timeline-entry__content h3 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(22px, 2.5vw, 28px); color: #1a3a2a; margin: 0 0 16px; line-height: 1.2; }
.timeline-entry__content p { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #111; margin: 0 0 16px; }
.timeline-entry__content p:last-child { margin-bottom: 0; }

/* ============================================================
   SERVICE INDICATOR (Services page)
   ============================================================ */
.service-indicator { position: fixed; left: 40px; top: 50%; transform: translateY(-50%); z-index: 50; display: none; }
.service-indicator__current { font-family: var(--font-heading); font-weight: 900; font-size: 24px; color: #1a3a2a; }
.service-indicator__divider { width: 1px; height: 20px; background: rgba(26,58,42,0.2); }
.service-indicator__total { font-family: var(--font-body); font-size: 14px; color: #545454; }

/* Service Section */
.service-section { background: #f5f3ef; padding: 80px 24px; }
.service-section__inner { max-width: 680px; margin: 0 auto; }
.service-section__number { font-family: var(--font-heading); font-weight: 900; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: #c5a055; margin-bottom: 12px; display: block; }
.service-section__title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(28px, 3.5vw, 38px); color: #1a3a2a; margin: 0 0 24px; line-height: 1.1; }
.service-section p { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #111; margin: 0 0 16px; }
.service-section p:last-child { margin-bottom: 0; }

/* ============================================================
   METRICS DISPLAY (Results page)
   ============================================================ */
.metrics-section { background: #f5f3ef; padding: 100px 24px; text-align: center; }
.metrics-section__inner { max-width: 680px; margin: 0 auto; }
.metric-item { padding: 40px 0; border-bottom: 1px solid rgba(26,58,42,0.06); }
.metric-item:last-child { border-bottom: none; }
.metric-item__number { font-family: var(--font-heading); font-weight: 900; font-size: clamp(48px, 8vw, 72px); color: #1a3a2a; line-height: 1; margin: 0 0 8px; }
.metric-item__label { font-family: var(--font-body); font-size: 16px; color: #545454; margin: 0; line-height: 1.5; }

/* Case Study */
.case-study { background: #f5f3ef; padding: 60px 24px; }
.case-study__inner { max-width: 680px; margin: 0 auto; }
.case-study p { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #111; margin: 0 0 16px; }
.case-study p:last-child { margin-bottom: 0; }

/* Dashboard embed */
.dashboard-embed { background: #f5f3ef; padding: 60px 24px; text-align: center; }
.dashboard-embed__inner { max-width: 900px; margin: 0 auto; }
.dashboard-embed__intro { font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #111; margin: 0 0 32px; max-width: 680px; margin-left: auto; margin-right: auto; }
.dashboard-embed__frame { width: 100%; border: 1px solid rgba(26,58,42,0.1); border-radius: 8px; overflow: hidden; background: #fff; }

/* ============================================================
   ARTICLE INDEX (Intelligence Hub)
   ============================================================ */
.article-index { max-width: 800px; margin: 0 auto; }
.article-row { display: grid; grid-template-columns: 120px 1fr; grid-template-rows: auto auto; gap: 4px 24px; padding: 32px 0; border-bottom: 1px solid rgba(26,58,42,0.08); text-decoration: none; transition: background 0.2s ease; color: inherit; }
.article-row:hover { background: rgba(26,58,42,0.02); }
.article-row__date { grid-row: 1 / 3; font-family: var(--font-body); font-size: 13px; color: #545454; padding-top: 4px; }
.article-row__title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: #1a3a2a; margin: 0; line-height: 1.3; }
.article-row__excerpt { font-family: var(--font-body); font-size: 14px; color: #545454; margin: 0; line-height: 1.5; }

/* ============================================================
   CALENDAR EMBED (Contact page)
   ============================================================ */
.calendar-section { background: #f5f3ef; padding: 60px 24px; text-align: center; }
.calendar-section__intro { max-width: 600px; margin: 0 auto 32px; font-family: var(--font-body); font-size: 16px; line-height: 1.8; color: #111; }
.calendar-section__embed { max-width: 700px; margin: 0 auto; min-height: 600px; }
.contact-alt { max-width: 600px; margin: 0 auto; text-align: center; font-family: var(--font-body); font-size: 15px; line-height: 1.8; color: #545454; }
.contact-alt a { color: #1a3a2a; text-decoration: underline; text-underline-offset: 3px; }
.contact-alt a:hover { color: #c5a055; }

/* Gold timeline entry variant */
.timeline-entry--gold .timeline-entry__week { color: #c5a055; }
.timeline-entry--gold .timeline-entry__content h3 { color: #c5a055; }

/* Enquiry Form */
.enquiry-form__heading { font-family: var(--font-heading); font-weight: 900; font-size: 20px; color: #1a3a2a; margin: 0 0 24px; text-align: center; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 700; color: #1a3a2a; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-field input, .form-field textarea { width: 100%; padding: 12px 16px; font-family: var(--font-body); font-size: 15px; color: #111; background: #ffffff; border: 1px solid rgba(26,58,42,0.15); border-radius: 6px; transition: border-color 0.2s ease; outline: none; box-sizing: border-box; }
.form-field input:focus, .form-field textarea:focus { border-color: #1a3a2a; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { display: block; width: 100%; padding: 14px 24px; font-family: var(--font-heading); font-weight: 700; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; color: #ffffff; background: #1a3a2a; border: none; border-radius: 24px; cursor: pointer; transition: background 0.25s ease; }
.form-submit:hover { background: #0f2419; }
.form-submit:disabled { background: #545454; cursor: not-allowed; }
.form-success { text-align: center; font-family: var(--font-body); font-size: 16px; color: #1a3a2a; padding: 24px; background: rgba(26,58,42,0.05); border-radius: 8px; margin-top: 24px; }
.form-error { text-align: center; font-family: var(--font-body); font-size: 14px; color: #a04040; margin-top: 12px; }

/* ============================================================
   RESPONSIVE - 768px
   ============================================================ */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header .btn--outline-gold { display: none; }
  .nav-services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .proof-grid__grid { grid-template-columns: 1fr; gap: 0; }
  .proof-cell { min-height: 0; aspect-ratio: 1 / 1; }
  .proof-cell__card-image-wrap { height: 180px; }
  .proof-cell__card { width: min(calc(100% - 40px), 384px); }
  .cta-bar { min-height: 50vh; }
  .cta-bar__heading { font-size: clamp(1.75rem, 6vw, 2rem); }
  .side-by-side { grid-template-columns: 1fr; min-height: auto; }
  .side-by-side--reverse { direction: ltr; }
  .side-by-side__image { aspect-ratio: 16/9; }
  .side-by-side__content { padding: var(--section-spacer-md) 2rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; gap: 20px; }
  .navigation-tray__nav { flex-wrap: wrap; gap: 0; }
  .mega-menu__inner { padding: 80px 20px 40px; }
  .mega-menu__panel--active { flex-direction: column; gap: 24px; }
  .mega-menu__nav { flex: none; width: 100%; }
  .mega-menu__featured { display: none; }
  .mega-menu__link-image { width: 60px; height: 42px; }
  .mega-menu__tabs { gap: 16px; }
  .timeline-entry { grid-template-columns: 1fr; gap: 16px; }
  .timeline-entry__marker { flex-direction: row; gap: 12px; align-items: baseline; }
  .article-row { grid-template-columns: 1fr; }
  .article-row__date { grid-row: auto; }
  .content-section { padding: 60px 20px; }
  .emphasis-section { padding: 60px 20px; }
  .pull-quote { padding: 40px 20px; }
  .service-section { padding: 60px 20px; }
  .metrics-section { padding: 60px 20px; }
}

@media (min-width: 1200px) {
  .service-indicator { display: flex; flex-direction: column; align-items: center; gap: 4px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }
  .hero__subheadline { font-size: 0.9375rem; }
  .header { padding: 1rem 1.25rem; }
  .header--sticky { padding: 0.625rem 1.25rem; }
  .footer__links { grid-template-columns: 1fr; }
}

@media (max-width: 1279px) {
  .iconics-main__title { font-size: 28px; }
}

@media (max-width: 1024px) {
  /* Iconics mobile: horizontal service rows below main slide */
  .iconics-slider { height: auto; max-height: none; min-height: 0; display: flex; flex-direction: column; }
  .iconics-main { position: relative; inset: auto; height: 65vh; min-height: 380px; max-height: 550px; }
  .iconics-main__content { top: auto; bottom: 40px; left: 50%; transform: translateX(-50%); width: 90%; text-align: center; }
  .iconics-strips { position: relative; right: auto; top: auto; bottom: auto; width: 100%; height: auto; padding: 0; display: block; }
  .iconics-strips__container { display: flex; flex-direction: column; gap: 0; height: auto; width: 100%; }
  .iconics-strip { flex: none; height: 50px; border-radius: 0; display: flex; align-items: center; position: relative; overflow: hidden; transition: none; opacity: 1; transform: none; }
  .iconics-strip__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .iconics-strip__overlay { position: absolute; inset: 0; transition: opacity 0.3s ease; }
  .iconics-strip[data-strip="0"] .iconics-strip__overlay { background: rgba(26, 58, 42, 0.85); }
  .iconics-strip[data-strip="1"] .iconics-strip__overlay { background: rgba(197, 160, 85, 0.75); }
  .iconics-strip[data-strip="2"] .iconics-strip__overlay { background: rgba(26, 58, 42, 0.7); }
  .iconics-strip[data-strip="3"] .iconics-strip__overlay { background: rgba(60, 51, 41, 0.75); }
  .iconics-strip[data-strip="4"] .iconics-strip__overlay { background: rgba(100, 80, 50, 0.65); }
  .iconics-strip[data-strip="5"] .iconics-strip__overlay { background: rgba(26, 58, 42, 0.8); }
  .iconics-strip__label { position: relative; top: auto; left: auto; transform: none; display: flex; align-items: center; gap: 12px; padding: 0 20px; width: 100%; text-align: left; z-index: 2; }
  .iconics-strip__icon { width: 28px; height: 28px; margin: 0; flex-shrink: 0; }
  .iconics-strip__name { font-variant: small-caps; text-transform: lowercase; font-size: 14px; letter-spacing: 0.05em; color: rgba(255,255,255,0.85); }
  .iconics-strip--active { height: 54px; }
  .iconics-strip--active .iconics-strip__overlay { opacity: 0.65; }
  .iconics-strip--active .iconics-strip__name { color: #fff; font-weight: 900; }
  .iconics-controls { display: none; }
}

/* ============================================================
   PLACEHOLDER GRADIENTS (pre-launch)
   Replace with real images post-launch. Find all data-replace
   attributes in HTML to locate swap points.
   ============================================================ */

/* Hero video (homepage) */
.hero__video-wrap {
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2419 50%, #1a3a2a 100%);
}
.hero__video-wrap video { opacity: 0; }

/* Page heroes (inner pages) */
.page-hero__bg {
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2419 50%, #1a3a2a 100%);
}

/* Iconics slider — each slide unique */
.iconics-main__slide[data-slide="0"] {
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2419 40%, #1a3a2a 100%);
}
.iconics-main__slide[data-slide="1"] {
  background: linear-gradient(160deg, #111111 0%, #1a3a2a 50%, #1e1c16 100%);
}
.iconics-main__slide[data-slide="2"] {
  background: linear-gradient(180deg, #1a1a1a 0%, #252520 40%, #111111 100%);
}
.iconics-main__slide[data-slide="3"] {
  background: linear-gradient(120deg, #1a3a2a 0%, #0a0a0a 100%);
}
.iconics-main__slide[data-slide="4"] {
  background: linear-gradient(200deg, #1a3a2a 0%, #2a302a 40%, #1a1a1a 100%);
}
.iconics-main__slide[data-slide="5"] {
  background: linear-gradient(150deg, #2a2a2a 0%, #1e2e26 50%, #1a1a1a 100%);
}
.iconics-main__image[src^="data:"] { opacity: 0; }

/* Proof grid cells */
.proof-cell {
  background: linear-gradient(145deg, #1a3a2a 0%, #2a4a3a 40%, #111111 100%);
}
.proof-cell__card-image-wrap {
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2419 100%);
}

/* CTA bar background */
.cta-bar__bg {
  background: linear-gradient(160deg, #111111 0%, #1a3a2a 60%, #0a1f14 100%);
}

/* Image break sections */
.image-break {
  background: linear-gradient(145deg, #1a3a2a 0%, #2a4a3a 40%, #111111 100%);
}
.image-break img[src^="data:"] { opacity: 0; }

/* Mega menu thumbnails */
.mega-menu__link-image[src^="data:"] {
  background: linear-gradient(135deg, #1a3a2a, #0f2419);
  min-width: 56px;
  min-height: 56px;
  border-radius: 4px;
  opacity: 1;
}

/* Mega menu featured panel */
.mega-menu__featured {
  background: linear-gradient(160deg, #111111 0%, #1a3a2a 100%);
}
.mega-menu__featured-image[src^="data:"] { opacity: 0; }

/* ============================================================
   MOBILE: SIDE-BY-SIDE PANELS (inline-styled overrides)
   ============================================================ */
@media (max-width: 768px) {
  /* Editorial panels - mobile (BC floating card pattern) */
  div.side-by-side[style] {
    min-height: auto !important;
    height: auto !important;
    margin-top: 40px !important;
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
  }
  div.side-by-side[style] > div[data-replace] {
    position: relative !important;
    width: 100% !important;
    height: 320px !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    border-radius: 0 !important;
    order: 1 !important;
  }
  div.side-by-side[style] > div[data-aos] {
    position: relative !important;
    width: 88% !important;
    max-width: 380px !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: -60px auto 0 auto !important;
    padding: 32px 28px !important;
    background: #faf8f2 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    z-index: 2 !important;
    order: 2 !important;
    text-align: center !important;
    transform: none !important;
  }
  div.side-by-side[style] > div[data-aos] h2 {
    color: #1a3a2a !important;
    font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
  }
  div.side-by-side[style] > div[data-aos] p {
    color: #333 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
  }
}

/* ============================================================
   ICONICS: ACTIVE STRIP STATE (desktop)
   ============================================================ */
.iconics-strip--active .iconics-strip__overlay { background: rgba(0,0,0,0.25); }

/* ============================================================
   INNER HERO (page-template)
   ============================================================ */
.inner-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  max-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 60px;
  overflow: hidden;
}
.inner-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.inner-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%);
}
.inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.inner-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}
.inner-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}

/* ============================================================
   INNER CONTENT + PROSE + CREAM
   ============================================================ */
.inner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.prose-section {
  padding: 80px 0;
}
.prose-section p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
  max-width: 720px;
  margin-bottom: 1.5em;
}
.prose-section h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #1a3a2a;
  margin: 0 0 24px;
  line-height: 1.2;
}
.prose-section h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #1a3a2a;
  margin: 0 0 16px;
  line-height: 1.3;
}
.cream-section {
  background: #faf8f2;
  padding: 80px 5vw;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left { transform: translateX(-30px); }
.reveal--left.reveal--visible { transform: translateX(0); }
.reveal--right { transform: translateX(30px); }
.reveal--right.reveal--visible { transform: translateX(0); }
.reveal--scale { transform: scale(0.95); }
.reveal--scale.reveal--visible { transform: scale(1); }

/* ============================================================
   RESPONSIVE: INNER PAGE + REVEAL
   ============================================================ */
@media (max-width: 768px) {
  .inner-hero { height: 40vh; min-height: 300px; padding-bottom: 40px; }
  .prose-section { padding: 50px 0; }
  .cream-section { padding: 50px 5vw; }
}
