/* =========================
   ROOT VARIABLES
========================= */
:root {
  --navy-dark: #0b1c2d;
  --navy-mid: #0f2438;
  --gold-primary: #dcc9a3;
  --text-light: #f7f5f0;
  --text-muted: #dcdcdc;
}

/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--navy-dark);
  color: var(--text-light);
  font-family: "Gudea", sans-serif;
  line-height: 1.65;
}

/* =========================
   HEADER / NAV (LOCKED)
========================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 88px;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(11, 28, 45, 0.9),
    rgba(11, 28, 45, 0.6)
  );
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
  padding: 0 60px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 82px;
  width: auto;
}

.logo span {
  font-family: "Castoro Titling", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(to right, #c8b379, #f7f5f0 50%, #c8b379 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-left: -8px;
}

.nav-right a {
  margin-left: 30px;
  font-family: "Castoro Titling", serif;
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: none;
}

.nav-right a:first-child {
  position: relative;
  left: -8px; /* adjust: try -4px to -8px */
}

/* =========================
   NAV LINK HOVER EFFECT
========================= */

.nav-right a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.25s ease;
}

/* Gold underline */
.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    #c8b379,
    #f7f5f0 50%,
    #c8b379
  );
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Hover state */
.nav-right a:hover {
  color: #f2dfb8;
}

.nav-right a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}


.nav-right .nav-cta:hover {
  background: rgba(220, 201, 163, 0.08);
}
.nav-right .nav-cta {
  position: relative;
  padding: 8px 18px;

  border: 1px solid var(--gold-primary);
  outline: 1px solid var(--gold-primary);
  outline-offset: 4px;

  color: var(--gold-primary);
}

/* Do not underline CTA */
.nav-right .nav-cta::after {
  display: none;
}

/* =========================
   NAV: dropdown (Services menu) 
========================= */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Services link styling */
.nav-link {
  margin-left: 30px;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "DM Serif Display", serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-light);
  transition: color 0.2s ease;
  padding: 0;
}

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

/* Caret button next to Services (optional) */
.nav-caret {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-family: "DM Serif Display", serif;
  font-size: 0.95rem;
  margin-left: 6px;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
  position: relative;
  top: -1px;
}

.nav-caret:hover { color: var(--gold-primary); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: -58px;

  width: 420px;      /* 👈 Wider */
  padding: 20px 28px;    /* Slightly more breathing room */

  border-radius: 16px;
  border: 1px solid rgba(237, 230, 214, 0.14);
  background: rgba(11, 28, 45, 0.98);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: 160ms ease;
  z-index: 2000;
}




/* Hover buffer so cursor can move down into dropdown */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  position: relative;

  padding: 14px 0;      /* no horizontal padding */
  margin: 0;            /* remove any accidental shift */

  text-decoration: none;
  color: var(--text-light);

  font-family: "Inter", sans-serif;
  font-size: 0.95rem;

  white-space: nowrap;
}

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

.dropdown-group-label {
  padding: 10px 12px 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.65);
}

.dropdown-divider {
  height: 1px;
  margin: 8px 8px;
  background: rgba(237, 230, 214, 0.14);
  border-radius: 999px;
}

/* OPEN dropdown on hover / keyboard focus */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* OPEN dropdown when JS toggles .open (mobile) */
.has-dropdown.open .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   HERO (UNCHANGED)
========================= */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 120px;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 28, 45, 0.65),
    rgba(11, 28, 45, 0.85)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 30vh;
  text-align: center;
}

