*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0c1444;
  --wine: #732e4a;
  --gold: #c9a84c;
  --white: #ffffff;
  --light-grey: #f5f4f0;
  --text-dark: #2c2c2c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 44px;
  background: transparent;
  transition: all 0.3s ease;
}

.nav-links:first-child {
  justify-content: flex-start;
}

.nav-links:last-child {
  justify-content: flex-end;
}

nav.sticky {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* nav.sticky .nav-links a {
    color: #0C1444;
} */

nav.sticky .nav-links a:hover {
  color: #732e4a;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--wine);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: auto;
  height: 90px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ── HERO (50-50 SPLIT LAYOUT) ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: 120px;
}

.hero-bg {
  position: relative;
  order: 2;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg::after {
  /* Overlay no longer needed in split layout */
  display: none;
}

.hero-content {
  position: relative;
  order: 1;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-content h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-align: left;
}

.hero__sub {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 100%;
  margin-bottom: 32px;
  text-align: left;
}

.hero__cta {
  display: flex;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: stretch;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  transition: all 0.3s ease;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 16px;
  border-left: 1px solid #0d5257;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--white);
  color: #0d5257;
  outline: 1px solid #0d5257;
}

/* text part */
.btn-primary .btn-text {
  background-color: var(--white);
}

/* arrow part */
.btn-primary .btn-arrow {
  background-color: var(--white);
  color: #0d5257;
}

/* hover text */
.btn-primary:hover .btn-text {
  background-color: var(--white);
  color: var(--navy);
}

/* hover arrow */
.btn-primary:hover .btn-arrow {
  background-color: var(--white);
  color: var(--navy);
  border-left: 1px solid var(--navy);
}

/* ── WHO SECTION ── */
.who {
  background: var(--white);
  padding: 120px 20px 80px 20px;
  display: flex;
  justify-content: center;
}

.who-inner {
  width: 100%;
  text-align: center;
}

.who-logo img {
    width: 90px;
    margin-bottom: 28px;
}

.who h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--wine);
  margin-bottom: 30px;
}

.who-intro {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -1px;
  max-width: 1034px;
  margin: 0 auto;
  color: var(--navy);
}

.who-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  max-width: 1310px;
  margin: 60px auto 0px;
}

.who-columns p {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--navy);
  letter-spacing: 1.2px;
}

/* ── IMPACT SECTION ── */
.impact {
  width: 100%;
}

/* HEADER */
.impact-header {
  background: #c6858f;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 18px;
}

.impact-header h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}

/* Our Services */
.our-services {
  background: var(--white);
  padding: 120px 20px 80px 20px;
  display: flex;
  justify-content: center;
}

.our-inner {
  max-width: 1310px;
  width: 100%;
  text-align: center;
}

.our-logo img {
    width: 90px;
    margin-bottom: 28px;
}

.our-services h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 30px;
}

.our-intro {
  font-family: "lato", Sans-serif;
  font-size: 24px;;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -1px;
  color: var(--navy);
}

