/* ============================================================
   Friends VSE — Main Stylesheet
   Color Palette:
     Primary Sage Green : #6B8E7F
     Teal Blue          : #5A8B9E
     Light Background   : #F8F8F6
     Dark Green (footer): #4A5D52
     Mint Accent        : #7FB8A5
   ============================================================ */

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

:root {
  --sage:       #6B8E7F;
  --teal:       #5A8B9E;
  --light-bg:   #F8F8F6;
  --dark-green: #4A5D52;
  --mint:       #7FB8A5;
  --white:      #FFFFFF;
  --text-dark:  #2C3E35;
  --text-mid:   #4A5D52;
  --text-light: #6B7C74;
  --border:     #D8E4DF;
  --error:      #C0392B;
  --success:    #27AE60;
  --shadow-sm:  0 2px 8px rgba(74,93,82,.10);
  --shadow-md:  0 6px 24px rgba(74,93,82,.14);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

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

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage); }

ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--dark-green);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities ------------------------------------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--white); }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 580px; margin: 0 auto 3rem; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover { background: var(--dark-green); border-color: var(--dark-green); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--sage); }

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

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover { background: #4a7a8e; border-color: #4a7a8e; color: var(--white); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- Navigation ------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  min-width: 0;
}
.navbar .navbar__logo {
  gap: .95rem;
  padding: .25rem 0;
}
.logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.navbar .logo-image {
  width: 78px;
  height: 78px;
}
.footer__brand .logo-image {
  width: 57px;
  height: 57px;
}
.logo-text { font-family: 'Poppins', sans-serif; line-height: 1; min-width: 0; }
.logo-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.1;
  letter-spacing: 0;
}
.logo-text span {
  font-size: .6rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}
.navbar .logo-text strong {
  font-size: 2.1rem;
  color: var(--dark-green);
}
.navbar .logo-text span {
  font-size: .83rem;
  color: var(--sage);
}
/* Footer logo text colors on dark bg */
.footer__brand .logo-text strong { color: var(--white); }
.footer__brand .logo-text span   { color: rgba(255,255,255,.65); }
.navbar__nav { display: flex; align-items: center; gap: .25rem; }
.navbar__nav a {
  padding: .65rem 1.1rem;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  font-size: 1.1rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active { background: #EEF4F1; color: var(--sage); }
.navbar__cta {
  margin-left: .9rem;
  padding: .9rem 2.1rem;
  font-size: 1.08rem;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .65rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.navbar__hamburger:hover { background: #EEF4F1; }
.navbar__hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav */
.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.navbar__mobile-menu a {
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.navbar__mobile-menu a:hover { background: #EEF4F1; color: var(--sage); }
.navbar__mobile-menu .btn { margin-top: .5rem; }
.navbar__mobile-menu.open { display: flex; }

/* --- Hero ------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--sage) 55%, var(--teal) 100%);
  color: var(--white);
  padding: 5.25rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  max-width: 720px;
  text-shadow: 0 2px 16px rgba(0,0,0,.42);
}
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__brand-mark {
  justify-self: end;
  box-sizing: border-box;
  display: block;
  width: min(100%, 360px);
  aspect-ratio: 1;
  padding: 1rem;
  background: var(--white);
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.28));
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p { color: rgba(255,255,255,.95); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* --- About ------------------------------------------------ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: grid;
}
.about__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  display: block;
}
.about__visual svg { width: 72px; height: 72px; fill: rgba(255,255,255,.9); position: relative; }
.about__visual-text { text-align: center; position: relative; }
.about__visual-text strong { font-family: 'Poppins', sans-serif; font-size: 1.4rem; display: block; }
.about__visual-text span { font-size: .85rem; opacity: .8; }
.about__content h2 { margin-bottom: 1.25rem; }
.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage);
  display: block;
}
.stat__label { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }

/* --- Why Join Us ------------------------------------------ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #EEF4F1, #E0EDE9);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-card__icon svg { width: 26px; height: 26px; fill: var(--sage); }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.benefit-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 0; }

/* --- CTA Banner ------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-green) 0%, #3a4f44 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Careers Hero ----------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--sage) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero p + p { margin-top: 1rem; }

/* --- Job Cards -------------------------------------------- */
.jobs__intro { margin-bottom: 3rem; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 620px;
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.job-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #C8DDD5 0%, #B8D0D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
}
.job-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Overlay tint on card image */
.job-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(74,93,82,.25) 100%);
  pointer-events: none;
}
.job-card__img svg { width: 56px; height: 56px; fill: rgba(255,255,255,.8); }
.job-card__body { padding: 1.15rem; display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.job-card__content-link {
  color: inherit;
  display: block;
}
.job-card__content-link:hover h3 { color: var(--sage); }
.job-card__dept {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .25rem;
}
.job-card h3 { font-size: .98rem; margin-bottom: .45rem; color: var(--dark-green); }
.job-card__content-link > p:not(.job-card__dept) {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: .9rem;
}
.job-card__meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: auto;
  margin-bottom: .9rem;
  flex-wrap: wrap;
}
.job-card__tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 500;
  background: #EEF4F1;
  color: var(--sage);
  padding: .25rem .65rem;
  border-radius: 100px;
}

/* --- Job Detail ------------------------------------------- */
.job-detail { padding: 4rem 0 5rem; }
.job-detail__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.job-detail__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--teal);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.job-detail__back:hover { color: var(--sage); }
.job-detail__back svg { width: 18px; height: 18px; fill: currentColor; }
.job-header { margin-bottom: 2.5rem; }
.job-header__dept {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .5rem;
}
.job-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.job-header__meta { display: flex; flex-wrap: wrap; gap: 1rem; }
.job-header__meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: var(--text-light);
}
.job-header__meta-item svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; }

