/* Fonts and variables loaded via WordPress enqueue (functions.php) */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg-services); /* #FAFAFA per Figma */
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: 5px;
  font-family: var(--font-secondary);
  font-weight: var(--fw-semibold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

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

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

/* Pill / full-radius button variant — used in CTA, newsletter sections */
.btn-pill {
  border-radius: 74px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
}

.btn-pill.btn-primary {
  background: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
}
.btn-pill.btn-primary:hover {
  background: transparent;
  color: var(--color-coral);
  border-color: var(--color-coral);
}

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

/* ============================================================
   TOP BAR — fixed on all pages, fades out on scroll
   ============================================================ */
.site-topbar {
  background: transparent;
  color: var(--color-navy);
  font-size: var(--fs-xs);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* On the homepage the hero is dark, so flip to white text */
.home .site-topbar {
  color: var(--color-white);
}

/* Hide topbar on scroll — applies to all pages */
.site-topbar.is-scrolled {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

/* Header sits below topbar (36px) by default, rises to top when topbar is gone */
.site-header {
  top: 36px !important;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.site-header.is-scrolled {
  top: 0 !important;
}

/* ── WP Admin bar offsets ──────────────────────────────────────────────
   WordPress adds html { margin-top: 32px } automatically, so document
   flow is already shifted — we only need to push our FIXED elements down.
   Desktop admin bar: 32px  |  WP mobile breakpoint (≤782px): 46px
   ─────────────────────────────────────────────────────────────────── */
body.admin-bar .site-topbar             { top: 32px; }
body.admin-bar .site-header             { top: calc(32px + 36px) !important; }
body.admin-bar .site-header.is-scrolled { top: 32px !important; }

@media screen and (max-width: 782px) {
  /* Topbar is already hidden at 768px; header needs to clear 46px admin bar */
  body.admin-bar .site-header { top: 46px !important; }
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-md);
  height: 36px;
}

.topbar-phone {
  color: inherit;
  font-family: var(--font-secondary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 24px;
  transition: opacity var(--transition);
}
.topbar-phone:hover { opacity: 0.75; }

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-socials a {
  color: inherit;
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.topbar-socials a:hover { opacity: 0.75; }

/* ============================================================
   HEADER / NAV — floating card over hero
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 1rem 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* Once scrolled, collapse padding — nav card provides its own background/shadow */
.site-header.is-scrolled {
  background: transparent;
  padding: 32px;
}

/* Non-hero pages: fixed white header — top handled globally above */
body:not(.home) .site-header {
  position: fixed;
  background: var(--color-white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Light page header: floating dark navy card nav for contrast */
html.has-light-page-header .site-header {
  background: transparent;
  border-bottom-color: transparent;
}
html.has-light-page-header .nav-card {
  background: var(--color-navy);
}
html.has-light-page-header .nav-logo-wordmark {
  color: var(--color-white);
}
html.has-light-page-header .nav-menu > li > a {
  color: var(--color-white);
}
html.has-light-page-header .nav-menu > li > a:hover {
  color: var(--color-coral);
}
html.has-light-page-header .btn-nav-contact {
  background: var(--color-coral);
  border-color: var(--color-coral);
}
html.has-light-page-header .btn-nav-contact:hover {
  background: transparent;
  color: var(--color-white);
}

/* Push page content down so it doesn't hide under topbar + header (36 + 72 = 108px) */
body:not(.home) main { padding-top: 108px; }
body.home main { padding-top: 0; }

/* The white rounded card */
.nav-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--color-white);
  border-radius: 10px;
  padding: 0.625rem 0.75rem 0.625rem 1.25rem;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
  min-height: 80px;
  position:relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon { flex-shrink: 0; }

.nav-logo-wordmark {
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.08em;
  color: var(--color-navy);
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-logo-wordmark strong {
  display: block;
  font-weight: var(--fw-bold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3.375rem; /* 54px per Figma */
}

.nav-menu-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  padding: 0.5rem 0;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a[aria-expanded="true"] {
  color: var(--color-coral);
}

.nav-menu > li > a .nav-arrow {
  width: 12px;
  height: 6px;
  stroke: var(--color-coral);
  stroke-width: 2;
  transition: transform var(--transition);
}

.nav-menu > li > a[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 0;
  width: 225px;
  background: var(--color-white);
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15.5px rgba(0,0,0,0.2);
  padding: 0.625rem 0;
  z-index: 10;
}

.nav-menu > li:hover .nav-dropdown,
.nav-menu > li > a[aria-expanded="true"] + .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6875rem 1.5625rem;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  transition: color var(--transition);
  text-decoration: none;
}

.nav-dropdown a::after {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M1 1l4 4-4 4' stroke='%23EB5C63' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.nav-dropdown a:hover {
  color: var(--color-coral);
}

/* Contact CTA button in nav */
.btn-nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem 0 1.5rem;
  width: 112px;
  height: 42px;
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}

.btn-nav-contact:hover {
  background: transparent;
  color: var(--color-navy);
}

/* Right-arrow on plain nav items — hidden on desktop, shown in mobile menu */
.nav-arrow-plain { display: none; }

/* Mobile menu — hidden on all viewports by default; shown only via JS + media query */
.mobile-menu { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   HERO — matches Figma: full-bleed, text bottom-left, italic serif
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end; /* text sits at the bottom */
  overflow: hidden;
  /* account for topbar (36px) + nav card (72px) floating above */
  padding-top: 140px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-navy-deep);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* coral fade from bottom-left per Figma */
  background: linear-gradient(242deg, rgba(235,92,99,0) 32%, rgba(235,92,99,1) 100%);
}

.hero .container {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding-bottom: var(--space-3xl);
  color: var(--color-white);
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

/* Plain lines — Open Sans SemiBold 600 per Figma ts1/ts3 */
.hero-line-1,
.hero-line-3 {
  font-family: var(--font-secondary);
  font-weight: var(--fw-semibold);
  font-style: normal;
}

/* Italic serif line — Lora SemiBold Italic, navy colour per Figma ts2 */
.hero-line-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 4.0625rem; /* 65px per Figma */
  color: var(--color-navy);
}

.hero-body {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  max-width: 440px;
  opacity: 0.9;
}

/* Circle-arrow CTA link */
.hero-actions {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  transition: gap var(--transition);
}

.hero-cta-link:hover { gap: 1.4rem; }

.hero-cta-link em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-semibold);
}

.hero-cta-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  color: var(--color-navy);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.home .hero-cta-circle {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-cta-link:hover .hero-cta-circle {
  background: var(--color-white);
  color: var(--color-navy);
}

.home .hero-cta-link:hover .hero-cta-circle {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy);
}

/* Decorative curved arrow SVG — inline flex sibling of the CTA link */
.hero-deco-arrow {
  display: block;
  flex-shrink: 0;
  width: 147px;
  height: 130px;
  opacity: 0.7;
  transform: translate(40px, 70px);
  pointer-events: none;
}

/* Hero tag (kept for compatibility) */
.hero-tag {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-coral);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-coral);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: var(--fs-2xl); /* 32px per Figma style_9QFD2F */
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-md);
}

.section-body {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: 680px;
}

/* ============================================================
   HOMEPAGE INTRO / ABOUT SECTION
   ============================================================ */
.about-intro-section {
  padding-block: var(--space-4xl);
  background: var(--color-bg-services); /* #FAFAFA per Figma */
}

.about-intro-inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.about-intro-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-body);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-lg);
}

.about-intro-body {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-body);
  margin-bottom: var(--space-xl);
}

.about-intro-cta {
  justify-content: center;
}

/* Legacy 2-col about grid — kept for any reuse elsewhere */
.about-section {
  padding-block: var(--space-4xl);
  background: var(--color-bg-services);
}

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

