/* ============================================================
   INNATE — STYLESHEET
   A people, organization & career advisory brand.
   Organized top-to-bottom: tokens → base → layout → components →
   page-specific sections → responsive.
   ============================================================ */

/* ========================================
   BRAND DESIGN TOKENS
======================================== */
:root {
  /* Colors */
  --deep-green: #1E4D2B;
  --forest: #163820;
  --olive: #7ba05b;
  --sage: #f6e8ca;
  --cream: #F5F0E6;
  --beige: #E8DDCB;
  --ivory: #fff8dc;
  --charcoal: #252722;
  --muted-text: #66665E;
  --border: #D9D1C3;
  --gold: #B08D57;
  --white: #ffffff;

  /* Typography */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 860px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Radius — restrained, editorial. Never pill-shaped. */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* Shadows — soft, low-contrast */
  --shadow-sm: 0 2px 10px rgba(36, 53, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(36, 53, 43, 0.10);
  --shadow-lg: 0 20px 50px rgba(36, 53, 43, 0.14);

  /* Motion */
  --transition: 300ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 600ms cubic-bezier(.4,0,.2,1);

  /* Navbar height (kept compact per spec) */
  --nav-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote {
  margin: 0;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol { list-style: none; padding: 0; }

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

button { font-family: inherit; cursor: pointer; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--deep-green);
  line-height: 1.15;
}

/* Visible, accessible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--deep-green);
  color: var(--ivory);
  padding: 12px 20px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* ========================================
   TYPE SCALE & UTILITIES
======================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


.eyebrow {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--olive);
  display: inline-block;
}.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cream);
  display: inline-block;
}
#eyebrow1::after{
  background: var(--olive);
 
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--deep-green);
  letter-spacing: -0.01em;
}

.section-heading em,
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--olive);
}

.section-lede {
  color: var(--muted-text);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 18px;
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-lede {
  margin-left: auto;
  margin-right: auto;
}

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

.divider-line {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

section { position: relative; }

.section-pad { padding: clamp(64px, 9vw, 100px) 0; }
.section-pad-sm { padding: clamp(48px, 6vw, 84px) 0; }

.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--beige); }
.bg-deep  { background: var(--deep-green); color: var(--cream); }
.bg-deep h1, .bg-deep h2, .bg-deep h3 { color: var(--ivory); }
.bg-deep .muted { color: rgba(245,240,230,0.72); }

.muted { color: var(--muted-text); }
#bg-img{
  width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* ========================================
   BUTTON SYSTEM
======================================== */
.btn-hero{
      position: relative;

}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--deep-green);
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-primary:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.btn-secondary {
  background: var(--olive);
  color: var(--ivory);
  border-color: var(--olive);
}
.btn-secondary:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.btn-outline {
  background: transparent;
  color: var(--deep-green);
  border-color: var(--deep-green);
}
.btn-outline2 {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-outline:hover {
  background: var(--deep-green);
  color: var(--ivory);
}

.bg-deep .btn-outline {
  color: var(--ivory);
  border-color: rgba(245,240,230,0.5);
}
.bg-deep .btn-outline:hover {
  background: var(--ivory);
  color: var(--deep-green);
  border-color: var(--ivory);
}
/* second */

#xplore{
  color: var(--ivory);
  border-color: rgba(245,240,230,0.5);
}
#xplore:hover{
  background: var(--ivory);
  color: var(--deep-green);
  border-color: var(--ivory);
}
#xplore2{
  color: var(--deep-green);
  border-color: var(--deep-green);
  background: var(--ivory);
}
#xplore2:hover{

  color: var(--ivory);
  
}
.btn-arrow .arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.btn-arrow:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--deep-green);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color var(--transition), gap var(--transition);
}
.btn-ghost-link:hover {
  border-color: var(--deep-green);
  gap: 12px;
}
.btn-ghost-link .arrow { transition: transform var(--transition); }
.btn-ghost-link:hover .arrow { transform: translateX(3px); }