/* IMAGES CARD — constrained to 4:3 to reduce vertical dominance */
.Images-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.image-card {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dots {
  display: none;
}

@media (max-width: 768px) {
  .Images-cards,
  section.services-cards .impact-cards,
  section.approach-wrapper .approach-cards,
  section.services-cards .our-process-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .Images-cards::-webkit-scrollbar,
  .impact-cards::-webkit-scrollbar,
  .approach-cards::-webkit-scrollbar,
  .our-process-cards::-webkit-scrollbar {
    display: none;
  }

  .image-card,
  .impact-card,
  .card {
    min-width: 180px;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Mobile carousel overrides aspect-ratio with explicit width/height */
  .image-card {
    aspect-ratio: auto;
  }

  .dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
  }

  .dot.active {
    background: var(--navy);
    transform: scale(1.3);
  }
}

/* Services Cards */
.impact-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.impact-card {
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  /* min-height: 346px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .impact-card {
    min-height: 176px;
  }
}

.impact-card.rose {
  background: #c6858f;
}

.impact-card.navy {
  background: #0c1444;
}

.impact-card.green {
  background: #0d5257;
}

.impact-card.wine {
  background: #732e4a;
}

.impact-card h3 {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0px;
  /* word-break: break-word; */
  /* overflow-wrap: break-word; */
}

.impact-card.rose:first-child h3 {
  text-transform: uppercase;
}

.impact-card.navy h3 {
  color: #c6858f;
}

.impact-card.rose h3 {
  color: var(--navy);
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

/* navy */
.impact-card.navy::before {
  background: linear-gradient(
    180deg,
    rgba(12, 20, 68, 0.85),
    rgba(12, 20, 68, 0.95)
  );
}

/* green */
.impact-card.green::before {
  background: linear-gradient(
    180deg,
    rgba(13, 82, 87, 0.85),
    rgba(13, 82, 87, 0.95)
  );
}

/* wine */
.impact-card.wine::before {
  background: linear-gradient(
    180deg,
    rgba(115, 46, 74, 0.85),
    rgba(115, 46, 74, 0.95)
  );
}

/* Rose */
.impact-card.rose::before {
  background: linear-gradient(
    135deg,
    rgba(198, 133, 143, 0.85),
    rgba(180, 111, 122, 0.9),
    rgba(138, 79, 92, 0.95)
  );
}

/* ON HOVER IN → instant */
.impact-card:hover::before {
  opacity: 1;
}

.impact-card h3,
.impact-card p {
  position: relative;
  z-index: 2;
}

/* Section */
.contact-section {
  background: var(--white);
  padding: 120px 20px;
  text-align: center;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
.section-title {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0d5257;
  margin-bottom: 60px;
}

/* Layout */
.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: left;
}

/* Image */
.contact-image {
  max-width: 400px;
  flex-shrink: 0;
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0px 20px;
}

/* Content */
.contact-content h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  color: #0c1444;
  margin-bottom: 30px;
  max-width: 380px;
}

/* Button */
.btn-secondary {
  background-color: #0d5257;
  color: var(--white);
  outline: 1px solid var(--white);
}

.btn-secondary:hover {
  outline: 1px solid #0d5257;
}

/* text part */
.btn-secondary .btn-text {
  background-color: #0d5257;
}

/* arrow part */
.btn-secondary .btn-arrow {
  background-color: #0d5257;
  color: var(--white);
  border-left: 1px solid var(--white);
}

/* hover text */
.btn-secondary:hover .btn-text {
  background-color: var(--white);
  color: #0d5257;
}

/* hover arrow */
.btn-secondary:hover .btn-arrow {
  background-color: var(--white);
  color: #0d5257;
  border-left: 1px solid #0d5257;
}

/* Footer Base */
.site-footer {
  background: #c6858f;
  color: var(--navy);
}

/* Container */
.container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.5fr;
  gap: 50px;
  padding: 60px 0;
}

/* Logo */
.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

/* Text */
.footer-about p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 282px;
}

.footer-col h4 {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Contact */
.footer-contact {
  list-style: none;
  font-size: 20px;
  line-height: 1.6;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact li svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 20px;
  transition: 0.3s;
}

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  margin-right: 10px;
  font-size: 16px;
  text-decoration: none;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  font-size: 16px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

/***********************************************************************/
/* About Page */
/***********************************************************************/
/* OUR PEOPLE */
.our-people {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 10px;
  margin-bottom: 10px;
}

.people-left {
  background: #0d5257;
  color: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.people-left h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: left;
  margin-bottom: 28px;
}

.people-left p {
  text-align: left;
  font-family: "lato", Sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.2px;
}

.people-left p:last-child {
  margin-bottom: 0;
}

.people-right {
  max-height: 320px;
  overflow: hidden;
}

.people-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* APPROACH TITLE */
.approach-title {
  background: #c6858f;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 10px;
}

.approach-title h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}

/* APPROACH CARDS */
.approach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.card {
  padding: 40px 30px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card p {
  text-align: center;
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.2px;
}

@media (max-width: 768px) {
  .card {
    min-height: 280px;
    width: 280px;
  }
}

/* Colors */
.card.light {
  background: #c6858f;
  color: var(--navy);
}

.card.navy {
  background: var(--navy);
  color: #c6858f;
}

.card.teal {
  background: #155e5c;
  color: var(--white);
}

.card.wine {
  background: #732e4a;
  color: var(--white);
}

.community-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  margin-bottom: 10px;
}

.community-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.community-layer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-content {
  max-width: 1310px;
  text-align: center;
  padding: 30px;
}