.job-section { margin-bottom: 2.5rem; }
.job-section h2 { font-size: 1.3rem; margin-bottom: 1rem; padding-bottom: .65rem; border-bottom: 2px solid var(--border); }
.job-section h3 { font-size: 1rem; margin: 1.25rem 0 .75rem; color: var(--dark-green); }
.job-section ul { list-style: none; }
.job-section ul li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  font-size: .95rem;
  color: var(--text-mid);
  border-bottom: 1px solid #F0F5F2;
}
.job-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
}

.job-sidebar__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-sm);
}
.job-sidebar__card h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.job-sidebar__card .btn { margin-bottom: .75rem; }
.job-sidebar__info { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.job-sidebar__info-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
}
.job-sidebar__info-item svg { width: 18px; height: 18px; fill: var(--sage); flex-shrink: 0; margin-top: 1px; }
.job-sidebar__info-item div { color: var(--text-mid); }
.job-sidebar__info-item strong { display: block; color: var(--text-dark); font-weight: 600; }

/* --- Contact Page ----------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 0;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #EEF4F1, #E0EDE9);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 22px; height: 22px; fill: var(--sage); }
.contact-info-item h4 { margin-bottom: .2rem; font-size: .95rem; }
.contact-info-item p { font-size: .9rem; color: var(--text-light); margin-bottom: 0; }
.contact-info-item a { color: var(--teal); }

/* --- Forms ------------------------------------------------ */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { margin-bottom: .5rem; }
.form-card > p { margin-bottom: 2rem; color: var(--text-light); }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
label .req { color: var(--error); margin-left: .15rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,142,127,.15);
}
input.error, select.error, textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8E7F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
textarea { resize: vertical; min-height: 130px; }

