/* ============================================
   BAREFOOT HR
   ============================================ */

/* CSS Variables */
:root {
  --color-cream: #F7F5F2;
  --color-evergreen: #1A3D3A;
  --color-blush: #D4A5A5;
  --color-sage: #6B7B79;
  --color-white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(26, 61, 58, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 61, 58, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 61, 58, 0.12);
  --shadow-blush: 0 8px 32px rgba(212, 165, 165, 0.3);
  
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 50px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-evergreen);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navbar logo fix */
.logo-img {
  height: 30px;
  width: auto;
  max-width: none;
}

/* Utility Classes */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.desktop-only {
  display: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-blush);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-blush);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 165, 165, 0.4);
}

.btn-large {
  padding: 20px 40px;
  font-size: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background-color var(--transition-normal), 
              backdrop-filter var(--transition-normal),
              box-shadow var(--transition-normal),
              padding var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}

.nav-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  transition: transform var(--transition-fast);
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.01em;
  transition: color var(--transition-normal);
}

.navbar.scrolled .logo-main {
  color: var(--color-evergreen);
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
}

.navbar.scrolled .logo-sub {
  color: rgba(26, 61, 58, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-blush);
}

.navbar.scrolled .nav-link {
  color: var(--color-evergreen);
}

.navbar.scrolled .nav-link:hover {
  color: var(--color-blush);
}

.nav-cta {
  background-color: var(--color-blush);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-blush);
  transition: transform var(--transition-fast);
}

.nav-cta:hover {
  transform: scale(1.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: background-color var(--transition-normal),
              transform var(--transition-fast),
              opacity var(--transition-fast);
}

.navbar.scrolled .hamburger-line {
  background-color: var(--color-evergreen);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-evergreen);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--color-blush);
}

