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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: 'Bitter', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0em;
  line-height: 1.5em;
  color: #0F304D;
  background-color: #F8F8F8;
}

h1, h2, h3, h4, .btn, .logo, .lang-link, label {
  font-family: 'Manrope', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sand {
  background-color: #F3EFE8;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.2em;
  color: #FA940F;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

h2.section-heading-center {
  text-align: center;
  color: #0F304D;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4A4A4A;
  max-width: 640px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background-color: #0F304D;
  color: #FFFFFF;
}

.btn-orange {
  background-color: #FA940F;
  color: #FFFFFF;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: hsl(0, 0%, 96%);
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-left {
  flex: 1;
}

.logo {
  flex: 0 0 auto;
}

.logo-img {
  height: 76px;
  width: auto;
  display: block;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.lang-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A4A4A;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.lang-link.active,
.lang-link:hover {
  opacity: 1;
  color: #0F304D;
}

/* ===========================
   HAMBURGER MENU (MOBILE)
   =========================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0F304D;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   HERO
   =========================== */
.section-hero {
  padding-top: 172px;
  padding-bottom: 0;
  background-color: hsl(0, 0%, 96%);
}

.hero-subtitle {
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.04em;
  line-height: 1.1em;
  color: #0F304D;
  margin-top: 24px;
  margin-bottom: 0;
  max-width: 750px;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 400;
  color: #4A4A4A;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 100%;
}

.hero-tagline strong {
  color: #0F304D;
}

.hero-image {
  width: 100%;
  margin-top: 60px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ===========================
   BLOCK SPLIT (TEXT + IMAGE)
   =========================== */
.section-block {
  padding: 0;
}

.block-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

#why-fundit .block-split-text,
#expect .block-split-text {
  background-color: #e0e1e3;
}

.block-split-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-split-text h2 {
  margin-bottom: 24px;
}

.block-split-text p {
  color: #4A4A4A;
  margin-top: 12px;
  line-height: 1.5em;
}

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

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

  .block-split-text {
    padding: 48px 24px;
  }

  .block-split-image img {
    height: 300px;
  }
}

/* ===========================
   PILLARS (WHAT WE DO)
   =========================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  align-items: stretch;
}

.pillar {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 36px 32px;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  transform: translateY(-8px);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
}

.pillar-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #4A4A4A;
  margin-bottom: 8px;
  text-align: center;
}

.pillar-label span {
  color: #FA940F;
}

.pillar h3 {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1.1em;
  color: #0F304D;
  margin-bottom: 24px;
  text-align: center;
  min-height: 75px;
}

.pillar p {
  color: #4A4A4A;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.7em;
}

/* Desktop: inline panels hidden, modal used instead */
.pillar-panel {
  display: none;
}

.pillar-panel-close {
  display: none;
}

/* Shared panel content styles (used in both modal and inline) */
.pillar-panel h4,
.modal-body h4 {
  color: #0F304D;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 28px;
  margin-bottom: 10px;
  text-align: left;
}

.pillar-panel h4:first-of-type,
.modal-body h4:first-of-type {
  margin-top: 0;
}

.pillar-panel p,
.modal-body p {
  color: #4A4A4A;
  line-height: 1.8;
  flex: none;
  margin-bottom: 4px;
  text-align: left;
}

.pillar-panel ul,
.modal-body ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pillar-panel ul li,
.modal-body ul li {
  color: #4A4A4A;
  line-height: 1.8;
  padding-left: 16px;
  padding-top: 2px;
  padding-bottom: 2px;
  position: relative;
}

.pillar-panel ul li::before,
.modal-body ul li::before {
  content: "•";
  color: #FA940F;
  position: absolute;
  left: 0;
}

/* ===========================
   MODAL OVERLAY (desktop)
   =========================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 56px 64px;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #4A4A4A;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  z-index: 1;
}

.modal-close:hover {
  color: #0F304D;
}

body.modal-open {
  overflow: hidden;
}

/* Pillar callout box */
.pillar-callout {
  background: rgba(232, 146, 10, 0.05);
  border-radius: 4px;
  padding: 12px 16px;
  margin-top: auto;
  flex-shrink: 0;
}

.pillar-callout-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E8920A;
  margin-bottom: 8px;
}

.pillar-callout-sectors {
  font-size: 15px;
  font-weight: 400;
  color: #1B2A4A;
  line-height: 1.5;
}

.pillar-callout p {
  flex: 0;
  margin-bottom: 0;
}

.pillar-toggle {
  background: none;
  border: none;
  color: #FA940F;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 0;
  padding-top: 24px;
  transition: opacity 0.2s ease;
  display: block;
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}

.pillar-toggle:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pillar {
    text-align: center;
    align-items: center;
  }

  .pillar p {
    text-align: center;
  }

  /* Mobile: re-enable inline panels */
  .pillar-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
    background: #F3EFE8;
    border-radius: 8px;
    margin-top: 0;
    padding: 0;
    flex-shrink: 0;
    width: 100%;
    text-align: left;
  }

  .pillar-panel.open {
    max-height: 2000px;
    margin-top: 24px;
    padding: 32px;
  }

  .pillar-panel-close {
    display: block;
    float: right;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4A4A4A;
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }

  .pillar-panel-close:hover {
    color: #0F304D;
  }

  .pillar .pillar-panel,
  .pillar .pillar-panel p,
  .pillar .pillar-panel h4,
  .pillar .pillar-panel ul {
    text-align: left;
  }

  /* Mobile: never show modal */
  .modal-overlay {
    display: none !important;
  }

  .pillar-callout {
    text-align: center;
    width: 100%;
  }
}

