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

.about-page {
  --ink: #1f1a16;
  --muted: #6f665f;
  --sand: #ede4dd;
  --paper: #ffffff;
  --cream: #f7f2ec;
  --accent: #c07a47;
  --accent-dark: #9a6138;
  --shadow-lg: 0 30px 60px rgba(31, 26, 22, 0.16);
  --shadow-md: 0 20px 45px rgba(31, 26, 22, 0.12);
  --shadow-sm: 0 10px 25px rgba(31, 26, 22, 0.1);
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.about-page * {
  box-sizing: border-box;
}

.about-page a {
  color: inherit;
  text-decoration: none;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

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

.about-page section {
  position: relative;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
  100% {
    transform: translateY(0);
  }
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  max-width: 520px;
}

.section-heading.center {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 40px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-hero {
  position: relative;
  padding: 120px 0 110px;
  background: linear-gradient(120deg, #f9f4ee 0%, #fbf7f2 45%, #efe4d9 100%);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(192, 122, 71, 0.18), transparent 55%);
  opacity: 0.8;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 122, 71, 0.18), transparent 70%);
  z-index: 1;
}

.hero-orb--one {
  width: 320px;
  height: 320px;
  top: -120px;
  right: 5%;
  animation: float 18s ease-in-out infinite;
}

.hero-orb--two {
  width: 220px;
  height: 220px;
  bottom: 40px;
  left: -80px;
  animation: float 14s ease-in-out infinite reverse;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1.05;
  margin: 18px 0 20px;
  animation: fadeUp 0.85s ease both;
  animation-delay: 0.12s;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  animation: fadeUp 0.85s ease both;
  animation-delay: 0.2s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 36px;
  animation: fadeUp 0.85s ease both;
  animation-delay: 0.28s;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.3rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.about-btn.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.about-btn.primary:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.about-btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: #cfc2b8;
}

.about-btn.ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  animation: fadeUp 0.85s ease both;
  animation-delay: 0.36s;
}

.metric-card {
  background: var(--paper);
  border: 1px solid #e6ddd4;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-media {
  position: relative;
  padding-left: 40px;
  animation: fadeIn 1s ease both;
  animation-delay: 0.25s;
}

.hero-media__frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-media__frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-media__caption {
  position: absolute;
  left: 0;
  bottom: -32px;
  background: #fff;
  border: 1px solid #eadfd5;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  max-width: 280px;
}

.hero-media__caption span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.hero-media__caption p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.hero-media__badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.about-story {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.about-story::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(192, 122, 71, 0.12), transparent 70%);
  pointer-events: none;
}

.about-story .container {
  position: relative;
  z-index: 1;
}

.story-highlight {
  margin-top: 32px;
  background: #f5efe8;
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid #eadfd5;
}

.story-highlight h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.story-highlight p {
  margin: 0;
  color: var(--muted);
}

.story-panel {
  background: var(--paper);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #eadfd5;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.panel-title {
  margin-bottom: 24px;
}

.story-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

.story-timeline li {
  display: flex;
  gap: 18px;
}

.timeline-year {
  font-weight: 600;
  color: var(--accent-dark);
  min-width: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5efe8;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-timeline h4 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.story-timeline p {
  margin: 0;
  color: var(--muted);
}

.about-principles {
  padding: 90px 0;
  background: var(--cream);
}

.principle-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #eadfd5;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.principle-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.principle-card h3 {
  margin: 16px 0;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
}

.about-pillars {
  padding: 100px 0;
  background: #fff;
}

.pillar-card {
  background: #f8f2ec;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #eadfd5;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.pillar-number {
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.pillar-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-values {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-values::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(192, 122, 71, 0.12), transparent 70%);
  pointer-events: none;
}

.about-values .container {
  position: relative;
  z-index: 1;
}

.value-callout {
  margin-top: 30px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eadfd5;
  box-shadow: var(--shadow-sm);
}

.value-callout span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.value-callout p {
  margin: 12px 0 0;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eadfd5;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-team {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2ec 100%);
  overflow: hidden;
}

.about-team::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(192, 122, 71, 0.12), transparent 70%);
  pointer-events: none;
}

.about-team .container {
  position: relative;
  z-index: 1;
}

.team-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eadfd5;
  box-shadow: var(--shadow-md);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 22, 0) 45%, rgba(31, 26, 22, 0.65) 100%);
}

.team-body {
  padding: 24px;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.team-name {
  margin: 10px 0 8px;
  font-size: 1.3rem;
}

.team-bio {
  color: var(--muted);
  margin-bottom: 18px;
}

.team-social {
  display: flex;
  gap: 12px;
}

.team-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}

.team-social__link:hover {
  transform: translateY(-3px);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.about-cta {
  padding: 100px 0 120px;
  background: var(--cream);
}

.cta-card {
  position: relative;
  background: linear-gradient(120deg, #1f1a16 0%, #3a302b 100%);
  border-radius: 30px;
  padding: 48px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: -40% 0 0 -20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.cta-card h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.about-btn.light {
  background: #fff;
  color: #1f1a16;
  border-color: #fff;
}

.about-btn.light:hover {
  background: transparent;
  color: #fff;
}

.about-btn.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.about-btn.outline:hover {
  border-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .about-page * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 991.98px) {
  .about-hero {
    padding: 100px 0 90px;
  }

  .hero-media {
    padding-left: 0;
    margin-top: 40px;
  }

  .hero-media__badge {
    right: 20px;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-media__caption {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .story-panel {
    padding: 24px;
  }

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

  .cta-card {
    padding: 36px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .about-hero {
    padding: 90px 0 80px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .cta-card {
    padding: 32px;
  }

  .team-image {
    height: 240px;
  }
}