.hero h1 {
  font-family: "Castoro Titling", serif;
  font-size: 3.9rem;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 42px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* =========================
   MOBILE-ONLY HERO SIZING
   Apply Approach-like hero sizing across pages, but only on small screens.
   Desktop retains each page's desktop hero rules.
========================= */
@media (max-width: 900px) {
  .hero h1,
  .page-hero h1,
  .services-hero h1,
  .approach-hero h1,
  .contact-hero h1,
  .executive-hero h1,
  .inquire-hero h1,
  .philosophy-hero h1,
  .exec-page .ed-hero-title,
  .dva-page .dva-hero-title,
  .rev-page .rev-hero-title,
  .pc-page .pc-hero-title,
  .template-page .template-hero-title,
  .custom-page .custom-hero-title,
  .redesign-page .redesign-hero-title,
  .uxui-page .uxui-hero-title {
    font-family: "Castoro Titling", serif;
    font-size: 2.8rem; /* mobile-friendly approach size */
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .hero p,
  .page-hero p,
  .services-hero p,
  .approach-subtitle,
  .contact-hero .contact-hero-content p,
  .exec-page .ed-hero-subtitle,
  .dva-page .dva-hero-subtitle,
  .rev-page .rev-hero-subtitle,
  .pc-page .pc-hero-subtitle,
  .template-page .template-hero-subtitle,
  .custom-page .custom-hero-subtitle,
  .redesign-page .redesign-hero-subtitle,
  .uxui-page .uxui-hero-subtitle {
    font-size: 1rem; /* mobile subtitle size */
    color: rgba(255,255,255,0.95);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   BUTTON
========================= */

/* Global INQUIRE button — used in header, hero, footer */
.btn-inquire {
  position: relative;
  display: inline-block;

  font-family: "Castoro Titling", serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  padding: 12px 28px;
  color: var(--gold-primary);
  text-decoration: none;

  border: 1px solid var(--gold-primary);
}

/* Inner rectangle */
.btn-inquire::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold-primary);
  pointer-events: none;
}

/* Hover state */
.btn-inquire:hover {
  background: rgba(220, 201, 163, 0.08);
}



/* =========================
   WHAT WE DO — PANEL
========================= */
.light-section {
  background: #f6f5f2;
  padding: 140px 0;
}

.services-panel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;

  padding: 90px 80px;

  background: #fbfaf7; /* same as services cards */
  border-radius: 28px;

  border: 2.55px solid rgba(220, 201, 163, 0.55);
}

/* Inner gold line */
.services-panel::before {
  content: "";
  position: absolute;
  inset: 14px;

  border-radius: 22px;
  border: 2.05px solid rgba(220, 201, 163, 0.35);

  pointer-events: none;
}


.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: flex-start;
}

/* =========================
   INTRO TEXT (BIGGER)
========================= */
.services-text h2 {
  font-family: "Castoro Titling", serif;
  font-size: 3.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;

  color: rgba(11, 28, 45, 0.95); /* deep navy */
}

.services-intro {
  max-width: 560px;
  margin-bottom: 72px;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;

  color: rgba(11, 28, 45, 0.78); /* ← proper editorial navy */
}


/* =========================
   INTRO IMAGE (BIGGER)
========================= */
.services-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-top: -10px;

  border-radius: 18px;   /* ← rounded corners */
  display: block;

  box-shadow: none;      /* remove shadow */
  filter: none;          /* remove drop shadow */
}

/* =========================
   SERVICE ROWS
========================= */
.service-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 48px;
  margin-top: 56px;
}

.service-image {
  display: flex;
  align-items: center;
}