.about-content .section-body { margin-bottom: var(--space-xl); }

.about-image {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-placeholder);
}

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

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
  background: var(--color-white);
}

/* Dark header strip — full-bleed navy above the cards */
.news-section-header {
  background: var(--color-navy);
  padding-block: var(--space-2xl);
}

.news-section-header .section-title { color: var(--color-white); }
.news-section-header .section-label { color: var(--color-coral); }

.news-header-body {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-base);
  margin-top: var(--space-xs);
  max-width: 560px;
}

.news-see-all {
  color: var(--color-white);
  flex-shrink: 0;
}

.news-see-all .btn-arrow-circle {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy);
}
.news-see-all .btn-arrow-circle:hover {
  background: transparent;
  color: var(--color-white);
}

/* White card area */
.news-section-cards {
  padding-block: var(--space-3xl);
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement {
  background: var(--color-navy);
  padding-block: var(--space-4xl);
  text-align: center;
}

.brand-statement-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.25;
  margin: 0 auto var(--space-xl);
  max-width: 700px;
}

.brand-statement-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-coral);
}

.brand-statement-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.brand-statement-social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  display: flex;
}

.brand-statement-social-link:hover { color: var(--color-white); }

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

.news-card {
  background: var(--color-navy);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}

.news-card:hover {
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.news-card-image {
  position: relative;
  aspect-ratio: 3/2;
  background: var(--color-placeholder);
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

.news-card-category {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: transparent;
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--color-white);
  border-radius: 25px;
}

.news-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-meta {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-xs);
}

.news-card-title {
  font-size: var(--fs-xl); /* 24px per Figma style_CN030A */
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.news-card-title a { color: inherit; }

.news-card-excerpt {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--space-md);
}

.news-card-link {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}

.news-card-link:hover { gap: 0.6rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding-block: var(--space-4xl);
  background: var(--color-bg-services);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Tab navigation */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid var(--color-divider);
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
}

.services-tab-btn {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  padding: 1rem 2rem;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.services-tab-btn:hover,
.services-tab-btn[aria-selected="true"] {
  color: var(--color-black);
  border-bottom-color: var(--color-coral);
}

/* Tab panels */
.services-panel {
  display: none;
}

.services-panel[aria-hidden="false"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.services-panel-content .section-body {
  margin-bottom: var(--space-xl);
}

.services-panel-image {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-placeholder);
}

.services-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile accordion */
.services-accordion { display: none; }

.accordion-item {
  border-bottom: 1px solid var(--color-divider);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  text-align: left;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding-bottom: var(--space-lg);
}

.accordion-trigger[aria-expanded="true"] + .accordion-body {
  display: block;
}

.accordion-body p {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gradient-cta);
  padding-block: var(--space-4xl);
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
}

.cta-banner-title {
  font-size: var(--fs-2xl); /* 32px per Figma */
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.newsletter-section {
  position: relative;
  padding-block: var(--space-4xl);
  background: var(--color-navy); /* flat navy per Figma, bg image overlaid */
  overflow: hidden;
  text-align: center;
}

.newsletter-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  filter: blur(16.4px);
  pointer-events: none;
}

.newsletter-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.newsletter-icon {
  color: var(--color-white);
  opacity: 0.9;
  margin-bottom: var(--space-xs);
}

.newsletter-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-white);
  max-width: 560px;
}

.newsletter-description {
  font-size: var(--fs-base);
  color: var(--color-white);
  max-width: 560px;
  line-height: var(--lh-relaxed);
}

.newsletter-form { width: 100%; max-width: 640px; }

.newsletter-form-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 640px;
}

.newsletter-input-wrap {
  flex: 1;
  position: relative;
  border-radius: 117px;
  padding: 1.5px;
  background: linear-gradient(-87deg, rgba(235,92,99,1) 0%, rgba(255,255,255,1) 58%);
}

.newsletter-input-wrap::before {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 115px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.newsletter-input-wrap input[type="email"] {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  border-radius: 115px;
}

.newsletter-input-wrap input[type="email"]::placeholder {
  color: var(--color-white);
  font-weight: var(--fw-medium);
}

.btn-coral-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border: 1.5px solid var(--color-coral);
  border-radius: 74px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.btn-coral-pill:hover {
  background: transparent;
  color: var(--color-coral);
}

.newsletter-disclaimer {
  font-size: var(--fs-xs);
  color: var(--color-white);
  max-width: 560px;
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-section {
  padding-block: var(--space-4xl);
  background: var(--color-bg-services); /* #FAFAFA per Figma */
  position: relative;
}

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

.team-card:nth-child(even) {
  margin-top: var(--space-3xl);
}

.team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-placeholder);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.04);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(13deg, rgba(20,37,68,1) 10%, rgba(235,92,99,0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  color: var(--color-white);
}

.team-card-name {
  font-size: var(--fs-xl); /* 24px per Figma style_CN030A */
  font-weight: var(--fw-bold);
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-size: var(--fs-base); /* 16px per Figma style_47OGP9 */
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   SCROLL CAROUSEL
   ============================================================ */
.carousel-section {
  padding-block: var(--space-4xl);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 calc(33.333% - var(--space-lg));
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-placeholder);
  aspect-ratio: 4/3;
}

/* ============================================================
   TWO-COLUMN CONTENT BLOCK
   ============================================================ */
.two-col-section {
  padding-block: var(--space-4xl);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

.two-col-image {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-placeholder);
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--color-navy);
  padding-block: var(--space-4xl);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Light variant — white background, dark text, overflow visible so circle can bleed above */
.page-header--light {
  background: var(--color-white);
  color: var(--color-navy);
  overflow: visible;
}

/* Decorative circle — filled disc extending above the section into the topbar area */
.page-header--light::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -15rem;
  transform: translate(-50%, -50%);
  width: 70rem;
  height: 70rem;
  border-radius: 50%;
  background: var(--ph-circle-colour, #142544);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.page-header-title {
  font-family: var(--font-primary); /* Poppins per Figma */
  font-size: var(--fs-hero); /* 60px per Figma */
  font-weight: var(--fw-regular);
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.page-header--light .page-header-title {
  color: var(--color-navy);
  text-align: center;
}

.page-header--light .page-header__breadcrumbs {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.page-header--light .breadcrumbs,
.page-header--light .breadcrumbs a,
.page-header--light .breadcrumbs li {
  color: var(--color-navy);
  opacity: 0.7;
}

.page-header-title .heading-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-semibold);
  color: var(--color-coral);
  font-size: 4.375rem;
}

@media (max-width: 768px) {
  /* Fix circle centering on mobile: left:50% becomes 50% of the expanded layout width
     because overflow:visible lets the 960px pseudo-element push the section width.
     Using 50vw pins it to the viewport centre instead. */
  .page-header--light::after {
    left: 50vw;
    width: 90vw;
    height: 90vw;
    top: 0;
  }

  /* Scale down the coral accent ("us.") on mobile */
  .page-header-title .heading-accent {
    font-size: 2.5rem;
  }
}

.page-header-body {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  opacity: 0.85;
}

.page-header--light .page-header-body {
  opacity: 1;
  color: var(--color-navy);
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  background: var(--gradient-cta);
  padding-block: var(--space-4xl);
  text-align: center;
}

.contact-cta-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  padding-block: var(--space-4xl);
  background: var(--color-bg-hero);
}

.testimonial-quote {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--color-black);
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
}

/* ============================================================
   FAQS
   ============================================================ */
.faqs-section {
  padding-block: var(--space-4xl);
  background: var(--color-bg-services); /* #FAFAFA per Figma */
}

.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-4xl);
}

