.hero {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero .hero-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero .hero-shape {
  position: absolute;
  border-radius: 999px;
}

.hero .hero-shape-medium {
  top: 50%;
  left: 33%;
  width: 180px;
  height: 180px;
  background: rgba(168, 181, 163, 0.15);
}

.hero .hero-tagline {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 16px;
}

.hero .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 24px;
}

.hero .hero-subtitle {
  font-size: 18px;
  color: rgba(59, 46, 42, 0.8);
  margin: 0 0 32px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .hero-actions .button {
  height: 40px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero .hero-actions .hero-action-outline {
  background: #f7f3ef;
  border-color: var(--primary);
  color: #3b2e2a;
}

.hero .hero-actions .hero-action-outline .icon {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.hero .hero-visual {
  position: relative;
}

.hero .hero-accent {
  position: absolute;
  top: -32px;
  left: -48px;
  width: 140px;
  height: 100px;
  background: rgba(139, 111, 71, 0.6);
  border-radius: 24px;
}

.hero .hero-image {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

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

.hero .hero-frame {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  opacity: 0.5;
}

@media (max-width: 1710px) {
  .hero .hero-container {
    max-width: 1200px;
  }
}

@media (max-width: 1090px) {
  .hero {
    padding: 48px 16px 24px;
    align-items: flex-start;
  }
  .hero .hero-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 32px;
  }
  .hero .hero-image {
    aspect-ratio: 3 / 4;
    max-height: 520px;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .hero .hero-image img {
    object-fit: cover;
    object-position: 50% 30%;
  }
  .hero .hero-title {
    font-size: 36px;
  }
  .hero .hero-tagline {
    font-size: 26px;
  }
  .hero .hero-subtitle {
    font-size: 16px;
  }
  .hero .hero-accent {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero .hero-actions {
    width: 100%;
  }
  .hero .hero-actions .button {
    width: 100%;
  }
}