/* ============================================
   CIELO HOUSE — Design System
   Premium Event & Brand Activation Agency
   ============================================ */

/* --- Google Fonts Import (fallback — primary fonts loaded via fonts.css) --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-primary: #2B317B;
  --color-secondary: #668DC6;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F5F5;
  --color-text: #1A1A1A;
  --color-text-light: #555555;
  /* Legacy aliases — kept so existing references still resolve */
  --color-midnight: #2B317B;
  --color-navy: #2B317B;
  --color-gold: #668DC6;
  --color-gold-light: #86A8D6;
  --color-gold-dark: #4A6FAA;
  --color-white: #FFFFFF;
  --color-off-white: #F5F5F5;
  --color-light-grey: #EBEBEB;
  --color-mid-grey: #888888;
  --color-dark-grey: #444444;

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.75rem;
  --text-6xl: 5rem;
  --text-7xl: 6.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* Layout */
  --max-width: 1440px;
  --container: 1280px;
  --container-narrow: 860px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;
  --duration-slower: 900ms;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(43, 49, 123, 0.08);
  --shadow-md: 0 4px 20px rgba(43, 49, 123, 0.10);
  --shadow-lg: 0 12px 48px rgba(43, 49, 123, 0.14);
  --shadow-xl: 0 24px 80px rgba(43, 49, 123, 0.18);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

h1 { font-size: clamp(var(--text-3xl), 5.2vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.6vw, var(--text-3xl)); }
h4 { font-size: clamp(var(--text-lg), 1.8vw, var(--text-2xl)); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-light);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-32);
}

.section--sm {
  padding-block: var(--space-20);
}

.section--lg {
  padding-block: var(--space-40);
}

.section--dark {
  background-color: var(--color-midnight);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section--off-white {
  background-color: var(--color-off-white);
}

.section--gold {
  background-color: var(--color-gold);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-8);
}

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

/* Flex */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap-4 { gap: var(--space-4); }
.flex--gap-6 { gap: var(--space-6); }
.flex--gap-8 { gap: var(--space-8); }

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Eyebrow labels */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-4);
}

.eyebrow--light {
  color: rgba(102, 141, 198, 0.85);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-primary);
  padding-block: var(--space-4);
  transition: background-color 0.35s ease,
              box-shadow 0.35s ease;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(43, 49, 123, 0.12);
  padding-block: var(--space-4);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 10;
  line-height: 0;
}

/* Logo — two files: white version on blue nav, blue version on white nav */
.nav__logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav__logo-img--scrolled {
  display: none;
}

.nav.scrolled .nav__logo-img--default {
  display: none;
}

.nav.scrolled .nav__logo-img--scrolled {
  display: block;
  height: 72px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--color-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: rgba(255, 255, 255, 0.75);
}

.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--color-secondary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-4));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background-color: var(--color-white);
  border: 1px solid rgba(43, 49, 123, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              visibility var(--duration-base);
  box-shadow: var(--shadow-xl);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background-color var(--duration-fast);
}

.nav__dropdown-link:hover {
  color: var(--color-primary);
  background-color: rgba(102, 141, 198, 0.10);
}

.nav__cta {
  margin-left: var(--space-4);
}

/* On blue nav: white outline button */
.nav__cta .btn--primary {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.nav__cta .btn--primary:hover {
  background-color: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}

/* On white scrolled nav: solid primary button */
.nav.scrolled .nav__cta .btn--primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.nav.scrolled .nav__cta .btn--primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 10;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background-color: #ffffff;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
}

.nav.scrolled .nav__hamburger span {
  background-color: var(--color-primary);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-midnight);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-out);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-white);
  transition: color var(--duration-fast);
}

.nav__mobile-link:hover {
  color: var(--color-gold);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(43, 49, 123, 0.35);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

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

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

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

.btn--outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn--outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-midnight);
  transform: translateY(-2px);
}

.btn--lg {
  padding: var(--space-6) var(--space-12);
  font-size: var(--text-base);
}

.btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Text Link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  transition: gap var(--duration-fast) var(--ease-out);
}

.link-arrow:hover {
  gap: var(--space-4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--color-midnight);
  overflow: hidden;
}

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

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

/* Video hero background */
.hero__bg--video {
  overflow: hidden;
}

.hero__bg--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  border: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 49, 123, 0.95) 0%,
    rgba(43, 49, 123, 0.40) 50%,
    rgba(43, 49, 123, 0.20) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: var(--space-32);
  padding-top: 120px;
}

.hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-6);
  padding: 0.6rem 1.15rem;
  background-color: rgba(18, 20, 48, 0.8);
  border: 1px solid rgba(134, 168, 214, 0.3);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-white);
  white-space: nowrap;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}
@media (max-width: 600px) {
  .hero__title {
    white-space: normal;
    max-width: 90vw;
  }
}

.hero__title em {
  font-style: italic;
  color: #86A8D6;
  text-shadow: none;
}

/* ── Global: italic <em> inside Bebas Neue headings ──
   Light/white background  → darker accent blue
   Dark/navy background    → lighter accent blue
   Medium blue (CTA band)  → lightest blue / near-white
────────────────────────────────────────────────────── */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: #4A6FAA;        /* dark enough on white/light backgrounds */
}

.section--dark h1 em,
.section--dark h2 em,
.section--dark h3 em,
.events-calendar h1 em,
.events-calendar h2 em,
.footer h2 em {
  color: #86A8D6;        /* lighter blue — readable on navy */
}

.cta-section h1 em,
.cta-section h2 em,
.cta-section h3 em {
  color: #2B317B;
}

.hero__description {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 44ch;
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-12);
  right: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(102, 141, 198, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 0.2; }
}

/* ============================================
   TRUST BAR / CLIENTS
   ============================================ */

.trust-bar {
  padding-top: var(--space-16);
  padding-bottom: var(--space-32);
  border-top: 1px solid rgba(102, 141, 198, 0.18);
  border-bottom: 1px solid rgba(102, 141, 198, 0.18);
  background-color: var(--color-primary);
}

.trust-bar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.trust-bar__label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-12);
}

.trust-bar__logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 1rem;
  row-gap: 3.5rem;
  align-items: center;
  justify-items: center;
}

.trust-bar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 88px;
}

.trust-bar__logo img {
  max-width: 92%;
  max-height: 88px;
  width: auto;
  height: auto;
  transition: transform var(--duration-base) var(--ease-out);
}

.trust-bar__logo:hover img {
  transform: scale(1.07);
}