input[type="file"] {
  padding: .55rem .85rem;
  cursor: pointer;
  background: #FAFBF9;
  border-style: dashed;
}
input[type="file"]:hover { border-color: var(--sage); background: #F2F7F4; }

.field-error {
  display: block;
  font-size: .8rem;
  color: var(--error);
  margin-top: .3rem;
  display: none;
}
.field-error.visible { display: block; }

.form-note { font-size: .8rem; color: var(--text-light); margin-top: .35rem; }

/* Form feedback states */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  display: none;
  align-items: center;
  gap: .75rem;
}
.form-alert.visible { display: flex; }
.form-alert--success {
  background: #E8F5EE;
  border: 1px solid #A3D4B4;
  color: #1E7A40;
}
.form-alert--error {
  background: #FDEAEA;
  border: 1px solid #E8A0A0;
  color: #8B1A1A;
}
.form-alert svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Spinner */
.btn .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn.loading .spinner { display: block; }
.btn.loading .btn-text { opacity: .7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Apply page */
.apply-page { padding: 4rem 0 5rem; }
.apply-page__header { text-align: center; margin-bottom: 3rem; }
.apply-page__header h1 { margin-bottom: .75rem; }
.apply-page__header p { font-size: 1.05rem; color: var(--text-light); }
.apply-page .form-card { max-width: 760px; margin: 0 auto; }

/* --- Team Pages ------------------------------------------- */
.team-page { background: var(--light-bg); }
.team-intro {
  max-width: 680px;
  margin-bottom: 3rem;
}
.team-intro h2 { margin-bottom: 1rem; }
.team-intro p {
  font-size: 1.05rem;
  color: var(--text-light);
}
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  gap: 1.75rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-card__photo {
  display: block;
  aspect-ratio: 8 / 9;
  background: linear-gradient(135deg, #C8DDD5, #B8D0D8);
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__body { padding: 1.75rem; }
.team-card__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .35rem;
}
.team-card h3 {
  font-size: 1.35rem;
  margin-bottom: .75rem;
}
.team-card h3 a { color: var(--dark-green); }
.team-card h3 a:hover { color: var(--sage); }
.team-card p {
  color: var(--text-light);
  font-size: .95rem;
}

.bio-hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}
.bio-hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 4rem;
  align-items: center;
}
.bio-hero__photo {
  aspect-ratio: 6 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #C8DDD5, #B8D0D8);
  box-shadow: var(--shadow-md);
}
.bio-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio-hero__content h1 { margin-bottom: 1rem; }
.bio-hero__lede {
  max-width: 680px;
  color: var(--text-mid);
  font-size: 1.18rem;
  margin-bottom: 2rem;
}
.bio-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bio-meta__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: var(--text-light);
  font-size: .86rem;
}
.bio-meta__item strong {
  display: block;
  color: var(--dark-green);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.bio-story { background: var(--white); }
.bio-story__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 4rem;
  align-items: start;
}
.bio-callout {
  background: #EEF4F1;
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.bio-callout span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: .75rem;
}
.bio-callout p {
  color: var(--text-mid);
  font-size: .92rem;
}
.bio-copy h2 { margin-bottom: 1.25rem; }
.bio-copy p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--dark-green);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
/* footer logo colors handled in logo-text block above */
.footer__brand p {
  margin-top: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}
.footer h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
  align-items: flex-start;
}
.footer__contact-item svg { width: 16px; height: 16px; fill: var(--mint); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,.65); }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 0; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.8); }

/* Opening badge */
.opening-soon-banner {
  background: linear-gradient(90deg, var(--teal), var(--sage));
  color: var(--white);
  text-align: center;
  padding: .65rem 1.25rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.opening-soon-banner span { opacity: .85; font-weight: 400; }

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-light);
}
.breadcrumb__inner a { color: var(--text-light); }
.breadcrumb__inner a:hover { color: var(--sage); }
.breadcrumb__inner span { color: var(--text-light); }
.breadcrumb__sep { color: var(--border); }

/* --- Culture / Intro Section ------------------------------ */
.culture-section { background: var(--white); }
.culture__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.culture__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #C8DDD5, #B8D0D8);
}
.culture__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}
.culture__content h2 { margin-bottom: 1.25rem; }
.culture__content p { font-size: 1rem; color: var(--text-mid); }