/* ========================================
   NAVIGATION
======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: relative;
  
  display: inline-flex;
  align-items: center;
  height: 80px;
  width: 100px;
  aspect-ratio: 2/1;
 object-fit: cover;
 overflow: hidden;
}
.logo img {
  object-fit: cover;
  height: 100%;
  transform: scale(1);
  
  position: relative;
  display: block;
  opacity: 100%;
}
#img1{
  /* transform: scale(0.89);
  height: 130px */
}
.logo-scrolled { display: none; }
.site-header.is-scrolled .logo-default { display: none; }
.site-header.is-scrolled .logo-scrolled { display: block; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {

  display: flex;
  align-items: center;
  gap: 34px;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ivory);
  padding: 8px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  transition: color var(--transition);
}

.site-header.is-scrolled .nav-link { color: var(--charcoal); }
.nav-list > li:hover .nav-caret { transform: rotate(-135deg); margin-top: 3px; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right var(--transition);
}
.nav-link:hover::after,
.nav-link[aria-expanded="true"]::after { right: 0; }

.nav-caret {
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -3px;
}
.nav-link[aria-expanded="true"] .nav-caret { transform: rotate(-135deg); margin-top: 3px; }

.nav-cta { margin-left: 6px; }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 360px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-list > li:hover .nav-dropdown,
.nav-list > li.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-dropdown-item:hover { background: var(--cream); }

.nav-dropdown-letter {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--olive);
  width: 24px;
  flex-shrink: 0;
  line-height: 1.3;
}

.nav-dropdown-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--deep-green);
  letter-spacing: 0.01em;
}
.nav-dropdown-desc {
  font-size: 0.78rem;
  color: var(--muted-text);
  margin-top: 2px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.site-header.is-scrolled .nav-toggle span { background: var(--deep-green); }
.nav-toggle.is-active span { background: var(--deep-green); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
}

/* ========================================
   MOBILE NAVIGATION PANEL
======================================== */
@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile {
    display: block;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    bottom: 0;
    background: var(--ivory);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 999;
    padding: 12px var(--gutter) 40px;
  }
  .nav-mobile.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-mobile-list > li {
    border-bottom: 1px solid var(--border);
  }

  .nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 2px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--deep-green);
  }

  .nav-mobile-toggle {
    background: none;
    border: none;
    width: 28px; height: 28px;
    position: relative;
    flex-shrink: 0;
  }
  .nav-mobile-toggle::before,
  .nav-mobile-toggle::after {
    content: "";
    position: absolute;
    background: var(--olive);
    transition: transform var(--transition);
  }
  .nav-mobile-toggle::before { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
  .nav-mobile-toggle::after { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
  .nav-mobile-toggle[aria-expanded="true"]::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

  .nav-mobile-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
  }
  .nav-mobile-panel.is-open { max-height: 600px; }

  .nav-mobile-sublist { padding: 0 2px 18px; }
  .nav-mobile-sublist li a {
    display: block;
    padding: 10px 0 10px 18px;
    font-size: 0.92rem;
    color: var(--muted-text);
    border-left: 1px solid var(--border);
  }
  .nav-mobile-sublist li a:hover { color: var(--deep-green); border-left-color: var(--olive); }

  .nav-mobile-cta { margin-top: 24px; }
  .nav-mobile-cta .btn { width: 100%; justify-content: center; }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: transform var(--transition), background var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--forest);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: var(--ivory); }

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 767px) {
  .whatsapp-tooltip { display: none; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ========================================
   SCROLL-REVEAL ANIMATION UTILITY
======================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(.2,.6,.2,1), transform 800ms cubic-bezier(.2,.6,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ========================================
   HOME — HERO
======================================== */
.hero {
  height: 100vh;
  position: relative;
  background: var(--deep-green);
  color: var(--deep-green);
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 90px;
  overflow: hidden;
  text-align: center;
}

/* Blurred background image layer */
.hero-bg {
  position: absolute;
  inset: -20px; /* overscan so blur edges don't show */
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: 0;
}

/* Color wash + existing radial accents, now sitting above the blurred photo */
/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11,61,38,0.62), rgba(11,61,38,0.62)),
    radial-gradient(circle at 85% 12%, rgba(167,173,139,0.16), transparent 5%),
    radial-gradient(circle at 8% 90%, rgba(176,141,87,0.10), transparent 5%);
  pointer-events: none;
  z-index: 1;
} */

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1020px;
}

