@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

body { overflow-x: clip; }

nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000;
  transition: box-shadow .3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .18);
}

.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=85');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(78,11,21,.78) 0%, rgba(30,5,10,.55) 55%, rgba(0,0,0,.35) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--amber);
  display: block;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.page-hero-title span {
  color: var(--amber-light);
}

.page-hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.breadcrumb-bar {
  background: var(--beige-light);
  border-bottom: 1px solid rgba(176,125,40,.18);
  padding: 11px 0;
}

.breadcrumb-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}

.breadcrumb-inner a {
  color: var(--crimson);
  font-weight: 600;
  transition: color .2s;
}

.breadcrumb-inner a:hover { color: var(--amber); }

.breadcrumb-inner i { font-size: 10px; color: var(--amber); }

.breadcrumb-inner .bc-current {
  color: var(--text);
  font-weight: 600;
}

.about-intro {
  padding: 90px 0 80px;
  background: white;
}

.about-intro-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-intro-images {
  position: relative;
  overflow: visible;
}

.ai-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px 80px 4px 4px;
  box-shadow: 0 20px 60px rgba(78,11,21,.22);
  display: block;
}

.ai-img-accent {
  position: absolute;
  bottom: -36px;
  right: -28px;
  width: 200px;
  height: 185px;
  object-fit: cover;
  border-radius: 4px;
  border: 5px solid white;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}

.ai-badge {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--crimson);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(78,11,21,.38);
  min-width: 110px;
  z-index: 4;
}

.ai-badge-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--amber-light);
}

.ai-badge-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.82);
  margin-top: 4px;
}

.about-intro-text .section-divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 18px;
}

.about-intro-text .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  display: block;
}

.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 22px;
}

.about-intro-text h2 span { color: var(--crimson); }

.about-intro-text p {
  font-size: 16.5px;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 18px;
}

.about-signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-signature img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--amber);
}

.sig-info {
  font-size: 14px;
  line-height: 1.4;
}

.sig-name {
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}

.sig-title {
  color: var(--gray);
  font-size: 13px;
  margin-top: 2px;
}

.values-section {
  padding: 90px 0;
  background: var(--light-gray);
}

.values-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2 span { color: var(--crimson); }

.section-header p {
  font-size: 16.5px;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--amber);
  margin: 0 auto 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: white;
  border-radius: 10px;
  padding: 38px 30px 32px;
  border: 1.5px solid rgba(176,125,40,.1);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

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

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(78,11,21,.12);
  border-color: transparent;
}

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

.vc-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background .3s ease;
}

.vc-icon i {
  font-size: 24px;
  color: var(--crimson);
  transition: color .3s ease;
}

.value-card:hover .vc-icon {
  background: var(--crimson);
}

.value-card:hover .vc-icon i { color: white; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.72;
}

.team-section {
  padding: 90px 0 100px;
  background: #f9f5f0;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(78,11,21,.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(176,125,40,.05) 0%, transparent 50%);
  pointer-events: none;
}

.team-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.team-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1.5px solid rgba(176,125,40,.12);
  box-shadow: 0 4px 28px rgba(78,11,21,.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow .35s ease, transform .35s ease;
}

.team-card:hover {
  box-shadow: 0 16px 50px rgba(78,11,21,.16);
  transform: translateY(-5px);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.04);
}

.team-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(26,5,8,.5));
  pointer-events: none;
}

.team-img-role-badge {
  position: absolute;
  bottom: 14px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-role-pill {
  background: rgba(176,125,40,.92);
  backdrop-filter: blur(6px);
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-bio-panel {
  background: linear-gradient(170deg, #1e0609 0%, #2d0a11 60%, #1a0508 100%);
  padding: 24px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-bio-panel-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: .3px;
}

.team-bio-panel-role {
  display: none;
}

.team-bio-panel-divider {
  width: 32px;
  height: 2px;
  background: var(--amber, #b07d28);
  margin: 10px 0 14px;
  flex-shrink: 0;
  border-radius: 2px;
}

.team-bio-panel-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.78;
  margin: 0;
  
}

.team-card.expandable .team-bio-panel-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.team-card.expanded .team-bio-panel-text {
  display: block;
  overflow: visible;
}

.team-read-more {
  font-family: 'Quicksand', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--amber-light, #e8c060);
  background: none;
  border: none;
  padding: 12px 0 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: color .2s ease, gap .2s ease;
}

.team-read-more:hover { color: white; gap: 9px; }

.team-read-more i {
  font-size: 10px;
  transition: transform .35s ease;
}

.team-card.expanded .team-read-more i {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .team-inner { padding: 0 24px; }
  .team-grid { gap: 22px; }
}

@media (max-width: 768px) {
  .team-section { padding: 70px 0 80px; }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
  .team-img-wrap { aspect-ratio: 16 / 9; }
  .team-bio-panel { padding: 20px 20px 22px; }
  .team-bio-panel-name { font-size: 18px; }
}

@media (max-width: 480px) {
  .team-inner { padding: 0 16px; }
  .team-grid { max-width: 100%; gap: 20px; }
  .team-img-wrap { aspect-ratio: 3 / 2; }
  .team-bio-panel { padding: 18px 16px 20px; }
  .team-bio-panel-name { font-size: 17px; }
  .team-bio-panel-text { font-size: 13px; }
  .team-role-pill { font-size: 9px; }
}

.features-section {
  padding: 90px 0;
  background: var(--light-gray);
}

.features-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse .feature-img-col { order: 2; }
.feature-row.reverse .feature-text-col { order: 1; }

.feature-img-col {
  position: relative;
}

.feature-img-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}

.feature-img-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--crimson);
  color: white;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-img-tag i { color: var(--amber-light); }

.feature-text-col .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
  display: block;
}