/* ⬆ IMAGE SCALE */
.service-row img {
  max-width: 460px;
  width: 100%;
  height: auto;
  transform: translateY(22px); /* ⬅ pulls image DOWN */
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

/* Slightly boost later illustrations to normalize visual weight */
.service-row:nth-of-type(3) img,
.service-row:nth-of-type(4) img {
  transform: translateY(22px) scale(1.1);
}


/* =========================
   SERVICE TEXT (BIGGER)
========================= */
.service-text {
  max-width: 460px;
}

.service-text h3 {
  font-family: "Castoro Titling", serif;
  font-size: 1.25rem;  /* ⬆ increase size */
  font-weight: 250;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #0b1c2d;
  margin-bottom: 18px;
}

.service-text p {
  font-size: 1.1rem; /* ⬆ */
  font-weight: 200;
  color: rgba(11, 28, 45, 0.78);
}

/* =========================
   DIVIDER
========================= */
.service-divider {
  width: 3px;
  height: 280px;
  background: linear-gradient(
    to bottom,
    var(--gold-primary),
    rgba(220, 201, 163, 0.4),
    transparent
  );

  /* 🔑 THIS IS THE FIX */
  align-self: center;
  margin-bottom: 12px;
}


/* =========================
   SCROLL FADE-IN ANIMATION
========================= */

/* Initial hidden state */
.service-row {
  opacity: 0;
  transition: opacity 3.3s ease-out;
}

/* When revealed */
.service-row.is-visible {
  opacity: 1;
}

/* Optional refinement: text fades in slightly after image */
.service-row .service-text {
  transition: opacity 3.3s ease-out 0.35s;
}

/* Intro section fade-in */
.service-intro {
  opacity: 0;
  transition: opacity 3.3s ease-out;
}

.service-intro.is-visible {
  opacity: 1;
}



/* =========================
   MOBILE
========================= */
@media (max-width: 1024px) {
  .services-split {
    grid-template-columns: 1fr;
  }

  .services-panel {
    padding: 80px 40px;
  }

  .services-visual img {
    margin-top: 0;
    max-width: 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .service-divider {
    display: none;
  }

  .service-row img {
    margin: 0 auto;
  }
}

/* =========================
   CLIENT GAINS
========================= */
.client-gains {
  background: #f7f5f0;
  padding: 30px 0 120px;
}

.client-gains-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 38px 62px 70px;
  background: linear-gradient(180deg, #0f2438, #0b1c2d);
  border-radius: 32px;
  border: 4px solid var(--gold-primary);
  box-shadow:
    inset 0 0 0 1px rgba(220, 201, 163, 0.35),
    0 35px 70px rgba(11, 28, 45, 0.55);
}

.client-gains-title {
  font-family: "Castoro Titling", serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 36px;
}

.gains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 96px;
}

/* ✅ SINGLE SOURCE OF TRUTH */
.gain-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;

  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.6s ease-out,
    transform 1.6s ease-out;
}

.gain-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gain-item img {
  max-width: 380px;
  min-height: 240px;
  object-fit: contain;
}

.gain-item h3 {
  font-family: "Castoro Titling", serif;
}

.gain-item p {
  font-size: 20px;
  line-height: 1.55;
}


/* =========================
   FOOTER — GRADIENT LUXE
========================= */

.site-footer {
  background: rgba(11, 28, 45, 0.68);   /* ⬅ was 0.78 */
  backdrop-filter: blur(18px);         /* ⬅ slightly stronger blur */
  -webkit-backdrop-filter: blur(18px);

  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.15)
  );

  pointer-events: none;
}


/* ===== TOP CTA BAND ===== */