.hero-eyebrow { color: var(--sage); }
.hero-eyebrow::before { background: var(--sage); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--ivory);
  margin-top: 20px;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero-title em { color: var(--ivory); font-style: italic; }

.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
    top: 50vh;
    left: 50%;
    transform: translateX(-50%);
    
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--sage);
  display: block;
}
.num1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--deep-green);
  display: block;
}
.hero-meta-item .label {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.6);
  margin-top: 4px;
}
.hero-visual {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  height: 520px;
}

/* ========================================
   INTRO / FOUNDER SECTION
======================================== */
.founder-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}
.founder-image-wrap img {
  overflow: hidden;
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}
.why-image{
  overflow: hidden;
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
  position: relative;
  top: 10px;
}
#why-photo{
  transform: scale(1.7);
  position: relative;
  left: 150px;
  top: -12px  ;
}
.founder-image-tag {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.founder-image-tag .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--olive);
  display: block;
}
.founder-image-tag .label {
  font-size: 0.76rem;
  color: var(--muted-text);
  margin-top: 2px;
}

.founder-name {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  margin-top: 18px;
}
.founder-role {
  color: var(--olive);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.founder-copy {
  margin-top: 22px;
  color: var(--muted-text);
  max-width: 560px;
}
.founder-copy + .founder-copy { margin-top: 14px; }

.founder-highlights {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.founder-highlight {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.82rem;
  color: var(--forest);
  background: var(--cream);
}

.founder-actions { margin-top: 32px; }

.editable-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--muted-text);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

/* ========================================
   WHY INNATE — asymmetric editorial layout
======================================== */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.why-intro .section-heading { max-width: 420px; }

.why-list {
  display: flex;
  flex-direction: column;
}
.why-list-labels .why-item {
  grid-template-columns: 150px 1fr;
}
.why-list-labels .why-item .num {
  font-size: 1.5rem;
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
}
.why-list .why-item:last-child { border-bottom: 1px solid var(--border); }

.why-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--sage);
}
.why-item h3 { font-size: 1.35rem; }
.why-item p { color: var(--muted-text); margin-top: 8px; max-width: 480px; }

/* ========================================
   WHAT WE OFFER — two verticals
======================================== */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.offer-card {
  padding: 44px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.offer-card.hr-card {
  background: var(--deep-green);
  color: var(--ivory);
}
.offer-card.career-card {
  background: var(--cream);
  color: var(--charcoal);
}

.offer-card .offer-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.offer-card.hr-card .offer-eyebrow { color: var(--sage); }
.offer-card.career-card .offer-eyebrow { color: var(--olive); }

.offer-card h3 {
  font-size: 2rem;
  margin-top: 16px;
}
.offer-card.hr-card h3 { color: var(--ivory); }

.offer-card p {
  margin-top: 16px;
  max-width: 420px;
}
.offer-card.hr-card p { color: rgba(245,240,230,0.78); }
.offer-card.career-card p { color: var(--muted-text); }

.offer-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-list li {
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: currentColor;
}

.offer-card .btn { margin-top: auto; align-self: flex-start; margin-top: 30px; }

/* ========================================
   HR / CAREER PREVIEW SECTIONS ON HOME
======================================== */
.preview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.scale-preview-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.scale-preview-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  background: var(--ivory);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.scale-preview-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.scale-preview-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--olive);
  line-height: 1;
}
.scale-preview-item h4 {
  font-size: 0.98rem;
  margin-top: 14px;
  color: var(--deep-green);
}
.scale-preview-item p {
  font-size: 0.82rem;
  color: var(--muted-text);
  margin-top: 6px;
}

.career-preview-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.career-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}
.career-step-pill {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--forest);
}

.career-services-list {
  display: flex;
  flex-direction: column;
}
.career-services-list li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.career-services-list li:last-child { border-bottom: 1px solid var(--border); }

.career-preview-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.career-preview-image img { aspect-ratio: 4/5; object-fit: cover; }