.faq-item {
  box-shadow: inset 0px -1px 0px 0px rgba(0,0,0,0.15); /* per Figma */
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  font-size: var(--fs-xl); /* 24px per Figma */
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  letter-spacing: -0.03em;
  line-height: 1.5;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-coral); }

.faq-question svg { width: 24px; height: 24px; flex-shrink: 0; }

.faq-answer {
  display: none;
  padding: 0 15px var(--space-md);
  font-size: var(--fs-base);
  color: #15365A; /* per Figma */
  line-height: var(--lh-relaxed);
}

.faq-question[aria-expanded="true"] + .faq-answer { display: block; }

/* ============================================================
   THREE-COLUMN CTAs
   ============================================================ */
.three-col-ctas {
  padding-block: var(--space-4xl);
}

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

.cta-card {
  background: var(--color-bg-hero);
  border-radius: 10px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.cta-card-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.cta-card-body {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--space-lg);
}

/* ============================================================
   CAREERS — CV UPLOAD
   ============================================================ */
.cv-section {
  padding-block: var(--space-4xl);
  background: var(--color-bg-hero);
}

.cv-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-coral);
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding-block: var(--space-4xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-office {
  margin-bottom: var(--space-xl);
}

.contact-office-name {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
  color: var(--color-coral);
}

.contact-office address {
  font-style: normal;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.contact-office a {
  color: var(--color-black);
  font-weight: var(--fw-medium);
  transition: color var(--transition);
}
.contact-office a:hover { color: var(--color-coral); }

/* Toggle map */
.map-toggle-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.map-panel { display: none; }
.map-panel.is-active { display: block; }

.map-panel iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding-top: var(--space-4xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-secondary);
  font-size: 1.68rem; /* ~27px per Figma */
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}

/* period goes inside <em> in the template */

.footer-tagline-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-bold);
  font-size: 1.875rem; /* 30px per Figma */
  color: var(--color-coral);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: opacity var(--transition);
}

.footer-social a:hover { opacity: 0.75; }

.footer-social svg { width: 21px; height: 21px; }

.footer-col-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  font-size: var(--fs-base); /* 16px per Figma style_JT5CJP */
  color: var(--color-white);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--color-white); }

.footer-offices { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer-office-label {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.footer-other-offices {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-coral);
}

.footer-other-offices a {
  font-size: 1rem;
  color: var(--color-white);
  transition: opacity var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-other-offices a:hover { opacity: 0.75; }
.footer-other-offices a svg path { stroke: var(--color-coral); }
/* Accreditations column */
.footer-accred-logos-col {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.footer-accred-logos-col img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-accred-legal {
  font-size: 8px;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 220px;
}

.footer-office-name {
  font-size: var(--fs-base); /* 16px per Figma style_47OGP9 */
  font-weight: var(--fw-medium);
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.footer-office address {
  font-family: var(--font-secondary);
  font-style: normal;
  font-size: var(--fs-base); /* 16px per Figma style_HPD9NC */
  line-height: 1.7;
  color: var(--color-white);
}

.footer-office a {
  color: var(--color-white);
  transition: opacity var(--transition);
}
.footer-office a:hover { opacity: 0.75; }

/* Accreditations */
.footer-accreditations {
  padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-accreditations-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.footer-accreditations p {
  font-size: 8px; /* Figma style_1FWEGZ: Poppins Light 300, 8px */
  font-weight: var(--fw-light);
  color: rgba(255,255,255,0.6);
  line-height: var(--lh-relaxed);
  max-width: 600px;
}

.footer-accred-logos {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-shrink: 0;
}

.footer-accred-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* Footer bottom */
.footer-bottom {
  padding-block: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom-left,
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  font-size: var(--fs-xs);
  color: var(--color-white);
}

.footer-bottom a:hover { color: var(--color-white); }

/* ============================================================
   404
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: var(--space-4xl);
}

.error-code {
  font-size: 8rem;
  font-weight: var(--fw-bold);
  color: var(--color-coral);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.error-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.error-body {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .services-panel[aria-hidden="false"],
  .two-col-grid,
  .newsletter-inner,
  .faqs-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-menu,
  .btn-nav-contact { display: none; }

  .nav-toggle { display: flex; margin-left: auto; }

  .nav-card {
    border-radius: 10px;
    padding: 0.625rem 0.75rem;
    gap: var(--space-sm);
  }

  /* ── Mobile menu overlay ── */
  .site-header .container { position: relative; }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.14);
    padding: 0.75rem 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu.is-open { display: flex; }

  /* Prevent body scroll when menu open */
  body.mobile-menu-open { overflow: hidden; }

  /* Head row: logo + close button */
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-bg-hero);
    margin-bottom: 0.25rem;
  }

  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    flex-shrink: 0;
  }

  /* Nav list */
  .mobile-nav { width: 100%; }

  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-bg-hero);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--color-navy);
    text-decoration: none;
    gap: 0.5rem;
  }

  .mobile-nav-list > li > a:hover { color: var(--color-coral); }

  /* Arrow icons — right-aligned */
  .mobile-menu .nav-arrow-plain,
  .mobile-menu .nav-arrow {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  /* Dropdown items — grey pill cards */
  .mobile-menu .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0.5rem 0 0.25rem;
    background: transparent;
    flex-direction: column;
    gap: 0.375rem;
  }

  .mobile-menu .nav-dropdown.is-open { display: flex; }

  .mobile-menu .nav-dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    background: var(--color-bg-hero);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-navy);
    text-decoration: none;
    transition: background var(--transition);
  }

  .mobile-menu .nav-dropdown li a:hover { background: #e5e6e8; }

  .mobile-menu .nav-dropdown li .nav-arrow-plain {
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 0;
  }

  /* Footer: Contact Us + phone + socials */
  .mobile-menu-foot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.25rem;
    margin-top: auto;
  }

  .mobile-contact-btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-navy-deep);
    border-radius: 45px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
    color: var(--color-white);
    text-decoration: none;
    transition: background var(--transition);
  }

  .mobile-contact-btn:hover { background: var(--color-navy); }

  .mobile-menu-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-phone {
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-navy);
    text-decoration: none;
  }

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

  .mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--color-navy-deep);
    border-radius: 50%;
    color: var(--color-white);
    transition: opacity var(--transition);
  }

  .mobile-social-icon:hover { opacity: 0.8; }

  /* Hero adjustments */
  .hero { padding-top: 120px; min-height: 520px; }
  .hero-deco-arrow { display: none; }
  .site-topbar { display: none; }
  /* Header goes to top on mobile since topbar is hidden */
  .site-header { top: 0 !important; }
  body:not(.home) main { padding-top: 72px; }

  /* Services: hide tabs, show accordion */
  .services-tabs { display: none; }
  .services-panel { display: none !important; }
  .services-accordion { display: block; }

  /* Layout */
  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .three-col-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .two-col-grid.reverse { direction: ltr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FORMS (contact, CV upload)
   ============================================================ */
.contact-form,
.cv-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.form-group label span[aria-hidden] {
  color: var(--color-coral);
  margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-divider); /* 1px per Figma */
  border-radius: 10px; /* 10px per Figma */
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input[type="file"] {
  padding: 10px 0;
  font-size: var(--fs-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(235,92,99,0.15);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* ============================================================
   INSIGHTS ARCHIVE
   ============================================================ */

.archive-section { padding-block: var(--space-4xl); }

/* Filter pills */
.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.archive-filter-btn {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.archive-filter-btn:hover,
.archive-filter-btn.is-active {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Post list */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

/* Base row */
.archive-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

/* Featured first post — image ~1/3 width, text ~2/3 */
.archive-row--featured {
  grid-template-columns: 1fr 2fr;
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.archive-row__img-wrap {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.archive-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.archive-row__img-wrap:hover .archive-row__img { transform: scale(1.03); }

/* Posts with no featured image — body spans full width */
.archive-row--no-image {
  grid-template-columns: 1fr !important;
}

.archive-row--no-image .archive-row__body {
  grid-column: 1 / -1;
}

/* Body */
.archive-row__body { display: flex; flex-direction: column; gap: 0.5rem; }

/* Meta line */
.archive-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--color-body-light);
}

.archive-row__cat {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--color-coral);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.archive-row__info { color: var(--color-body-light); font-size: var(--fs-xs); }

/* Title */
.archive-row__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-navy);
  margin: 0;
}

.archive-row--featured .archive-row__title { font-size: var(--fs-2xl); }

.archive-row__title a {
  color: inherit;
  text-decoration: none;
}

.archive-row__title a:hover { color: var(--color-coral); }

/* Excerpt */
.archive-row__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-body);
  line-height: var(--lh-relaxed);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-row--featured .archive-row__excerpt { -webkit-line-clamp: 4; }

/* CTA link */
.archive-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  text-decoration: none;
  margin-top: 0.25rem;
}

.archive-row__cta:hover { color: var(--color-coral); }
.archive-row__cta svg { flex-shrink: 0; }

/* Pagination */
.archive-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  color: var(--color-navy);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.archive-pagination .page-numbers.next,
.archive-pagination .page-numbers.prev {
  width: auto;
  padding-inline: 1rem;
  border-radius: 999px;
  gap: 0.25rem;
}

.archive-showing {
  font-size: var(--fs-xs);
  color: var(--color-body-light);
}

.archive-empty {
  text-align: center;
  color: var(--color-body-light);
  padding-block: var(--space-2xl);
}

/* Mobile */
@media (max-width: 640px) {
  .archive-row {
    grid-template-columns: 1fr;
  }

  .archive-row__img-wrap {
    aspect-ratio: 16/9;
  }
}

/* Vacancy accordion */
.vacancy-item .accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Contact page two-col on mobile */
@media (max-width: 768px) {
  .contact-form-grid { grid-template-columns: 1fr !important; }
}

/* CV form two-col grid on mobile */
@media (max-width: 600px) {
  .cv-form > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   MAP PANELS (contact page office tabs)
   ============================================================ */
.map-panel { display: none; }
.map-panel.is-active { display: block; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  margin-bottom: var(--space-md);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-xs);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumbs li + li::before {
  content: '>';
  color: rgba(255,255,255,0.35);
}

.breadcrumbs a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
}

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

.breadcrumbs [aria-current="page"] {
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   ACCORDION — OPEN STATE: coral title
   ============================================================ */
.accordion-trigger[aria-expanded="true"] .accordion-title {
  color: var(--color-coral);
}

/* FAQ open-state coral */
.faq-question[aria-expanded="true"] {
  color: var(--color-coral);
}

/* ============================================================
   TESTIMONIAL SECTION — coral-tinted background
   ============================================================ */
.testimonial-section,
section.testimonials-coral {
  background: rgba(235,92,99,0.08); /* per Figma */
}

/* ============================================================
   CONTACT PAGE — new layout
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  transition: color var(--transition);
}

.contact-quick-link:hover { color: var(--color-coral); }

.contact-quick-link .btn-arrow-circle {
  flex-shrink: 0;
}

/* Locations section */
.contact-locations-section {
  padding-block: 0;
}

.contact-locations-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 520px;
}

.locations-panel {
  background: var(--color-navy); /* #142544 per Figma */
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
}

.locations-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.location-tab {
  padding: 8px 18px;
  border-radius: 45px; /* pill shape per Figma */
  border: 1.5px solid rgba(255,255,255,0.25);
  font-size: var(--fs-base); /* 16px per Figma style_47OGP9 */
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.location-tab:hover,
.location-tab.is-active {
  background: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
}

.location-info {
  display: none;
  flex: 1;
}

.location-info.is-active {
  display: block;
}

.locations-map {
  position: relative;
}

.map-panel {
  display: none;
  position: absolute;
  inset: 0;
}

.map-panel.is-active {
  display: block;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--color-bg-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  color: var(--color-text-muted);
  text-align: center;
}

/* Form name two-col */
.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 1200px) {
  .contact-locations-grid {
    grid-template-columns: 360px 1fr;
  }
}

@media (max-width: 900px) {
  .contact-locations-grid {
    grid-template-columns: 1fr;
  }

  .locations-map {
    min-height: 360px;
    position: relative;
  }
}

@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .form-name-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   THREE-COLUMN CTAs — light grey variant per Figma
   ============================================================ */
.three-col-ctas-dark {
  background: var(--color-bg-hero); /* #F3F4F5 per Figma */
  padding-block: var(--space-4xl);
}

.three-col-ctas-dark .section-label {
  color: var(--color-coral);
}

.three-col-ctas-dark .section-title {
  color: var(--color-navy); /* navy not white per Figma */
}

.three-col-ctas-dark .three-col-grid {
  gap: 80px; /* ~120px per Figma, adjusted for layout */
}

.cta-card-dark {
  background: var(--color-navy); /* #142544 per Figma */
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-card-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cta-card-icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-coral); /* bare SVG at 40px, coral fill per Figma */
}

