/* Hero Section */
.sukie-about-us-hero-section {
  text-align: center;
  padding: 120px 20px 100px;
  background: linear-gradient(to bottom, white 0%, var(--cream) 100%);
  animation: fadeIn 1s ease-out;
}

.sukie-about-us-hero-section h1 {
  font-family: "EditorsNoteRegular", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--dark);
  animation: slideDown 0.8s ease-out 0.2s both;
}

.sukie-about-us-hero-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
  animation: fadeIn 1s ease-out 0.5s both;
}

/* Section Container */
.sukie-about-us-section {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.sukie-about-us-section:nth-child(even) {
  background: var(--cream);
}

.sukie-about-us-section.sukie-about-us-reverse {
  direction: rtl;
}

.sukie-about-us-section.sukie-about-us-reverse > * {
  direction: ltr;
}

/* Content */
.sukie-about-us-content h2 {
  font-family: "EditorsNoteRegular", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--dark);
}

.sukie-about-us-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
}

/* Image Container */
.sukie-about-us-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  max-width: 450px;
  margin: 0 auto;
}

.sukie-about-us-image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.sukie-about-us-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sukie-about-us-image-container:hover img {
  transform: scale(1.05);
}

/* Placeholder Images */
.sukie-about-us-placeholder-image {
  width: 100%;
  aspect-ratio: 3.5/4.5;
  background: linear-gradient(135deg, var(--light-gray) 0%, #d4cfc7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: italic;
}

.sukie-about-us-placeholder-jewelry {
  aspect-ratio: 1/1;
}

/* Scroll Animations */
.sukie-about-us-scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.8s ease-out forwards;
}

.sukie-about-us-scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: revealRight 0.8s ease-out forwards;
}

.sukie-about-us-scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  animation: revealLeft 0.8s ease-out forwards;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .sukie-about-us-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 5%;
  }

  .sukie-about-us-section.sukie-about-us-reverse {
    direction: ltr;
  }

  .sukie-about-us-hero-section {
    padding: 80px 20px 60px;
  }

  .sukie-about-us-content h2 {
    text-align: center;
  }

  .sukie-about-us-content p {
    text-align: center;
  }

  .sukie-about-us-image-container {
    max-width: 100%;
  }
}

/* Decorative Elements */
.sukie-about-us-section::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  opacity: 0.3;
}

.sukie-about-us-section:first-of-type::before {
  display: none;
}