.mobile-nav-cta {
  background-color: var(--color-blush);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 120%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(to bottom,
  rgba(26, 61, 58, 0.9) 0%,
  rgba(26, 61, 58, 0.8) 50%,
  rgba(26, 61, 58, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-logo {
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.hero-headline {
  font-size: clamp(28px, 5vw, 56px);
  color: var(--color-white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.text-accent {
  color: var(--color-blush);
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(212, 165, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro {
  background-color: var(--color-cream);
}

.intro-headline {
  font-size: clamp(24px, 4vw, 42px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  color: var(--color-evergreen);
}

.intro-headline .word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transform: translateY(40px);
}

.intro-headline .word.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.intro-line {
  width: 96px;
  height: 2px;
  background-color: var(--color-blush);
  margin: 40px auto 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.intro-line.visible {
  transform: scaleX(1);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background-color: var(--color-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-evergreen);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), 
              box-shadow var(--transition-normal);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s ease, transform 0.7s ease, 
              box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(212, 165, 165, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: rgba(212, 165, 165, 0.2);
}

.service-title {
  font-size: 22px;
  color: var(--color-evergreen);
  margin-bottom: 12px;
}

.service-description {
  font-size: 15px;
  color: var(--color-sage);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose {
  background-color: var(--color-cream);
  overflow: hidden;
}

.team-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(26, 61, 58, 0.15);
}

.team-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.team-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 61, 58, 0.4), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-evergreen);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-title {
  font-size: 20px;
  color: var(--color-evergreen);
  margin-bottom: 8px;
}

.feature-description {
  font-size: 15px;
  color: var(--color-sage);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background-color: var(--color-cream);
}

.cta-headline {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--color-evergreen);
  margin-bottom: 24px;
  line-height: 1.3;
}

.cta-headline .word {
  display: inline-block;
  margin-right: 0.25em;
  opacity: 0;
  transform: translateY(30px);
}

.cta-headline .word.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.italic-accent {
  font-style: italic;
  color: var(--color-blush);
}

.cta-description {
  font-size: 17px;
  color: var(--color-sage);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
}

.cta-description.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background-color: var(--color-evergreen);
  color: var(--color-white);
  padding: 80px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.contact-title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-link,
.contact-text {
  font-size: 15px;
  color: var(--color-white);
}

.contact-link:hover {
  color: var(--color-blush);
  transition: color var(--transition-fast);
}

/* Contact Form */
.contact-form-container {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.form-input,
.form-textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--color-white);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-blush);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-blush);
  color: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-blush);
  transition: transform var(--transition-fast);
}

.btn-submit:hover {
  transform: scale(1.02);
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(212, 165, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 8px;
}

.success-text {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-white);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CHAT BUTTON & POPUP
   ============================================ */

.chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-blush);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(212, 165, 165, 0.4);
  z-index: 100;
  transition: transform var(--transition-fast);
}

.chat-btn:hover {
  transform: scale(1.1);
}

.chat-popup {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 320px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(26, 61, 58, 0.2);
  z-index: 99;
  overflow: hidden;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid rgba(26, 61, 58, 0.08);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(212, 165, 165, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-name {
  font-weight: 500;
  color: var(--color-evergreen);
  margin-bottom: 2px;
}

.chat-status {
  font-size: 12px;
  color: var(--color-sage);
}

.chat-message {
  padding: 20px;
  background-color: var(--color-cream);
  margin: 16px;
  border-radius: var(--radius-md);
}

.chat-message p {
  font-size: 14px;
  color: var(--color-evergreen);
  line-height: 1.6;
}

.chat-cta {
  display: block;
  margin: 0 16px 16px;
  padding: 14px 20px;
  background-color: var(--color-blush);
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  transition: transform var(--transition-fast);
}

.chat-cta:hover {
  transform: scale(1.02);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (min-width: 768px) {
  .desktop-only {
    display: flex;
  }
  
  .mobile-only {
    display: none;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .nav-container {
    padding: 0 32px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
/* Navbar logo size fix */
.logo {
  display: flex;
  align-items: center;
}

/* Fix navbar logo size */
.logo-img {
  height: 60px !important;
  width: auto !important;
}
.navbar {
  height: 60px;
}
/* Navbar sizing fix */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}

/* Fix navbar scroll size */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 18px 0; /* keep same height */
}
.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
}
/* WHY SECTION LAYOUT */

.why-layout{
  display:flex;
  align-items:center;
  gap:80px;
}

.why-text{
  flex:1;
}

.why-founder{
  flex:1;
}

.why-founder img{
  width:100%;
  border-radius:20px;
  box-shadow:0 30px 80px rgba(0,0,0,0.15);
}

/* stack feature cards vertically */
.features-grid{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.site-footer{
background:#F7F5F2;
color:#1F3A3A;
padding:70px 0 40px;
margin-top:0;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1.5fr 1fr 1fr;
gap:40px;
padding:0 20px;
}

.footer-logo{
height:40px;
width:auto;
margin-bottom:18px;
}

.footer-tagline{
opacity:.8;
line-height:1.6;
font-size:14px;
}

.footer-links a,
.footer-contact a{
color:#1F3A3A;
text-decoration:none;
margin-bottom:8px;
display:block;
opacity:.8;
transition:.2s;
}

.footer-links a:hover,
.footer-contact a:hover{
opacity:1;
}
.footer-links a,
.footer-contact a{
color:#1F3A3A;
text-decoration:none;
margin-bottom:8px;
display:block;
opacity:.8;
transition:.2s;
}

.footer-links a:hover,
.footer-contact a:hover{
opacity:1;
}

.footer-bottom{
margin-top:40px;
text-align:center;
font-size:13px;
opacity:.6;
}
.site-footer{
border-top:1px solid rgba(0,0,0,0.06);
}
.footer-logo{
image-rendering:auto;
}
.footer-logo{
height:72px !important;
width:auto;
max-width:none;
}


/* ============================================
   SERVICES PAGE
   ============================================ */
   
/* SERVICES HERO */

.services-hero{
padding:140px 0 60px;
background:#F7F5F2;
text-align:center;
}

.services-hero h1{
margin-bottom:15px;
}

.services-hero p{
max-width:650px;
margin:auto;
opacity:.8;
}


/* PROCESS SECTION */

.process-section{
background:#1f3f3a;
padding:120px 0;
text-align:center;
width:100%;
}

.process-section h2{
margin-bottom:50px;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:60px;
width:100%;
}

.process-step{
padding:20px;
}

.process-number{
display:inline-flex;
align-items:center;
justify-content:center;
width:48px;
height:48px;
border-radius:50%;
background:#1F3A3A;
color:white;
font-weight:600;
margin-bottom:15px;
font-size:14px;
}


/* SERVICES CTA */

.services-final-cta{
padding:100px 0;
text-align:center;
background:#F7F5F2;
}

.services-final-cta h2{
margin-bottom:20px;
}

.services-final-cta p{
max-width:600px;
margin:0 auto 30px;
opacity:.8;
}
/* SERVICES HERO */

.services-hero{
padding:160px 0 80px;
background:#F7F5F2;
}

.services-hero-layout{
max-width:750px;
}

.services-hero-title{
margin:10px 0 20px;
}

.services-hero-description{
font-size:16px;
line-height:1.7;
opacity:.8;
margin-bottom:30px;
max-width:600px;
}

.services-hero .btn-primary{
margin-top:10px;
}
/* SERVICES HERO */

.services-hero{
position:relative;
height:520px;
display:flex;
align-items:center;
overflow:hidden;
color:white;
}

.services-hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

.services-hero-bg img{
width:100%;
height:100%;
object-fit:cover;
}

.services-hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
90deg,
rgba(20,40,40,0.85) 0%,
rgba(20,40,40,0.75) 35%,
rgba(20,40,40,0.4) 65%,
rgba(20,40,40,0) 100%
);
}

.services-hero-content{
position:relative;
z-index:2;
max-width:600px;
}

.services-hero-title{
margin:10px 0 20px;
color:white;
}

.services-hero-description{
font-size:16px;
line-height:1.7;
opacity:.9;
}
/* SERVICES HERO */

.services-hero {
  padding: 120px 0 80px;
  background: #f7f3ef;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.services-hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.2;
  color: #2f3e3b;
  margin-bottom: 20px;
}

.services-hero-text p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #5f6e6b;
  max-width: 480px;
}

.hero-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #d8a6a6;
  margin-top: 28px;
}

.services-hero-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* responsive */

@media (max-width: 900px) {

  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-hero-text h1 {
    font-size: 36px;
  }

}
/* SERVICES HERO */

.services-hero {

  position: relative;
  height: 70vh;
  min-height: 520px;

  background-image: url("assets/services_hero.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

}

.services-hero-overlay {

  position: absolute;
  inset: 0;

  background: rgba(37, 71, 63, 0.65); /* sage green overlay */

}

.services-hero-content {

  position: relative;
  z-index: 2;

  text-align: center;
  color: white;
  max-width: 720px;

}

.services-hero-content h1 {

  font-family: "Playfair Display", serif;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;

}

.services-hero-content p {

  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;

}
.services-section{
padding:100px 0;
background:#f7f3ef;
}

.services-intro{
text-align:center;
max-width:700px;
margin:0 auto 30px;
}

.services-intro h2{
font-family:"Playfair Display",serif;
font-size:38px;
color:#2f3e3b;
margin-bottom:16px;
}

.services-intro p{
font-family:"Inter",sans-serif;
font-size:18px;
color:#6c7a77;
}

.services-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.service-card{
background:white;
padding:36px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:transform .25s ease, box-shadow .25s ease;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.service-card h3{
font-family:"Playfair Display",serif;
font-size:22px;
color:#2f3e3b;
margin-bottom:12px;
}

.service-card p{
font-family:"Inter",sans-serif;
font-size:16px;
line-height:1.6;
color:#6c7a77;
}
/* PROCESS SECTION */

.process-section{
  width:100vw;
  margin-left:calc(50% - 50vw);
  background:#1f3f3a;
  padding:120px 0;
  text-align:center;
}

.process-title{
  font-family:"Playfair Display", serif;
  font-size:38px;
  color:#f7f5f2;
  margin-bottom:70px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:60px;
  max-width:1152px;
  margin:0 auto;
  padding:0 24px;
}

.process-step h3{
  font-family:"Playfair Display", serif;
  font-size:20px;
  color:#f7f5f2;
  margin:14px 0 10px;
}

.process-step p{
  font-family:"Inter", sans-serif;
  font-size:15px;
  line-height:1.6;
  color:#d8d3cd;
}

.step-number{

width:64px;
height:64px;

border-radius:50%;

background:linear-gradient(
145deg,
#e6b3b3,
#d4a5a5
);

color:#1A3D3A;

display:flex;
align-items:center;
justify-content:center;

font-weight:600;
font-size:15px;

margin:0 auto 18px;

box-shadow:
0 6px 14px rgba(0,0,0,0.25),
inset 0 2px 4px rgba(255,255,255,0.35);

transition:transform .25s ease, box-shadow .25s ease;

}
.process-grid{
  position:relative;
}

.process-grid::before{
  content:"";
  position:absolute;
  top:24px;
  left:8%;
  width:84%;
  height:2px;
  background:rgba(255,255,255,0.15);
  z-index:0;
}

.step-number{
  position:relative;
  z-index:2;
}
.reveal-up{
opacity:0;
transform:translateY(40px);
}
.process-header{
max-width:700px;
margin:0 auto 80px;
text-align:center;
}

.process-title{
font-size:clamp(40px,5vw,64px);
color:#F7F5F2;
margin-bottom:18px;
}

.process-subtitle{
font-size:18px;
line-height:1.7;
color:rgba(255,255,255,0.7);
max-width:600px;
margin:0 auto;
}
.process-section{
  width:100vw;
  margin-left:calc(50% - 50vw);
  background:#1f3f3a;
  padding:120px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.process-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("assets/texture-grain.jpg");
  opacity:0.08;
  pointer-events:none;
}
.process-step:hover .step-number{

transform:translateY(-4px);

box-shadow:
0 12px 20px rgba(0,0,0,0.35),
inset 0 2px 4px rgba(255,255,255,0.35);

}
.process-grid{
gap:70px;
}

/* ============================================
   EXECUTIVE COUCH
   ============================================ */

/* EXECUTIVE COUCH HERO */

.couch-hero{
  position:relative;
  height:85vh;
  min-height:620px;

  background:
  linear-gradient(
    90deg,
    rgba(15,42,63,1) 0%,
    rgba(15,42,63,0.9) 35%,
    rgba(15,42,63,0.6) 55%,
    rgba(15,42,63,0) 75%
  ),
  url("assets/executive-couch-hero.png");

  background-size:cover;
  background-position:right center;

  display:flex;
  align-items:center;
}

.couch-hero-content{

  position:relative;
  z-index:2;

  max-width:620px;

  margin-left:15%;   /* pushes text further right */
}

.couch-hero-title{

  font-family: "Montserrat", sans-serif;
  font-weight: 600;

  font-size: clamp(64px, 6vw, 90px);

  letter-spacing: 0.08em;

  color: #E6DCCB;;

  margin-bottom: 16px;

}

.couch-hero-subtitle{

  font-family: "Montserrat", sans-serif;

  font-size: 18px;

  letter-spacing: 0.05em;

  color: #E6DCCB;

  opacity: .9;

}
.couch-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
max-width:900px;
margin:auto;
}

.couch-topics h3{
margin-bottom:10px;
}

.couch-topics ul{
line-height:1.9;
}

.audience-list{
line-height:1.9;
margin:20px 0;
}

.global-note{
margin-top:10px;
opacity:.7;
}

.couch-pricing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:900px;

  margin: 20px auto 0;
}

.price-card{
background:white;
padding:40px;
border-radius:16px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
text-align:center;
}

.price{
font-size:28px;
font-weight:600;
margin-top:15px;
color:#1A3D3A;
}

/* =========================================
   CLOSING / PRICING SECTION
========================================= */

.couch-closing {
  background: #0F2A3F;
  text-align: center;

  padding: 40px 20px 30px;
}

/* Intro line */

.couch-closing .closing-intro {
  font-size: 18px;
  color: #C8C0B2;
  letter-spacing: 0.02em;

  margin-bottom: 8px;
}

/* Main statement */

.couch-closing h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;

  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.2;

  color: #E6DCCB;

  margin: 0 0 20px; /* 🔥 controls spacing cleanly */
}