.cta-card-dark .cta-card-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin: 0;
}

.cta-card-dark .cta-card-body {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin: 0;
}

.cta-card-dark .card-news-link {
  color: var(--color-coral);
}

/* section utility */
.section {
  padding-block: var(--space-4xl);
}

/* ============================================================
   SERVICE SOLUTIONS SECTION
   ============================================================ */
.service-solutions-section {
  background: var(--color-navy);
  padding-block: var(--space-4xl);
}

.service-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-solution-item {
  padding: var(--space-xl);
  color: var(--color-white);
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-solution-item:nth-child(2n) {
  border-right: none;
}

.service-solution-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.service-solution-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
  margin: 0;
}

.service-solution-body {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.8);
  line-height: var(--lh-relaxed);
  margin: 0;
  flex: 1;
}

.service-solution-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-coral);
  color: var(--color-white);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}

.service-solution-link:hover {
  background: #d44850;
  transform: translateX(3px);
}

.service-solution-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   RELATED SERVICES SECTION
   ============================================================ */
.related-services-section {
  background: var(--color-bg-services);
  padding-block: var(--space-4xl);
}

.related-services-grid {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.related-service-card {
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 220px;
  min-height: 200px;
  background: var(--color-navy);
  border-radius: 10px;
  padding: var(--space-xl);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.related-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20,37,68,0.2);
}

.related-service-card .card-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
  margin: 0;
}

.related-service-card .card-body {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-relaxed);
  margin: 0;
  flex: 1;
}

.related-service-card .card-link {
  color: var(--color-coral);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition);
}

.related-service-card .card-link:hover {
  gap: 0.625rem;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: rgba(235,92,99,0.08);
  padding-block: var(--space-4xl);
}

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

.testimonial-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: var(--space-xl);
  box-shadow: 0 4px 20px rgba(20,37,68,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  margin: 0;
  flex: 1;
}

.testimonial-attribution {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin: 0;
}

.testimonial-attribution span {
  display: block;
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--color-navy);
  padding-block: var(--space-4xl);
}

.values-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.values-image-card {
  width: 592px;
  max-width: 50%;
  aspect-ratio: 592 / 481;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.values-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.values-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,37,68,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.values-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  color: var(--color-white);
}

.values-dots {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.values-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.values-dot.is-active {
  background: var(--color-coral);
  opacity: 1;
}

.values-dot:hover {
  background: rgba(255,255,255,0.7);
}

.values-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
  margin: 0;
}

.values-body {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.8);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* ============================================================
   SERVICES PHOTO GRID
   ============================================================ */