.footer-cta {
  padding: 18px 0 14px; /* tighter vertical rhythm */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== BRAND LOCKUP ===== */

.footer-cta-brand {
  display: flex;
  align-items: center;
  gap: 14px; /* slightly tighter */
}

.footer-cta-logo {
  height: 200px;          /* larger, more authoritative */
  width: auto;
  flex-shrink: 0;
  transform: translateY(4px); /* optical alignment with text */
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
}

/* Gold gradient brand text */
.footer-cta-text h3 {
  font-family: "Castoro Titling", serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  margin: 0 0 0px;

  background: linear-gradient(
  90deg,
  #e8c887 0%,
  #f7eed8 50%,
  #e8c887 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-cta-text p {
  font-size: 1.05rem;
  margin-top: 0px;              /* tighter spacing */
  margin-bottom: 0;

  background: linear-gradient(
    90deg,
    #dcc9a3 0%,
    #f7eed8 50%,
    #dcc9a3 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ===== INQUIRE BUTTON ===== */

.footer-cta-button {
  padding: 14px 36px;
  border: 1.5px solid var(--gold-primary);
  background: transparent;
  color: var(--gold-primary);

  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  transition: all 0.25s ease;
}

.footer-cta-button:hover {
  background: var(--gold-primary);
  color: #0b1c2d;
}

/* ===== MAIN NAV GRID ===== */

.footer-main {
  padding: 64px 0 48px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 70px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Column headings */
.footer-col h4 {
  display: inline-flex;
  align-items: center;

  font-family: "Castoro Titling", serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  padding: 7px 16px;

  background: linear-gradient(
    120deg,
    #f3e3c2,
    #dcc9a3,
    #f7eed8
  );

  color: #0b1c2d;
  border-radius: 999px;

  margin: 0;
  width: fit-content;
}


/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.98rem;
}

.footer-social-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 0;
}

.footer-social-links a {
  display: inline-flex;
  width: auto;
}

.footer-social-icon {
  width: 29px;
  height: 29px;
  max-width: 29px;
  flex-shrink: 0;
  opacity: 0.75;
  filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(400%) hue-rotate(5deg) brightness(105%);
  transition: opacity 0.2s;
}

.footer-social-links a:hover .footer-social-icon {
  opacity: 1;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Optional descriptive column (non-link) */
.footer-inquire p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ===== LEGAL ===== */

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 60px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-legal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* =========================
   EXECUTIVE TEAM — HERO
========================= */

.executive-hero {
  position: relative;
  width: 100%;
  height: 75vh;

  background-image: url("/static/images/exec-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.executive-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 45, 0.55);
}

.executive-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
}

.executive-hero h1 {
  font-family: "Castoro Titling", serif;
  font-size: 3.6rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.executive-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin: 0 auto;
}


/* =========================
   EXECUTIVE TEAM — PROFILES
========================= */

.executive-section {
  padding: 120px 32px;
  background: #f7f5f0;
}

.executive-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}

/* =========================
   PROFILE CARD
========================= */

.executive-profile {
  text-align: center;
}

/* Portrait image (refined, editorial) */
.executive-photo {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 18px 42px rgba(11, 28, 45, 0.25);
}

/* Name — same treatment as Approach headings */
.executive-profile h2 {
  font-family: "Castoro Titling", serif;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  /* Primary gold fill */
  color: #f2dfb8;

  /* Darker gold outline */
  -webkit-text-stroke: 0.6px #b89a5a;

  /* Soft champagne glow */
  text-shadow:
    0 0 6px rgba(242, 223, 184, 0.35),
    0 2px 10px rgba(184, 154, 90, 0.18);

  margin-bottom: 36px;
}

/* Role block — same font as name */
.executive-title {
  font-family: "Castoro Titling", serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2b2b2b;
  margin-bottom: 36px;
}

/* Sub-role line */
.executive-title span {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: #6f6f6f;
}

/* Bio text */
.executive-profile p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #2b2b2b;
  margin-bottom: 22px;
}

/* Education */
.executive-education {
  font-style: italic;
  color: #6b6b6b;
  margin-top: 32px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .executive-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .executive-photo {
    width: 220px;
    height: 300px;
  }
}



/* =========================
   FOUNDER-LED PHILOSOPHY
========================= */

.executive-philosophy {
  background: linear-gradient(180deg, #0f2438, #0b1c2d);
  padding: 120px 32px;
}

.executive-philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #f7f5f0;
}

.executive-philosophy h2 {
  font-family: "Castoro Titling", serif;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2dfb8;
  margin-bottom: 36px;
}

.executive-philosophy p {
  font-size: 1.2rem;
  line-height: 1.85;
  margin-bottom: 28px;
}


/* =========================
   EXECUTIVE TEAM — RESPONSIVE
========================= */

@media (max-width: 900px) {

  .executive-hero {
    height: 65vh;
  }

  .executive-hero h1 {
    font-size: 2.6rem;
  }

  .executive-section {
    padding: 96px 24px;
  }

  .executive-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .executive-photo {
    width: 180px;
    height: 180px;
  }

  .executive-philosophy {
    padding: 96px 24px;
  }
}