/* Divider */

.couch-closing h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #E7B7B0;

  margin: 18px auto 0;
}

/* =========================================
   PRICING SECTION (CLEAN + STABLE)
========================================= */

/* GRID */

.couch-pricing-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:32px;

  max-width:920px;
  margin:24px auto 0;
}

/* CARD BASE */

.couch-pricing-grid .price-card{
  background:#E6DCCB;

  padding:40px 32px;
  border-radius:20px;

  box-shadow:0 18px 50px rgba(0,0,0,0.22);

  text-align:center;
  position:relative;

  transition:transform .25s ease, box-shadow .25s ease;
}

/* HOVER */

.couch-pricing-grid .price-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(0,0,0,0.28);
}

/* TITLE */

.couch-pricing-grid .price-card h3{
  font-family:"Montserrat", sans-serif;
  font-weight:600;
  font-size:18px;

  color:#0F2A3F !important;

  margin-bottom:8px;
}

/* DESCRIPTION */

.couch-pricing-grid .price-card p{
  font-size:14px;
  line-height:1.6;

  color:#4F6662 !important;
  opacity:1 !important;

  margin-bottom:22px;
}

/* PRICE */

.couch-pricing-grid .price{
  font-size:32px;
  font-weight:600;

  color:#0F2A3F !important;

  letter-spacing:0.02em;
}

/* OPTIONAL: subtle divider inside card */

.couch-pricing-grid .price::before{
  content:"";
  display:block;

  width:40px;
  height:2px;

  background:#D4A5A5;

  margin:0 auto 14px;
}
/* ========================================
EXECUTIVE COUCH INTRO
======================================== */

.couch-intro{
  padding:70px 0 80px;
  background:#F7F5F2;
}

.couch-intro-inner{
  max-width:820px;
}

/* Heading */

.couch-intro-title{

  font-family:"Montserrat", serif;
  font-size:42px;
  color:#E6DCCB;

  margin-bottom:25px;
  position:relative;

}

.couch-intro-title::after{

  content:"";

  display:block;
  width:90px;
  height:3px;

  background:#D4A5A5;

  margin-top:12px;

}

/* lead text */

.couch-intro-lead{

  font-size:20px;
  line-height:1.7;

  color:#4F6662;

  margin-bottom:40px;

}

/* body */

.couch-intro-body p{

  font-size:17px;
  line-height:1.9;

  color:#3F5551;

  margin-bottom:20px;

}

/* emphasis lines */

.highlight-line{

  font-weight:600;
  color:#1A3D3A;

}

.closing-line{

  margin-top:25px;
  font-weight:500;

}
/* =========================================
EXECUTIVE COUCH ABOUT SECTION
========================================= */

.couch-about{
background:#F7F5F2;
}

.couch-about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

/* IMAGE LAYOUT */

.couch-images{
position:relative;
display:grid;
grid-template-columns:1fr 1fr;
grid-gap:20px;
}

.img-large{
grid-row:span 2;
border-radius:18px;
object-fit:cover;
height:100%;
}

.img-small{
border-radius:18px;
object-fit:cover;
}

/* PRIVATE ADVISORY CARD */

.experience-card{

position:absolute;
bottom:-25px;
left:25px;

background:#E6DCCB;
color:#0F2A3F;

padding:28px 26px;

border-radius:20px;

width:240px;

box-shadow:0 18px 45px rgba(0,0,0,0.18);

transition:all .35s ease;

}

/* Title */

.experience-card h3{

font-family:"Montserrat", sans-serif;
font-size:18px;

letter-spacing:0.04em;

margin-bottom:10px;

}

/* Body text */

.experience-card p{

font-size:15px;
line-height:1.7;

opacity:.9;

}

/* Hover interaction */

.experience-card:hover{

transform:translateY(-6px);
box-shadow:0 28px 60px rgba(0,0,0,0.22);

}
.experience-card h3::after{

content:"";
display:block;

width:36px;
height:2px;

background:var(--color-blush);

margin-top:8px;

}
/* TEXT SIDE */

/* SECTION LABEL */

.section-label{

font-family:var(--font-sans);
font-size:12px;
letter-spacing:0.15em;
text-transform:uppercase;

color:var(--color-blush);

display:block;
margin-bottom:16px;

font-weight:600;

}


/* MAIN HEADING */

.couch-heading{

font-family:"Montserrat", sans-serif;

font-weight:600;

font-size:clamp(44px,4vw,60px);

line-height:1.1;

letter-spacing:0.03em;

color:#0F2A3F;

margin-bottom:26px;

}
.couch-heading::after{

content:"";
display:block;

width:70px;
height:3px;

background:var(--color-blush);

margin-top:16px;

}


/* LEAD PARAGRAPH */

.couch-lead{

font-family:var(--font-sans);

font-size:20px;
line-height:1.7;

color:var(--color-sage);

margin-bottom:26px;

max-width:560px;

}


/* BODY TEXT */

.couch-text p{

font-family:var(--font-sans);

font-size:17px;
line-height:1.9;

color:#4A5E5B;

margin-bottom:18px;

max-width:560px;

}


/* EMPHASIS */

.highlight{

font-weight:600;
color:var(--color-evergreen);

margin-top:8px;

}

/* RESPONSIVE */

@media (max-width:900px){

.couch-about-grid{
grid-template-columns:1fr;
}

.couch-images{
margin-bottom:40px;
}

}
/* EXECUTIVE COUCH QUOTE */

.couch-quote{
background:#F7F5F2;
padding:80px 0 60px;
text-align:center;
}

.quote-text{

max-width:900px;
margin:auto;

font-family: var(--font-serif);   /* Playfair Display */
font-size: clamp(32px,4vw,42px);

line-height:1.4;
letter-spacing:.02em;

color:#E6DCCB;  /* navy / evergreen brand color */

}

/* underline exactly like homepage */

.quote-text::after{

content:"";
display:block;

width:90px;
height:2px;

background:#D4A5A5;

margin:40px auto 0;

}

/* spacing between sentences */

.quote-break{
display:block;
height:32px;
}

/* animation */

.quote-word{
display:inline-block;
opacity:0;
transform:translateY(18px);
}

.quote-word.visible{
opacity:1;
transform:translateY(0);
transition:opacity .6s ease, transform .6s ease;
}
/* EXECUTIVE COUCH TOPICS */

.couch-topics{
background:#F7F5F2;
}

.topics-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

max-width:1000px;
margin:auto;

}

/* CARD */

.topic-card{

background:white;

padding:40px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,0.06);

transition:transform .35s ease,
box-shadow .35s ease;

}

/* HOVER EFFECT */

