/* ============================================
   Cascades Procurement — Global Styles
   Warm, approachable, professional
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Core palette */
  --forest:       #1b3a2d;
  --forest-light: #264d3b;
  --sage:         #5a7a6a;
  --amber:        #c8943e;
  --amber-light:  #daa74e;
  --cream:        #faf7f2;
  --warm-white:   #fffdfb;
  --warm-gray:    #f2efe9;
  --charcoal:     #2c2c2c;
  --text:         #3a3a3a;
  --text-light:   #6b6b6b;

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
}

.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 148, 62, .3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--forest);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(27, 58, 45, .85);
  backdrop-filter: blur(12px);
  transition: all .4s var(--ease);
}

/* Nav text is white on dark hero background */
.navbar .nav-logo-text,
.navbar .nav-links a {
  color: rgba(255,255,255,.9);
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  color: #fff;
}

.navbar .nav-toggle span {
  background: #fff;
}

.navbar.scrolled {
  background: rgba(255, 253, 251, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
  padding: .85rem 0;
}

/* Revert text to dark on scrolled / inner pages */
.navbar.scrolled .nav-logo-text,
.navbar.scrolled .nav-links a {
  color: var(--text);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--forest);
}

.navbar.scrolled .nav-toggle span {
  background: var(--forest);
}

/* scrolled state handled by default img rendering */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color .3s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: .65rem 1.5rem !important;
  font-size: .88rem !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--sage) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200, 148, 62, .12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.06) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 8rem 0 6rem;
}

.hero-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-light);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: #fff;
}
.hero-shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.hero-shape-3 { width: 200px; height: 200px; top: 40%; right: 15%; opacity: .04; }

/* ---------- Services ---------- */
.services {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-sub {
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,.05);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--amber);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .75rem;
}

.service-card p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.75;
}

/* ---------- Why Us / Value ---------- */
.value {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.value-visual {
  position: relative;
}

.value-visual-box {
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 16px;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.value-visual-box::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200,148,62,.15);
  top: -60px; right: -60px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat h4 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: .25rem;
}

.stat span {
  font-size: .85rem;
  opacity: .8;
  letter-spacing: .5px;
}

.value-content .section-sub {
  margin-bottom: 2rem;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 148, 62, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-check svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
}

.value-item p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
}

.value-item strong {
  color: var(--forest);
}

/* ---------- Inquiry Form ---------- */
.inquiry {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.inquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.inquiry-info {
  position: sticky;
  top: 7rem;
}

.inquiry-info .section-sub {
  margin-bottom: 2.5rem;
}

.inquiry-perks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inquiry-perk {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.inquiry-perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inquiry-perk-icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}

.inquiry-perk h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .2rem;
}

.inquiry-perk p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}

.inquiry-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 40px rgba(0,0,0,.05);
}

.inquiry-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: .5rem;
}

.inquiry-form-card > p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .45rem;
}

.form-group label .required {
  color: var(--amber);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 148, 62, .12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0b0;
}

.form-submit {
  margin-top: .5rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

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

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 148, 62, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--amber);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: .75rem;
}

.form-success p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .inquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .inquiry-info {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(200,148,62,.08);
  top: -200px; right: -200px;
}

.cta-banner .section-label { color: var(--amber-light); }

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo-text {
  color: #fff;
  margin-bottom: .75rem;
  display: block;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  font-size: .9rem;
  padding: .35rem 0;
  transition: color .3s var(--ease);
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

/* ---------- About Page ---------- */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--sage) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,148,62,.1) 0%, transparent 60%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-inline: auto;
  position: relative;
}

.about-story {
  padding: var(--section-pad) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-visual {
  background: linear-gradient(135deg, var(--cream), var(--warm-gray));
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.about-icon-large svg {
  width: 120px;
  height: 120px;
  color: var(--forest);
  opacity: .3;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-story-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Approach section */
.approach {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.approach-header {
  text-align: center;
  margin-bottom: 4rem;
}

.approach-header .section-sub { margin-inline: auto; }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.approach-step {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  counter-increment: step;
  position: relative;
  transition: transform .3s var(--ease);
}

.approach-step:hover { transform: translateY(-4px); }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  opacity: .2;
  margin-bottom: .5rem;
}

.approach-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: .75rem;
}

.approach-step p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---------- Testimonials Page ---------- */
.testimonials-section {
  padding: var(--section-pad) 0;
}

.testimonials-section .section-sub {
  margin-inline: auto;
}

.testimonials-coming {
  text-align: center;
  padding: 5rem 2rem;
}

.testimonials-coming-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.testimonials-coming-icon svg {
  width: 36px;
  height: 36px;
  color: var(--amber);
}

.testimonials-coming h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.testimonials-coming p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger .fade-up:nth-child(2) { transition-delay: .12s; }
.stagger .fade-up:nth-child(3) { transition-delay: .24s; }
.stagger .fade-up:nth-child(4) { transition-delay: .36s; }
/* ---------- About Story Photo ---------- */
.about-story-visual {
  background: none;        /* override the old gradient bg */
  padding: 0;              /* override old padding */
  min-height: auto;        /* override old min-height */
  border-radius: 16px;
  overflow: hidden;
}
 
.about-story-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}
 
 
/* ---------- Meet the Team ---------- */
.team {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
 
.team-header {
  text-align: center;
  margin-bottom: 4rem;
}
 
.team-header .section-sub {
  margin-inline: auto;
}
 
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin-inline: auto;
}
 
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all .4s var(--ease);
}
 
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
}
 
.team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--warm-gray));
  position: relative;
}
 
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s var(--ease);
}
 
.team-card:hover .team-photo img {
  transform: scale(1.03);
}
 
.team-info {
  padding: 2rem;
}
 
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .25rem;
}
 
.team-role {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
 
.team-info p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
}
 
 
/* ---------- Responsive: Team ---------- */
@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
 
  .team-photo {
    height: 280px;
  }
}
 
/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .value-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,.1);
    transition: right .4s var(--ease);
  }

  .nav-links.open { right: 0; }

  .nav-toggle { display: flex; }

  .hero-content { padding: 7rem 0 4rem; }

  .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat h4 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn { width: 100%; justify-content: center; }
}