.services-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.service-photo-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 264px;
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
}

.service-photo-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
}

.service-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,37,68,0.85) 0%, rgba(20,37,68,0.2) 55%, transparent 100%);
  pointer-events: none;
}

.service-photo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-photo-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
  margin: 0;
}

.service-photo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-coral);
  transition: gap var(--transition);
}

/* ============================================================
   PAGE BUILDER BLOCKS
   New block system based on revised Figma designs.
   Each block supports variable background colour, text colour,
   and padding top/bottom (set via ACF Style tab, applied inline).
   ============================================================ */

/* ── Home Hero ── */
.block--home-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Gradient overlay — coral accent fades from right, as per Figma */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    242deg,
    rgba(235, 92, 99, 0) 32%,
    rgba(235, 92, 99, 0.85) 100%
  );
  pointer-events: none;
}

/* Dark left-side tint so text is always legible */
.block--home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 37, 68, 0.72) 0%,
    rgba(20, 37, 68, 0) 60%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-4xl);
  max-width: 600px;
  /* left-aligned within the full-width container */
}

/* Decorative swirl — positioned right-centre of hero */
.hero-swirl {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
}
.hero-swirl svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .hero-swirl { width: 360px; height: 360px; right: -40px; opacity: 0.6; }
}
@media (max-width: 768px) {
  .hero-swirl { display: none; }
}

.hero-heading {
  display: flex;
  flex-direction: column;
  margin: 0 0 var(--space-xl);
  line-height: 1.15;
}

.hero-heading__line1,
.hero-heading__line3 {
  font-family: var(--font-primary);
  font-size: var(--fs-hero);
  font-weight: var(--fw-regular);
  color: var(--color-white);
}

.hero-heading__accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4.0625rem; /* 65px per Figma */
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}

@media (max-width: 768px) {
  .hero-heading__accent,
  .hero-heading__accent--first { color: var(--color-white); }
}

/* CTA button — filled pill with arrow, outline on hover */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.75rem 0.65rem 1.5rem;
  background: var(--color-coral);
  border: 2px solid var(--color-coral);
  border-radius: 45px;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-hero-cta:hover {
  background: transparent;
  color: var(--color-coral);
  border-color: var(--color-coral);
}

.btn-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-hero-cta:hover .btn-arrow {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .block--home-hero {
    min-height: 80vh;
  }
  .hero-heading__line1,
  .hero-heading__line3 {
    font-size: 2.5rem;
  }
  .hero-heading__accent {
    font-size: 2.875rem;
  }
}

/* ── Full Width Text with Optional CTA ── */
.block--full-width-text-cta {
  /* padding applied inline via ACF Style tab */
}

.fwtc-inner {
  max-width: 860px;
  text-align: center;
}

.fwtc-heading {
  font-family: var(--font-primary);
  font-size: var(--fs-2xl); /* 32px */
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-md);
  color: inherit;
  text-align: center;
}

.fwtc-body {
  text-align: center;
  font-family: var(--font-primary);
  font-size: var(--fs-base); /* 16px */
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: inherit;
  margin-bottom: var(--space-xl);
}

.fwtc-body p { margin-bottom: 1em; }
.fwtc-body p:last-child { margin-bottom: 0; }

.fwtc-cta-wrap {
  display: flex;
  justify-content: center;
}

/* Shared arrow button — filled coral, outline on hover */
.btn-outline-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.75rem 0.65rem 1.5rem;
  background: var(--color-coral);
  border: 2px solid var(--color-coral);
  border-radius: 45px;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-outline-arrow:hover {
  background: transparent;
  color: var(--color-coral);
  border-color: var(--color-coral);
}

.btn-outline-arrow:hover .btn-arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .fwtc-inner {
    text-align: left;
  }
  .fwtc-cta-wrap {
    justify-content: flex-start;
  }
  .fwtc-heading {
    font-size: var(--fs-xl);
  }
}

.service-photo-link:hover {
  gap: 0.625rem;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .values-image-card {
    width: 420px;
    max-width: 45%;
  }

  .values-title {
    font-size: var(--fs-2xl);
  }
}

@media (max-width: 768px) {
  /* Service solutions — stack to 1 col */
  .service-solutions-grid {
    grid-template-columns: 1fr;
  }

  .service-solution-item {
    border-right: none;
  }

  .service-solution-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .service-solution-item:last-child {
    border-bottom: none;
  }

  /* Related services — stack to 1 col */
  .related-services-grid {
    flex-direction: column;
  }

  .related-service-card {
    flex: none;
    width: 100%;
    min-height: auto;
  }

  /* Testimonials — stack to 1 col */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Values — hide image card, stack vertically */
  .values-inner {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .values-image-card {
    display: none;
  }

  .values-content {
    width: 100%;
  }

  .values-title {
    font-size: var(--fs-2xl);
  }

  /* Services photo grid — stack to 1 col */
  .services-photo-grid {
    grid-template-columns: 1fr;
  }

  .service-photo-card {
    min-height: 220px;
  }
}

/* ============================================================
   OVERLAY HELPERS (for bg-image sections)
   ============================================================ */
.contact-cta { position: relative; }
.contact-cta-overlay,
.newsletter-overlay,
.cv-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(235,92,99,0.4); /* coral tint per Figma */
  z-index: 0;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,37,68,0.9); /* navy overlay per Figma */
  z-index: 0;
}

/* ============================================================
   FULL WIDTH IMAGE BLOCK
   ============================================================ */
.full-width-image-block {
  width: 100%;
  overflow: hidden;
  background: var(--color-placeholder);
}

.full-width-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Arrow icon sizing — width/height also set on the SVG element in cy_arrow() ─── */
.card-news-link svg,
.news-card-link svg,
.contact-quick-link svg,
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION (auto-play tab carousel)
   ============================================================ */
.services-scroll-wrapper {
  position: relative;
}

.services-sticky {
  background: inherit; /* inherit section inline background-color so dark/light themes work */
  padding-block: var(--space-4xl);
}

.services-scroll-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.services-scroll-icon {
  display: block;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

/* Slides */
.services-slides {
  position: relative;
  min-height: 420px;
}

.services-slide {
  display: none;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.services-slide.is-active {
  display: grid;
}

.services-slide-image {
  aspect-ratio: 620/481; /* Figma: 620×481px */
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-placeholder);
  position: relative;
}

/* Coral gradient overlay matching Figma (247deg, coral fades from bottom-left) */
.services-slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, rgba(235,92,99,0) 31%, rgba(235,92,99,1) 100%);
  border-radius: 10px;
  pointer-events: none;
}

.services-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-slide-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-placeholder);
}

/* Per-service icon — bottom-left corner of the card image */
.services-slide-icon {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  width: 80px;
  height: auto;
  pointer-events: none;
}

.services-slide-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* render white if not already */
}

.services-slide-content {
  padding-right: var(--space-lg);
}

.services-slide-content h3 {
  font-size: var(--fs-xl); /* 24px per Figma */
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.services-slide-body {
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 510px;
  margin-bottom: var(--space-xl);
}

/* "Learn more" link — mixed typography per Figma */
.services-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);
}

.services-learn-more__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-semibold);
  font-size: 1.0625rem; /* ~17px per Figma */
}

.services-learn-more__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-coral);
  color: var(--color-navy);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.services-learn-more:hover .services-learn-more__circle {
  background: var(--color-coral);
  color: var(--color-white);
}

/* Navigation dots — vertical, pinned to right of section */
.services-sticky {
  position: relative;
}

.services-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.services-dot {
  width: 8.61px;
  height: 8.61px;
  border-radius: 50%;
  background: #D9D9D9;
  border: none;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}

.services-dot.is-active {
  background: var(--color-coral);
  transform: scale(1.2);
}