/* ========================================
   PHILOSOPHY / TRANSITION SECTION
======================================== */
.philosophy-section {
  background: var(--deep-green);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.philosophy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(167,173,139,0.12), transparent 50%);
}
.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.philosophy-statement {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
}
.philosophy-statement em { color: var(--sage); font-style: italic; }
.philosophy-sub {
  margin-top: 28px;
  max-width: 620px;
  color: rgba(245,240,230,0.75);
  font-size: 1.05rem;
}
.philosophy-split {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(245,240,230,0.2);
  padding-top: 36px;
}
.philosophy-col .eyebrow { color: var(--sage); }
.philosophy-col .eyebrow::before { background: var(--sage); }
.philosophy-col p {
  margin-top: 14px;
  color: rgba(245,240,230,0.75);
  font-size: 0.95rem;
}

.testimonials {
  position: relative;
  background: var(--ivory);
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.testimonials-eyebrow {
  color: var(--deep-green);
  display: inline-flex;
}
.testimonials-eyebrow::before { background: var(--gold); }

.testimonials-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--deep-green);
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.testimonials-subtitle {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(11,61,38,0.65);
}
.testimonials-eyebrow::after { background: var(--gold); }

.testimonials-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--deep-green);
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.testimonials-subtitle {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(11,61,38,0.65);
}

/* Track / carousel */
.testimonial-track-wrap {
  overflow-x: hidden;
  overflow-y: visible;
 padding-left: 10px;
 padding-right: 10px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.testimonial-nav {
  margin-top: 8px; /* was 48px — reduced since track-wrap now has its own bottom padding */
}

.testimonial-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 64px) / 3);
  background: #fff;
  border: 1px solid rgba(11,61,38,0.08);
  border-radius: var(--radius-md);
  box-shadow:
    var(--shadow-lg),
    0 24px 40px -16px rgba(11,61,38,0.18);
  padding: 64px 32px 36px;
  text-align: center;
}

.testimonial-avatar {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--sage); /* fallback so broken images don't show raw alt text */
}
div#testimonialTrack {
    position: relative;
    top: 50px;
    height: 350px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent; /* hides alt text if the image 404s */
  font-size: 0;
}

.testimonial-quote {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 4px;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(11,61,38,0.78);
}

.testimonial-person {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(11,61,38,0.55);
}

/* Arrow navigation */
.testimonial-nav {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--deep-green);
  background: transparent;
  color: var(--deep-green);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.testimonial-arrow:hover {
  background: var(--deep-green);
  color: var(--ivory);
}

/* Responsive: 1 card per view on smaller screens */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}
/* ========================================
   FAQ ACCORDION
======================================== */
.faq-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.faq-group-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 18px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-green);
}
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--olive);
  transition: transform var(--transition);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--muted-text);
  font-size: 0.93rem;
  max-width: 520px;
}

/* ========================================
   FINAL CTA
======================================== */
.final-cta {
  background: var(--beige);
  text-align: center;
}
.final-cta .section-heading { max-width: 700px; margin: 0 auto; }
.final-cta .section-lede { margin-left: auto; margin-right: auto; }
.final-cta-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(245,240,230,0.72);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,240,230,0.12);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory);
}
.footer-desc {
  margin-top: 18px;
  font-size: 0.88rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,240,230,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--sage); background: rgba(167,173,139,0.1); }
.footer-social svg { width: 15px; height: 15px; fill: var(--ivory); }

.footer-col h4 {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 0.9rem; }
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--sage); }

.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .tagline { color: rgba(245,240,230,0.45); font-style: italic; }

/* ========================================
   PAGE HERO (inner pages)
======================================== */
.page-hero {
  background: var(--deep-green);
  color: var(--ivory);
  padding-top: calc(var(--nav-height) + 74px);
  padding-bottom: 90px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 10%, rgba(167,173,139,0.16), transparent 55%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  color: var(--ivory);
  margin-top: 20px;
}
.page-hero p {
  margin-top: 22px;
  color: rgba(245,240,230,0.78);
  font-size: 1.08rem;
  max-width: 100vw;
}
.page-hero-actions {
  display: block;
  align-items: center;
  margin-top: 34px;
  
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   SCALE — VERTICAL SCROLL ROADMAP
======================================== */
.scale-section { position: relative; }

.scale-intro {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.scale-timeline {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.scale-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--border);
}
.scale-track-progress {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--olive), var(--deep-green));
  transition: height 120ms linear;
}