.community-content p {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 52px;
  color: var(--white);
}

.reachout-section {
  background: var(--white);
  padding: 100px 20px;
}

.reachout-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reachout-left h2 {
  color: #0d5257;
  font-family: "Josefin Sans", Sans-serif;
  font-size: 41px;
  font-weight: 700;
  text-transform: uppercase;
}

.reachout-center p {
  color: #0c1444;
  font-family: "Lato", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 480px;
}

/***********************************************************************/
/* Global Connections Page */
/***********************************************************************/
.insight-section {
  background: var(--white);
}

.insight-wrapper {
  display: flex;
  gap: 10px;
}

/* Card base */
.insight-card {
  flex: 1;
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

@media (max-width: 768px) {
  .insight-card {
    min-height: 300px;
  }
}

.insight-card--teal {
  background: #0d5257;
}

.insight-card--maroon {
  background: #732e4a;
}

.insight-card--rose {
  background: #c6858f;
  color: var(--navy);
}

.insight-card h3 {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.insight-card p {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.2px;
}

/***********************************************************************/
/* Contact Page */
/***********************************************************************/
.info-strip {
  display: flex;
  gap: 10px;
  width: 100%;
}

.info-card {
  flex: 1;
  padding: 40px 20px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 287px;
}

.info-content {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 380px;
  text-align: left;
}

.icon {
  width: 25px;
  height: 25px;
  fill: #ffffff;
  flex-shrink: 0;
}

.info-card-1 {
  background-color: #0d5257;
}

.info-card-2 {
  background-color: #732e4a;
}

.info-card-3 {
  background-color: #c6858f;
}

.info-card p {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -1px;
}

.info-card a {
  color: #1a2a6c;
  text-decoration: underline;
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -1px;
}

/* MAIN WRAPPER */
.enquiry-wrap {
  display: flex;
  gap: 10px;
  padding: 10px 0px;
}

/* LEFT SIDE (FORM) */
.enquiry-left {
  flex: 1;
  background-color: #0e1b4d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.enquiry-form {
  width: 100%;
  max-width: 715px;
}

.enquiry-form label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 26px;
}

.enquiry-form input,
.enquiry-form textarea {
  outline: none;
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: #ffffff;
  margin-bottom: 26px;
  font-size: 16px;
}

.submit-btn {
  display: flex;
  justify-content: center;
}

/* RIGHT SIDE */
.enquiry-right {
  flex: 1;
  background: var(--white);
}

.enquiry-right h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 30px;
  margin-top: 48px;
  text-align: center;
}

.step {
  padding: 60px;
  margin-bottom: 10px;
  color: var(--white);
}

.step:last-child {
  margin-bottom: 0;
}

.step h3 {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;;
  letter-spacing: -1px;
  text-align: left;
  margin-bottom: 20px;
}

.step p {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  letter-spacing: 1.2px;
}

.step-1 {
  background-color: #0d5257;
}

.step-2 {
  background-color: #732e4a;
}

.step-3 {
  background-color: #c6858f;
  color: var(--navy);
}

/***********************************************************************/
/* OUR APPROACH Page */
/***********************************************************************/
/* SECTION */
.people-section {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 10px;
  min-height: 240px;
  margin-bottom: 18px;
}

.people-image {
  max-height: 320px;
  overflow: hidden;
}

.people-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.people-content {
  background-color: #c6858f;
  display: flex;
  align-items: center;
  padding: 48px;
}

.content-inner {
  max-width: 600px;
  text-align: center;
  color: var(--navy);
}

.content-inner h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;;
  font-weight: 700;
  /* letter-spacing: -1px; */
  text-align: left;
  margin-bottom: 36px;
}

.content-inner p {
  text-align: left;
  font-family: "lato", Sans-serif;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
  letter-spacing: 1.2px;
}

.our-process-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .our-process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .our-process-cards {
    grid-template-columns: 1fr;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 241px;
  }
}

@media (max-width: 600px) {
  .grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
  }

  .grid::-webkit-scrollbar {
    display: none;
  }

  .grid .img-tile {
    display: none;
  }

  .grid .tile:not(.img-tile) {
    min-width: 210px;
    height: 210px;
    flex-shrink: 0;
    scroll-snap-align: start;
    aspect-ratio: 1/1;
  }
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  aspect-ratio: 4 / 3;
}