@media (max-width: 1024px) {
  .trust-bar__logos { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 768px) {
  .trust-bar__logos { grid-template-columns: repeat(4, 1fr); }
  .trust-bar__logo { height: 74px; }
  .trust-bar__logo img { max-height: 74px; }
}

@media (max-width: 480px) {
  .trust-bar__logos { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: var(--space-16);
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header__title {
  margin-bottom: var(--space-6);
}

.section-header__lead {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
}

.service-card {
  position: relative;
  background-color: var(--color-off-white);
  padding: var(--space-12);
  overflow: hidden;
  transition: background-color var(--duration-base) var(--ease-out);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--duration-slow) var(--ease-out);
}

.service-card:hover {
  background-color: var(--color-light-grey);
}

.service-card:hover::before {
  width: 100%;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: rgba(102, 141, 198, 0.30);
  margin-bottom: var(--space-6);
  display: block;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-6);
  color: var(--color-gold);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-midnight);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.service-card__text {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

.service-card__link {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-card:hover .service-card__link {
  gap: var(--space-4);
}

/* ============================================
   FEATURED WORK
   ============================================ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 900px;
  margin: 0 auto;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-midnight);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.work-card--large {
  grid-column: span 2;
}

.work-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/7;
}

.work-card--large .work-card__img-wrap {
  aspect-ratio: 16/7;
}

.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.work-card:hover .work-card__img {
  filter: grayscale(40%) contrast(1.05);
  transform: scale(1.03);
}

.work-card__content {
  background: #2B317B;
  padding: 1.25rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
}

.work-card__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #668DC6;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.work-card__meta {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
}

.work-card__arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(43, 49, 123, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.work-card:hover .work-card__arrow {
  opacity: 1;
  transform: translateY(0);
  background: #668DC6;
  border-color: #668DC6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  background-color: var(--color-midnight);
  padding-block: var(--space-32);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-20);
}

.process__step {
  padding: var(--space-12) var(--space-12);
  position: relative;
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  color: rgba(102, 141, 198, 0.20);
  line-height: 1;
  margin-bottom: var(--space-12);
  display: block;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.process__step-text {
  font-size: var(--text-sm);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   STATS / NUMBERS
   ============================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
}

.stat {
  padding: var(--space-12) var(--space-8);
  text-align: center;
  border-right: 1px solid rgba(102, 141, 198, 0.18);
}

.stat:last-child {
  border-right: none;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 400;
  color: #668DC6;
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-3);
  letter-spacing: 0.05em;
  display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  overflow: hidden;
  padding-block: var(--space-32);
}

.testimonial-track {
  display: flex;
  gap: var(--space-6);
  transition: transform var(--duration-slow) var(--ease-in-out);
}

.testimonial-card {
  flex: 0 0 calc(50% - var(--space-3));
  background-color: var(--color-off-white);
  padding: var(--space-12);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--color-gold);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
  margin-bottom: var(--space-8);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-midnight);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-midnight);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-mid-grey);
  margin-top: 2px;
}

.testimonial-nav {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  justify-content: center;
}

.testimonial-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(43, 49, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.testimonial-nav__btn:hover,
.testimonial-nav__btn.active {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-midnight);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  position: relative;
  background-color: #668DC6;
  padding-block: var(--space-32);
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  display: none;
}

.cta-section__eyebrow {
  margin-bottom: var(--space-6);
  color: #2B317B;
}

.cta-section__title {
  color: #ffffff;
  white-space: nowrap;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}
@media (max-width: 700px) {
  .cta-section__title {
    white-space: normal;
    max-width: 92vw;
  }
}

.cta-section__text {
  font-size: var(--text-lg);
  color: rgba(43, 49, 123, 0.85);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

/* CTA primary button: white outline by default, dark fill on hover */
.cta-section .btn--primary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-section .btn--primary:hover {
  background-color: #2B317B;
  border-color: #2B317B;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(43, 49, 123, 0.35);
}

.cta-section .btn--secondary {
  color: #2B317B;
  border-color: rgba(43, 49, 123, 0.35);
}

.cta-section .btn--secondary:hover {
  background-color: rgba(43, 49, 123, 0.1);
  border-color: #2B317B;
}

.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* CTA section — blue variant (About page) */
.cta-section--blue {
  background-color: #668DC6;
}

.cta-section--blue::before {
  display: none;
}

.cta-section--blue .cta-section__eyebrow {
  color: #2B317B;
}

.cta-section--blue .cta-section__title {
  color: #ffffff;
}

.cta-section--blue .cta-section__text {
  color: rgba(43, 49, 123, 0.8);
}

/* Button: white stroke by default, fills dark on hover */
.cta-section--blue .btn--primary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  border-width: 2px;
}

.cta-section--blue .btn--primary:hover {
  background-color: #2B317B;
  border-color: #2B317B;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(43, 49, 123, 0.35);
}

/* ============================================
   BLOG / INSIGHTS
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-light-grey);
  margin-bottom: var(--space-6);
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-midnight);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  transition: color var(--duration-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--color-gold-dark);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.blog-card__meta {
  font-size: var(--text-xs);
  color: var(--color-mid-grey);
}

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

.footer {
  background-color: var(--color-midnight);
  color: var(--color-white);
  padding-top: var(--space-24);
}

.footer__top {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-8);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo-img {
  height: 180px;
  width: auto;
  display: block;
  margin-bottom: var(--space-4);
}

.footer__logo {
  height: 180px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-gold);
  margin-top: var(--space-8);
  margin-bottom: var(--space-6);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.footer__contact-icon-wrap {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__contact-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-8);
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.30);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-link {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.30);
  transition: color var(--duration-fast);
}

.footer__bottom-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

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

.about-hero h1,
.about-hero h2,
.about-hero h3 {
  color: var(--color-white);
}

.about-hero {
  min-height: 70vh;
  background-color: var(--color-midnight);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: var(--space-24);
  padding-top: 120px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about-split__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.about-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__img-badge {
  position: absolute;
  bottom: var(--space-8);
  right: calc(-1 * var(--space-8));
  background-color: var(--color-primary);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-md);
  text-align: center;
}

.about-split__img-badge-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--color-white);
  display: block;
  line-height: 1;
}

.about-split__img-badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.team-card {
  text-align: center;
}

.team-card__img {
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-light-grey);
  margin-bottom: var(--space-4);
  position: relative;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--duration-base) var(--ease-out);
}

.team-card:hover .team-card__img img {
  filter: grayscale(0%);
}

/* Two-photo hover swap */
.team-card__img--hover {
  position: relative;
}

.team-card__img--hover .team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease;
}

.team-card__img--hover .team-photo--primary {
  opacity: 1;
}

.team-card__img--hover .team-photo--hover {
  opacity: 0;
}

.team-card:hover .team-card__img--hover .team-photo--primary {
  opacity: 0;
}

.team-card:hover .team-card__img--hover .team-photo--hover {
  opacity: 1;
  filter: grayscale(0%);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-midnight);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-top: var(--space-1);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark-grey);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-off-white);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: var(--color-white);
}

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

