@charset "UTF-8";
/* -------- Section Wrapper -------- */
.about-section {
  position: relative;
  width: 100%;
  padding: 100px 0 0;
  background-color: #000;
  overflow: hidden; }
  .about-section::before {
    content: "";
    position: absolute;
    top: -175px;
    left: 0;
    right: 0;
    height: 260px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 99;
    pointer-events: none; }
    @media (max-width: 991px) {
      .about-section::before {
        content: none; } }
  @media (max-width: 1199px) {
    .about-section {
      padding: 80px 0 0; } }

/* =====================================================================
   PART 1 — About GemZodiac (two-column: content | services grid)
   ===================================================================== */
.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 64px; }
  @media (max-width: 1440px) {
    .about-top {
      gap: 48px; } }
  @media (max-width: 1199px) {
    .about-top {
      gap: 36px;
      padding-bottom: 52px; } }
  @media (max-width: 991px) {
    .about-top {
      grid-template-columns: 1fr;
      gap: 48px;
      padding-bottom: 40px; } }
  @media (max-width: 767px) {
    .about-top {
      padding-bottom: 36px; } }

/* -------- Left: Text Content -------- */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0; }

/* Heading: "About GemZodiac" */
.about-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 28px;
  color: #FFFFFF; }
  .about-heading .gradient-word {
    background: linear-gradient(101.54deg, #E8C068 0%, #B88736 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline;
    font-weight: 700; }
  @media (max-width: 1440px) {
    .about-heading {
      font-size: 44px; } }
  @media (max-width: 1199px) {
    .about-heading {
      font-size: 38px;
      margin-bottom: 22px; } }
  @media (max-width: 991px) {
    .about-heading {
      font-size: 34px; } }
  @media (max-width: 767px) {
    .about-heading {
      font-size: 30px;
      margin-bottom: 18px; } }

/* Body paragraphs */
.about-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 18px; }
  .about-text:last-child {
    margin-bottom: 0; }
  .about-text a {
    color: #E8C071;
    font-weight: 500;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color 0.3s ease-in-out; }
    .about-text a:hover {
      color: #FFFFFF; }
  .about-text strong {
    color: #FBBF24;
    font-weight: 500; }
  @media (max-width: 767px) {
    .about-text {
      font-size: 14px;
      margin-bottom: 14px; } }

/* -------- Right: Services Grid -------- */
.about-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start; }
  @media (max-width: 1440px) {
    .about-services {
      gap: 12px; } }
  @media (max-width: 767px) {
    .about-services {
      gap: 10px; } }
  @media (max-width: 579px) {
    .about-services {
      gap: 10px; } }
  @media (max-width: 450px) {
    .about-services {
      grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color background-color 0.3s ease-in-out; }
  .service-card:hover {
    background: rgba(232, 192, 113, 0.06);
    border-color: rgba(232, 192, 113, 0.25); }
  @media (max-width: 1440px) {
    .service-card {
      padding: 14px 16px;
      gap: 10px; } }
  @media (max-width: 1199px) {
    .service-card {
      padding: 13px 14px;
      border-radius: 12px; } }
  @media (max-width: 767px) {
    .service-card {
      padding: 12px 14px;
      gap: 10px; } }

.service-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  object-fit: contain; }
  @media (max-width: 767px) {
    .service-icon {
      width: 16px;
      height: 16px; } }

.service-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #F5ECD6;
  line-height: 1.4; }
  @media (max-width: 1440px) {
    .service-label {
      font-size: 13px; } }
  @media (max-width: 1199px) {
    .service-label {
      font-size: 13px; } }

/* =====================================================================
   PART 2 — Brand Story "Why We Exist" card
   ===================================================================== */
.about-brand-story {
  border: 1px solid rgba(253, 200, 88, 0.39);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: center;
  overflow: hidden;
  margin: 0; }
  @media (max-width: 991px) {
    .about-brand-story {
      grid-template-columns: 1fr; } }

/* Left content */
.brand-story-content {
  padding: 52px 56px;
  background: #0F0C05; }
  @media (max-width: 1440px) {
    .brand-story-content {
      padding: 44px 48px; } }
  @media (max-width: 1199px) {
    .brand-story-content {
      padding: 36px 40px; } }
  @media (max-width: 991px) {
    .brand-story-content {
      padding: 36px 32px; } }
  @media (max-width: 767px) {
    .brand-story-content {
      padding: 28px 24px; } }
  @media (max-width: 579px) {
    .brand-story-content {
      padding: 24px 20px; } }

/* "Why We Exist" heading */
.brand-story-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #FFFFFF; }
  .brand-story-heading .gradient-word {
    background: linear-gradient(101.54deg, #E8C068 0%, #B88736 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline;
    font-weight: 700; }
  @media (max-width: 1440px) {
    .brand-story-heading {
      font-size: 44px; } }
  @media (max-width: 1199px) {
    .brand-story-heading {
      font-size: 38px;
      margin-bottom: 16px; } }
  @media (max-width: 991px) {
    .brand-story-heading {
      font-size: 34px; } }
  @media (max-width: 767px) {
    .brand-story-heading {
      font-size: 30px;
      margin-bottom: 14px; } }
  @media (max-width: 579px) {
    .brand-story-heading {
      font-size: 30px; } }

/* Paragraph */
.brand-story-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #A7A7A7;
  margin: 0;
  max-width: 80%; }
  @media (max-width: 1199px) {
    .brand-story-text {
      font-size: 15px;
      max-width: 100%; } }
  @media (max-width: 767px) {
    .brand-story-text {
      font-size: 14px; } }
  @media (max-width: 579px) {
    .brand-story-text {
      font-size: 14px;
      max-width: 100%; } }

/* Right: planet video */
.brand-story-visual {
  width: 330px;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0px; }
  @media (max-width: 1440px) {
    .brand-story-visual {
      width: 260px; } }
  @media (max-width: 1199px) {
    .brand-story-visual {
      width: 220px; } }
  @media (max-width: 991px) {
    .brand-story-visual {
      display: none; } }

.brand-story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block; }

/*# sourceMappingURL=about.css.map */