/* ===========================
   DISTINGUISH (PARALLAX)
   =========================== */
.section-parallax {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.parallax-image {
  overflow: hidden;
}

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

.parallax-content {
  background: hsl(0, 0%, 96%);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

  .parallax-image {
    min-height: 300px;
  }

  .parallax-content {
    padding: 40px 24px;
  }

  .distinguish-title {
    font-size: 1.75rem;
  }
}

/* Distinguish header */
.distinguish-header {
  margin-bottom: 32px;
}

.distinguish-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FA940F;
  margin-bottom: 12px;
}

.distinguish-title {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0F304D;
  margin-bottom: 12px;
}

.distinguish-subtitle {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
}

/* Distinguish cards */
.distinguish-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.distinguish-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px 28px;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.distinguish-card:hover {
  border-left-color: #FA940F;
  box-shadow: 0 4px 16px rgba(15, 48, 77, 0.08);
}

.distinguish-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.distinguish-number {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FA940F;
}

.distinguish-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0F304D;
  margin-bottom: 0;
}

.distinguish-body {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.65;
  margin: 0 0 10px 0;
}

.distinguish-proof {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 48, 77, 0.7);
  letter-spacing: 0.3px;
  margin: 0;
}

/* ===========================
   VALUES / EXPECT
   =========================== */
.values-closing {
  margin-top: 24px;
  font-style: italic;
}

/* ===========================
   FULL SERVICE
   =========================== */
.full-service-intro {
  text-align: left;
  max-width: 680px;
  margin: 0 0 56px 0;
}

.full-service-intro p {
  color: #4A4A4A;
  margin-top: 16px;
  line-height: 1.5em;
}

.full-service-intro strong {
  color: #0F304D;
}

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

.service-column {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 120px 120px 120px;
}

.service-column h3 {
  color: #FA940F;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 36px 28px 24px 28px;
  margin: 0;
}

.service-item {
  padding: 16px 28px;
  border-top: 1px solid #DBDCDE;
}

.service-item:last-child {
  padding-bottom: 36px;
}

.service-title {
  color: #0F304D;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.service-desc {
  color: #4A4A4A;
  font-size: 14px;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  .service-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-column {
    display: block;
  }
}

/* ===========================
   TESTIMONIALS
   =========================== */
.section-testimonials {
  background-color: #0F304D;
}