.scale-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
}

.scale-stage:nth-child(even) .scale-stage-content { order: 2; }
.scale-stage:nth-child(even) .scale-stage-media { order: 1; }
.scale-stage:nth-child(even) .scale-stage-content { text-align: left; margin-left: auto; }
.scale-stage:nth-child(even) .scale-keywords { justify-content: flex-end; }
#right1{
  text-align: right; margin-left: auto; 
}
#right2{
  text-align: right; margin-left: auto; 
}
.scale-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--border);
  z-index: 2;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.scale-stage.is-active .scale-marker {
  border-color: var(--olive);
  background: var(--olive);
  box-shadow: 0 0 0 6px rgba(111, 118, 80, 0.16);
}

.scale-stage-content { max-width: 460px; }

.scale-stage-num {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted-text);
  font-weight: 700;
}

.scale-stage-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--sage);
  transition: color var(--transition);
  display: block;
  margin-top: 6px;
}
.scale-stage.is-active .scale-stage-letter { color: var(--olive); }

.scale-stage-title {
  font-size: 1.5rem;
  margin-top: 8px;
  color: var(--deep-green);
}
.scale-stage-desc {
  margin-top: 14px;
  color: var(--muted-text);
  font-size: 0.95rem;
}
.scale-keywords {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.scale-keyword {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--forest);
}
.scale-stage-cta { margin-top: 22px; }

.scale-stage-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.scale-stage-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}
.scale-stage.is-active .scale-stage-media img { transform: scale(1.03); }

/* ========================================
   CAREER COUNSELLING PAGE — service cards
======================================== */
.career-service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.career-service {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.career-service:last-child { border-bottom: 1px solid var(--border); }
.career-service:nth-child(even) .career-service-media { order: 2; }

.career-service-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.career-service-media img { width: 100%; height: 100%; object-fit: cover; }

.career-service-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage);
  font-size: 1.6rem;
}
.career-service h3 { font-size: 1.7rem; margin-top: 10px; }
.career-service p { margin-top: 14px; color: var(--muted-text); max-width: 480px; }
.career-service-points {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-service-points li {
  font-size: 0.88rem;
  color: var(--forest);
  padding-left: 16px;
  position: relative;
}
.career-service-points li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--olive);
}

.career-plan-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.career-plan-step {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--cream);
}

/* ========================================
   CAREER JOURNEY INTERACTIVE COMPONENT
======================================== */
.journey-widget {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
}
.journey-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.journey-option {
  padding: 13px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.journey-option:hover {
  border-color: var(--olive);
}
.journey-option.is-selected {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: var(--ivory);
}
.journey-result {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: none;
}
.journey-result.is-visible { display: block; }
.journey-result-label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
}
.journey-result-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--deep-green);
  margin-top: 10px;
  max-width: 560px;
}
.journey-result-actions { margin-top: 20px; }