.contact-info {
  padding-top: var(--space-8);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-light-grey);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(102, 141, 198, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mid-grey);
  margin-bottom: var(--space-2);
}

.contact-info__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-midnight);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

/* ── Page Hero — two-column: text left / video right ── */
.page-hero {
  background-color: var(--color-midnight);
  display: grid;
  grid-template-columns: 56fr 44fr;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 160px;
  padding-bottom: var(--space-20);
  padding-left: max(var(--space-8), calc((100vw - var(--container)) / 2 + var(--space-8)));
  padding-right: var(--space-12);
}

.page-hero__video-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.page-hero__video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Left shadow — blends video into the midnight background */
.page-hero__video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-midnight) 0%,
    rgba(43, 49, 123, 0.7) 30%,
    rgba(43, 49, 123, 0.15) 60%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Subtle dark overlay across whole video */
.page-hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 40, 0.25);
  z-index: 0;
  pointer-events: none;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-4);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration-fast);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-gold);
}

.page-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.page-hero__title {
  color: var(--color-white);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 22ch;
  margin-bottom: var(--space-6);
}

.page-hero__lead {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.62);
  max-width: 52ch;
  line-height: 1.75;
}

/* Responsive — stack on mobile */
@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero__inner {
    padding-top: 140px;
    padding-bottom: var(--space-12);
    padding-right: var(--space-8);
  }
  .page-hero__video-wrap {
    height: 46vw;
    min-height: 260px;
  }
  .page-hero__video-wrap::before {
    background: linear-gradient(
      to bottom,
      var(--color-midnight) 0%,
      rgba(43, 49, 123, 0.4) 40%,
      transparent 100%
    );
  }
  .page-hero__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    max-width: 24ch;
  }
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */

.service-detail__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.feature-item {
  padding: var(--space-8);
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  border-top: 2px solid var(--color-gold);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.feature-item__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-midnight);
  margin-bottom: var(--space-3);
}

.feature-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 100ms; }
[data-animate-delay="2"] { transition-delay: 200ms; }
[data-animate-delay="3"] { transition-delay: 300ms; }
[data-animate-delay="4"] { transition-delay: 400ms; }
[data-animate-delay="5"] { transition-delay: 500ms; }

[data-animate="fade-left"] {
  transform: translateX(-24px);
}

[data-animate="fade-right"] {
  transform: translateX(24px);
}

[data-animate="fade-left"].animated,
[data-animate="fade-right"].animated {
  transform: translateX(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  display: block;
  margin-block: var(--space-6);
}

.divider--center {
  margin-inline: auto;
}

/* ============================================
   EVENT CALENDAR
   ============================================ */

/* Wrapper */
.events-calendar h1,
.events-calendar h2,
.events-calendar h3 {
  color: var(--color-white);
}

.events-calendar {
  background-color: var(--color-navy);
  position: relative;
}

/* What's On header */
.whats-on-header {
  text-align: center;
  padding: 3rem 2rem;
}

.whats-on-img {
  display: block;
  width: min(280px, 50%);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}

.whats-on-img.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whats-on-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-4);
}

.whats-on-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffffff;
  letter-spacing: normal;
  line-height: 1;
  margin-bottom: var(--space-5);
}

.whats-on-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: #668DC6;
  margin: 0 auto;
  border-radius: 2px;
}


/* Grid — adapts to 1, 2, 3, 4+ events */
.events-grid {
  display: grid;
  /* Default: auto-fill columns, min 280px each */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  /* When there are 1–4 events force exact columns for a cleaner layout */
}

/* 1 event → full width */
.events-grid[data-count="1"] {
  grid-template-columns: 1fr;
}

