@charset "UTF-8";

/* =========================
   ABOUT
========================= */

.about-module {
  position: relative;
  overflow: hidden;
}

/* =========================
   ABOUT INTRO
========================= */

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(214, 174, 112, 0.22) 0%, rgba(214, 174, 112, 0) 36%),
    radial-gradient(circle at bottom right, rgba(155, 105, 58, 0.20) 0%, rgba(155, 105, 58, 0) 34%),
    linear-gradient(135deg, #fffaf4 0%, #f8efe4 48%, #f4e4d0 100%);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.about-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.about-bg-shape-1 {
  width: 320px;
  height: 320px;
  top: -70px;
  left: -90px;
  background: radial-gradient(circle, rgba(192,138,75,0.26) 0%, rgba(192,138,75,0) 74%);
  animation: aboutFloatOne 10s ease-in-out infinite;
}

.about-bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -130px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(139,90,43,0.20) 0%, rgba(139,90,43,0) 75%);
  animation: aboutFloatTwo 12s ease-in-out infinite;
}

.about-media {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-media-frame {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(78, 49, 27, 0.12);
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(77, 49, 25, 0.15);
}

.about-media-frame .media-video,
.about-media-frame .media-img {
  min-height: 540px;
}

.about-stat-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-stat {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(192, 138, 75, 0.18);
  box-shadow: 0 14px 30px rgba(78,49,27,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(78,49,27,0.14);
}

.about-stat-number {
  display: block;
  margin-bottom: 8px;
  color: #8b5a2b;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.about-stat-label {
  display: block;
  color: rgba(47, 36, 28, 0.82);
  font-size: 14px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.about-content {
  padding: 10px 0 10px 10px;
}

.about-section .eyebrow {
  color: rgba(78,49,27,0.70);
}

.about-content h2 {
  margin-bottom: 20px;
  color: #4e311b;
  font-family: "Bellosa DEMO";
  font-size: 50px;
  line-height: 1.08;
}

.about-intro {
  font-size: 19px;
  line-height: 1.85;
  color: rgba(47,36,28,0.82);
}

.about-content p {
  color: rgba(47,36,28,0.76);
  line-height: 1.85;
}

.about-checklist {
  margin: 26px 0 28px 0;
  padding: 0;
  list-style: none;
}

.about-checklist li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
  line-height: 1.75;
  color: rgba(47,36,28,0.84);
  font-family: 'Aesthetic Beauty CF';
}

.about-checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #c08a4b;
  font-size: 18px;
}

.about-feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 34px 0 28px;
}

.about-feature {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(192, 138, 75, 0.16);
  box-shadow: 0 15px 34px rgba(78,49,27,0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(78,49,27,0.12);
}

.about-feature h3 {
  margin-bottom: 10px;
  color: #8b5a2b;
  font-size: 22px;
}

.about-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(47,36,28,0.78);
}

/* =========================
   TEAM / OVERVIEW
========================= */

.overview-section {
  background: linear-gradient(180deg, #5b3920 0%, #744726 52%, #8e603d 100%);
}

.overview-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.overview-section .eyebrow,
.overview-section h2,
.overview-section .section-head p {
  color: #fff8f0;
}

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

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,248,240,0.96);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 24px 50px rgba(31,18,9,0.20);
  transition: transform 0.30s ease, box-shadow 0.30s ease;
}

.team-card:hover {
  transform: translateY(-8px) rotate(-0.3deg);
  box-shadow: 0 30px 58px rgba(31,18,9,0.26);
}

.team-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c08a4b 0%, #8b5a2b 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  box-shadow: 0 10px 24px rgba(78,49,27,0.22);
}

.team-card-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 26px 22px 24px;
}

.team-card h3 {
  margin-bottom: 8px;
  color: #4e311b;
  font-size: 28px;
}

.team-role {
  margin-bottom: 14px;
  color: #8b5a2b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.team-card p {
  color: rgba(47,36,28,0.76);
  line-height: 1.8;
}

.team-mini-list {
  margin: 18px 0 20px 18px;
  color: rgba(47,36,28,0.80);
  font-family: 'Aesthetic Beauty CF';
}

.team-card-link {
  display: inline-block;
  margin-top: 6px;
  color: #8b5a2b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: Arial, sans-serif;
}

.team-card-link:hover {
  text-decoration: underline;
}

/* =========================
   SERVICES
========================= */

.services-section {
  background:
    radial-gradient(circle at top center, rgba(192,138,75,0.12) 0%, rgba(192,138,75,0) 30%),
    linear-gradient(180deg, #fffdf9 0%, #f8eee1 100%);
}

.services-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

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

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(78,49,27,0.10);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(78,49,27,0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 56px rgba(78,49,27,0.14);
}

.service-media {
  min-height: 360px;
  overflow: hidden;
  background: rgba(11,15,20,0.03);
}

.service-body {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2e0cb;
  color: #8b5a2b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.service-body h3 {
  margin-bottom: 14px;
  color: #4e311b;
  font-size: 30px;
}

.service-body p {
  color: rgba(47,36,28,0.76);
  line-height: 1.8;
}

.service-mini-list {
  margin: 14px 0 22px 18px;
  color: rgba(47,36,28,0.82);
  font-family: 'Aesthetic Beauty CF';
}

.about-section .btn-primary,
.services-section .btn-primary {
  background: linear-gradient(135deg, #c08a4b 0%, #8b5a2b 100%);
  color: #ffffff;
}

.about-section .btn-secondary,
.services-section .btn-secondary {
  background: rgba(139,90,43,0.10);
  color: #4e311b;
  border: 1px solid rgba(139,90,43,0.18);
}

/* =========================
   ANIMATIONS
========================= */

.about-animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aboutFloatOne {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(16px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes aboutFloatTwo {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-16px) translateX(-12px); }
  100% { transform: translateY(0) translateX(0); }
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (min-width: 1920px) {
  .about-content h2 {
    font-size: 62px;
  }

  .about-media-frame,
  .about-media-frame .media-video,
  .about-media-frame .media-img {
    min-height: 620px;
  }
}

@media screen and (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-content {
    padding: 0;
  }

  .about-stat-wrap,
  .about-feature-row,
  .team-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .about-media-frame,
  .about-media-frame .media-video,
  .about-media-frame .media-img {
    min-height: 380px;
  }

  .service-media {
    min-height: 280px;
  }

  .about-content h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 768px) {
  .about-content h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .about-feature {
    padding: 22px 18px;
  }

  .team-card-img {
    height: 240px;
  }

  .service-body {
    padding: 24px 20px;
  }
}

@media screen and (max-width: 480px) {
  .about-stat-wrap,
  .about-feature-row {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-media-frame,
  .about-media-frame .media-video,
  .about-media-frame .media-img {
    min-height: 260px;
  }

  .team-card-img {
    height: 220px;
  }

  .service-media {
    min-height: 220px;
  }

  .service-body h3,
  .team-card h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 300px) {
  .about-content h2 {
    font-size: 26px;
  }

  .team-card-img {
    height: 180px;
  }
}