.pink {
  background: #c6858f;
  color: var(--navy);
}

.navy {
  background: #0c1444;
  color: #c6858f;
}

.teal {
  background: #0d5257;
}

.maroon {
  background: #732e4a;
}

.green {
  background: #0d5257;
}

.img-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.img-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile h3 {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0px;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 15px;
}

.tile p {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  line-height: 32px;
  margin: 0 20px;
  letter-spacing: 1.2px;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: var(--white);
  padding: 80px 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

#popup-title {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 24px;
}

.popup-content p {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #0c1444;
  letter-spacing: 1.2px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.clickable {
  cursor: pointer;
}

@media (max-width: 600px) {
  .grid-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* hide image tiles on mobile */
  .grid-accordion .tile.img-tile {
    display: none;
  }

  .grid-accordion .tile.clickable {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    border-bottom: 1.5px solid var(--white);
    height: 100px;
  }

  .grid-accordion .tile.clickable h3 {
    font-size: 20px;
    margin-bottom: 0;
    text-align: left;
    max-width: calc(100% - 40px);
  }

  .grid-accordion .tile.clickable .acc-icon {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .acc-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.4s ease,
      opacity 0.4s ease,
      padding 0.4s ease;
    padding: 0 24px;
    font-family: "lato", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    margin-top: -10px;
  }

  .tile.pink + .acc-body {
    background: #c6858f;
    color: var(--navy);
  }

  .tile.navy + .acc-body {
    background: #0c1444;
    color: #c6858f;
  }

  .tile.teal + .acc-body {
    background: #0d5257;
    color: #fff;
  }

  .tile.maroon + .acc-body {
    background: #732e4a;
    color: #fff;
  }

  .tile.green + .acc-body {
    background: #0d5257;
    color: #fff;
  }

  .acc-body.open {
    max-height: 500px;
    opacity: 1;
    padding: 16px 24px 20px;
  }
}

/* hide acc-body on desktop */
@media (min-width: 601px) {
  .acc-body {
    display: none !important;
  }

  .acc-icon {
    display: none;
  }
}

/***********************************************************************/
/* Client Wins Page */
/***********************************************************************/
.wins-section {
  background: var(--white);
}

.wins-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 10px;
}

/* Item */
.wins-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 625 / 290;
}

.wins-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wins-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(0, 0, 0, 0.5) 54%
  );
  transition: 0.4s ease;
}

.wins-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
}

/* Caption overlay */
.wins-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 40px;
  font-family: "Josefin Sans", Sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--white);
  transition: 0.4s ease;
}

.wins-item:hover::after {
  opacity: 0;
}

.wins-item:hover .wins-caption {
  opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .wins-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wins-layout {
    grid-template-columns: 1fr;
  }
}

/***********************************************************************/
/* Perspectives Page */
/***********************************************************************/
.blog-area {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 10px;
}

.blog-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Content */
.blog-content {
  padding: 36px;
  color: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.blog-content h3 {
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;
    line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
  margin: 0 0 12px;
  letter-spacing: -1px;
}

.blog-meta {
  display: flex;
  justify-content: left;
  align-items: center;
  font-family: "Josefin Sans", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0px;
  position: relative;
}

.arrow {
  background: var(--white);
  display: flex;
  position: absolute;
  right: 0px;
}

/* Background variations */
.bg-teal {
  background: #0d5257;
}

.bg-maroon {
  background: #732e4a;
}

.bg-pink {
  background: #c6858f;
  color: var(--navy);
}

.bg-navy {
  background: var(--navy);
  color: #c6858f;
}

.blog-load {
  display: flex;
  justify-content: center;
  margin: 50px 0px 24px;
}

.extra-post {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/***********************************************************************/
/* Voice of trust Page */
/***********************************************************************/
.voice-section {
  background: var(--white);
}

/* Grid */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  cursor: pointer;
}

/* Card */
.voice-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* Image */
.voice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.voice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(0, 0, 0, 0.5) 70%
  );
  transition: 0.4s ease;
}

/* Content */
.voice-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 20px;
  transition: 0.4s ease;
}

.voice-content h3 {
  margin: 0 0 8px;
  font-family: "Josefin Sans", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
}

