/* About Page Styles */

/* About Section (Homepage) */
.about-section {
  background: #c2ae8f;
  padding: 20px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-kicker {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 14px 0;
}

.about-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.05;
  color: #000000;
  margin: 0 0 22px 0;
}

.about-description {
  font-family: 'Figtree', sans-serif;
  color: #000000;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 520px;
  margin: 0 0 26px 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: #000000;
}

.about-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  flex-shrink: 0;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8c7456;
  color: #000000;
  padding: 12px 22px;
  border-radius: 9999px;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-about:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
}

.btn-about .arrow {
  font-size: 1.2rem;
  line-height: 1;
}

.about-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.about-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 120px;
  height: 120px;
  z-index: 3;
  animation: floatBadgeHomepage 3s ease-in-out infinite;
}

@keyframes floatBadgeHomepage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-badge svg {
  width: 100%;
  height: 100%;
}

.about-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  max-width: calc(100% - 44px);
}

.about-overlay .overlay-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-overlay svg {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 20px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-badge {
    width: 96px;
    height: 96px;
  }
}

/* Hero Section */
.about-hero {
  height: 500px;
  background-image: url('../images/spa-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.about-hero .container {
  align-content: center;
}

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

.about-hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 400;
  margin: 0 0 15px 0;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.about-hero-content p {
  font-family: 'Figtree', sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Welcome Section */
.about-welcome-section {
  background: #8c7456;
  padding: 80px 0;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.welcome-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-kicker {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b7355;
  display: block;
  margin-bottom: 15px;
}

.welcome-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

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

.welcome-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.welcome-item:hover {
  transform: translateY(-5px);
}

.welcome-icon {
  width: 80px;
  height: 80px;
  background: #fbf1ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #8b7355;
  transition: all 0.3s ease;
}

.welcome-item:hover .welcome-icon {
  background: #8b7355;
  color: white;
  transform: scale(1.1);
}

.welcome-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.welcome-item p {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

/* About Page Section */
.about-page-section {
  background: linear-gradient(to bottom, #8c7456 60%, #8c745685, white 100%);
  padding: 80px 0;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

/* Philosophy Section */
.philosophy-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-kicker {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b7355;
  display: block;
  margin-bottom: 15px;
}

.philosophy-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 25px 0;
  color: #ffffff;
  line-height: 1.3;
}

.philosophy-content p {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
  margin: 0 0 30px 0;
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.philosophy-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.philosophy-list li:hover {
  transform: translateX(5px);
}

.philosophy-list svg {
  width: 20px;
  height: 20px;
  color: #8b7355;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.philosophy-list li:hover svg {
  transform: scale(1.2);
}

.philosophy-image {
  position: relative;
  display: flex;
  justify-content: end;
}

.philosophy-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 400px;
}

.philosophy-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.philosophy-image-wrapper:hover img {
  transform: scale(1.05);
}

.philosophy-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  background: rgba(44, 62, 80, 0.85);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  text-align: center;
  padding: 15px;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-year {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: white;
  display: block;
  line-height: 1;
}

.badge-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  display: block;
}

.philosophy-quote {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  z-index: 2;
}

.philosophy-quote p {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  margin: 0;
  text-align: center;
}

/* Story Section */
.about-story-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  background: rgba(44, 62, 80, 0.85);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.badge-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  display: block;
}

.badge-text {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

.about-story-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 25px 0;
  color: #ffffff;
}

.about-story-content p {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
  margin: 0 0 20px 0;
}

.about-values {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.value-item h5 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.value-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.value-item li {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-item li::before {
  content: '✓';
  color: #8b7355;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose-us {
  text-align: center;
}

.section-center-title {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 15px 0;
  color: #ffffff;
}

.section-center-subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: #000000;
  margin: 0 0 60px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-item:hover {
  border-color: #8b7355;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: #fbf1ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #8b7355;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  background: #8b7355;
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.why-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.why-item p {
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  text-align: center;
}

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

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

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

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.team-member h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.member-role {
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem;
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

.member-bio {
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, #8b7355 0%, #a57c48 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 0 15px 0;
  color: white;
}

.cta-content p {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 30px 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  background: white;
  color: #8b7355;
  transition: all 0.3s ease;
}

.cta-content .btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-story-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .welcome-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .about-hero-content h1 {
    font-size: 3rem;
  }

  .section-center-title {
    font-size: 2.2rem;
  }

  .welcome-header h2 {
    font-size: 2.2rem;
  }
}

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

  .about-welcome-section {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }

  .about-story-image {
    height: 350px;
  }

  .about-story-content h2 {
    font-size: 2rem;
  }

  .philosophy-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-quote {
    display: none;
  }

  .philosophy-image {
    justify-content: center;
  }

  .philosophy-image-wrapper {
    height: 350px;
    aspect-ratio: 1;
    max-width: unset;
  }

  .philosophy-content h2 {
    font-size: 1.8rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

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

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .welcome-header h2 {
    font-size: 1.8rem;
  }

  .section-center-title {
    font-size: 1.8rem;
  }

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

  .cta-content h2 {
    font-size: 2rem;
  }
}
