
#about-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  margin-top: 70px;
}
.about-hero-img {
  position: absolute; inset: 0;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.about-hero-picture,
.about-hero-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-img.loaded { transform: scale(1); }
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,16,14,0.95) 0%, rgba(18,16,14,0.3) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 64px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.1s ease 0.3s forwards;
}
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }
.about-hero-content .section-label { margin-bottom: 12px; }
.about-hero-content .hero-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
}
.about-hero-content .hero-title em { font-style: italic; color: var(--accent-gold); }










#story {
  background: var(--bg-section);
  position: relative;
}
#story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.story-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.story-img {
  height: 560px;
}
.story-img-placeholder {
  height: 560px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(138, 63, 42, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #2a1a10 0%, #1a0e08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.about-corner-badge {
  bottom: 24px;
  left: 24px;
}


.story-picture {
  display: block;
  width: 100%;
  height: 100%;
}


.story-img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}







#values { background: var(--bg-main); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.value-card:hover {
  border-color: rgba(200, 148, 74, 0.4);
  transform: translateY(-3px);
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}
.value-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; opacity: 0.85; }






#team { background: var(--bg-section); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.team-card:hover { border-color: rgba(200, 148, 74, 0.35); }
.team-img {
  height: 280px;
}
.team-img-placeholder {
  height: 280px;
      display: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(138, 63, 42, 0.4) 0%, transparent 65%),
    linear-gradient(180deg, #2c1a10 0%, #1a0e08 100%);
}
.team-info { padding: 24px; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}
.team-bio { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; opacity: 0.8; }


.team-picture {
  display: block;
  width: 100%;
  height: 100%;
}


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





#about-cta { background: var(--bg-main); }
.about-cta-box {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 148, 74, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.about-cta-box .section-label { justify-content: center; }
.about-cta-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-bottom: 32px;
  margin-top: 8px;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}








@media (max-width: 900px) {
  #about-hero {
    height: 35vh;
    min-height: 260px;
  }
  .about-hero-content { padding: 0 28px 48px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-image-wrap { order: -1; }
  .story-img, .story-img-placeholder { height: 300px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-cta-box { padding: 48px 24px; }
}