/* Accordion image (mobile) */
.accordion-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.accordion-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Mobile: hide sticky slides, show accordion */
@media (max-width: 768px) {
  .services-scroll-wrapper {
    height: auto !important;
  }

  .services-sticky {
    position: static;
  }

  .services-slides,
  .services-dots {
    display: none;
  }

  .services-accordion {
    display: block;
  }
}

@media (min-width: 769px) {
  .services-accordion {
    display: none;
  }
}

/* ============================================================
   BTN-ARROW-CIRCLE — 40x40 filled circle, outline on hover
   ============================================================ */
.btn-arrow-circle,
.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 45px;
  border: 2px solid var(--color-coral);
  background: var(--color-coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn-arrow-circle:hover,
.carousel-arrow:hover {
  background: transparent;
  color: var(--color-coral);
}

.btn-arrow-circle svg,
.carousel-arrow svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   PAGINATION — coral outlined circles per Figma
   ============================================================ */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-coral);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-coral);
  transition: background var(--transition), color var(--transition);
}

.page-numbers.current,
.page-numbers:hover:not(.dots) {
  background: rgba(235,92,99,0.2);
  border-color: transparent;
  color: var(--color-navy);
}

.page-numbers.dots {
  border: none;
  width: auto;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-2xl);
}

/* ============================================================
   NEWS CARD — fix excerpt/meta/link for dark navy cards
   ============================================================ */
.news-card-excerpt { color: var(--color-white); }
.news-card-meta    { color: var(--color-white); }
.news-card-image   { border-bottom: 0.5px solid rgba(255,255,255,0.3); }

/* ============================================================
   MOBILE NAV — dark text on light menu background
   ============================================================ */
.nav-menu.is-open > li > a {
  color: var(--color-navy);
}

/* ============================================================
   TEAM SECTION — heading override per Figma
   ============================================================ */
.team-section .section-title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

/* ============================================================
   GRADIENT-CTA override — extend to 100%
   ============================================================ */
.contact-cta,
.cta-banner {
  background: linear-gradient(-55deg, #EB5C63 0%, #142544 100%);
}

/* ============================================================
   TEAM CARD — aspect ratio and grid gap per Figma
   ============================================================ */
.team-card { aspect-ratio: 29/38; }
.team-grid { gap: 2.5rem; }

/* ============================================================
   FORM LABEL — 12px Medium per Figma
   ============================================================ */
.form-label,
.form-group label {
  font-size: var(--fs-xs); /* 12px */
  font-weight: var(--fw-medium);
}

/* ============================================================
   THREE-COL CTA — italic serif link word
   ============================================================ */
.card-news-link em,
.news-card-link em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);
}

/* ============================================================
   FOOTER OFFICE LABEL — Medium weight per Figma
   ============================================================ */
.footer-office-label {
  font-weight: var(--fw-medium);
}

/* ============================================================
   FOOTER LOGO HEIGHT — 42px per Figma
   ============================================================ */
.footer-logo img { height: 42px; }

/* ============================================================
   NEWS SECTION — section grey bg for archive grid
   ============================================================ */
.news-archive-section {
  background: var(--color-bg-hero); /* #F3F4F5 for archive page */
}

/* ============================================================
   ABOUT SECTION FULL-WIDTH IMAGE BLOCK — gradient overlay
   ============================================================ */
.about-full-width-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--color-placeholder);
}

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

.about-full-width-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(177deg, rgba(235,92,99,0) 24%, rgba(20,37,68,1) 100%);
}

/* ============================================================
   SINGLE ARTICLE — reversed transparent nav over hero image
   ============================================================ */
.single-article .site-header,
.page-text-article .site-header {
  position: fixed;
  background: transparent;
  border-bottom: none;
  padding: 1rem 0;
  top: 0;
}
.single-article .nav-card,
.page-text-article .nav-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}

/* Article hero */
.article-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background-color: var(--color-navy);
}
.article-hero--no-img {
  min-height: 280px;
  align-items: center;
}
.article-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.article-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,37,68,0.3) 0%, rgba(20,37,68,0.85) 100%);
}
.article-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}
.article-cat-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-coral);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  border-radius: 3px;
  text-decoration: none;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
.article-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 0.75rem;
  max-width: 820px;
}
.article-hero__meta {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-sm);
}

/* Article body */
.article-body-wrap {
  max-width: 800px;
  margin-inline: auto;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.article-body {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-body);
}
.article-body h2 { font-size: var(--fs-xl); margin-top: 2.5rem; margin-bottom: 1rem; color: var(--color-navy); }
.article-body h3 { font-size: var(--fs-lg); margin-top: 2rem; margin-bottom: 0.75rem; color: var(--color-navy); }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-divider);
}
.article-back-link {
  color: var(--color-navy);
  font-weight: var(--fw-medium);
  text-decoration: none;
  font-size: var(--fs-sm);
}
.article-back-link:hover { color: var(--color-coral); }

/* Related articles */
.article-related {
  background: var(--color-bg-hero);
  padding: 3rem 0 4rem;
}
.article-related__heading {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: 2rem;
}

/* ============================================================
   NEWS SECTION BLOCK
   ============================================================ */
.block--news-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.block--news-section.ns--light-bg { color: var(--color-navy); }

/* Decorative circle — full circle centred at top, linear gradient fades solid→transparent */
.ns-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2000px;
  height: 2000px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--ns-circle-colour, #6D43D9) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Inner container sits above the arch */
.ns-inner { position: relative; z-index: 1; }

/* Section header */
.ns-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
}
.ns-section-icon {
  display: block;
  margin-inline: auto;
  margin-bottom: 1rem;
  max-width: 60px;
}
.ns-heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: inherit;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.ns-intro { color: inherit; opacity: 0.8; font-size: var(--fs-md); margin-top: 0; }