.topic-card:hover{

transform:translateY(-8px) scale(1.02);

box-shadow:0 22px 45px rgba(0,0,0,0.12);

}

/* TITLE */

.topic-title{

font-family:"Montserrat", sans-serif;

font-size:22px;

color:#E6DCCB;

margin-bottom:20px;

}

/* LIST */

.topic-card ul{

padding-left:18px;

}

.topic-card li{

font-size:16px;

line-height:1.8;

color:#E6DCCB;

margin-bottom:6px;

}
/* EXECUTIVE COUCH TOPICS */

.couch-topics{
background:#F7F5F2;
}

.topics-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

max-width:1000px;
margin:auto;

}

/* CARD */

.topic-card{

background:white;

padding:40px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,0.06);

transition:transform .35s ease,
box-shadow .35s ease;

}

/* HOVER EFFECT */

.topic-card:hover{

transform:translateY(-8px) scale(1.02);

box-shadow:0 22px 45px rgba(0,0,0,0.12);

}

/* TITLE */

.topic-title{

font-family:var(--font-serif);

font-size:22px;

color:#E6DCCB;

margin-bottom:20px;

}

/* LIST */

.topic-card ul{

padding-left:18px;

}

.topic-card li{

font-size:16px;

line-height:1.8;

color:#E6DCCB;

margin-bottom:6px;

}
.experience-card{
box-shadow:0 20px 50px rgba(15,42,63,0.25);
}
.executive-couch-page section{
background:transparent;
}
/* EXECUTIVE COUCH PAGE THEME */

.executive-couch-page{
background:#0F2A3F;
color:white;
}
/* EXECUTIVE COUCH PAGE BACKGROUND */

body.executive-couch-page{

background:linear-gradient(
180deg,
#0B2235 0%,
#0F2A3F 40%,
#0F2A3F 100%
);

color:white;

}
.executive-couch-page section{
background:transparent;
}
.couch-hero{
background-image:url("assets/executive-couch-hero.png") !important;
}
/* =================================
   EXECUTIVE COUCH COLOR SYSTEM
   ================================= */

.executive-couch-page{
--exec-cream:#E6DCCB;
--exec-soft:#C8C0B2;
--exec-accent:#E7B7B0;
}

/* Headings */

.executive-couch-page h2,
.executive-couch-page h3{
color:var(--exec-cream);
}

/* Body text */

.executive-couch-page p,
.executive-couch-page li{
color:var(--exec-soft);
}

/* Small section label */

.executive-couch-page .executive-label{
color:var(--exec-accent);
letter-spacing:2px;
text-transform:uppercase;
font-size:13px;
}
.experience-card h3,
.experience-card p{
color:#0F2A3F !important;
}
.couch-topics,
.couch-topics * {
  color: #0F2A3F !important;
}
.executive-couch-page .section-title{
color:#E6DCCB !important;
}

.executive-couch-page .section-label{
color:#E7B7B0 !important;
}
.why-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:80px;
align-items:center;
}
.why-text p{
color:#C8C0B2;
line-height:1.8;
margin-bottom:18px;
max-width:520px;
}
.why-card{

background:#E6DCCB;

padding:40px;

border-radius:18px;

box-shadow:0 20px 60px rgba(0,0,0,0.18);

}
.why-image img{

width:100%;

border-radius:22px;

box-shadow:0 30px 70px rgba(0,0,0,0.35);

}
.why-image img{

transition:transform .4s ease;

}

.why-image img:hover{

transform:scale(1.03);

}
.section-header .section-title{
  /* your styles here if any */
}

.section-header .section-title{
  /* your styles here if any */
}

.why-text h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 4vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #E6DCCB;
}
.couch-audience{
max-width:640px;
margin:0 auto;
text-align:left;
}
.couch-audience h3{
font-family:"Montserrat", sans-serif;
font-weight:600;
font-size:28px;
letter-spacing:.04em;
color:#E6DCCB;
margin-bottom:28px;
}
.couch-audience ul{
list-style:none;
padding:0;
margin-bottom:26px;
}

.couch-audience li{
position:relative;
padding-left:22px;
margin-bottom:12px;
color:#C8C0B2;
font-size:16px;
line-height:1.7;
}

.couch-audience li::before{
content:"";
position:absolute;
left:0;
top:9px;
width:6px;
height:6px;
border-radius:50%;
background:#E7B7B0;
}
.couch-audience ul{
list-style:none;
padding:0;
margin-bottom:26px;
}

.couch-audience li{
position:relative;
padding-left:22px;
margin-bottom:12px;
color:#C8C0B2;
font-size:16px;
line-height:1.7;
}

.couch-audience li::before{
content:"";
position:absolute;
left:0;
top:9px;
width:6px;
height:6px;
border-radius:50%;
background:#E7B7B0;
}
.couch-why{
text-align:center;
padding:120px 0;
position:relative;
}
.couch-why::before,
.couch-why::after{
content:"";
display:block;
width:90px;
height:2px;
background:#E7B7B0;
margin:0 auto;
}
.couch-why::before{
margin-bottom:50px;
}

.couch-why::after{
margin-top:50px;
}
.why-text p{
font-size:17px;
line-height:1.8;
color:#C8C0B2;
max-width:650px;
margin:0 auto 18px;
}
.couch-closing {
  padding: 40px 20px 30px !important;
}

/* =========================================
   EXECUTIVE COUCH PREMIUM FOOTER
========================================= */

.couch-footer{
  background:#0F2A3F;
  padding:60px 20px 30px;

  border-top:1px solid rgba(255,255,255,0.08);
}

/* layout */

.couch-footer-container{
  max-width:1000px; /* tighter = more premium */
  margin:0 auto;

  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:50px; /* reduced spacing */
}

/* brand */

.footer-brand{
  max-width:260px;
}

.footer-logo{
  height:42px;
  width:auto;
  margin-bottom:14px;
}

.footer-tagline{
  font-size:14px;
  line-height:1.6;
  color:#C8C0B2;
}

/* headings */

.couch-footer h4{
  font-family:"Montserrat", sans-serif;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;

  color:#E7B7B0;
  margin-bottom:12px;
}

/* links */

.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-links a{
  font-size:14px;
  color:#C8C0B2;
  transition:all .2s ease;
}

.footer-links a:hover{
  color:#E6DCCB;
  transform:translateX(3px); /* subtle premium motion */
}

/* contact */

.footer-contact p{
  font-size:14px;
  color:#C8C0B2;
  margin-bottom:6px;
}

/* divider */

.footer-bottom{
  margin-top:40px;
  padding-top:20px;

  border-top:1px solid rgba(255,255,255,0.08);

  text-align:center;
  font-size:12px;
  color:rgba(200,192,178,0.6);
}
/* CTA container */

.footer-cta{
  text-align:center;
  margin-top:40px;
}

/* button */

.footer-btn{
  display:inline-block;

  font-family:"Montserrat", sans-serif;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;

  padding:14px 28px;

  background:#E7B7B0;
  color:#0F2A3F;

  border-radius:999px;

  transition:all .25s ease;
}

/* hover */

.footer-btn:hover{
  background:#0F2A3F;
  transform:translateY(-2px);
}


/* =========================================
   ABOUT HERO (CORE BRAND — NOT EXEC COUCH)
========================================= */

.about-hero{
  position:relative;
  height:75vh;
  min-height:520px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

/* background image */

.about-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.about-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* soft green overlay (like homepage) */

.about-hero-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to bottom,
    rgba(26,61,58,0.75),
    rgba(26,61,58,0.55)
  );
}

/* content */

.about-hero-content{
  position:relative;
  z-index:2;

  text-align:center;
  max-width:800px;
}

/* 👇 THIS fixes your font issue */