.voice-content p {
  font-family: "lato", Sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
}

.voice-card:hover .voice-overlay {
  opacity: 0;
}

.voice-card:hover .voice-content {
  opacity: 0;
}



.voice-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.voice-modal-box {
  background: var(--white);
  padding: 80px 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.voice-modal-box p {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #0c1444;
  letter-spacing: 1.2px;
}

/* Close icon */
.voice-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .voice-grid {
    grid-template-columns: (2, 1fr);
  }

  .voice-content h3 {
    font-size: 20px;
  }
.voice-modal-box p {
  font-size: 16px;
}
}

/***********************************************************************/
/* Responsive CSS */
/***********************************************************************/
/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--navy);
}

/* Drawer base */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #c6858f;
  transition: left 0.4s ease;
  z-index: 2000;
  padding: 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#closeBtn {
  font-size: 26px;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  text-align: center;
  margin-top: 30px;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

.drawer-links li {
  margin: 14px 0;
}

.drawer-links a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-transform: capitalize;
}

.drawer-links a.active {
  color: var(--wine);
}

.nav-links a.active,
.drawer-links a.active {
  color: var(--wine);
}

/* Mobile nav CTA — hidden on desktop, shown on mobile */
.nav-mobile-cta {
  display: none;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  width: fit-content;
  text-decoration: none;
  overflow: hidden;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.drawer-cta-text {
  background-color: #0d5257;
  color: #fff;
  padding: 14px 28px;
}

.drawer-cta-arrow {
  background-color: #0d5257;
  color: #fff;
  padding: 14px 18px;
  border-left: 1px solid rgba(255,255,255,0.3);
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  nav {
    display: flex;
    justify-content: flex-start;
    padding: 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo {
    order: 1;
  }

  .logo-icon {
    height: 43px;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: stretch;
    order: 2;
    margin-left: auto;
    margin-right: 12px;
    text-decoration: none;
    font-family: "lato", sans-serif;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
  }

  .nav-mobile-cta-text {
    background-color: #0d5257;
    color: #fff;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
  }

  .nav-mobile-cta-arrow {
    background-color: #0d5257;
    color: #fff;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hamburger {
    order: 3;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 30px;
  }

  .footer-about p {
    max-width: 100%;
  }

  .hero {
    margin-top: 100px;
  }

  .hero-content {
    padding: 60px 40px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 44px;
    text-align: left;
  }

  .who-intro {
    font-size: 24px;
  }

  .who-columns p,
  .our-intro {
    font-size: 20px;
  }

  .who h2,
  .impact-header h2,
  .our-services h2,
  .section-title,
  .approach-title h2,
  .enquiry-right h2 {
    font-size: 42px;
  }

  .approach-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* HERO stacks vertically on mobile, image on top */
  .hero {
    grid-template-columns: 1fr;
    margin-top: 80px;
    min-height: auto;
  }

  .hero-bg {
    order: 1;
    min-height: 252px;
    max-height: 306px;
  }

  .hero-content {
    order: 2;
    padding: 38px 30px;
    text-align: left;
  }

  .hero-content h1 {
    font-size: 28px;;
    line-height: 38px;
  }

  .hero__cta {
    justify-content: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 30px;
  }

  .footer-logo {
    width: 80px;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-about p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Contact items align nicely */
  .footer-contact li,
  .footer-links a {
    font-size: 16px;
  }

  /* Links spacing tighter */
  .footer-links li {
    margin-bottom: 10px;
  }

  /* Center social icons */
  .footer-social {
    display: flex;
    gap: 10px;
  }

  /* Bottom section stacked */
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .who,
  .our-services,
  .contact-section,
  .reachout-section {
    padding: 60px 30px;
  }

  .who h2,
  .impact-header h2,
  .our-services h2,
  .section-title,
  .approach-title h2,
  .people-left h2,
  .enquiry-right h2,
  .step h3,
  .reachout-left h2,
  .insight-card h3,
  .content-inner h2,
  .blog-content h3 {
    font-size: 20px;
  }

  .blog-meta {
    font-size: 16px;
  }

  .who-inner,
  .our-inner,
  .contact-section,
  .people-left h2,
  .content-inner h2,
  .blog-content h3,
  .step h3,
  .insight-card {
    text-align: left;
  }

  .insight-card {
    padding: 40px 30px;
  }

  .who-logo img,
  .our-logo img {
    width: 52px;
  }

  .who-columns,
  .our-people,
  .people-section {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .tile h3 {
    font-size: 20px;
    margin: 10px;
    line-height: 24px;
  }

  .impact-card h3 {
    font-size: 20px;
    line-height: 22px;
  }

  .hero__sub,
  .who-columns p,
  .our-intro {
    font-size: 16px;
    line-height: 22px;
  }

  .who-intro {
    font-size: 20px;
    line-height: 24px;
  }

  .contact-content h3,
  .people-left p,
  .card p,
  .reachout-center p,
  .step p,
  .insight-card p,
  .content-inner p {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .tile p {
    font-size: 16px;
    line-height: 20px;
    margin: 0 12px;
    text-align: center;
  }

  .community-content p {
    font-size: 24px;
    line-height: 30px;
    text-align: left;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .contact-image {
    max-width: 100%;
    width: 100%;
  }

  .contact-image img {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .blog-content {
    padding: 30px;
  }

  .blog-meta {
    justify-content: start;
  }

  .reachout-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-strip,
  .enquiry-wrap,
  .insight-wrapper {
    flex-direction: column;
  }

  .mobile-logo {
    margin-top: 48px;
  }

  .info-card {
    padding: 32px;
    justify-content: flex-start;
    min-height: 100px;
  }

  .info-card p, .info-card a, .enquiry-form label {
    font-size: 16px;
  }


  .wins-caption {
    padding: 30px;
    font-size: 25px;
  }

  .card p {
    max-width: 300px;
    margin: 0 auto;
  }

  .impact-cards,
  .approach-cards,
  .our-process-cards,
  .Images-cards {
    gap: 10px;
  }

  .people-image {
    order: 1;
  }

  .step {
    padding: 30px;
  }

  .who h2.who-heading {
    margin-bottom: 0;
  }

  .people-left,
  .people-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 80px;
  }

  .footer-contact li {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-contact li svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}

/* ==========================================
   BLOG DETAIL PAGE
========================================== */

.blog-detail-hero {
  margin-top: 120px;
}

.blog-detail-hero-img {
  width: 100%;
  text-align: center;
}

.blog-detail-hero-img img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}

/* ==========================================
   ARTICLE
========================================== */

.blog-detail-body h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
  text-transform: none;
}

.blog-detail-body h2 {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  color: var(--navy);
  margin: 50px 0 20px;
}

.blog-detail-body p {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--navy);
  margin-bottom: 24px;
}

.blog-detail-body ul {
  margin: 25px 0 30px 30px;
}

.blog-detail-body li {
  font-family: "Lato", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ==========================================
   SIDEBAR
========================================== */

.blog-detail-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-section {
  margin-bottom: 60px;
}

.blog-sidebar-section h4 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8d8d8;
}

/* Share Buttons */

.blog-share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d8d8d8;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.blog-share-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* Topics */

.blog-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-tag-pill {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid #d8d8d8;
  background: #fff;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.blog-tag-pill:hover {
  background: var(--navy);
  color: #fff;
}

/* CTA CARD */

.cs-sidebar-card {
  background: #fff;
  padding: 28px;
  border-radius: 6px;
}

/* ==========================================
   RELATED POSTS
========================================== */

.blog-related-section {
  padding: 80px 0;
  border-top: 1px solid #ddd;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {
  .blog-detail-layout {
    gap: 50px;
  }

  .blog-detail-body h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }

  .blog-detail-body h1 {
    font-size: 52px;
  }

  .blog-detail-body p,
  .blog-detail-body li {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-detail-hero-img img {
    max-height: 220px;
  }

  .blog-detail-meta {
    gap: 12px;
    font-size: 14px;
  }

  .blog-detail-body h1 {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .blog-detail-body h2 {
    font-size: 30px;
  }

  .blog-detail-body p,
  .blog-detail-body li {
    font-size: 18px;
    line-height: 1.7;
  }

  .blog-sidebar-section h4 {
    font-size: 26px;
  }
}

.blog-related-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #d9d9d9;
}

.related-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.related-blog-grid .blog-box {
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.blog-related-section h2 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #17345d;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .related-blog-grid {
    grid-template-columns: 1fr;
  }
}