/* Filters */
.ns-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.ns-filter-btn {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: #fff;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.ns--light-bg .ns-filter-btn {
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.ns-filter-btn.is-active,
.ns-filter-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}
.ns--light-bg .ns-filter-btn.is-active,
.ns--light-bg .ns-filter-btn:hover {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

/* Cards grid */
.ns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.ns-card {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.ns-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 4/3; }
.ns-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.ns-card:hover .ns-card__img { transform: scale(1.04); }
.ns-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.ns-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.ns-card__cat {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: #fff;
  background: var(--color-coral);
  border-radius: 50px;
  padding: 2px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.ns-card__read {
  font-size: var(--fs-xs);
  color: rgb(255,255,255,0.7);
}
.ns-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.ns-card__title a { color: inherit; text-decoration: none; }
.ns-card__title a:hover { color: var(--color-coral); }
.ns-card__excerpt {
  font-size: var(--fs-sm);
  color: rgd(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.ns-card__divider {
  border: none;
  border-top: 1px solid var(--color-border, #e2e8f0);
  margin-bottom: 1rem;
}
.ns-card__learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-top: auto;
}
.ns-card__learn:hover { color: var(--color-coral); }

/* See all footer CTA */
.ns-footer {
  text-align: center;
  margin-top: 0.5rem;
}
.ns-footer .cy-cta-link { color: #fff; }
.ns--light-bg .ns-footer .cy-cta-link { color: var(--color-navy); }

.ns-empty { color: rgba(255,255,255,0.7); font-size: var(--fs-md); text-align: center; }

.block-footer-cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 1024px) { .ns-grid { gap: 1.5rem; } }
@media (max-width: 900px) { .ns-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) {
  .ns-grid { grid-template-columns: 1fr; }
  .ns-circle { width: 160vw; height: 160vw; }
}

/* ============================================================
   TWO COLUMN CONTENT
   ============================================================ */
.tcc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tcc-grid--reversed { direction: rtl; }
.tcc-grid--reversed > * { direction: ltr; }
.tcc-text { }
.tcc-image { }
.tcc-img { width: 100%; border-radius: 10px; display: block; }
@media (max-width: 768px) {
  .tcc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tcc-grid--reversed { direction: ltr; }
}

/* ============================================================
   TWO COLUMN TEXT
   ============================================================ */
.tct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.tct-col { }
.tct-col__heading { font-size: var(--fs-lg); font-weight: var(--fw-bold); margin-bottom: 0.75rem; }
@media (max-width: 768px) { .tct-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TWO COLUMN CTA LIST
   ============================================================ */
.tccl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.tccl-card {
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tccl-card__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--color-navy); }
.tccl-card__body { font-size: var(--fs-sm); color: var(--color-body-light); line-height: 1.6; flex: 1; }
.tccl-card__link { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--color-coral); text-decoration: none; }
.tccl-card__link:hover { text-decoration: underline; }
@media (max-width: 700px) { .tccl-grid { grid-template-columns: 1fr; } }

/* ============================================================
   THREE COLUMN CTAs
   ============================================================ */
.tcol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.tcol-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tcol-card__icon { width: 48px; height: 48px; object-fit: contain; margin-bottom: 0.5rem; display: block; margin-inline: auto; }
.tcol-card__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); }
.tcol-card__body { font-size: var(--fs-sm); line-height: 1.6; opacity: 0.85; flex: 1; }
.tcol-card__link { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--color-coral); text-decoration: none; }
.tcol-card__link:hover { text-decoration: underline; }
.block--three-column-ctas .cy-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-inline: auto;
}
@media (max-width: 900px) { .tcol-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .tcol-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOUR COLUMN IMAGES
   ============================================================ */
.fci-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.fci-item { position: relative; overflow: hidden; }
.fci-item:nth-child(even) { margin-top: var(--space-3xl); }
.fci-img { width: 100%; aspect-ratio: 29/38; object-fit: cover; display: block; }.fci-item { position: relative; overflow: hidden; border-radius: 10px; }
.fci-caption { font-size: var(--fs-xs); margin-top: 0.5rem; opacity: 0.7; text-align: center; }
@media (max-width: 900px) { .fci-grid { grid-template-columns: repeat(2, 1fr); } .fci-item:nth-child(even) { margin-top: 0; } }
@media (max-width: 480px) { .fci-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item__value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-bold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__label {
  font-size: var(--fs-sm);
  opacity: 0.75;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   FULL WIDTH IMAGE BLOCK
   ============================================================ */
.fwi-wrap { display: block; position: relative; overflow: hidden; width: 100%; }
.fwi-img { width: 100%; display: block; }
.fwi-img--fixed-h { object-fit: cover; }
.fwi-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,37,68,0.5);
  color: #fff;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  text-align: center;
  padding: 2rem;
}
.fwi-caption {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   FULL WIDTH TEXT BLOCK
   ============================================================ */
.fwt-inner { max-width: 860px; margin-inline: auto; text-align: center; }
.block--full-width-text .block-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.block--full-width-text .block-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: var(--fw-bold); margin-bottom: 1.5rem; }
.block--full-width-text .block-body { font-size: var(--fs-md); line-height: var(--lh-relaxed); margin-bottom: 2rem; }
.block-cta-wrap { margin-top: 1.5rem; }

/* Text + Arrow CTA (fwt_cta_style = text-arrow) */
.fwt-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}
.fwt-cta-link--light { color: var(--color-white); }

.fwt-cta-link em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-semibold);
}

.fwt-cta-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.fwt-cta-link--light .fwt-cta-circle {
  border-color: var(--color-white);
  color: var(--color-white);
}
.fwt-cta-link:hover .fwt-cta-circle {
  background: var(--color-navy);
  color: var(--color-white);
}
.fwt-cta-link--light:hover .fwt-cta-circle {
  background: var(--color-white);
  color: var(--color-navy);
}

/* ── Shared CTA: Text + Arrow ── */
.cy-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  text-decoration: none;
}
.cy-cta-link em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-semibold);
}
.cy-cta-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--cta-outline, #EB5C63);
  color: inherit;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cy-cta-link:hover .cy-cta-circle {
  background: var(--cta-outline, #EB5C63);
  color: var(--cta-arrow-hover, #EB5C63);
}

/* ── Shared CTA: Button ── */
.cy-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  background: var(--btn-colour, #EB5C63);
  color: var(--btn-text, #FFFFFF);
  border: 2px solid var(--btn-colour, #EB5C63);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cy-cta-btn:hover {
  background: transparent;
  color: var(--btn-hover-text, #EB5C63);
  border-color: var(--btn-colour, #EB5C63);
}

/* ============================================================
   TEXT CONTENT BLOCK
   ============================================================ */
.block--text-content .block-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: var(--fw-bold); margin-bottom: 1.5rem; }
.block--text-content .block-body { font-size: var(--fs-md); line-height: var(--lh-relaxed); }

/* ============================================================
   TEAM SECTION BLOCK
   ============================================================ */
.block--team-section .team-grid { margin-top: 2rem; }
.block--team-section .container {
    padding-inline: 0;
}
/* ============================================================
   SERVICES GRID BLOCK
   ============================================================ */
.services-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.service-card { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); background: #fff; }
.service-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--color-navy); }
.service-card__img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 1.75rem; }
.service-card__icon { display: block; max-width: 56px; height: auto; margin-bottom: 1rem; }
.service-card__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--color-navy); margin-bottom: 0.5rem; }
.service-card__title a { color: inherit; text-decoration: none; }
.service-card__title a:hover { color: var(--color-coral); }
.service-card__excerpt { font-size: var(--fs-sm); color: var(--color-body-light); line-height: 1.6; margin-bottom: 1.25rem; }
@media (max-width: 700px) { .services-grid-cards { grid-template-columns: 1fr; } }

/* Shared section header — icon centred above heading */
.block-section-header { text-align: center; margin-bottom: 2.5rem; }
.block-section-icon { display: block; margin-inline: auto; margin-bottom: 1rem; max-width: 80px; height: auto; }

/* ============================================================
   TESTIMONIAL BLOCK
   ============================================================ */
.testimonial-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; }
.testimonial-quote p { font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.5; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-cite { display: block; font-style: normal; font-size: var(--fs-sm); opacity: 0.8; }
.testimonial-cite strong { display: block; font-weight: var(--fw-semibold); margin-bottom: 0.25rem; }

/* ============================================================
   VALUES CAROUSEL BLOCK
   ============================================================ */
.vc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.vc-image-card {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.vc-image-overlay { position: absolute; inset: 0; background: rgba(20,37,68,0.25); }
.vc-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: var(--fw-bold); color: var(--color-navy); margin-bottom: 2rem; }
.vc-slide { display: none; }
.vc-slide.is-active { display: block; }
.vc-slide__title { font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--color-navy); margin-bottom: 1rem; }
.vc-slide__body { font-size: var(--fs-md); line-height: var(--lh-relaxed); color: var(--color-body); }
.vc-dots { display: flex; gap: 0.5rem; margin-top: 2rem; }
.vc-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(20,37,68,0.2); border: none; cursor: pointer; padding: 0; }
.vc-dot.is-active { background: var(--color-coral); }
@media (max-width: 768px) {
  .vc-layout { grid-template-columns: 1fr; gap: 2rem; }
  .vc-image-card { aspect-ratio: 3/2; }
}

/* ============================================================
   CONTACT CTA BLOCK
   ============================================================ */
.ccta-inner { text-align: center; max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.ccta-icon { opacity: 0.9; }
.ccta-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: var(--fw-bold); }
.ccta-body { font-size: var(--fs-md); line-height: 1.6; max-width: 560px; opacity: 0.9; }