.about-hero h1{
  font-family:"Playfair Display", serif;  /* back to brand */
  font-size:clamp(42px,5vw,64px);
  line-height:1.2;

  color:#FFFFFF;

  margin-bottom:20px;
}

.about-hero p{
  font-family:"Inter", sans-serif;

  font-size:18px;
  line-height:1.7;

  color:rgba(255,255,255,0.85);
}

/* =========================================
   TEAM SECTION — EDITORIAL STYLE
========================================= */

.team-section{
  background:#F7F5F2;
  padding:40px 20px;
}

/* ROW */

.team-row{
  max-width:1100px;
  margin:0 auto 100px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* reverse layout */

.team-row.reverse .team-text{
  direction:ltr;
}

/* IMAGE */

.team-image-wrap{
  display:flex;
  justify-content:center;
}

.team-image-circle{
  width:320px;
  height:320px;

  border-radius:50%;
  overflow:hidden;

  box-shadow:0 30px 80px rgba(0,0,0,0.15);
}

.team-image-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */

.team-text h2{
  font-family:"Playfair Display", serif;
  font-size:34px;
  color:#1A3D3A;

  margin-bottom:8px;
}

.team-role{
  display:block;

  font-size:14px;
  letter-spacing:0.04em;

  color:#6B7B79;
  margin-bottom:20px;
}

.team-text p{
  font-size:15.5px;     /* slightly tighter */
  line-height:1.75;     /* more refined */
  color:#3F5551;

  margin-bottom:16px;   /* 👈 adds breathing rhythm */
}
.team-text{
  text-align:left;
  max-width:520px;
}
.word{
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  margin-right:6px;
}

/* animate in */

.about-quote .word{
  animation:fadeUp 0.6s ease forwards;
}

/* cascading delays */

.word:nth-child(1){animation-delay:0.05s;}
.word:nth-child(2){animation-delay:0.1s;}
.word:nth-child(3){animation-delay:0.15s;}
.word:nth-child(4){animation-delay:0.2s;}
.word:nth-child(5){animation-delay:0.25s;}
.word:nth-child(6){animation-delay:0.3s;}
.word:nth-child(7){animation-delay:0.35s;}
.word:nth-child(8){animation-delay:0.4s;}
.word:nth-child(9){animation-delay:0.45s;}
.word:nth-child(10){animation-delay:0.5s;}
.word:nth-child(11){animation-delay:0.55s;}
.word:nth-child(12){animation-delay:0.6s;}
.word:nth-child(13){animation-delay:0.65s;}
.word:nth-child(14){animation-delay:0.7s;}
.word:nth-child(15){animation-delay:0.75s;}
.word:nth-child(16){animation-delay:0.8s;}
.word:nth-child(17){animation-delay:0.85s;}
.word:nth-child(18){animation-delay:0.9s;}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.quote-line{
  display:block;      /* 👈 forces clean line break */
  margin-bottom:10px; /* 👈 spacing between lines */
}
/* =========================================
   ABOUT QUOTE FIX
========================================= */

.about-quote{
  background:#F7F5F2;
  padding:80px 20px 50px;
  text-align:center;
}

.quote-text{
  color:#1A3D3A !important;
  opacity:1 !important;
}
.value-card{
  position:relative;
  overflow:hidden;
}

.value-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.04);
  opacity:0;
  transition:.3s;
}

.value-card:hover::after{
  opacity:1;
}
/* SECTION */

.values-section{
  background:#F7F5F2;
  padding:100px 20px;
  text-align:center;
}

/* TITLE */

.values-title{
  font-family:"Playfair Display", serif;
  font-size:42px;
  color:#1A3D3A;
  margin-bottom:16px;
}

.values-intro{
  max-width:720px;
  margin:0 auto 60px;

  font-size:16px;
  line-height:1.7;
  color:#6B7B79;
}

/* GRID */

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* ============================================
   VALUES SECTION — EDITORIAL FORMAT
   ============================================ */

.values-section {
  position: relative;
  padding: 110px 24px 100px;
  background-image: linear-gradient(rgba(26, 61, 58, 0.72), rgba(26, 61, 58, 0.72)), url('values-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.values-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #F7F5F2;
  margin-bottom: 18px;
}

.values-section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(247, 245, 242, 0.88);
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 20px;
}

.values-card {
  text-align: center;
  color: #F7F5F2;
  padding: 0 10px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.values-card::before {
  content: "";
  width: 58px;
  height: 58px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #D4A5A5;
  box-shadow: 0 8px 24px rgba(212, 165, 165, 0.20);
}

.values-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #F7F5F2;
  margin-bottom: 12px;
}

.values-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247, 245, 242, 0.88);
  max-width: 240px;
  margin: 0 auto;
}

/* Subtle hover */
.values-card:hover::before {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}

/* Tablet */
@media (max-width: 1024px) {
  .values-section {
    padding: 90px 24px 80px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .values-section {
    padding: 80px 20px 70px;
  }

  .values-section-header {
    margin-bottom: 44px;
  }

  .values-section-header h2 {
    font-size: 2.4rem;
  }

  .values-section-header p {
    font-size: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .values-card p {
    max-width: 100%;
  }
}
/* =========================================
   HOMEPAGE - WHY SECTION FIX
========================================= */

.why-choose h2{
  font-family: "Playfair Display", serif !important;
  color: #1A3D3A !important; /* evergreen */
}

.why-choose .feature-title{
  font-family: "Playfair Display", serif;
  color: #1A3D3A;
}

.why-choose .feature-description{
  color: #6B7B79;
}
/* ============================================
   FOOTER COLOR FIX (MAIN SITE)
   ============================================ */

.site-footer {
  background-color: #F7F5F2;
  color: #1A3D3A;
}

/* Headings (Explore, Contact) */
.site-footer h4 {
  color: #1A3D3A;
  font-family: 'Playfair Display', serif;
}

/* Regular text */
.site-footer p {
  color: #6B7B79;
}

/* Links */
.site-footer a {
  color: #1A3D3A;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #D4A5A5;
}

/* Small / copyright text */
.site-footer small,
.site-footer .footer-bottom {
  color: rgba(26, 61, 58, 0.6);
}
.executive-couch-page * {
  color: #E6DCCB;
}
/* ============================================
   DIFFERENCE SECTION
   ============================================ */

.difference-section {
  padding: 110px 0;
  background-color: #F7F5F2;
}

.difference-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.difference-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7B79;
  margin-bottom: 14px;
}

.difference-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 500;
  color: #1A3D3A;
  margin-bottom: 18px;
}

.difference-intro {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #6B7B79;
  max-width: 700px;
  margin: 0 auto;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.difference-card {
  background-color: #FFFCF8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26, 61, 58, 0.07);
  border: 1px solid rgba(26, 61, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 61, 58, 0.10);
}

.difference-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.difference-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.difference-card:hover .difference-card-image img {
  transform: scale(1.04);
}

.difference-card-content {
  padding: 28px 28px 30px;
}

.difference-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 500;
  color: #1A3D3A;
  margin-bottom: 12px;
}

.difference-card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #6B7B79;
  margin: 0;
}

/* subtle stagger for editorial feel */
.difference-card:nth-child(2),
.difference-card:nth-child(4) {
  transform: translateY(28px);
}

.difference-card:nth-child(2):hover,
.difference-card:nth-child(4):hover {
  transform: translateY(22px);
}

/* tablet */
@media (max-width: 1024px) {
  .difference-section {
    padding: 90px 0;
  }

  .difference-grid {
    gap: 24px;
  }

  .difference-card:nth-child(2),
  .difference-card:nth-child(4) {
    transform: translateY(18px);
  }

  .difference-card:nth-child(2):hover,
  .difference-card:nth-child(4):hover {
    transform: translateY(12px);
  }
}

