@charset "UTF-8";
.owner-section {
  padding: 80px 0;
  position: relative;
}
.owner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.owner-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .owner-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.owner-image {
  position: relative;
}
.owner-image .owner-photo {
  width: 100%;
  max-width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.owner-image .owner-photo:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .owner-image .owner-photo {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.owner-image .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--dc-beige-primary);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(var(--dc-beige-primary-rgb), 0.3);
}
.owner-image .experience-badge .years {
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.owner-image .experience-badge .text {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .owner-image .experience-badge {
    display: inline-block;
    margin-top: -45px;
    z-index: 999;
    right: 0;
    position: relative;
  }
}

.owner-info .owner-header {
  margin-bottom: 30px;
}
.owner-info .owner-header .owner-name {
  font-size: 42px;
  font-weight: 700;
  color: #2c1810;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .owner-info .owner-header .owner-name {
    font-size: 32px;
  }
}
.owner-info .owner-header .owner-title {
  font-size: 18px;
  color: #d4a574;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.owner-info .owner-description {
  margin-bottom: 40px;
}
.owner-info .owner-description .lead-text {
  font-size: 20px;
  font-weight: 500;
  color: #8b4513;
  margin-bottom: 20px;
  line-height: 1.4;
  font-style: italic;
}
.owner-info .owner-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #5a4a3a;
  margin-bottom: 20px;
}
.owner-info .owner-description .specialties {
  margin-top: 30px;
}
.owner-info .owner-description .specialties h3 {
  font-size: 18px;
  color: #2c1810;
  margin-bottom: 15px;
  font-weight: 600;
}
.owner-info .owner-description .specialties ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}
.owner-info .owner-description .specialties ul li {
  position: relative;
  padding-left: 20px;
  color: #5a4a3a;
  font-weight: 500;
}
.owner-info .owner-description .specialties ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4a574;
  font-weight: bold;
}
.owner-info .owner-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dc-beige-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.owner-info .owner-cta .cta-button:hover {
  background: #a0522d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}
.owner-info .owner-cta .cta-button .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.owner-info .owner-cta .cta-button:hover .arrow-icon {
  transform: translateX(4px);
}
.owner-info .owner-cta .contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .owner-info .owner-cta .contact-info {
    justify-content: center;
    margin-top: 20px;
  }
}
.owner-info .owner-cta .contact-info .phone,
.owner-info .owner-cta .contact-info .email {
  color: var(--dc-beige-primary);
  font-weight: 500;
  text-decoration: none;
}
.owner-info .owner-cta .contact-info .phone:hover,
.owner-info .owner-cta .contact-info .email:hover {
  color: #d4a574;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.owner-section.animate .owner-image,
.owner-section.animate .owner-info {
  animation: fadeInUp 0.8s ease forwards;
}
.owner-section.animate .owner-info {
  animation-delay: 0.2s;
}

/*# sourceMappingURL=owner-section.css-aWGnOBE.map */