/* ============================================================
   NEWSLETTER CTA BLOCK
   ============================================================ */
.ncta-inner { text-align: center; max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.ncta-icon { opacity: 0.9; }
.ncta-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: var(--fw-bold); }
.ncta-desc { font-size: var(--fs-md); line-height: 1.6; max-width: 560px; opacity: 0.9; }
.ncta-form { width: 100%; max-width: 480px; }
.ncta-form-row { display: flex; gap: 0.75rem; }
.ncta-form-row input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: none;
  font-size: var(--fs-sm);
}
@media (max-width: 600px) {
  .ncta-form-row { flex-direction: column; }
  .ncta-form-row input[type="email"],
  .ncta-form-row .btn { width: 100%; }
}

/* ============================================================
   JOB VACANCIES BLOCK
   ============================================================ */
.vacancies-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.vacancy-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
}
.vacancy-item__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--color-navy); margin-bottom: 0.5rem; }
.vacancy-item__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.vac-tag { display: inline-block; padding: 3px 10px; background: var(--color-bg-hero); border-radius: 4px; font-size: var(--fs-xs); font-weight: var(--fw-medium); color: var(--color-navy); }
.vacancy-item__excerpt { font-size: var(--fs-sm); color: var(--color-body-light); line-height: 1.5; }
.vacancies-empty { color: var(--color-body-light); font-size: var(--fs-md); padding: 2rem 0; }
.vacancies-cv-cta { margin-top: 2rem; }
@media (max-width: 600px) {
  .vacancy-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============================================================
   CV UPLOAD BLOCK
   ============================================================ */
.cv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cv-overlay { position: absolute; inset: 0; background: rgba(20,37,68,0.65); z-index: 0; }
.cv-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: var(--fw-bold); margin-bottom: 1rem; }
.cv-subtext { font-size: var(--fs-md); line-height: 1.6; opacity: 0.85; }
.cv-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cv-form__row { display: flex; flex-direction: column; gap: 0.35rem; }
.cv-form__row label { font-size: var(--fs-xs); font-weight: var(--fw-medium); opacity: 0.85; }
.cv-form__row--file label { display: flex; flex-direction: column; gap: 0.25rem; }
.cv-form__note { font-size: var(--fs-xs); opacity: 0.6; }
.cv-form__row input,
.cv-form__row textarea {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: inherit;
  font-size: var(--fs-sm);
}
.cv-form__row input::placeholder { opacity: 0.5; }
.cv-form__row input[type="file"] { background: transparent; border: none; padding: 0; }
.cv-form__consent { display: flex; align-items: center; gap: 0.75rem; font-size: var(--fs-sm); cursor: pointer; }
.cv-form__consent input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 768px) { .cv-inner { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT HERO BLOCK
   ============================================================ */
.ch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.ch-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: var(--fw-bold); margin-bottom: 1rem; }
.ch-body { font-size: var(--fs-md); line-height: 1.6; margin-bottom: 2rem; opacity: 0.9; }
.ch-form-wrap .contact-form .cf-row { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.ch-form-wrap .contact-form .cf-row label { font-size: var(--fs-xs); font-weight: var(--fw-medium); opacity: 0.8; }
.ch-form-wrap .contact-form input,
.ch-form-wrap .contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: inherit;
  font-size: var(--fs-sm);
}
.ch-form-wrap .contact-form textarea { resize: vertical; }
.ch-offices { padding-top: 0.5rem; }
.ch-offices__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); margin-bottom: 1.5rem; opacity: 0.9; }
.ch-office { margin-bottom: 1.75rem; }
.ch-office__name { font-weight: var(--fw-semibold); margin-bottom: 0.5rem; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; }
.ch-office__details { font-style: normal; font-size: var(--fs-sm); line-height: 1.9; opacity: 0.9; }
.ch-office__details a { color: inherit; text-decoration: none; }
.ch-office__details a:hover { opacity: 0.7; }
@media (max-width: 900px) { .ch-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TOGGLE MAP BLOCK
   ============================================================ */
.tm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.tm-offices { display: flex; flex-direction: column; gap: 0.75rem; }
.tm-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--color-divider);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}
.tm-btn.is-active, .tm-btn:hover {
  border-color: var(--color-navy);
  background: var(--color-bg-hero);
}
.tm-btn__name { font-weight: var(--fw-semibold); font-size: var(--fs-sm); color: var(--color-navy); }
.tm-btn__addr { font-size: var(--fs-xs); color: var(--color-body-light); margin-top: 0.2rem; }
.tm-map { }
.tm-map__img { width: 100%; border-radius: 10px; }
.tm-map__placeholder { background: var(--color-bg-hero); border-radius: 10px; height: 300px; display: flex; align-items: center; justify-content: center; color: var(--color-body-light); font-size: var(--fs-sm); }
.tm-details { }
.tm-detail { display: none; }
.tm-detail.is-active { display: block; }
.tm-detail address { font-style: normal; font-size: var(--fs-sm); line-height: 2; color: var(--color-body); }
.tm-detail address a { color: var(--color-navy); text-decoration: none; }
.tm-detail address a:hover { color: var(--color-coral); }
@media (max-width: 768px) { .tm-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQS ACCORDION BLOCK
   ============================================================ */
.faqs-group-label { font-size: var(--fs-xl); font-weight: var(--fw-bold); margin: 2rem 0 1rem; }
.faqs-list { list-style: none; padding: 0; margin: 0; }
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  text-align: left;
  gap: 1rem;
}
.faq-toggle__icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-toggle[aria-expanded="true"] .faq-toggle__icon { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer[aria-hidden="false"] { max-height: 600px; }
.faq-answer__body { padding: 0 0 1.5rem; font-size: var(--fs-sm); line-height: 1.7; }

/* ============================================================
   SCROLL CAROUSEL BLOCK — background colour applied inline
   ============================================================ */
.sc-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: var(--fw-bold); margin-bottom: 2rem; }
.services-scroll-header { text-align: center; margin-bottom: 64px; }
.services-scroll-icon { display: block; margin-inline: auto; margin-bottom: var(--space-md); max-width: 80px; height: auto; }

/* When background is dark (navy/deep-navy etc) — force white text */
.block--scroll-carousel[style*="#142544"],
.block--scroll-carousel[style*="#002D5C"],
.block--scroll-carousel[style*="#EB5C63"],
.block--scroll-carousel[style*="#000000"] {
  --sc-text: #fff;
}
.block--scroll-carousel { color: var(--sc-text, var(--color-body)); }
.block--scroll-carousel .sc-heading { color: var(--sc-text, var(--color-navy)); }
.block--scroll-carousel h3 { color: var(--sc-text, var(--color-navy)); }
.block--scroll-carousel .services-slide-body { color: var(--sc-text, var(--color-body-light)); opacity: 0.85; }
.block--scroll-carousel .services-learn-more { color: var(--sc-text, var(--color-navy)); }

/* ============================================================
   SHARED BLOCK UTILITIES
   ============================================================ */
.block-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.block-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

/* Reversed nav pages — ensure content isn't hidden under fixed header */
.single-article .article-hero,
.single-article.home .article-hero { padding-top: 0; }

@media (max-width: 768px) {
  .article-hero { min-height: 380px; }
  .article-hero__title { font-size: 1.75rem; }
  .article-body-wrap { padding-top: 2rem; }
  .ncta-form-row { flex-direction: column; }
}
/* ============================================================
   CONTACT HERO
   ============================================================ */
.ch-heading em { font-style: italic; font-family: var(--font-serif); }
.ch-card__heading { font-size: 3rem; font-weight: var(--fw-bold); margin-bottom: 1.5rem; }