/* mobile */
@media (max-width: 767px) {
  .difference-section {
    padding: 80px 0;
  }

  .difference-header {
    margin-bottom: 40px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .difference-card:nth-child(2),
  .difference-card:nth-child(4) {
    transform: none;
  }

  .difference-card:nth-child(2):hover,
  .difference-card:nth-child(4):hover {
    transform: translateY(-6px);
  }

  .difference-card-content {
    padding: 24px 22px 26px;
  }

  .difference-card-content h3 {
    font-size: 1.35rem;
  }
}
/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
  background-color: #F7F5F2;
  padding: 80px 0 28px;
  border-top: 1px solid rgba(26, 61, 58, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 170px;
  height: auto;
  margin-bottom: 22px;
  display: block;
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #6B7B79;
  margin: 0;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #1A3D3A;
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7B79;
  text-decoration: none;
  margin: 0;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #D4A5A5;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 61, 58, 0.08);
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26, 61, 58, 0.55);
  text-align: center;
  margin: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-footer {
    padding: 64px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 18px;
  }

  .footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
  }

  .footer-bottom p {
    text-align: left;
  }
}
/* FAQ SIMPLE */

.faq-simple-section {
  padding: 140px 0 100px;
  background-color: #F7F5F2;
}

.faq-simple-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.faq-simple-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  color: #1A3D3A;
  margin-bottom: 16px;
}

.faq-simple-header p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #6B7B79;
}

/* LIST */

.faq-simple-list {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ITEM */

.faq-simple-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 61, 58, 0.1);
}

.faq-simple-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1A3D3A;
  margin-bottom: 10px;
}

.faq-simple-item p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #6B7B79;
  max-width: 700px;
}
/* FAQ SIMPLE */

.faq-simple-section {
  padding: 140px 0 100px;
  background-color: #F7F5F2;
}

.faq-simple-section .container {
  max-width: 1300px;
}

.faq-simple-header {
  max-width: 1000px;
  margin-bottom: 60px;
}

.faq-simple-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 500;
  color: #1A3D3A;
  margin-bottom: 16px;
}

.faq-simple-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #6B7B79;
  max-width: 900px;
}

/* LIST */

.faq-simple-list {
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ITEM */

.faq-simple-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 61, 58, 0.1);
}

.faq-simple-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: #1A3D3A;
  margin-bottom: 10px;
}

.faq-simple-item p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #6B7B79;
  max-width: 1000px;
}

@media (max-width: 767px) {
  .faq-simple-section {
    padding: 120px 0 80px;
  }

  .faq-simple-header {
    margin-bottom: 40px;
  }

  .faq-simple-header h1 {
    font-size: 2.8rem;
  }

  .faq-simple-header p {
    font-size: 16px;
  }

  .faq-simple-list {
    gap: 28px;
  }

  .faq-simple-item h3 {
    font-size: 20px;
  }

  .faq-simple-item p {
    font-size: 15px;
    max-width: 100%;
  }
}

.faq-simple-section .container {
  max-width: 1300px;
}

/* MOBILE */

@media (max-width: 767px) {
  .faq-simple-section {
    padding: 120px 0 80px;
  }

  .faq-simple-header {
    margin-bottom: 40px;
  }

  .faq-simple-list {
    gap: 28px;
  }

  .faq-simple-item h3 {
    font-size: 18px;
  }
}
/* FAQ / LIGHT NAV PAGE OVERRIDE */
body.light-nav-page .navbar {
  background-color: rgba(247, 245, 242, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(26, 61, 58, 0.08) !important;
  padding: 16px 0 !important;
}

body.light-nav-page .nav-link {
  color: #1A3D3A !important;
}

body.light-nav-page .nav-link:hover {
  color: #D4A5A5 !important;
}

body.light-nav-page .logo-main,
body.light-nav-page .logo-sub {
  color: #1A3D3A !important;
}

body.light-nav-page .hamburger-line {
  background-color: #1A3D3A !important;
}
/* FAQ / LIGHT NAV PAGE OVERRIDE */
body.light-nav-page .navbar {
  background-color: rgba(247, 245, 242, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(26, 61, 58, 0.08) !important;
  padding: 16px 0 !important;
}

body.light-nav-page .nav-link {
  color: #1A3D3A !important;
}

body.light-nav-page .nav-link:hover {
  color: #D4A5A5 !important;
}

body.light-nav-page .logo-main,
body.light-nav-page .logo-sub {
  color: #1A3D3A !important;
}

body.light-nav-page .hamburger-line {
  background-color: #1A3D3A !important;
}
/* FAQ / LIGHT NAV PAGE OVERRIDE */
body.light-nav-page .navbar {
  background-color: rgba(247, 245, 242, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(26, 61, 58, 0.08) !important;
  padding: 16px 0 !important;
}

body.light-nav-page .nav-link {
  color: #1A3D3A !important;
}

body.light-nav-page .nav-link:hover {
  color: #D4A5A5 !important;
}

body.light-nav-page .logo-main,
body.light-nav-page .logo-sub {
  color: #1A3D3A !important;
}

body.light-nav-page .hamburger-line {
  background-color: #1A3D3A !important;
}
/* CONTACT / LIGHT NAV PAGE */
body.light-nav-page .navbar,
body.light-nav-page .navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(247, 245, 242, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(26, 61, 58, 0.08) !important;
  padding: 16px 0 !important;
}

body.light-nav-page .nav-link,
body.light-nav-page .navbar.scrolled .nav-link {
  color: #1A3D3A !important;
}

body.light-nav-page .nav-link:hover,
body.light-nav-page .navbar.scrolled .nav-link:hover {
  color: #D4A5A5 !important;
}

body.light-nav-page .hamburger-line,
body.light-nav-page .navbar.scrolled .hamburger-line {
  background-color: #1A3D3A !important;
}

body.light-nav-page .logo {
  display: flex;
  align-items: center;
}

body.light-nav-page .logo-img {
  height: 38px;
  width: auto;
  display: block;
  opacity: 1 !important;
}

/* CONTACT HERO */

.contact-hero {
  padding: 180px 0 90px; /* more top padding */
  background-color: #F7F5F2;
}

.contact-hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 5vw, 5rem); /* slightly bigger */
  line-height: 1.06;
  font-weight: 500;
  color: #1A3D3A;
  margin-bottom: 20px;
}

.contact-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 19px; /* slightly bigger */
  line-height: 1.8;
  color: #1A3D3A;
  max-width: 920px;
  margin: 0 auto;
}

/* WORD CASCADE ANIMATION */

.word-fade-heading span,
.word-fade-subheading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: wordFadeUp 0.7s ease forwards;
  margin-right: 0.18em;
}

.word-fade-heading span:last-child,
.word-fade-subheading span:last-child {
  margin-right: 0;
}

.word-fade-heading span:nth-child(1)  { animation-delay: 0.05s; }
.word-fade-heading span:nth-child(2)  { animation-delay: 0.12s; }
.word-fade-heading span:nth-child(3)  { animation-delay: 0.19s; }

