/* About Page Styles */

/* Hero Section */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.about-hero-image {
  width: 100%;
  height: 100%;
}

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

.about-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.about-hero-title {
  font-size: 56px;
  font-weight: 300;
  color: white;
  letter-spacing: -0.5px;
  max-width: 800px;
}

/* Story Section */
.story-section {
  padding: 120px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 24px;
}

.story-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.story-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.story-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

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

/* Philosophy Section */
.philosophy-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.philosophy-quote {
  font-size: 24px;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  display: block;
}

.philosophy-attribution {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
}

/* Craftsmanship Section */
.craftsmanship-section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

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

/*.craft-card {
  background: white;
}*/

.craft-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.craft-card:hover .craft-image img {
  transform: scale(1.05);
}

.craft-content {
  padding: 0 8px;
}

.craft-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.craft-description {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  background: #fafafa;
}

.values-title {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.values-grid {
  display: grid;
 /* grid-template-columns: repeat(2, 1fr);*/
  gap: 60px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  flex-direction: column;
}

.value-number {
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.value-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.value-description {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* Locations Section */
.locations-section {
  padding: 120px 0;
}

.locations-title {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

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

.location-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
}

.location-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.location-card:hover .location-image img {
  transform: scale(1.05);
}

.location-info {
  text-align: center;
}

.location-city {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.location-address {
  font-size: 14px;
  color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 44px;
  }

  .story-grid {
    gap: 60px;
  }

  .craftsmanship-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    gap: 50px 60px;
  }
}

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

  .about-hero-content {
    padding: 60px 24px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .story-section {
    padding: 80px 0;
  }

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

  .story-title {
    font-size: 32px;
  }

  .philosophy-section {
    padding: 80px 0;
  }

  .philosophy-quote {
    font-size: 20px;
  }

  .craftsmanship-section,
  .values-section,
  .locations-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-title,
  .values-title,
  .locations-title {
    font-size: 32px;
  }

  .craftsmanship-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .craft-image {
    height: 350px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .location-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 28px;
  }

  .story-title {
    font-size: 28px;
  }

  .philosophy-quote {
    font-size: 18px;
  }

  .section-title,
  .values-title,
  .locations-title {
    font-size: 28px;
  }
}