/* --- Benefits of Working With Friends (8-item grid) ------ */
.benefits-friends-section {
  background: linear-gradient(160deg, #EEF4F1 0%, #E6EFF3 100%);
  padding: 5rem 0;
}
.benefits-10-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.benefit-mini {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit-mini:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-mini__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--teal), var(--sage));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(90,139,158,.25);
}
.benefit-mini__icon svg { width: 28px; height: 28px; fill: var(--white); }
.benefit-mini h4 {
  font-size: .9rem;
  color: var(--dark-green);
  margin-bottom: 0;
  line-height: 1.3;
}
.benefit-mini p {
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .navbar__inner { height: 92px; }
  .navbar .logo-image { width: 64px; height: 64px; }
  .navbar .logo-text strong { font-size: 1.75rem; }
  .navbar .logo-text span { font-size: .68rem; }
  .navbar__nav,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__content,
  .culture__content { max-width: 760px; justify-self: center; }
  .about__visual,
  .culture__media {
    width: min(100%, 520px);
    justify-self: center;
  }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-10-grid { grid-template-columns: repeat(3, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .job-detail__layout { grid-template-columns: 1fr; }
  .job-sidebar__card { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .culture__grid { grid-template-columns: 1fr; }
  .bio-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-hero__photo { max-width: 420px; }
  .bio-story__layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.1rem; }
  .section { padding: 3.5rem 0; }
  .benefits-friends-section { padding: 3.5rem 0; }
  .navbar__inner { height: 84px; }
  .navbar .logo-image { width: 58px; height: 58px; }
  .navbar .logo-text strong { font-size: 1.55rem; }
  .navbar .logo-text span { font-size: .62rem; }
  .navbar__mobile-menu {
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
  }
  .navbar__mobile-menu .btn {
    justify-content: center;
    width: 100%;
  }
  .section-sub { margin-bottom: 2.25rem; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits-10-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: 1fr; }
  .about__stats { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { padding: 3.5rem 0; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { justify-content: center; flex-wrap: wrap; gap: .75rem 1.25rem; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__brand-mark {
    justify-self: center;
    max-width: 264px;
  }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .jobs__intro { margin-bottom: 2.25rem; }
  .job-card__body { padding: 1rem; }
  .job-detail { padding: 3rem 0 4rem; }
  .apply-page { padding: 3rem 0 4rem; }
  .page-hero { padding: 3.5rem 0 3rem; }
  .team-grid { grid-template-columns: 1fr; }
  .bio-meta { grid-template-columns: 1fr; }
  .bio-hero { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .navbar__inner { height: 76px; }
  .navbar .navbar__logo { gap: .7rem; }
  .navbar .logo-image { width: 50px; height: 50px; }
  .navbar .logo-text strong { font-size: 1.34rem; }
  .navbar .logo-text span { font-size: .52rem; letter-spacing: .08em; }
  .navbar__hamburger { padding: .5rem; }
  .navbar__hamburger span { width: 27px; }
  .navbar__mobile-menu {
    padding: .85rem 1rem 1.25rem;
    max-height: calc(100dvh - 76px);
  }
  .opening-soon-banner {
    padding: .55rem .85rem;
    font-size: .74rem;
    letter-spacing: .03em;
  }
  .hero { padding: 3rem 0 3rem; }
  .hero p { font-size: 1rem; margin-bottom: 2rem; }
  .hero__layout { gap: 2rem; }
  .hero__brand-mark { max-width: 236px; padding: .85rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero p { font-size: 1rem; }
  .benefit-card { padding: 1.5rem 1.25rem; }
  .benefits-10-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .benefit-mini { padding: 1.25rem .85rem 1.1rem; }
  .benefit-mini__icon { width: 50px; height: 50px; }
  .benefit-mini__icon svg { width: 24px; height: 24px; }
  .form-card { padding: 1.75rem 1.25rem; }
  .job-sidebar__card { padding: 1.5rem; }
  .team-card__body { padding: 1.35rem; }
  .bio-copy p { font-size: 1rem; }
}

@media (max-width: 380px) {
  .benefits-10-grid { grid-template-columns: 1fr; }
  .footer__brand .navbar__logo { align-items: flex-start; }
}