/* ========================================
   CONTACT PAGE
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.contact-info-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 17px; height: 17px; stroke: var(--olive); fill: none; }
.contact-info-label {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-text);
  font-weight: 700;
}
.contact-info-value {
  margin-top: 4px;
  font-size: 1.02rem;
  color: var(--deep-green);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
}

.form-row { margin-bottom: 22px; }
.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--olive);
  background: var(--ivory);
  outline: none;
}
.form-textarea { min-height: 140px; resize: vertical; }

.form-error {
  font-size: 0.78rem;
  color: #A6432C;
  margin-top: 6px;
  display: none;
}
.form-row.has-error .form-input,
.form-row.has-error .form-select,
.form-row.has-error .form-textarea {
  border-color: #A6432C;
}
.form-row.has-error .form-error { display: block; }

.form-status {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(111,118,80,0.12);
  color: var(--forest);
  border: 1px solid var(--sage);
}
.form-status.is-error {
  display: block;
  background: rgba(166,67,44,0.08);
  color: #A6432C;
  border: 1px solid rgba(166,67,44,0.35);
}

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21/21;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .founder-section,
  .why-grid,
  .career-preview-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
   .hero-title{
    position: relative;
    top:50px;
   }
  .offer-grid { grid-template-columns: 1fr; }
  .scale-preview-list { grid-template-columns: repeat(3, 1fr); }
  .philosophy-split { grid-template-columns: 1fr; gap: 26px; }
  #right1{
  text-align: left; margin-left: auto; 
}
#right2{
  text-align: left; margin-left: auto; 
}
}

@media (max-width: 900px) {
  #right1{
  text-align: left; margin-left: auto; 
}
#right2{
  text-align: left; margin-left: auto; 
}
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual {
    position: static;
    height: 380px;
    order: -1;
  }
  .career-service,
  .career-service:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .career-service-media { order: -1 !important; }
  .career-service:nth-child(even) .career-service-content { text-align: left; }
  .faq-groups { grid-template-columns: 1fr; gap: 10px; }
  .form-row-group { grid-template-columns: 1fr; gap: 0; }

  .scale-stage {
    grid-template-columns: 1fr;
    padding-left: 44px;
    gap: 22px;
  }
  .scale-stage:nth-child(even) .scale-stage-content,
  .scale-stage:nth-child(even) .scale-stage-media {
    order: initial;
  }
  .scale-stage:nth-child(even) .scale-stage-content { text-align: left; margin-left: 0; }
  .scale-stage:nth-child(even) .scale-keywords { justify-content: flex-start; }
  .scale-track { left: 8px; transform: none; }
  .scale-marker { left: 8px; transform: translate(-50%, -50%); }
  .scale-stage-content { max-width: 100%; }
}

@media (max-width: 700px) {
   #right1{
  text-align: left; margin-left: auto; 
}
#right2{
  text-align: left; margin-left: auto; 
}
  :root { --nav-height: 68px; }
  .section-pad { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .footer-logo, .footer-desc, .footer-social { grid-column: 1 / -1; }
  .scale-preview-list { grid-template-columns: repeat(2, 1fr); }
  .why-item { grid-template-columns: 50px 1fr; gap: 16px; }
  .hero { padding-bottom: 60px; }
  .hero-meta { gap: 26px; }
  .founder-image-tag { left: 0; right: auto; bottom: -18px; padding: 14px 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  #right1{
  text-align: left; margin-left: auto; 
}
#right2{
  text-align: left; margin-left: auto; 
}
  .scale-preview-list { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn, .page-hero-actions .btn, .final-cta-actions .btn { width: auto; }
  .hero-actions, .page-hero-actions, .final-cta-actions { flex-direction: column; align-items: stretch; }
}
#xplore{
  border: 1px solid var(--ivory);
}
#bdr{
  border: 1px solid var(--ivory);
}
#parents{
  aspect-ratio: 5/3;
}
.hvr-sweep-to-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deep-green);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--deep-green);
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
#logo{
  position: relative;
  top:13px;
  transform: scale(0.1);
}

/* ============================================================
   HOME — TESTIMONIAL RESPONSIVE FIX
   Prevent fixed heights/positioning from clipping or overflowing
   testimonial content at any viewport size.
   ============================================================ */
.testimonial-track-wrap {
  overflow: hidden;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.testimonial-track {
  align-items: stretch;
  min-width: 0;
}

.testimonial-card {
  min-width: 0;
  height: auto;
  min-height: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.testimonial-text {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.testimonial-person,
.testimonial-name,
.testimonial-role {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (min-width: 901px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 64px) / 3);
  }
}

@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .testimonial-track-wrap {
    padding-left: 0;
    padding-right: 0;
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .testimonial-card {
    padding: 52px 22px 28px;
  }

  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .testimonial-role {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }
}

/* The old fixed positioning caused cards to be clipped on short/wide
   screens and on phones with longer testimonial text. */
div#testimonialTrack {
  position: static;
  top: auto;
  height: auto;
}