.word-fade-subheading span:nth-child(1)  { animation-delay: 0.32s; }
.word-fade-subheading span:nth-child(2)  { animation-delay: 0.36s; }
.word-fade-subheading span:nth-child(3)  { animation-delay: 0.40s; }
.word-fade-subheading span:nth-child(4)  { animation-delay: 0.44s; }
.word-fade-subheading span:nth-child(5)  { animation-delay: 0.48s; }
.word-fade-subheading span:nth-child(6)  { animation-delay: 0.52s; }
.word-fade-subheading span:nth-child(7)  { animation-delay: 0.56s; }
.word-fade-subheading span:nth-child(8)  { animation-delay: 0.60s; }
.word-fade-subheading span:nth-child(9)  { animation-delay: 0.64s; }
.word-fade-subheading span:nth-child(10) { animation-delay: 0.68s; }
.word-fade-subheading span:nth-child(11) { animation-delay: 0.72s; }
.word-fade-subheading span:nth-child(12) { animation-delay: 0.76s; }
.word-fade-subheading span:nth-child(13) { animation-delay: 0.80s; }
.word-fade-subheading span:nth-child(14) { animation-delay: 0.84s; }
.word-fade-subheading span:nth-child(15) { animation-delay: 0.88s; }
.word-fade-subheading span:nth-child(16) { animation-delay: 0.92s; }
.word-fade-subheading span:nth-child(17) { animation-delay: 0.96s; }
.word-fade-subheading span:nth-child(18) { animation-delay: 1.00s; }
.word-fade-subheading span:nth-child(19) { animation-delay: 1.04s; }

@keyframes wordFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .contact-hero {
    padding: 150px 0 70px;
  }

  .contact-hero-content h1 {
    font-size: 2.9rem;
  }

  .contact-hero-content p {
    font-size: 17px;
  }
}
/* ============================================
   CONTACT MAIN SECTION
   ============================================ */

.contact-main-section {
  background: #114942;
  padding: 90px 0 140px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.contact-info-panel {
  color: #F7F5F2;
  padding-top: 10px;
}

.contact-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.7);
  margin-bottom: 18px;
}

.contact-info-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 500;
  color: #F7F5F2;
  margin-bottom: 18px;
  max-width: 680px;
}

.contact-intro {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(247, 245, 242, 0.88);
  max-width: 620px;
  margin-bottom: 40px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.10),
    0 8px 18px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  font-size: 20px;
  color: #F3C1C1;
  line-height: 1;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(247, 245, 242, 0.68);
}

.contact-detail-text a,
.contact-detail-text p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #F7F5F2;
  margin: 0;
  text-decoration: none;
}

.contact-detail-text a:hover {
  color: #F3C1C1;
}

.contact-socials {
  padding-top: 10px;
  border-top: 1px solid rgba(247, 245, 242, 0.12);
  max-width: 420px;
}

.socials-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(247, 245, 242, 0.7);
  margin-bottom: 14px;
}

.socials-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #F7F5F2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  background: #D4A5A5;
  color: #1A3D3A;
}

.contact-form-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
  backdrop-filter: blur(8px);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(247,245,242,0.88);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(247,245,242,0.10);
  border: 1px solid rgba(247,245,242,0.18);
  border-radius: 16px;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #F7F5F2;
  margin-bottom: 18px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247,245,242,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(243, 193, 193, 0.7);
  background: rgba(247,245,242,0.13);
}

.contact-submit-btn {
  background-color: #D4A5A5;
  color: #173A37;
  border: none;
  border-radius: 999px;
  padding: 17px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 10px 24px rgba(212,165,165,0.18);
  margin-top: 6px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(212,165,165,0.24);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247,245,242,0.62);
  margin-top: 14px;
  margin-bottom: 0;
}

.form-status-message {
  display: none;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 14px;
  padding: 12px 14px;
}

.form-status-message.success {
  display: block;
  color: #F7F5F2;
  background: rgba(255,255,255,0.08);
}

.form-status-message.error {
  display: block;
  color: #fff4f4;
  background: rgba(212, 92, 92, 0.18);
}

@media (max-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-info-panel h2,
  .contact-intro {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-main-section {
    padding: 70px 0 110px;
  }

  .contact-info-panel h2 {
    font-size: 2.5rem;
  }

  .contact-intro {
    font-size: 16px;
  }

  .contact-detail-text a,
  .contact-detail-text p {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 20px;
    border-radius: 20px;
  }
}

.hero-actions {
  margin-top: 32px;
}

.hero-cta-btn {
  display: inline-block;
  background-color: #D4A5A5;
  color: #173A37;

  padding: 18px 48px; /* ← increase horizontal padding */
  min-width: 200px;   /* ← makes it feel more prominent */

  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
  box-shadow: 0 10px 24px rgba(212, 165, 165, 0.25);
}

/* Hover */
.hero-cta-btn:hover {
  transform: translateY(-2px);
  background-color: #E6B8B8;
  box-shadow: 0 14px 30px rgba(212, 165, 165, 0.35);
}

/* Active (nice tactile feel) */
.hero-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(212, 165, 165, 0.25);
}
.hero-actions {
  position: relative;
  z-index: 2;
}
.hero-actions {
  margin-top: 28px;
}

.hero-actions {
  margin-top: 28px;
  align-self: flex-start;
}
.hidden {
  display: none !important;
}

#form-success {
  width: 100%;
  min-height: 360px;
  padding: 48px 40px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#form-success:not(.hidden) {
  display: flex !important;
}

#form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(212, 165, 165, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

#form-success .success-title {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.1;
  color: #F7F5F2;
}

#form-success .success-text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(247, 245, 242, 0.75);
  max-width: 260px;
}

.form-error {
  margin-top: 16px;
  font-size: 14px;
  color: #b00020;
}
#form-success .success-title {
  color: #F7F5F2 !important;
}

#form-success .success-text {
  color: rgba(247, 245, 242, 0.85) !important;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.footer-btn {
  color: #1A3D3A !important;
}

/* =========================================================
   RESPONSIVE STYLES
   Barefoot HR
   ========================================================= */

/* =========================================================
   TABLET + MOBILE (992px and below)
   General layout tightening
   ========================================================= */