.testimonials-heading {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track {
  display: flex;
  gap: 32px;
  overflow: hidden;
  flex: 1;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 36px 32px;
  min-width: calc(50% - 16px);
  max-width: calc(50% - 16px);
  flex-shrink: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-quote {
  color: #4A4A4A;
  font-size: 18px;
  line-height: 1.5em;
  font-style: italic;
}

.testimonial-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #DBDCDE;
  object-fit: cover;
  flex-shrink: 0;
}


.testimonial-photo-top {
  object-position: center top;
}

.testimonial-name {
  color: #0F304D;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-role {
  color: #4A4A4A;
  font-size: 0.9rem;
  margin-top: 4px;
}

.carousel-arrow {
  background: none;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ===========================
   CONTACT
   =========================== */
#contact {
  background-color: hsl(0, 0%, 96%);
}

/* Contact header */
.contact-header {
  margin-bottom: 48px;
}

.contact-header p {
  color: #4A4A4A;
  margin-top: 8px;
}

/* Contact cards shared */
.contact-card {
  border-radius: 8px;
  padding: 48px;
  margin-bottom: 32px;
}

.contact-heading-with-photo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card-subline {
  margin-bottom: 20px;
}

/* Path A — dark card */
.contact-card-dark {
  background-color: #0F304D;
  color: #FFFFFF;
}

.contact-card-dark h3 {
  color: #FFFFFF;
}

.contact-card-dark p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5em;
}

.contact-card-dark ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px 0;
}

.contact-card-dark ul li {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.contact-card-dark ul li::before {
  content: "•";
  color: #FA940F;
  position: absolute;
  left: 0;
}

/* Path B — light card */
.contact-card-light {
  background-color: #FFFFFF;
  border: 1px solid #DBDCDE;
}

.contact-card-light h3 {
  color: #0F304D;
}

.contact-card-light p {
  color: #4A4A4A;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #0F304D;
}

.required {
  color: #FA940F;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DBDCDE;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #0F304D;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FA940F;
}

.contact-form-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4A4A4A;
}

/* Contact details */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 16px;
}

.contact-location {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #0F304D;
  margin-top: 48px;
  margin-bottom: 8px;
}

.contact-details-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #4A4A4A;
  margin-bottom: 8px;
}

.contact-details-col p {
  color: #0F304D;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 32px 24px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===========================
   ABOUT US
   =========================== */
.section-about {
  background-color: #0F304D;
}

.about-intro {
  max-width: 700px;
  margin: 0 0 64px 0;
}

.about-heading {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.about-intro p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
  line-height: 1.5em;
  font-size: 18px;
}

.about-pullquote {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
}

.about-closing {
  margin-top: 20px;
}

.about-closing p {
  font-size: inherit;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5em;
  margin-top: 14px;
}

.about-link {
  color: #FA940F;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.about-link:hover {
  opacity: 0.8;
}

.about-intro strong {
  color: #FFFFFF;
}

.about-intro .bright-side {
  color: #FFFFFF;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.team-photo {
  width: 180px;
  height: 240px;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto 20px auto;
}
.team-name {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.1rem;
}

.team-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 4px;
}

.team-linkedin {
  display: inline-block;
  margin-top: 12px;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.team-linkedin:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .team-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background-color: #0F304D;
  color: #FFFFFF;
  text-align: center;
  padding: 32px 0;
  font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE — TABLET & MOBILE
   =========================== */
/* ===========================
   TABLET (1024px)
   =========================== */
@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-column {
    display: block;
  }

  .team-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ===========================
   MOBILE (768px)
   =========================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #DBDCDE;
  }

  .nav-links.active {
    display: flex;
  }

  /* Navbar language links */
  .nav-right {
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
  }

  .lang-link {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .logo-img {
    height: 56px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-hero {
    padding-top: 120px;
    padding-bottom: 0;
  }

  /* Hero subtitle — smaller on mobile */
  .hero-subtitle {
    font-size: 22px;
    line-height: 1.2em;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .pillar h3 {
    min-height: unset;
  }

  .contact-card h3 {
    font-size: 1.25rem;
  }

  /* Image zoom/crop on mobile */
  .hero-image {
    height: 220px;
    margin-top: 40px;
  }

  .hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.3);
  }

  .block-split-image img {
    height: 280px;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.2);
  }

  .parallax-image {
    height: 280px;
    min-height: unset;
    overflow: hidden;
  }

  .parallax-image img {
    object-position: center 30%;
    transform: scale(1.3);
  }

  /* Contact heading with photo — stack vertically */
  .contact-heading-with-photo {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-photo {
    order: -1;
  }

  /* About section */
  .about-intro {
    margin-bottom: 40px;
  }

  .team-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