.feature-text-col h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.feature-text-col h3 span { color: var(--crimson); }

.feature-text-col p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 26px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.feature-list-item i {
  color: var(--crimson);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--crimson-dark) 0%, #2e0810 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b07d28' fill-opacity='0.05'%3E%3Cpath d='M40 0L0 40 40 80 80 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.trust-inner {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.trust-inner .section-header h2 { color: white; }
.trust-inner .section-header p  { color: rgba(255,255,255,.65); }
.trust-inner .section-divider   { background: var(--amber); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 30px 26px 28px;
  backdrop-filter: blur(4px);
  transition: background .3s ease, transform .3s ease;
}

.testi-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-stars i { color: var(--amber-light); font-size: 14px; }

.testi-text {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-text::before {
  content: '"';
  font-size: 48px;
  color: var(--amber);
  opacity: .5;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
  font-family: Georgia, serif;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--amber);
}

.testi-name {
  font-weight: 700;
  color: white;
  font-size: 15px;
}

.testi-origin {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.about-cta {
  padding: 80px 0;
  background: var(--beige-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,125,40,.12) 0%, transparent 70%);
}

.about-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,11,21,.08) 0%, transparent 70%);
}

.about-cta-inner {
  max-width: 680px;
  margin: auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.about-cta .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
  display: block;
}

.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-cta h2 span { color: var(--crimson); }

.about-cta p {
  font-size: 16.5px;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 36px;
}

.cta-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: var(--crimson);
  color: white;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: .5px;
  transition: background .2s ease, transform .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-cta:hover {
  background: var(--crimson-hover);
  transform: translateY(-2px);
}

.btn-outline-cta {
  background: transparent;
  color: var(--crimson);
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--crimson);
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: .5px;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-cta:hover {
  background: var(--crimson);
  color: white;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.about-intro,
.stats-band,
.values-section,
.features-section,
.trust-section,
.about-cta {
  overflow-x: hidden;
}

@media (max-width: 960px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .ai-badge { left: 12px; }
  .ai-img-accent { right: 0; bottom: -28px; }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-row.reverse .feature-img-col { order: 0; }
  .feature-row.reverse .feature-text-col { order: 0; }

  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-child(4) { border-right: none; }

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

@media (max-width: 768px) {
  .page-hero { height: 320px; }

  .feature-img-col img { height: 280px; }

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

@media (max-width: 640px) {
  .breadcrumb-inner,
  .about-intro-inner,
  .stats-band-inner,
  .values-inner,
  .features-inner,
  .trust-inner,
  .team-inner,
  .about-cta-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .values-grid    { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }

  .ai-badge { left: 8px; top: 16px; }
  .ai-img-accent { display: none; }
  .ai-img-main { height: 280px; border-radius: 6px; }

  .about-intro,
  .values-section,
  .features-section,
  .trust-section { padding-top: 60px; padding-bottom: 60px; }

  .about-cta { padding: 60px 0; }

  .stats-band { padding: 44px 0; }
}

@media (max-width: 480px) {
  .page-hero { height: 260px; }
  .page-hero-title { font-size: 30px; }
  .page-hero-subtitle { font-size: 14px; }

  .ai-img-main { height: 240px; }
  .ai-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    border-radius: 6px;
    padding: 10px 16px;
    min-width: unset;
  }
  .ai-badge-num { font-size: 26px; }

  .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 18px 10px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child      { border-bottom: none; }
  .stat-number               { font-size: 34px; }

  .feature-img-col img { height: 220px; }

  .cta-btn-row { flex-direction: column; align-items: stretch; }
  .btn-primary-cta,
  .btn-outline-cta { justify-content: center; }
}