/* 2 events → 2 equal columns */
.events-grid[data-count="2"] {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 events → 3 equal columns */
.events-grid[data-count="3"] {
  grid-template-columns: repeat(3, 1fr);
}

/* 4 events → 2×2 grid */
.events-grid[data-count="4"] {
  grid-template-columns: repeat(2, 1fr);
}

/* 5+ events → 3 columns, last row fills naturally */
.events-grid[data-count="5"],
.events-grid[data-count="6"] {
  grid-template-columns: repeat(3, 1fr);
}

/* Event Card */
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default;
  min-height: 380px;
  text-decoration: none;
  outline-offset: -3px;
}

/* For single-event make it taller */
.events-grid[data-count="1"] .event-card {
  min-height: 500px;
}

.event-card__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-out);
  filter: grayscale(20%) brightness(0.65);
}

.event-card:hover .event-card__img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.5);
}

.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 49, 123, 0.92) 0%,
    rgba(43, 49, 123, 0.30) 55%,
    rgba(43, 49, 123, 0.05) 100%
  );
}

/* Body content sits above the image */
.event-card__body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.event-card__dates {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin-block: var(--space-2);
}

.event-card__location {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.event-card:hover .event-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Dividers between cards */
.event-card + .event-card {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */

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

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

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

  .stats .stat {
    border-right: none;
    border-bottom: 1px solid rgba(102, 141, 198, 0.18);
  }

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

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

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__img-badge {
    right: var(--space-4);
  }

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

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  /* Event calendar — tablet */
  .events-grid[data-count="3"],
  .events-grid[data-count="4"],
  .events-grid[data-count="5"],
  .events-grid[data-count="6"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */

@media (max-width: 768px) {
  :root {
    --space-32: 5rem;
    --space-40: 6rem;
  }

  .container {
    padding-inline: var(--space-6);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .work-card--large {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

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

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

  .testimonial-card {
    flex: 0 0 90%;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

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

  .service-detail__features {
    grid-template-columns: 1fr;
  }

  .trust-bar__logos {
    gap: var(--space-6);
  }

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

  .hero__scroll {
    display: none;
  }

  /* Event calendar — mobile: always single column */
  .events-grid,
  .events-grid[data-count="1"],
  .events-grid[data-count="2"],
  .events-grid[data-count="3"],
  .events-grid[data-count="4"],
  .events-grid[data-count="5"],
  .events-grid[data-count="6"] {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 300px;
  }

  .event-card + .event-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

/* ============================================
   PRINT
   ============================================ */

@media print {
  .nav, .footer, .cta-section { display: none; }
  body { font-size: 12pt; }
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */

/* ── Testimonial carousel ── */
.tcarousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.tcarousel__track {
  position: relative;
  min-height: 300px;
}

.tcarousel__card {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  padding: 3.5rem 4rem;
  background: #fff;
  box-shadow: 0 8px 48px rgba(43,49,123,0.10);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  border: 1px solid rgba(102,141,198,0.12);
}

.tcarousel__card.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.tcarousel__quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: #668DC6;
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  display: block;
}

.tcarousel__highlight {
  font-family: 'Bebas Neue', var(--font-display), sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  color: #668DC6;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-weight: 400;
}

.tcarousel__body {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-style: italic;
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 2rem;
}

.tcarousel__name {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #2B317B;
  padding-top: 1.25rem;
  border-top: 1.5px solid rgba(102,141,198,0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tcarousel__company {
  font-weight: 400;
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .tcarousel__card {
    padding: 2rem 1.75rem;
  }
  .tcarousel__highlight {
    font-size: 1.5rem;
  }
}

.tcarousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.tcarousel__btn {
  background: #fff;
  border: 1.5px solid #2B317B;
  color: #2B317B;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tcarousel__btn:hover:not(:disabled) {
  background: #2B317B;
  color: #fff;
}

.tcarousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.tcarousel__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.tcarousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.tcarousel__dot--active {
  background: #2B317B;
  transform: scale(1.3);
}


/* ============================================
   EMAIL SIGNUP
   ============================================ */

.email-signup__form input::placeholder {
  color: rgba(255,255,255,0.45);
}

.email-signup__form input:focus {
  border-color: #668DC6;
}


/* ============================================
   CONTACT WIDGET — Cielo AI Concierge
   ============================================ */

/* ── Trigger button — image-based chat tag ── */
.cw-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  /* Fixed container — both images share this exact size, no layout shift on swap */
  width: 234px;
  height: 72px;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), filter 0.2s ease;
  filter: drop-shadow(0 8px 24px rgba(43,49,123,0.32));
}

.cw-trigger:hover {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 14px 36px rgba(43,49,123,0.42));
}

.cw-trigger:focus-visible {
  outline: 3px solid #668DC6;
  outline-offset: 4px;
  border-radius: 50px;
}

/* Both images fill the fixed container — object-fit keeps them proportional */
.cw-tag {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.18s ease;
}

/* Default: show light-blue tag (for light sections) */
.cw-tag--on-light { opacity: 1; }
.cw-tag--on-dark  { opacity: 0; pointer-events: none; }

/* When over a dark/coloured section: swap to white tag */
.cw-trigger--on-dark .cw-tag--on-light { opacity: 0; pointer-events: none; }
.cw-trigger--on-dark .cw-tag--on-dark  { opacity: 1; pointer-events: auto; }

/* ── Overlay ── */
.cw-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8998;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.cw-overlay.cw-open { opacity: 1; }

/* ── Panel ── */
.cw-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 8999;
  width: 310px;
  max-width: calc(100vw - 2.5rem);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(43,49,123,0.22), 0 6px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.88) translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(.34,1.4,.64,1), opacity 0.22s ease;
}

.cw-panel.cw-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ── Views ── */
.cw-view { display: flex; flex-direction: column; }
.cw-view--chat { height: 460px; max-height: 68vh; }

/* ── Header ── */
.cw-header {
  background: linear-gradient(135deg, #2B317B 0%, #1a1f52 100%);
  padding: 1.2rem 1.25rem 1.15rem;
  position: relative;
  flex-shrink: 0;
}

.cw-header__img {
  display: block;
  height: 115px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.6rem;
}

.cw-header__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.18s;
}
.cw-header__close:hover { background: rgba(255,255,255,0.22); }
.cw-header__close:focus-visible { outline: 2px solid #668DC6; outline-offset: 2px; }

.cw-header__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.12rem;
  line-height: 1.1;
}

.cw-header__sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ── Body ── */
.cw-body { padding: 1.15rem 1.25rem 1.35rem; }

.cw-body__copy {
  font-size: 0.79rem;
  color: rgba(43,49,123,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.cw-actions { display: flex; flex-direction: column; gap: 0.55rem; }

.cw-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  outline: none;
}
.cw-btn:focus-visible { outline: 2px solid #668DC6; outline-offset: 2px; }
.cw-btn svg { flex-shrink: 0; }

.cw-btn--primary {
  background: #2B317B;
  color: #fff;
  box-shadow: 0 4px 16px rgba(43,49,123,0.28);
}
.cw-btn--primary:hover {
  background: #1e2460;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,49,123,0.36);
}

.cw-btn--secondary {
  background: #f5f7ff;
  color: #2B317B;
  border: 1.5px solid rgba(43,49,123,0.14);
}
.cw-btn--secondary:hover {
  background: #eef1fb;
  border-color: rgba(43,49,123,0.28);
  transform: translateY(-1px);
}

.cw-footer {
  text-align: center;
  font-size: 0.66rem;
  color: rgba(43,49,123,0.3);
  letter-spacing: 0.04em;
  margin-top: 0.9rem;
}

/* ── Chat header ── */
.cw-chat-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 0.9rem 0.75rem;
  background: linear-gradient(135deg, #2B317B 0%, #1a1f52 100%);
  flex-shrink: 0;
}

/* Back and close buttons float absolutely — they never affect centring */
.cw-chat-back {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.18s;
  z-index: 1;
}
.cw-chat-back:hover { background: rgba(255,255,255,0.22); }
.cw-chat-back:focus-visible { outline: 2px solid #668DC6; outline-offset: 2px; }

/* Override the shared close button position for the chat header specifically */
.cw-chat-header .cw-header__close {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  z-index: 1;
}

.cw-chat-header__center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  padding: 0 2.5rem; /* clear of the two absolute buttons */
}

.cw-chat-header__img {
  display: block;
  height: 66px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin: 0 auto;
}

.cw-chat-header__status {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.58);
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.cw-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,0.7);
  display: inline-block;
}

/* ── Messages ── */
.cw-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem 0.9rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scroll-behavior: smooth;
}
.cw-messages::-webkit-scrollbar { width: 3px; }
.cw-messages::-webkit-scrollbar-thumb { background: rgba(43,49,123,0.13); border-radius: 4px; }

.cw-msg { display: flex; align-items: flex-end; gap: 0.45rem; max-width: 100%; }
.cw-msg--user { flex-direction: row-reverse; }

.cw-msg__avatar {
  width: 52px;
  height: 52px;
  border-radius: 0;
  overflow: visible;
  border: none;
  flex-shrink: 0;
}
.cw-msg__avatar img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.cw-msg__bubble {
  max-width: 78%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.55;
  word-break: break-word;
}
.cw-msg--agent .cw-msg__bubble { background: #f0f3fb; color: #2B317B; border-radius: 4px 14px 14px 14px; }
.cw-msg--user  .cw-msg__bubble { background: #2B317B; color: #fff; border-radius: 14px 4px 14px 14px; }

/* Typing dots */
/* ── Quick reply buttons ── */
.cw-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem 0 0.25rem 3.8rem;
}

.cw-quick-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  background: #fff;
  color: #2B317B;
  border: 1.5px solid rgba(43,49,123,0.25);
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  text-align: left;
  width: fit-content;
}

.cw-quick-btn:hover {
  background: #eef1fb;
  border-color: #2B317B;
  transform: translateY(-1px);
}

.cw-quick-btn:focus-visible { outline: 2px solid #668DC6; outline-offset: 2px; }

.cw-typing-dots { display: flex; align-items: center; gap: 4px; padding: 0.65rem 0.9rem; min-width: 50px; }
.cw-typing-dots span { width: 5px; height: 5px; border-radius: 50%; background: #668DC6; animation: cw-dot 1.2s infinite ease-in-out; }
.cw-typing-dots span:nth-child(1) { animation-delay: 0s; }
.cw-typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.cw-typing-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes cw-dot {
  0%, 80%, 100% { transform: scale(0.75); opacity: 0.4; }
  40%            { transform: scale(1.1);  opacity: 1; }
}

/* ── Input area ── */
.cw-input-area {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid rgba(43,49,123,0.07);
  background: #fff;
  flex-shrink: 0;
}

.cw-input {
  flex: 1;
  resize: none;
  border: 1.5px solid rgba(43,49,123,0.15);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: #2B317B;
  background: #f8f9ff;
  outline: none;
  line-height: 1.4;
  max-height: 90px;
  overflow-y: auto;
  transition: border-color 0.2s;
}
.cw-input:focus { border-color: #668DC6; background: #fff; }
.cw-input::placeholder { color: rgba(43,49,123,0.36); }

.cw-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2B317B;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.15s;
}
.cw-send:disabled { background: rgba(43,49,123,0.22); cursor: not-allowed; }
.cw-send:not(:disabled):hover { background: #1e2460; transform: scale(1.08); }
.cw-send:focus-visible { outline: 2px solid #668DC6; outline-offset: 2px; }

/* ── Mobile ── */
@media (max-width: 480px) {
  .cw-trigger { bottom: 1.25rem; right: 1.25rem; width: 190px; height: 58px; }

  .cw-panel {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-width: 100%;
    border-radius: 22px 22px 0 0;
    transform-origin: bottom center;
    transform: translateY(100%);
    opacity: 1;
  }
  .cw-panel.cw-open { transform: translateY(0); }
  .cw-view--chat { height: 72vh; max-height: 72vh; }
  .cw-overlay { display: block; }
}


/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  background: var(--color-midnight);
  padding-block: var(--space-24);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-14);
}

.faq-header h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.faq-header h2 em {
  font-style: italic;
  color: #668DC6;
}

.faq-header .eyebrow {
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-3);
  display: block;
}

.faq-header .divider {
  display: block;
  width: 40px;
  height: 2px;
  background: #668DC6;
  margin: var(--space-5) auto 0;
  border-radius: 2px;
}

/* Accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.04em;
  color: var(--color-white);
  transition: color 0.2s;
}

.faq-question:hover { color: #668DC6; }

.faq-question:focus-visible {
  outline: 2px solid #668DC6;
  outline-offset: 3px;
  border-radius: 2px;
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: transform 0.32s cubic-bezier(.22,1,.36,1), border-color 0.2s, color 0.2s;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  border-color: #668DC6;
  color: #668DC6;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(.22,1,.36,1);
}

.faq-answer-inner {
  padding: 0 0 1.6rem;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 760px;
}

@media (max-width: 680px) {
  .faq-question { font-size: 1rem; padding: 1.25rem 0; }
  .faq-answer-inner { font-size: var(--text-sm); }
}