@media (max-width: 992px) {

  .container,
  .nav-container,
  .footer-container {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .section-padding {
    padding: 72px 0;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}


/* =========================================================
   MOBILE ONLY (768px and below)
   Global mobile fixes
   ========================================================= */
@media (max-width: 768px) {

  /* ---------- Global Typography ---------- */
  h1,
  .hero-headline,
  .intro-headline,
  .cta-headline,
  .section-title,
  .contact-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  p,
  li,
  .body-text,
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* ---------- Global Spacing ---------- */
  .section-padding {
    padding: 56px 0;
  }

  .container,
  .nav-container,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ---------- Global Buttons ---------- */
  .btn,
  .btn-primary,
  .btn-large,
  .btn-submit,
  .hero-cta-btn,
  button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* ---------- Global Forms ---------- */
  input,
  select,
  textarea,
  .form-input,
  .form-textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* =========================================================
   MOBILE ONLY (768px and below)
   Homepage - Hero Section
   ========================================================= */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero-headline {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .hero-points {
    margin-top: 24px;
    gap: 16px;
  }

  .hero-point {
    align-items: flex-start;
    gap: 12px;
  }

  .hero-point p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 28px;
    width: 100%;
  }

  .hero-cta-btn {
    width: 100%;
  }

  .scroll-indicator {
    display: none;
  }
}

/* =========================================================
   MOBILE ONLY (768px and below)
   Homepage - Grids / Cards / Split Layouts
   ========================================================= */
@media (max-width: 768px) {

  .services-grid,
  .features-grid,
  .why-layout,
  .contact-grid,
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card,
  .feature-card,
  .contact-form-container,
  .contact-info,
  .why-founder,
  .why-content {
    width: 100%;
    max-width: 100%;
  }

  .why-founder img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
}

/* =========================================================
   MOBILE ONLY (768px and below)
   Header / Navigation
   ========================================================= */
@media (max-width: 768px) {

  .site-header,
  .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-container {
    gap: 12px;
  }

  .nav-logo img,
  .logo img {
    max-height: 42px;
    width: auto;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.95rem;
  }
}

/* =========================================================
   MOBILE ONLY (768px and below)
   Contact Forms / Success State
   ========================================================= */
@media (max-width: 768px) {

  .contact-section,
  .contact-form-section {
    padding: 56px 0;
  }

  .contact-form-container,
  .success-card {
    padding: 24px 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .success-card h3,
  .success-card p {
    text-align: left;
  }
}

/* =========================================================
   MOBILE ONLY (768px and below)
   Footer
   ========================================================= */
@media (max-width: 768px) {

  .site-footer {
    padding: 40px 0;
    text-align: left;
  }

  .footer-container {
    gap: 20px;
  }

  .footer-col,
  .footer-brand,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* =========================================================
   SMALL MOBILE (480px and below)
   Extra-tight screens
   ========================================================= */
@media (max-width: 480px) {

  .hero-headline,
  h1 {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .section-title,
  .cta-headline,
  .contact-title,
  h2 {
    font-size: 1.45rem;
  }

  .container,
  .nav-container,
  .footer-container,
  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-padding {
    padding: 48px 0;
  }
}


/* =========================================================
   MOBILE NAVBAR FIX - CSS ONLY
   Transparent / green sheen look without JS
   Paste at the very bottom of styles.css
   ========================================================= */

@media (max-width: 768px) {
  /* --- Main navbar container --- */
  .nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;
    padding: 14px 16px 12px;

    /* transparent green sheen */
    background: linear-gradient(
      to bottom,
      rgba(27, 71, 67, 0.55) 0%,
      rgba(27, 71, 67, 0.35) 55%,
      rgba(27, 71, 67, 0.12) 100%
    );

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  /* --- Logo --- */
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-img {
    max-height: 44px;
    width: auto;
    display: block;
  }

  /* --- Keep visible nav links on mobile --- */
  .nav-links.desktop-only {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 18px;
    width: 100%;
  }

  .nav-link,
  .nav-links a {
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
  }

  /* --- CTA button --- */
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;
    border-radius: 999px;

    background: #d7a3a8 !important;
    color: #ffffff !important;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 2px;
  }

  /* --- Hide hamburger / old mobile menu remnants --- */
  .mobile-menu-btn,
  .mobile-only,
  .mobile-menu,
  #mobile-menu,
  .hamburger,
  .menu-toggle {
    display: none !important;
  }

  /* --- Hero spacing so nav doesn't crush first screen --- */
  .hero,
  #hero {
    padding-top: 190px !important;
  }
}

/* =========================================================
   SMALLER MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .nav-container {
    gap: 8px;
    padding: 12px 12px 10px;
  }

  .logo-img {
    max-height: 40px;
  }

  .nav-links.desktop-only {
    gap: 8px 14px;
  }

  .nav-link,
  .nav-links a {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 11px 24px;
    font-size: 0.95rem;
  }

  .hero,
  #hero {
    padding-top: 180px !important;
  }
}

/* =========================================================
   ABOUT PAGE MOBILE FIX - HARD OVERRIDE
   ========================================================= */

@media (max-width: 768px) {
  .about-hero {
    position: relative !important;
    min-height: 100vh !important;
    height: 100vh !important;
    padding: 170px 20px 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .about-hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
  }

  .about-hero-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .about-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(27, 71, 67, 0.35) !important;
    z-index: 1 !important;
  }

  .about-hero-content,
  .container.about-hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 6px !important;
    text-align: center !important;
  }

  .about-hero-content h1,
  .container.about-hero-content h1 {
    font-size: 3.2rem !important;
    line-height: 1.05 !important;
    margin: 0 0 18px 0 !important;
    color: #ffffff !important;
    text-align: center !important;
  }

  .about-hero-content p,
  .container.about-hero-content p {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    color: #ffffff !important;
    text-align: center !important;
    max-width: 92% !important;
    margin: 0 auto !important;
  }

  #navbar,
  .navbar {
    background: linear-gradient(
      to bottom,
      rgba(27, 71, 67, 0.55) 0%,
      rgba(27, 71, 67, 0.35) 55%,
      rgba(27, 71, 67, 0.12) 100%
    ) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
  }

  .mobile-menu-btn,
  .mobile-only,
  .mobile-menu,
  #mobile-menu {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 160px 16px 50px !important;
  }

  .about-hero-content h1,
  .container.about-hero-content h1 {
    font-size: 2.6rem !important;
  }

  .about-hero-content p,
  .container.about-hero-content p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }
}
/* =========================================================
   ABOUT HERO - MOBILE POSITION FIX
   ========================================================= */

@media (max-width: 768px) {
  .about-hero-content {
    margin-top: 80px !important;
  }
}

/* =========================================================
   ABOUT HERO - MOBILE POSITION FIX
   ========================================================= */

@media (max-width: 768px) {
  .about-hero-content {
    margin-top: 80px !important;
  }
}
/* =========================================================
   ABOUT PAGE - MOBILE LAYOUT FIX (REAL FIX)
   ========================================================= */

@media (max-width: 768px) {

  /* Kill horizontal scroll globally */
  html, body {
    overflow-x: hidden !important;
  }

  /* FORCE ALL ABOUT SECTIONS TO STACK */
  .about-section,
  .about-row,
  .about-container,
  .about-wrapper,
  .about-grid,
  .about-flex,
  .team-section,
  .team-row,
  .team-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Images (like that circular headshot) */
  .about-section img,
  .team-section img,
  .about img {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    margin: 0 auto 20px !important;
    display: block !important;
  }

  /* TEXT BLOCKS */
  .about-section > div,
  .team-section > div,
  .about-content,
  .team-content {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  /* Fix weird right-shifted text */
  .about-section p,
  .team-section p {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  /* Fix headings alignment */
  .about-section h2,
  .team-section h2 {
    text-align: center !important;
  }
}
/* ===== EXECUTIVE COUCH MOBILE FIX ===== */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* prevent sections from pushing past screen width */
  .couch-topics,
  .couch-why,
  .couch-topics .container,
  .couch-why .container,
  .container.why-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* COMMON CONVERSATIONS cards: force single column */
  .topics-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .topic-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* WHY THIS MATTERS section: stack instead of 2 columns */
  .why-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .why-text {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* catches the image block beside the text even if it has no special class */
  .why-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .why-grid img {
    display: block;
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  /* heading cleanup for the squeezed hero text */
  .couch-why .section-title {
    font-size: clamp(42px, 12vw, 64px) !important;
    line-height: 0.95 !important;
    word-break: break-word !important;
  }

  .couch-why p,
  .topic-card li {
    word-break: normal;
    overflow-wrap: break-word;
  }
}
/* ===== SERVICES PAGE - PROCESS SECTION MOBILE FIX ===== */
@media (max-width: 768px) {

  /* process wrapper */
  .process-steps,
  .process-grid,
  .steps-grid,
  .how-we-work-steps,
  .timeline-steps,
  .services-process {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  /* each step item */
  .process-step,
  .step-item,
  .timeline-step,
  .service-step {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  /* kill any forced horizontal line / row behavior */
  .process-line,
  .timeline-line,
  .steps-line {
    display: none !important;
  }

  /* numbered pink circles */
  .process-step-number,
  .step-number,
  .timeline-number,
  .service-step-number {
    margin: 0 auto 16px !important;
  }

  /* headings inside each process card */
  .process-step h3,
  .step-item h3,
  .timeline-step h3,
  .service-step h3 {
    font-size: clamp(28px, 5vw, 36px) !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
  }

  /* paragraph text */
  .process-step p,
  .step-item p,
  .timeline-step p,
  .service-step p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
  }
}